gitlabhq/app/controllers/projects_controller.rb

192 lines
4.7 KiB
Ruby
Raw Normal View History

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
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
before_filter :authorize_read_project!, :except => [:index, :new, :create]
before_filter :authorize_admin_project!, :only => [:edit, :update, :destroy]
2011-10-18 16:57:01 +02:00
before_filter :require_non_empty_project, :only => [:blob, :tree]
before_filter :load_refs, :only => :tree # load @branch, @tag & @ref
2011-10-15 17:51:58 +02:00
2011-10-08 23:36:38 +02:00
def index
source = current_user.projects
source = source.tagged_with(params[:tag]) unless params[:tag].blank?
@projects = source.all
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
Project.transaction do
2011-10-14 23:05:41 +02:00
@project.save!
@project.users_projects.create!(:admin => true, :read => true, :write => true, :user => current_user)
end
respond_to do |format|
if @project.valid?
format.html { redirect_to @project, notice: 'Project was successfully created.' }
format.js
2011-10-14 23:05:41 +02:00
else
format.html { render action: "new" }
format.js
end
end
rescue Gitosis::AccessDenied
render :js => "location.href = '#{errors_gitosis_path}'" and return
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])
2011-10-15 17:51:58 +02:00
format.html { redirect_to project, :notice => 'Project was successfully updated.' }
format.js
2011-10-14 23:05:41 +02:00
else
format.html { render action: "edit" }
format.js
2011-10-14 23:05:41 +02:00
end
2011-10-08 23:36:38 +02:00
end
end
def show
2011-10-21 13:03:34 +02:00
return render "projects/empty" unless @project.repo_exists?
2011-11-12 15:28:14 +01:00
limit = (params[:limit] || 40).to_i
@activities = @project.updates(limit)
2011-10-08 23:36:38 +02:00
end
2011-10-14 23:05:41 +02:00
#
# Wall
#
2011-10-14 23:05:41 +02:00
def wall
@note = Note.new
2011-10-21 13:25:42 +02:00
@notes = @project.common_notes.order("created_at DESC")
2011-11-04 14:37:38 +01:00
@notes = @notes.fresh.limit(20)
2011-10-21 13:25:42 +02:00
2011-11-04 14:37:38 +01:00
respond_to do |format|
format.html
2011-11-05 12:59:43 +01:00
format.js { respond_with_notes }
2011-11-04 14:37:38 +01:00
end
2011-10-14 23:05:41 +02:00
end
2011-10-14 23:05:41 +02:00
#
# Repository preview
#
def tree
2011-10-08 23:36:38 +02:00
@repo = project.repo
@commit = if params[:commit_id]
@repo.commits(params[:commit_id]).first
else
@repo.commits(@ref).first
end
2011-10-08 23:36:38 +02:00
@tree = @commit.tree
@tree = @tree / params[:path] if params[:path]
respond_to do |format|
format.html # show.html.erb
format.js do
# diasbale cache to allow back button works
2011-10-08 23:36:38 +02:00
response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
response.headers["Pragma"] = "no-cache"
response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
end
end
rescue
return render_404
2011-10-08 23:36:38 +02:00
end
2011-11-12 23:30:51 +01:00
def graph
@repo = project.repo
commits = Grit::Commit.find_all(@repo, nil, {:max_count => 650})
ref_cache = {}
commits.collect! do |commit|
add_refs(commit, ref_cache)
GraphCommit.new(commit)
end
days = GraphCommit.index_commits(commits)
@days_json = days.compact.collect{|d| [d.day, d.strftime("%b")] }.to_json
@commits_json = commits.collect do |c|
h = {}
h[:parents] = c.parents.collect do |p|
[p.id,0,0]
end
h[:author] = c.author.name.force_encoding("UTF-8")
h[:time] = c.time
h[:space] = c.space
h[:refs] = c.refs.collect{|r|r.name}.join(" ") unless c.refs.nil?
h[:id] = c.sha
h[:date] = c.date
h[:message] = c.message.force_encoding("UTF-8")
2011-11-13 12:58:45 +01:00
h[:login] = c.author.email
2011-11-12 23:30:51 +01:00
h
end.to_json
end
2011-10-08 23:36:38 +02:00
def blob
@repo = project.repo
@commit = project.commit(params[:commit_id])
@tree = project.tree(@commit, params[:path])
if @tree.is_a?(Grit::Blob)
send_data(@tree.data, :type => @tree.mime_type, :disposition => 'inline', :filename => @tree.name)
else
2011-10-08 23:36:38 +02:00
head(404)
end
rescue
return render_404
2011-10-08 23:36:38 +02:00
end
def destroy
project.destroy
respond_to do |format|
format.html { redirect_to projects_url }
end
end
protected
2011-10-08 23:36:38 +02:00
2011-11-12 23:30:51 +01:00
def add_refs(commit, ref_cache)
if ref_cache.empty?
2011-11-13 14:31:18 +01:00
@repo.refs.each do |ref|
ref_cache[ref.commit.id] ||= []
ref_cache[ref.commit.id] << ref
end
2011-11-12 23:30:51 +01:00
end
commit.refs = ref_cache[commit.id] if ref_cache.include? commit.id
commit.refs ||= []
end
def project
2011-10-08 23:36:38 +02:00
@project ||= Project.find_by_code(params[:id])
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