2011-10-09 00:36:38 +03:00
|
|
|
class IssuesController < ApplicationController
|
|
|
|
before_filter :authenticate_user!
|
2011-10-26 18:46:25 +05:00
|
|
|
before_filter :project
|
2011-10-17 13:39:03 +03:00
|
|
|
before_filter :issue, :only => [:edit, :update, :destroy, :show]
|
2011-10-28 15:07:58 +03:00
|
|
|
layout "project"
|
2011-10-09 00:36:38 +03:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
|
|
|
before_filter :authorize_read_issue!
|
2011-10-26 18:46:25 +05:00
|
|
|
before_filter :authorize_write_issue!, :only => [:new, :create, :close, :edit, :update, :sort]
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2011-11-24 08:08:20 -05:00
|
|
|
respond_to :js, :html
|
2011-10-09 00:36:38 +03:00
|
|
|
|
|
|
|
def index
|
|
|
|
@issues = case params[:f].to_i
|
2011-10-25 07:34:02 +03:00
|
|
|
when 1 then @project.issues
|
2011-10-09 00:36:38 +03: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-09 00:36:38 +03:00
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
|
|
|
format.js
|
2011-11-11 13:29:58 +04:00
|
|
|
format.atom { render :layout => false }
|
2011-10-09 00:36:38 +03: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-09 00:36:38 +03: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 13:29:58 +04:00
|
|
|
respond_to do |format|
|
2011-11-04 11:46:51 -04:00
|
|
|
format.html
|
2011-11-05 13:59:43 +02:00
|
|
|
format.js { respond_with_notes }
|
2011-11-04 11:46:51 -04:00
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@issue = @project.issues.new(params[:issue])
|
|
|
|
@issue.author = current_user
|
2011-11-07 22:31:51 +02:00
|
|
|
|
2011-10-31 23:21:28 +04:00
|
|
|
if @issue.save && @issue.assignee != current_user
|
2011-10-09 00:36:38 +03:00
|
|
|
Notify.new_issue_email(@issue).deliver
|
|
|
|
end
|
|
|
|
|
|
|
|
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 13:39:03 +03:00
|
|
|
return access_denied! unless can?(current_user, :admin_issue, @issue)
|
|
|
|
|
2011-10-09 00:36:38 +03:00
|
|
|
@issue.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
2011-10-26 18:46:25 +05:00
|
|
|
format.js { render :nothing => true }
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
end
|
2011-10-15 19:56:53 +03:00
|
|
|
|
|
|
|
def sort
|
2011-10-15 21:08:38 +03:00
|
|
|
@issues = @project.issues.where(:id => params['issue'])
|
2011-10-15 19:56:53 +03: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 13:39:03 +03: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 12:13:59 +04: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 18:46:25 +05:00
|
|
|
protected
|
2011-10-17 13:39:03 +03:00
|
|
|
|
|
|
|
def issue
|
|
|
|
@issue ||= @project.issues.find(params[:id])
|
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|