2011-11-12 17:30:51 -05:00
|
|
|
require File.join(Rails.root, 'lib', 'graph_commit')
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
class ProjectsController < ApplicationController
|
2011-10-26 09:46:25 -04:00
|
|
|
before_filter :project, :except => [:index, :new, :create]
|
2011-10-28 08:07:58 -04:00
|
|
|
layout :determine_layout
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
2011-10-26 09:46:25 -04:00
|
|
|
before_filter :authorize_read_project!, :except => [:index, :new, :create]
|
|
|
|
before_filter :authorize_admin_project!, :only => [:edit, :update, :destroy]
|
2011-12-04 15:34:39 -05:00
|
|
|
before_filter :require_non_empty_project, :only => [:blob, :tree, :graph]
|
2011-11-10 18:28:26 -05:00
|
|
|
before_filter :load_refs, :only => :tree # load @branch, @tag & @ref
|
2011-10-15 11:51:58 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def index
|
2011-11-05 15:00:05 -04:00
|
|
|
source = current_user.projects
|
|
|
|
source = source.tagged_with(params[:tag]) unless params[:tag].blank?
|
|
|
|
@projects = source.all
|
2011-10-14 17:05:41 -04: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 09:46:25 -04:00
|
|
|
Project.transaction do
|
2011-10-14 17:05:41 -04:00
|
|
|
@project.save!
|
2011-12-07 03:04:57 -05:00
|
|
|
@project.users_projects.create!(:repo_access => Repository::REPO_RW , :project_access => Project::PROJECT_RWA, :user => current_user)
|
2011-12-06 03:50:07 -05:00
|
|
|
|
|
|
|
# when project saved no team member exist so
|
|
|
|
# project repository should be updated after first user add
|
|
|
|
@project.update_repository
|
2011-10-14 17:05:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
if @project.valid?
|
|
|
|
format.html { redirect_to @project, notice: 'Project was successfully created.' }
|
2011-10-26 09:46:25 -04:00
|
|
|
format.js
|
2011-10-14 17:05:41 -04:00
|
|
|
else
|
|
|
|
format.html { render action: "new" }
|
|
|
|
format.js
|
|
|
|
end
|
|
|
|
end
|
2011-12-05 02:43:53 -05:00
|
|
|
rescue Gitlabhq::Gitolite::AccessDenied
|
|
|
|
render :js => "location.href = '#{errors_githost_path}'" and return
|
2011-10-14 17:05:41 -04: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 17:36:38 -04:00
|
|
|
|
2011-10-14 17:05:41 -04:00
|
|
|
def update
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_to do |format|
|
2011-10-14 17:05:41 -04:00
|
|
|
if project.update_attributes(params[:project])
|
2011-10-15 11:51:58 -04:00
|
|
|
format.html { redirect_to 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
|
2011-12-05 02:23:53 -05:00
|
|
|
return render "projects/empty" unless @project.repo_exists? && @project.has_commits?
|
2011-11-27 03:37:37 -05:00
|
|
|
limit = (params[:limit] || 20).to_i
|
2011-11-27 07:53:12 -05:00
|
|
|
@activities = @project.cached_updates(limit)
|
2011-10-08 17:36:38 -04: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
|
|
|
|
@note = Note.new
|
2011-10-21 07:25:42 -04:00
|
|
|
@notes = @project.common_notes.order("created_at DESC")
|
2011-11-04 09:37:38 -04:00
|
|
|
@notes = @notes.fresh.limit(20)
|
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
|
2011-11-05 07:59:43 -04:00
|
|
|
format.js { respond_with_notes }
|
2011-11-04 09:37:38 -04:00
|
|
|
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
|
2011-11-27 10:35:49 -05:00
|
|
|
@days_json, @commits_json = GraphCommit.to_graph(project)
|
2011-11-12 17:30:51 -05:00
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def destroy
|
|
|
|
project.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to projects_url }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
protected
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
def project
|
2011-10-08 17:36:38 -04:00
|
|
|
@project ||= Project.find_by_code(params[:id])
|
|
|
|
end
|
2011-10-28 08:07:58 -04:00
|
|
|
|
|
|
|
def determine_layout
|
|
|
|
if @project && !@project.new_record?
|
|
|
|
"project"
|
|
|
|
else
|
|
|
|
"application"
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|