2012-05-02 10:18:07 +01:00
|
|
|
class Projects::ProjectsController < Projects::BaseController
|
2012-09-24 19:04:53 +01:00
|
|
|
include ProjectsHelper
|
2012-03-07 21:34:49 +00:00
|
|
|
before_filter :authenticate_user!
|
2014-03-21 10:40:58 +00:00
|
|
|
load_and_authorize_resource id_param: :name_with_owner # to force member actions load
|
2014-01-21 04:51:49 +00:00
|
|
|
before_filter :who_owns, only: [:new, :create, :mass_import, :run_mass_import]
|
2011-03-10 13:38:50 +00:00
|
|
|
|
2011-10-26 21:57:51 +01:00
|
|
|
def index
|
2012-03-27 22:28:50 +01:00
|
|
|
@projects = Project.accessible_by(current_ability, :membered)
|
2012-03-27 16:50:00 +01:00
|
|
|
|
|
|
|
respond_to do |format|
|
2012-09-24 19:04:53 +01:00
|
|
|
format.html {
|
|
|
|
@all_projects = @projects
|
|
|
|
@groups = current_user.groups
|
2014-01-21 04:51:49 +00:00
|
|
|
@owners = User.where(id: @projects.where(owner_type: 'User').uniq.pluck(:owner_id))
|
|
|
|
@projects = @projects.recent.paginate(page: params[:page], per_page: 25)
|
2012-09-24 19:04:53 +01:00
|
|
|
}
|
|
|
|
format.json {
|
|
|
|
selected_groups = params[:groups] || []
|
2012-09-24 19:07:53 +01:00
|
|
|
selected_owners = params[:users] || []
|
2012-09-24 19:04:53 +01:00
|
|
|
@projects = prepare_list(@projects, selected_groups, selected_owners)
|
|
|
|
}
|
2012-03-27 16:50:00 +01:00
|
|
|
end
|
2011-03-10 14:20:09 +00:00
|
|
|
end
|
|
|
|
|
2011-10-26 21:57:51 +01:00
|
|
|
def new
|
|
|
|
@project = Project.new
|
2013-11-13 22:01:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def mass_import
|
2014-01-21 04:51:49 +00:00
|
|
|
@project = Project.new(mass_import: true)
|
2013-11-13 22:01:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def run_mass_import
|
|
|
|
@project = Project.new params[:project]
|
|
|
|
@project.owner = choose_owner
|
|
|
|
authorize! :write, @project.owner if @project.owner.class == Group
|
2013-11-15 14:46:09 +00:00
|
|
|
authorize! :add_project, Repository.find(params[:project][:add_to_repository_id])
|
2013-11-13 22:01:12 +00:00
|
|
|
@project.valid?
|
|
|
|
@project.errors.messages.slice! :url
|
|
|
|
if @project.errors.messages.blank? # We need only url validation
|
2013-11-14 21:26:05 +00:00
|
|
|
@project.init_mass_import
|
2013-11-13 22:01:12 +00:00
|
|
|
flash[:notice] = t('flash.project.mass_import_added_to_queue')
|
|
|
|
redirect_to projects_path
|
|
|
|
else
|
|
|
|
flash[:warning] = @project.errors.full_messages.join('. ')
|
|
|
|
render :mass_import
|
|
|
|
end
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@project = Project.new params[:project]
|
2012-02-27 09:03:28 +00:00
|
|
|
@project.owner = choose_owner
|
2013-05-08 15:41:15 +01:00
|
|
|
authorize! :write, @project.owner if @project.owner.class == Group
|
2011-10-26 21:57:51 +01:00
|
|
|
|
2011-11-30 12:58:14 +00:00
|
|
|
if @project.save
|
2012-04-10 10:40:38 +01:00
|
|
|
flash[:notice] = t('flash.project.saved')
|
2011-10-27 23:43:44 +01:00
|
|
|
redirect_to @project
|
2011-10-26 21:57:51 +01:00
|
|
|
else
|
|
|
|
flash[:error] = t('flash.project.save_error')
|
2012-03-03 01:05:19 +00:00
|
|
|
flash[:warning] = @project.errors.full_messages.join('. ')
|
2014-01-21 04:51:49 +00:00
|
|
|
render action: :new
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2012-08-31 18:47:52 +01:00
|
|
|
params[:project].delete(:maintainer_id) if params[:project][:maintainer_id].blank?
|
2014-02-18 19:16:23 +00:00
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
if @project.update_attributes(params[:project])
|
|
|
|
flash[:notice] = t('flash.project.saved')
|
|
|
|
redirect_to @project
|
|
|
|
else
|
|
|
|
@project.save
|
|
|
|
flash[:error] = t('flash.project.save_error')
|
|
|
|
flash[:warning] = @project.errors.full_messages.join('. ')
|
|
|
|
render action: :edit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
format.json do
|
|
|
|
if @project.update_attributes(params[:project])
|
|
|
|
render json: { notice: I18n.t('flash.project.saved') }.to_json
|
|
|
|
else
|
|
|
|
render json: { error: I18n.t('flash.project.save_error') }.to_json, status: 422
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def schedule
|
|
|
|
p_to_r = @project.project_to_repositories.where(repository_id: params[:repository_id]).first
|
|
|
|
unless p_to_r.repository.publish_without_qa
|
|
|
|
authorize! :local_admin_manage, p_to_r.repository.platform
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
2014-02-18 19:16:23 +00:00
|
|
|
p_to_r.user_id = current_user.id
|
|
|
|
p_to_r.enabled = params[:enabled].present?
|
|
|
|
p_to_r.auto_publish = params[:auto_publish].present?
|
|
|
|
p_to_r.save
|
2014-02-19 09:16:27 +00:00
|
|
|
if p_to_r.save
|
|
|
|
render json: { notice: I18n.t('flash.project.saved') }.to_json
|
2011-10-26 21:57:51 +01:00
|
|
|
else
|
2014-02-19 09:16:27 +00:00
|
|
|
render json: { error: I18n.t('flash.project.save_error') }.to_json, status: 422
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@project.destroy
|
|
|
|
flash[:notice] = t("flash.project.destroyed")
|
2011-10-27 13:49:21 +01:00
|
|
|
redirect_to @project.owner
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
|
|
|
|
2011-11-23 15:52:33 +00:00
|
|
|
def fork
|
2012-04-09 18:56:03 +01:00
|
|
|
owner = (Group.find params[:group] if params[:group].present?) || current_user
|
2013-05-07 15:56:13 +01:00
|
|
|
authorize! :write, owner if owner.class == Group
|
2013-11-19 11:02:05 +00:00
|
|
|
if forked = @project.fork(owner, params[:fork_name]) and forked.valid?
|
2014-01-21 04:51:49 +00:00
|
|
|
redirect_to forked, notice: t("flash.project.forked")
|
2011-11-29 21:42:58 +00:00
|
|
|
else
|
|
|
|
flash[:warning] = t("flash.project.fork_error")
|
2013-04-08 15:27:50 +01:00
|
|
|
flash[:error] = forked.errors.full_messages.join("\n")
|
2011-11-29 21:42:58 +00:00
|
|
|
redirect_to @project
|
|
|
|
end
|
2011-11-23 15:52:33 +00:00
|
|
|
end
|
|
|
|
|
2013-11-19 11:02:05 +00:00
|
|
|
def possible_forks
|
2014-01-21 04:51:49 +00:00
|
|
|
render partial: 'projects/git/base/forks', layout: false,
|
|
|
|
locals: { owner: current_user, name: (params[:name].presence || @project.name) }
|
2013-11-19 11:02:05 +00:00
|
|
|
end
|
|
|
|
|
2012-02-28 07:59:38 +00:00
|
|
|
def sections
|
|
|
|
if request.post?
|
|
|
|
if @project.update_attributes(params[:project])
|
|
|
|
flash[:notice] = t('flash.project.saved')
|
2012-04-19 20:45:50 +01:00
|
|
|
redirect_to sections_project_path(@project)
|
2012-02-28 07:59:38 +00:00
|
|
|
else
|
|
|
|
@project.save
|
|
|
|
flash[:error] = t('flash.project.save_error')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-07 21:34:49 +00:00
|
|
|
def remove_user
|
2012-07-27 05:12:09 +01:00
|
|
|
@project.relations.by_actor(current_user).destroy_all
|
2012-03-07 21:34:49 +00:00
|
|
|
flash[:notice] = t("flash.project.user_removed")
|
|
|
|
redirect_to projects_path
|
|
|
|
end
|
2011-10-17 15:21:29 +01:00
|
|
|
|
2012-08-24 16:19:26 +01:00
|
|
|
def autocomplete_maintainers
|
2012-08-30 17:19:12 +01:00
|
|
|
term, limit = params[:term], params[:limit] || 10
|
2012-08-24 16:19:26 +01:00
|
|
|
items = User.member_of_project(@project)
|
|
|
|
.where("users.name ILIKE ? OR users.uname ILIKE ?", "%#{term}%", "%#{term}%")
|
2014-01-21 04:51:49 +00:00
|
|
|
.limit(limit).map { |u| {value: u.fullname, label: u.fullname, id: u.id} }
|
|
|
|
render json: items
|
2012-08-24 16:19:26 +01:00
|
|
|
end
|
|
|
|
|
2012-08-29 15:58:58 +01:00
|
|
|
def preview
|
2014-01-21 04:51:49 +00:00
|
|
|
render inline: view_context.markdown(params[:text] || ''), layout: false
|
2012-08-29 15:58:58 +01:00
|
|
|
end
|
|
|
|
|
2012-10-01 17:03:08 +01:00
|
|
|
def refs_list
|
|
|
|
refs = @project.repo.branches_and_tags.map(&:name)
|
|
|
|
@selected = (refs.include? params[:selected]) ? params[:selected] : @project.default_branch
|
2014-01-21 04:51:49 +00:00
|
|
|
render layout: false
|
2012-10-01 17:03:08 +01:00
|
|
|
end
|
2012-08-29 15:58:58 +01:00
|
|
|
|
2012-03-07 21:34:49 +00:00
|
|
|
protected
|
2012-02-27 09:03:28 +00:00
|
|
|
|
2013-11-13 22:01:12 +00:00
|
|
|
def who_owns
|
|
|
|
@who_owns = (@project.try(:owner_type) == 'User' ? :me : :group)
|
|
|
|
end
|
|
|
|
|
2012-09-24 19:04:53 +01:00
|
|
|
def prepare_list(projects, groups, owners)
|
2012-03-27 16:50:00 +01:00
|
|
|
res = {}
|
|
|
|
|
|
|
|
colName = ['name']
|
|
|
|
sort_col = params[:iSortCol_0] || 0
|
|
|
|
sort_dir = params[:sSortDir_0] == "desc" ? 'desc' : 'asc'
|
|
|
|
order = "#{colName[sort_col.to_i]} #{sort_dir}"
|
|
|
|
|
|
|
|
res[:total_count] = projects.count
|
2012-09-21 18:57:22 +01:00
|
|
|
|
2012-09-24 19:04:53 +01:00
|
|
|
if groups.present? || owners.present?
|
|
|
|
projects = projects.by_owners(groups, owners)
|
2012-09-21 18:57:22 +01:00
|
|
|
end
|
2012-10-04 19:40:12 +01:00
|
|
|
|
2013-07-01 11:50:35 +01:00
|
|
|
projects = projects.search(params[:sSearch])
|
2012-09-21 18:57:22 +01:00
|
|
|
|
2012-03-27 16:50:00 +01:00
|
|
|
res[:filtered_count] = projects.count
|
|
|
|
|
|
|
|
projects = projects.order(order)
|
|
|
|
res[:projects] = if params[:iDisplayLength].present?
|
|
|
|
start = params[:iDisplayStart].present? ? params[:iDisplayStart].to_i : 0
|
|
|
|
length = params[:iDisplayLength].to_i
|
|
|
|
page = start/length + 1
|
|
|
|
|
2014-01-21 04:51:49 +00:00
|
|
|
projects.paginate(page: page, per_page: length)
|
2012-03-27 16:50:00 +01:00
|
|
|
else
|
|
|
|
projects
|
|
|
|
end
|
|
|
|
|
|
|
|
res
|
|
|
|
end
|
|
|
|
|
2012-03-07 21:34:49 +00:00
|
|
|
def choose_owner
|
|
|
|
if params[:who_owns] == 'group'
|
|
|
|
Group.find(params[:owner_id])
|
|
|
|
else
|
|
|
|
current_user
|
2012-02-27 09:03:28 +00:00
|
|
|
end
|
2012-03-07 21:34:49 +00:00
|
|
|
end
|
2011-03-10 11:35:46 +00:00
|
|
|
end
|