2011-11-12 23:30:51 +01:00
|
|
|
require File.join(Rails.root, 'lib', 'graph_commit')
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
class ProjectsController < ApplicationController
|
2011-10-26 15:46:25 +02:00
|
|
|
before_filter :project, :except => [:index, :new, :create]
|
2011-10-28 14:07:58 +02:00
|
|
|
layout :determine_layout
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
2011-10-26 15:46:25 +02:00
|
|
|
before_filter :authorize_read_project!, :except => [:index, :new, :create]
|
|
|
|
before_filter :authorize_admin_project!, :only => [:edit, :update, :destroy]
|
2011-12-04 21:34:39 +01:00
|
|
|
before_filter :require_non_empty_project, :only => [:blob, :tree, :graph]
|
2011-10-15 17:51:58 +02:00
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
def index
|
2012-04-20 18:11:49 +02:00
|
|
|
@projects = current_user.projects.includes(:events).order("events.created_at DESC")
|
|
|
|
@projects = @projects.page(params[:page]).per(40)
|
|
|
|
@events = Event.where(:project_id => current_user.projects.map(&:id)).recent.limit(20)
|
2011-10-14 23:05:41 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@project = Project.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@project = Project.new(params[:project])
|
|
|
|
@project.owner = current_user
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
Project.transaction do
|
2011-10-14 23:05:41 +02:00
|
|
|
@project.save!
|
2012-02-16 08:03:55 +01:00
|
|
|
@project.users_projects.create!(:project_access => UsersProject::MASTER, :user => current_user)
|
2011-12-06 09:50:07 +01:00
|
|
|
|
|
|
|
# when project saved no team member exist so
|
|
|
|
# project repository should be updated after first user add
|
|
|
|
@project.update_repository
|
2011-10-14 23:05:41 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
if @project.valid?
|
|
|
|
format.html { redirect_to @project, notice: 'Project was successfully created.' }
|
2011-10-26 15:46:25 +02:00
|
|
|
format.js
|
2011-10-14 23:05:41 +02:00
|
|
|
else
|
|
|
|
format.html { render action: "new" }
|
|
|
|
format.js
|
|
|
|
end
|
|
|
|
end
|
2011-12-05 08:43:53 +01:00
|
|
|
rescue Gitlabhq::Gitolite::AccessDenied
|
|
|
|
render :js => "location.href = '#{errors_githost_path}'" and return
|
2011-10-14 23:05:41 +02:00
|
|
|
rescue StandardError => ex
|
|
|
|
@project.errors.add(:base, "Cant save project. Please try again later")
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { render action: "new" }
|
|
|
|
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-02-08 00:00:49 +01: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
|
|
|
|
@events = @project.events.recent.limit(limit)
|
2012-03-02 23:09:17 +01:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
if @project.repo_exists? && @project.has_commits?
|
|
|
|
render :show
|
|
|
|
else
|
|
|
|
render "projects/empty"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
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-02-05 20:26:04 +01:00
|
|
|
render_full_content
|
2011-11-27 16:35:49 +01:00
|
|
|
@days_json, @commits_json = 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|
|
|
|
|
format.html { redirect_to projects_url }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
protected
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
def project
|
2011-10-08 23:36:38 +02:00
|
|
|
@project ||= Project.find_by_code(params[:id])
|
2012-02-23 20:04:20 +01:00
|
|
|
@project || render_404
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
2011-10-28 14:07:58 +02:00
|
|
|
|
|
|
|
def determine_layout
|
|
|
|
if @project && !@project.new_record?
|
|
|
|
"project"
|
|
|
|
else
|
|
|
|
"application"
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|