2012-09-27 14:59:42 -04:00
|
|
|
class IssuesController < ProjectResourceController
|
2012-02-06 12:40:32 -05:00
|
|
|
before_filter :module_enabled
|
2012-12-18 22:14:05 -05:00
|
|
|
before_filter :issue, only: [:edit, :update, :show]
|
2012-06-27 16:13:44 -04:00
|
|
|
|
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
|
2012-08-10 18:07:50 -04:00
|
|
|
before_filter :authorize_write_issue!, only: [:new, :create]
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
# Allow modify issue
|
2012-08-10 18:44:36 -04:00
|
|
|
before_filter :authorize_modify_issue!, only: [:edit, :update]
|
2011-12-15 16:57:46 -05:00
|
|
|
|
2011-11-24 08:08:20 -05:00
|
|
|
respond_to :js, :html
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
def index
|
2013-04-07 06:19:36 -04:00
|
|
|
terms = params['issue_search']
|
|
|
|
|
2012-06-12 04:31:38 -04:00
|
|
|
@issues = issues_filtered
|
2013-04-07 06:19:36 -04:00
|
|
|
@issues = @issues.where("title LIKE ?", "%#{terms}%") if terms.present?
|
2012-04-08 17:28:58 -04:00
|
|
|
@issues = @issues.page(params[:page]).per(20)
|
2011-11-15 04:09:07 -05:00
|
|
|
|
2013-05-08 06:43:21 -04:00
|
|
|
|
|
|
|
assignee_id, milestone_id = params[:assignee_id], params[:milestone_id]
|
|
|
|
|
|
|
|
@assignee = @project.users.find(assignee_id) if assignee_id.present? && !assignee_id.to_i.zero?
|
|
|
|
@milestone = @project.milestones.find(milestone_id) if milestone_id.present? && !milestone_id.to_i.zero?
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
|
|
|
format.js
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
2012-09-07 13:59:12 -04:00
|
|
|
@issue = @project.issues.new(params[:issue])
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2012-08-10 18:07:50 -04:00
|
|
|
@note = @project.notes.new(noteable: @issue)
|
2012-12-02 14:43:39 -05:00
|
|
|
@target_type = :issue
|
|
|
|
@target_id = @issue.id
|
2011-11-04 11:46:51 -04:00
|
|
|
|
2011-11-11 04:29:58 -05:00
|
|
|
respond_to do |format|
|
2011-11-04 11:46:51 -04:00
|
|
|
format.html
|
2012-02-24 02:16:06 -05:00
|
|
|
format.js
|
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
|
|
|
|
2012-02-29 15:38:24 -05:00
|
|
|
respond_to do |format|
|
2012-08-30 13:00:16 -04:00
|
|
|
format.html do
|
2012-10-09 15:09:46 -04:00
|
|
|
if @issue.valid?
|
2012-08-30 13:00:16 -04:00
|
|
|
redirect_to project_issue_path(@project, @issue)
|
|
|
|
else
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
2012-02-29 15:38:24 -05:00
|
|
|
format.js
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2012-08-10 18:07:50 -04:00
|
|
|
@issue.update_attributes(params[:issue].merge(author_id_of_changes: current_user.id))
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.js
|
2012-10-09 15:09:46 -04:00
|
|
|
format.html do
|
2012-03-25 12:05:24 -04:00
|
|
|
if @issue.valid?
|
|
|
|
redirect_to [@project, @issue]
|
|
|
|
else
|
|
|
|
render :edit
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-27 20:35:24 -04:00
|
|
|
def bulk_update
|
2013-05-14 07:34:34 -04:00
|
|
|
result = Issues::BulkUpdateContext.new(project, current_user, params).execute
|
2012-08-10 18:07:50 -04:00
|
|
|
redirect_to :back, notice: "#{result[:count]} issues updated"
|
2012-07-27 20:35:24 -04:00
|
|
|
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!
|
2012-02-21 17:31:18 -05:00
|
|
|
return render_404 unless can?(current_user, :modify_issue, @issue)
|
2011-12-15 16:57:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_issue!
|
2012-02-21 17:31:18 -05:00
|
|
|
return render_404 unless can?(current_user, :admin_issue, @issue)
|
2011-12-15 16:57:46 -05:00
|
|
|
end
|
2012-02-06 12:40:32 -05:00
|
|
|
|
|
|
|
def module_enabled
|
|
|
|
return render_404 unless @project.issues_enabled
|
|
|
|
end
|
2012-06-12 04:31:38 -04:00
|
|
|
|
|
|
|
def issues_filtered
|
2013-05-14 07:34:34 -04:00
|
|
|
@issues = Issues::ListContext.new(project, current_user, params).execute
|
2012-06-27 16:13:44 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|