gitlabhq/app/controllers/projects_controller.rb

156 lines
3.8 KiB
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
class ProjectsController < ApplicationController
before_filter :project, :except => [:index, :new, :create]
# 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]
2011-10-15 17:51:58 +02:00
2011-10-08 23:36:38 +02:00
def index
@projects = current_user.projects.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
@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
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.' }
2011-10-14 23:05:41 +02:00
format.js
else
format.html { render action: "edit" }
format.js
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?
@date = case params[:view]
when "week" then Date.today - 7.days
when "day" then Date.today
else nil
end
if @date
@date = @date.at_beginning_of_day
2011-10-08 23:36:38 +02:00
2011-10-21 13:03:34 +02:00
@commits = @project.commits_since(@date)
2011-10-20 18:21:58 +02:00
@messages = project.notes.since(@date).order("created_at DESC")
2011-10-21 13:03:34 +02:00
else
@commits = @project.fresh_commits
@messages = project.notes.fresh.limit(10)
2011-10-18 16:57:01 +02:00
end
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")
@notes = case params[:view]
when "week" then @notes.since((Date.today - 7.days).at_beginning_of_day)
when "all" then @notes.all
when "day" then @notes.since(Date.today.at_beginning_of_day)
else @notes.fresh.limit(10)
end
2011-10-14 23:05:41 +02:00
end
2011-10-14 23:05:41 +02:00
#
# Repository preview
#
def tree
load_refs # load @branch, @tag & @ref
2011-10-08 23:36:38 +02:00
@repo = project.repo
if params[:commit_id]
@commit = @repo.commits(params[:commit_id]).first
else
@commit = @repo.commits(@ref || "master").first
2011-10-08 23:36:38 +02:00
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
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
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
def project
@project ||= Project.find_by_code(params[:id])
end
end