2012-08-19 09:58:10 +02:00
|
|
|
require Rails.root.join('lib', 'gitlab', 'graph_commit')
|
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]
|
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
|
2012-06-11 07:52:44 +02:00
|
|
|
@project = Project.create_by_user(params[:project], current_user)
|
2011-10-14 23:05:41 +02:00
|
|
|
|
|
|
|
respond_to do |format|
|
2012-07-05 20:59:37 +02:00
|
|
|
format.html do
|
|
|
|
if @project.saved?
|
|
|
|
redirect_to(@project, notice: 'Project was successfully created.')
|
|
|
|
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
|
2011-10-08 23:36:38 +02:00
|
|
|
respond_to do |format|
|
2011-10-14 23:05:41 +02:00
|
|
|
if project.update_attributes(params[:project])
|
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
|
|
|
|
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
|
2012-09-04 17:37:38 +02:00
|
|
|
unless @project.empty_repo?
|
2012-06-12 16:43:16 +02:00
|
|
|
@last_push = current_user.recent_push(@project.id)
|
2012-03-02 23:09:17 +01:00
|
|
|
render :show
|
|
|
|
else
|
|
|
|
render "projects/empty"
|
|
|
|
end
|
|
|
|
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
|
2011-10-14 23:05:41 +02:00
|
|
|
@note = Note.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-11-12 23:30:51 +01:00
|
|
|
def graph
|
2012-08-19 09:58:10 +02:00
|
|
|
@days_json, @commits_json = Gitlab::GraphCommit.to_graph(project)
|
2011-11-12 23:30:51 +01:00
|
|
|
end
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
def destroy
|
2011-12-16 15:51:38 +01: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 23:36:38 +02:00
|
|
|
project.destroy
|
2011-12-16 15:51:38 +01:00
|
|
|
UsersProject.set_callback(:destroy, :after, :update_repository)
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
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
|