2012-11-04 16:43:33 -05:00
|
|
|
require Rails.root.join('lib', 'gitlab', 'graph', 'json_builder')
|
2011-11-12 17:30:51 -05:00
|
|
|
|
2012-09-27 14:59:42 -04:00
|
|
|
class ProjectsController < ProjectResourceController
|
2012-09-25 19:21:37 -04:00
|
|
|
skip_before_filter :project, only: [:new, :create]
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
# Authorize
|
2012-08-10 18:07:50 -04: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 11:51:58 -04:00
|
|
|
|
2012-09-26 16:24:52 -04:00
|
|
|
layout 'application', only: [:new, :create]
|
|
|
|
|
2011-10-14 17:05:41 -04:00
|
|
|
def new
|
|
|
|
@project = Project.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2012-06-11 01:52:44 -04:00
|
|
|
@project = Project.create_by_user(params[:project], current_user)
|
2011-10-14 17:05:41 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2012-11-21 07:21:12 -05:00
|
|
|
flash[:notice] = 'Project was successfully created.' if @project.saved?
|
2012-07-05 14:59:37 -04:00
|
|
|
format.html do
|
|
|
|
if @project.saved?
|
2012-11-21 07:21:12 -05:00
|
|
|
redirect_to @project
|
2012-07-05 14:59:37 -04:00
|
|
|
else
|
|
|
|
render action: "new"
|
|
|
|
end
|
2011-10-14 17:05:41 -04:00
|
|
|
end
|
|
|
|
format.js
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-10-14 17:05:41 -04:00
|
|
|
def update
|
2012-11-28 23:29:11 -05:00
|
|
|
status = ProjectUpdateContext.new(project, current_user, params).execute
|
2012-11-24 15:00:30 -05:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_to do |format|
|
2012-11-28 23:29:11 -05:00
|
|
|
if status
|
2012-11-24 15:00:30 -05:00
|
|
|
flash[:notice] = 'Project was successfully updated.'
|
2012-08-10 18:07:50 -04:00
|
|
|
format.html { redirect_to edit_project_path(project), notice: 'Project was successfully updated.' }
|
2011-10-26 09:46:25 -04:00
|
|
|
format.js
|
2011-10-14 17:05:41 -04:00
|
|
|
else
|
|
|
|
format.html { render action: "edit" }
|
2011-10-26 09:46:25 -04:00
|
|
|
format.js
|
2011-10-14 17:05:41 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2012-03-01 15:43:04 -05:00
|
|
|
limit = (params[:limit] || 20).to_i
|
2012-09-26 14:01:54 -04:00
|
|
|
@events = @project.events.recent.limit(limit).offset(params[:offset] || 0)
|
2012-03-02 17:09:17 -05:00
|
|
|
|
|
|
|
respond_to do |format|
|
2012-06-01 02:42:02 -04:00
|
|
|
format.html do
|
2012-09-04 11:37:38 -04:00
|
|
|
unless @project.empty_repo?
|
2012-06-12 10:43:16 -04:00
|
|
|
@last_push = current_user.recent_push(@project.id)
|
2012-03-02 17:09:17 -05:00
|
|
|
render :show
|
|
|
|
else
|
|
|
|
render "projects/empty"
|
|
|
|
end
|
|
|
|
end
|
2012-09-26 14:01:54 -04:00
|
|
|
format.js
|
2012-03-02 17:09:17 -05:00
|
|
|
end
|
2011-12-28 02:38:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def files
|
2011-12-30 14:56:34 -05:00
|
|
|
@notes = @project.notes.where("attachment != 'NULL'").order("created_at DESC").limit(100)
|
2011-12-28 02:38:50 -05:00
|
|
|
end
|
|
|
|
|
2011-10-14 17:05:41 -04:00
|
|
|
#
|
|
|
|
# Wall
|
|
|
|
#
|
2011-10-14 12:30:31 -04:00
|
|
|
|
2011-10-14 17:05:41 -04:00
|
|
|
def wall
|
2012-02-06 12:40:32 -05:00
|
|
|
return render_404 unless @project.wall_enabled
|
2011-10-14 17:05:41 -04:00
|
|
|
@note = Note.new
|
2011-10-21 07:25:42 -04:00
|
|
|
|
2011-11-15 03:34:30 -05:00
|
|
|
respond_to do |format|
|
2011-11-04 09:37:38 -04:00
|
|
|
format.html
|
|
|
|
end
|
2011-10-14 17:05:41 -04:00
|
|
|
end
|
2011-10-14 15:43:25 -04:00
|
|
|
|
2011-11-12 17:30:51 -05:00
|
|
|
def graph
|
2012-11-04 16:43:33 -05:00
|
|
|
graph = Gitlab::Graph::JsonBuilder.new(project)
|
|
|
|
|
|
|
|
@days_json, @commits_json = graph.days_json, graph.commits_json
|
2011-11-12 17:30:51 -05:00
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def destroy
|
2011-12-16 09:51:38 -05:00
|
|
|
# Disable the UsersProject update_repository call, otherwise it will be
|
|
|
|
# called once for every person removed from the project
|
|
|
|
UsersProject.skip_callback(:destroy, :after, :update_repository)
|
2011-10-08 17:36:38 -04:00
|
|
|
project.destroy
|
2011-12-16 09:51:38 -05:00
|
|
|
UsersProject.set_callback(:destroy, :after, :update_repository)
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2012-06-22 15:39:03 -04:00
|
|
|
format.html { redirect_to root_path }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|