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