2011-10-08 17:36:38 -04: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 10:57:01 -04:00
|
|
|
before_filter :require_non_empty_project, :only => [:blob, :tree]
|
2011-10-15 11:51:58 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def index
|
|
|
|
@projects = current_user.projects.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
|
|
|
|
|
|
|
|
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 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-14 17:05:41 -04:00
|
|
|
format.js
|
|
|
|
else
|
|
|
|
format.html { render action: "edit" }
|
|
|
|
format.js
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2011-10-18 10:57:01 -04:00
|
|
|
if @project.repo_exists?
|
|
|
|
@date = case params[:view]
|
|
|
|
when "week" then Date.today - 7.days
|
|
|
|
else Date.today
|
|
|
|
end
|
|
|
|
|
|
|
|
@heads = @project.repo.heads
|
|
|
|
@commits = @heads.map do |h|
|
|
|
|
@project.repo.log(h.name, nil, :since => @date - 1.day)
|
|
|
|
end.flatten.uniq { |c| c.id }
|
|
|
|
|
|
|
|
@commits.sort! do |x, y|
|
|
|
|
y.committed_date <=> x.committed_date
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-10-18 10:57:01 -04:00
|
|
|
@messages = project.notes.since(@date).limit(40).order("created_at DESC")
|
|
|
|
else
|
|
|
|
return render "projects/empty"
|
|
|
|
end
|
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
|
|
|
|
@notes = @project.common_notes
|
|
|
|
@note = Note.new
|
|
|
|
end
|
2011-10-14 15:43:25 -04:00
|
|
|
|
2011-10-14 17:05:41 -04:00
|
|
|
#
|
|
|
|
# Repository preview
|
|
|
|
#
|
|
|
|
|
|
|
|
def tree
|
|
|
|
load_refs # load @branch, @tag & @ref
|
2011-10-14 15:43:25 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
@repo = project.repo
|
|
|
|
|
|
|
|
if params[:commit_id]
|
|
|
|
@commit = @repo.commits(params[:commit_id]).first
|
|
|
|
else
|
2011-10-14 12:30:31 -04:00
|
|
|
@commit = @repo.commits(@ref || "master").first
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-10-14 12:30:31 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
@tree = @commit.tree
|
|
|
|
@tree = @tree / params[:path] if params[:path]
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html # show.html.erb
|
|
|
|
format.js do
|
2011-10-14 12:30:31 -04:00
|
|
|
# diasbale cache to allow back button works
|
2011-10-08 17:36:38 -04: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
|
2011-10-14 12:30:31 -04:00
|
|
|
rescue
|
|
|
|
return render_404
|
2011-10-08 17:36:38 -04: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
|
2011-10-14 12:30:31 -04:00
|
|
|
rescue
|
|
|
|
return render_404
|
2011-10-08 17:36:38 -04: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
|