2012-05-02 10:18:07 +01:00
|
|
|
class Projects::ProjectsController < Projects::BaseController
|
2014-06-26 22:21:31 +01:00
|
|
|
include DatatableHelper
|
2012-09-24 19:04:53 +01:00
|
|
|
include ProjectsHelper
|
2014-11-13 21:41:07 +00:00
|
|
|
|
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
|
2014-06-26 13:07:22 +01:00
|
|
|
@projects = Project.accessible_by(current_ability, :membered).search(params[:search])
|
2012-03-27 16:50:00 +01:00
|
|
|
respond_to do |format|
|
2012-09-24 19:04:53 +01:00
|
|
|
format.html {
|
|
|
|
@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))
|
2012-09-24 19:04:53 +01:00
|
|
|
}
|
|
|
|
format.json {
|
2014-06-26 13:07:22 +01:00
|
|
|
groups = params[:groups] || []
|
|
|
|
owners = params[:users] || []
|
|
|
|
@projects = @projects.by_owners(groups, owners) if groups.present? || owners.present?
|
|
|
|
@projects_count = @projects.count
|
|
|
|
@projects = @projects.recent.paginate(page: current_page, per_page: Project.per_page)
|
2012-09-24 19:04:53 +01:00
|
|
|
}
|
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
|
|
|
|
render :mass_import
|
|
|
|
end
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
2015-01-13 23:17:23 +00:00
|
|
|
@project_aliases = Project.where.not(id: @project.id).
|
|
|
|
where('alias_from_id IN (:ids) OR id IN (:ids)', { ids: [@project.alias_from_id, @project.id] }).
|
|
|
|
paginate(page: current_page)
|
2011-10-26 21:57:51 +01:00
|
|
|
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
|
2015-01-12 23:06:33 +00:00
|
|
|
|
|
|
|
is_alias = params[:alias] == 'true'
|
2015-01-14 20:56:26 +00:00
|
|
|
if forked = @project.fork(owner, new_name: params[:fork_name], is_alias: is_alias) 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
|
2014-11-12 17:30:27 +00:00
|
|
|
if request.patch?
|
2012-02-28 07:59:38 +00:00
|
|
|
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
|
2014-06-26 13:16:35 +01:00
|
|
|
@project.relations.by_actor(current_user).destroy_all
|
2014-06-26 13:07:22 +01:00
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
flash[:notice] = t("flash.project.user_removed")
|
|
|
|
redirect_to projects_path
|
|
|
|
end
|
|
|
|
format.json { render nothing: true }
|
|
|
|
end
|
2012-03-07 21:34:49 +00:00
|
|
|
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-11-11 16:59:49 +00:00
|
|
|
.limit(limit).map { |u| {name: u.fullname, id: u.id} }
|
2014-01-21 04:51:49 +00:00
|
|
|
render json: items
|
2012-08-24 16:19:26 +01:00
|
|
|
end
|
|
|
|
|
2012-08-29 15:58:58 +01:00
|
|
|
def preview
|
2014-11-26 14:24:52 +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-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
|