2011-10-08 23:36:38 +02:00
|
|
|
class IssuesController < ApplicationController
|
|
|
|
before_filter :authenticate_user!
|
2011-10-26 15:46:25 +02:00
|
|
|
before_filter :project
|
2012-02-06 18:40:32 +01:00
|
|
|
before_filter :module_enabled
|
2011-10-17 12:39:03 +02:00
|
|
|
before_filter :issue, :only => [:edit, :update, :destroy, :show]
|
2011-10-28 14:07:58 +02:00
|
|
|
layout "project"
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
2011-12-15 22:57:46 +01:00
|
|
|
|
|
|
|
# Allow read any issue
|
2011-10-08 23:36:38 +02:00
|
|
|
before_filter :authorize_read_issue!
|
2011-12-15 22:57:46 +01:00
|
|
|
|
|
|
|
# Allow write(create) issue
|
|
|
|
before_filter :authorize_write_issue!, :only => [:new, :create]
|
|
|
|
|
|
|
|
# Allow modify issue
|
2012-04-08 23:28:58 +02:00
|
|
|
before_filter :authorize_modify_issue!, :only => [:close, :edit, :update]
|
2011-12-15 22:57:46 +01:00
|
|
|
|
|
|
|
# Allow destroy issue
|
|
|
|
before_filter :authorize_admin_issue!, :only => [:destroy]
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-11-24 14:08:20 +01:00
|
|
|
respond_to :js, :html
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
def index
|
|
|
|
@issues = case params[:f].to_i
|
2011-10-25 06:34:02 +02:00
|
|
|
when 1 then @project.issues
|
2011-10-08 23:36:38 +02:00
|
|
|
when 2 then @project.issues.closed
|
|
|
|
when 3 then @project.issues.opened.assigned(current_user)
|
|
|
|
else @project.issues.opened
|
2012-04-08 23:28:58 +02:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-04-08 23:28:58 +02:00
|
|
|
@issues = @issues.where(:milestone_id => params[:milestone_id]) if params[:milestone_id].present?
|
|
|
|
@issues = @issues.page(params[:page]).per(20)
|
2012-03-21 23:09:57 +01:00
|
|
|
@issues = @issues.includes(:author, :project).order("critical, updated_at")
|
2011-11-15 10:09:07 +01:00
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
|
|
|
format.js
|
2011-11-11 10:29:58 +01:00
|
|
|
format.atom { render :layout => false }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@issue = @project.issues.new
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
@note = @project.notes.new(:noteable => @issue)
|
2011-11-04 16:46:51 +01:00
|
|
|
|
2011-11-11 10:29:58 +01:00
|
|
|
respond_to do |format|
|
2011-11-04 16:46:51 +01:00
|
|
|
format.html
|
2012-02-24 08:16:06 +01:00
|
|
|
format.js
|
2011-11-04 16:46:51 +01:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@issue = @project.issues.new(params[:issue])
|
|
|
|
@issue.author = current_user
|
2011-12-17 14:58:35 +01:00
|
|
|
@issue.save
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-02-29 21:38:24 +01:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to project_issue_path(@project, @issue) }
|
|
|
|
format.js
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2012-03-07 09:13:43 +01:00
|
|
|
@issue.update_attributes(params[:issue].merge(:author_id_of_changes => current_user.id))
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.js
|
2012-03-25 18:05:24 +02:00
|
|
|
format.html do
|
|
|
|
if @issue.valid?
|
|
|
|
redirect_to [@project, @issue]
|
|
|
|
else
|
|
|
|
render :edit
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2011-10-17 12:39:03 +02:00
|
|
|
return access_denied! unless can?(current_user, :admin_issue, @issue)
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
@issue.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
2012-01-04 13:47:57 +01:00
|
|
|
format.html { redirect_to project_issues_path }
|
2011-10-26 15:46:25 +02:00
|
|
|
format.js { render :nothing => true }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
2011-10-15 18:56:53 +02:00
|
|
|
|
|
|
|
def sort
|
2012-04-08 23:28:58 +02:00
|
|
|
return render_404 unless can?(current_user, :admin_issue, @project)
|
|
|
|
|
2011-10-15 20:08:38 +02:00
|
|
|
@issues = @project.issues.where(:id => params['issue'])
|
2011-10-15 18:56:53 +02: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 12:39:03 +02:00
|
|
|
|
2011-10-22 06:06:38 +02:00
|
|
|
def search
|
2011-10-26 02:15:11 +02: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
|
2012-03-22 19:09:47 +01:00
|
|
|
end.page(params[:page]).per(100)
|
2011-10-26 02:15:11 +02:00
|
|
|
|
2011-11-15 09:13:59 +01:00
|
|
|
@issues = @issues.where("title LIKE ?", "%#{terms}%") unless terms.blank?
|
2011-10-22 06:06:38 +02:00
|
|
|
|
|
|
|
render :partial => 'issues'
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
protected
|
2011-10-17 12:39:03 +02:00
|
|
|
|
|
|
|
def issue
|
|
|
|
@issue ||= @project.issues.find(params[:id])
|
|
|
|
end
|
2011-12-15 22:57:46 +01:00
|
|
|
|
|
|
|
def authorize_modify_issue!
|
2012-02-21 23:31:18 +01:00
|
|
|
return render_404 unless can?(current_user, :modify_issue, @issue)
|
2011-12-15 22:57:46 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_issue!
|
2012-02-21 23:31:18 +01:00
|
|
|
return render_404 unless can?(current_user, :admin_issue, @issue)
|
2011-12-15 22:57:46 +01:00
|
|
|
end
|
2012-02-06 18:40:32 +01:00
|
|
|
|
|
|
|
def module_enabled
|
|
|
|
return render_404 unless @project.issues_enabled
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|