2012-11-04 22:43:33 +01:00
|
|
|
require Rails.root.join('lib', 'gitlab', 'graph', 'json_builder')
|
2011-11-12 23:30:51 +01:00
|
|
|
|
2012-09-27 20:59:42 +02:00
|
|
|
class ProjectsController < ProjectResourceController
|
2012-09-26 01:21:37 +02:00
|
|
|
skip_before_filter :project, only: [:new, :create]
|
2013-01-04 07:43:25 +01:00
|
|
|
skip_before_filter :repository, only: [:new, :create]
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
# Authorize
|
2012-08-11 00:07:50 +02:00
|
|
|
before_filter :authorize_read_project!, except: [:index, :new, :create]
|
|
|
|
before_filter :authorize_admin_project!, only: [:edit, :update, :destroy]
|
|
|
|
before_filter :require_non_empty_project, only: [:blob, :tree, :graph]
|
2011-10-15 17:51:58 +02:00
|
|
|
|
2012-09-26 22:24:52 +02:00
|
|
|
layout 'application', only: [:new, :create]
|
|
|
|
|
2011-10-14 23:05:41 +02:00
|
|
|
def new
|
|
|
|
@project = Project.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2013-01-22 18:14:00 +01:00
|
|
|
@project = ::Projects::CreateContext.new(current_user, params[:project]).execute
|
2011-10-14 23:05:41 +02:00
|
|
|
|
|
|
|
respond_to do |format|
|
2012-11-21 13:21:12 +01:00
|
|
|
flash[:notice] = 'Project was successfully created.' if @project.saved?
|
2012-07-05 20:59:37 +02:00
|
|
|
format.html do
|
|
|
|
if @project.saved?
|
2012-11-21 13:21:12 +01:00
|
|
|
redirect_to @project
|
2012-07-05 20:59:37 +02:00
|
|
|
else
|
|
|
|
render action: "new"
|
|
|
|
end
|
2011-10-14 23:05:41 +02:00
|
|
|
end
|
|
|
|
format.js
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-10-14 23:05:41 +02:00
|
|
|
def update
|
2013-01-22 18:14:00 +01:00
|
|
|
status = ::Projects::UpdateContext.new(project, current_user, params).execute
|
2012-11-24 21:00:30 +01:00
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
respond_to do |format|
|
2012-11-29 05:29:11 +01:00
|
|
|
if status
|
2012-11-24 21:00:30 +01:00
|
|
|
flash[:notice] = 'Project was successfully updated.'
|
2012-08-11 00:07:50 +02:00
|
|
|
format.html { redirect_to edit_project_path(project), notice: 'Project was successfully updated.' }
|
2011-10-26 15:46:25 +02:00
|
|
|
format.js
|
2011-10-14 23:05:41 +02:00
|
|
|
else
|
|
|
|
format.html { render action: "edit" }
|
2011-10-26 15:46:25 +02:00
|
|
|
format.js
|
2011-10-14 23:05:41 +02:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
2012-12-13 17:42:15 +01:00
|
|
|
|
|
|
|
rescue Project::TransferError => ex
|
|
|
|
@error = ex
|
|
|
|
render :update_failed
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2012-03-01 21:43:04 +01:00
|
|
|
limit = (params[:limit] || 20).to_i
|
2012-09-26 20:01:54 +02:00
|
|
|
@events = @project.events.recent.limit(limit).offset(params[:offset] || 0)
|
2012-03-02 23:09:17 +01:00
|
|
|
|
|
|
|
respond_to do |format|
|
2012-06-01 08:42:02 +02:00
|
|
|
format.html do
|
2013-01-04 07:43:25 +01:00
|
|
|
if @project.repository && !@project.repository.empty?
|
2012-12-07 22:05:17 +01:00
|
|
|
@last_push = current_user.recent_push(@project.id)
|
|
|
|
render :show
|
|
|
|
else
|
|
|
|
render "projects/empty"
|
|
|
|
end
|
2012-03-02 23:09:17 +01:00
|
|
|
end
|
2012-09-26 20:01:54 +02:00
|
|
|
format.js
|
2012-03-02 23:09:17 +01:00
|
|
|
end
|
2011-12-28 08:38:50 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def files
|
2011-12-30 20:56:34 +01:00
|
|
|
@notes = @project.notes.where("attachment != 'NULL'").order("created_at DESC").limit(100)
|
2011-12-28 08:38:50 +01:00
|
|
|
end
|
|
|
|
|
2011-10-14 23:05:41 +02:00
|
|
|
#
|
|
|
|
# Wall
|
|
|
|
#
|
2011-10-14 18:30:31 +02:00
|
|
|
|
2011-10-14 23:05:41 +02:00
|
|
|
def wall
|
2012-02-06 18:40:32 +01:00
|
|
|
return render_404 unless @project.wall_enabled
|
2012-12-02 20:43:39 +01:00
|
|
|
|
|
|
|
@target_type = :wall
|
|
|
|
@target_id = nil
|
|
|
|
@note = @project.notes.new
|
2011-10-21 13:25:42 +02:00
|
|
|
|
2011-11-15 09:34:30 +01:00
|
|
|
respond_to do |format|
|
2011-11-04 14:37:38 +01:00
|
|
|
format.html
|
|
|
|
end
|
2011-10-14 23:05:41 +02:00
|
|
|
end
|
2011-10-14 21:43:25 +02:00
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
def destroy
|
2012-12-05 04:14:05 +01:00
|
|
|
return access_denied! unless can?(current_user, :remove_project, project)
|
|
|
|
|
2013-01-05 11:12:02 +01:00
|
|
|
project.team.truncate
|
2011-10-08 23:36:38 +02:00
|
|
|
project.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
2012-06-22 21:39:03 +02:00
|
|
|
format.html { redirect_to root_path }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|