2011-10-08 17:36:38 -04:00
|
|
|
class IssuesController < ApplicationController
|
|
|
|
before_filter :authenticate_user!
|
2011-10-26 09:46:25 -04:00
|
|
|
before_filter :project
|
2011-10-17 06:39:03 -04:00
|
|
|
before_filter :issue, :only => [:edit, :update, :destroy, :show]
|
2011-10-28 08:07:58 -04:00
|
|
|
layout "project"
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
# Allow read any issue
|
2011-10-08 17:36:38 -04:00
|
|
|
before_filter :authorize_read_issue!
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
# Allow write(create) issue
|
|
|
|
before_filter :authorize_write_issue!, :only => [:new, :create]
|
|
|
|
|
|
|
|
# Allow modify issue
|
|
|
|
before_filter :authorize_modify_issue!, :only => [:close, :edit, :update, :sort]
|
|
|
|
|
|
|
|
# Allow destroy issue
|
|
|
|
before_filter :authorize_admin_issue!, :only => [:destroy]
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-11-24 08:08:20 -05:00
|
|
|
respond_to :js, :html
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
def index
|
|
|
|
@issues = case params[:f].to_i
|
2011-10-25 00:34:02 -04:00
|
|
|
when 1 then @project.issues
|
2011-10-08 17:36:38 -04:00
|
|
|
when 2 then @project.issues.closed
|
|
|
|
when 3 then @project.issues.opened.assigned(current_user)
|
|
|
|
else @project.issues.opened
|
|
|
|
end
|
|
|
|
|
2011-11-15 04:09:07 -05:00
|
|
|
@issues = @issues.includes(:author, :project)
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
|
|
|
format.js
|
2011-11-11 04:29:58 -05:00
|
|
|
format.atom { render :layout => false }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@issue = @project.issues.new
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2011-11-15 04:09:07 -05:00
|
|
|
@notes = @issue.notes.inc_author.order("created_at DESC").limit(20)
|
2011-10-08 17:36:38 -04:00
|
|
|
@note = @project.notes.new(:noteable => @issue)
|
2011-11-04 11:46:51 -04:00
|
|
|
|
2011-11-24 08:08:20 -05:00
|
|
|
@commits = if @issue.branch_name && @project.repo.heads.map(&:name).include?(@issue.branch_name)
|
|
|
|
@project.repo.commits_between("master", @issue.branch_name)
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2011-11-11 04:29:58 -05:00
|
|
|
respond_to do |format|
|
2011-11-04 11:46:51 -04:00
|
|
|
format.html
|
2011-11-05 07:59:43 -04:00
|
|
|
format.js { respond_with_notes }
|
2011-11-04 11:46:51 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@issue = @project.issues.new(params[:issue])
|
|
|
|
@issue.author = current_user
|
2011-12-17 08:58:35 -05:00
|
|
|
@issue.save
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@issue.update_attributes(params[:issue])
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.js
|
|
|
|
format.html { redirect_to [@project, @issue]}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2011-10-17 06:39:03 -04:00
|
|
|
return access_denied! unless can?(current_user, :admin_issue, @issue)
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
@issue.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
2012-01-04 07:47:57 -05:00
|
|
|
format.html { redirect_to project_issues_path }
|
2011-10-26 09:46:25 -04:00
|
|
|
format.js { render :nothing => true }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
2011-10-15 12:56:53 -04:00
|
|
|
|
|
|
|
def sort
|
2011-10-15 14:08:38 -04:00
|
|
|
@issues = @project.issues.where(:id => params['issue'])
|
2011-10-15 12:56:53 -04:00
|
|
|
@issues.each do |issue|
|
|
|
|
issue.position = params['issue'].index(issue.id.to_s) + 1
|
|
|
|
issue.save
|
|
|
|
end
|
|
|
|
|
|
|
|
render :nothing => true
|
|
|
|
end
|
2011-10-17 06:39:03 -04:00
|
|
|
|
2011-10-22 00:06:38 -04:00
|
|
|
def search
|
2011-10-25 20:15:11 -04:00
|
|
|
terms = params['terms']
|
|
|
|
|
|
|
|
@project = Project.find(params['project'])
|
|
|
|
@issues = case params[:status].to_i
|
|
|
|
when 1 then @project.issues
|
|
|
|
when 2 then @project.issues.closed
|
|
|
|
when 3 then @project.issues.opened.assigned(current_user)
|
|
|
|
else @project.issues.opened
|
|
|
|
end
|
|
|
|
|
2011-11-15 03:13:59 -05:00
|
|
|
@issues = @issues.where("title LIKE ?", "%#{terms}%") unless terms.blank?
|
2011-10-22 00:06:38 -04:00
|
|
|
|
|
|
|
render :partial => 'issues'
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
protected
|
2011-10-17 06:39:03 -04:00
|
|
|
|
|
|
|
def issue
|
|
|
|
@issue ||= @project.issues.find(params[:id])
|
|
|
|
end
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
def authorize_modify_issue!
|
|
|
|
can?(current_user, :modify_issue, @issue) ||
|
|
|
|
@issue.assignee == current_user
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_issue!
|
|
|
|
can?(current_user, :admin_issue, @issue)
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|