2013-06-23 12:47:22 -04:00
|
|
|
class Projects::IssuesController < Projects::ApplicationController
|
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
|
2014-02-10 08:36:58 -05:00
|
|
|
before_filter :authorize_modify_issue!, only: [:edit, :update]
|
|
|
|
|
|
|
|
# Allow issues bulk update
|
|
|
|
before_filter :authorize_admin_issues!, only: [:bulk_update]
|
2011-12-15 16:57:46 -05:00
|
|
|
|
2013-11-29 08:05:32 -05:00
|
|
|
respond_to :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]
|
2013-06-17 07:55:41 -04:00
|
|
|
@assignee = @project.team.find(assignee_id) if assignee_id.present? && !assignee_id.to_i.zero?
|
2013-05-08 06:43:21 -04:00
|
|
|
@milestone = @project.milestones.find(milestone_id) if milestone_id.present? && !milestone_id.to_i.zero?
|
2013-11-20 17:59:50 -05:00
|
|
|
sort_param = params[:sort] || 'newest'
|
|
|
|
@sort = sort_param.humanize unless sort_param.empty?
|
2014-02-13 06:57:11 -05:00
|
|
|
@assignees = User.where(id: @project.issues.pluck(:assignee_id))
|
2013-05-08 06:43:21 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_to do |format|
|
2013-11-29 08:05:32 -05:00
|
|
|
format.html
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2013-11-29 08:05:32 -05:00
|
|
|
format.json do
|
|
|
|
render json: {
|
|
|
|
html: view_to_html_string("projects/issues/_issues")
|
|
|
|
}
|
|
|
|
end
|
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)
|
2013-12-25 06:32:43 -05:00
|
|
|
@notes = @issue.notes.inc_author.fresh
|
2013-12-25 15:32:48 -05:00
|
|
|
@noteable = @issue
|
2011-11-04 11:46:51 -04:00
|
|
|
|
2013-11-29 08:05:32 -05:00
|
|
|
respond_with(@issue)
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2014-04-02 06:38:35 -04:00
|
|
|
@issue = Issues::CreateService.new(project, current_user, params[:issue]).execute
|
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
|
2014-04-02 06:54:41 -04:00
|
|
|
@issue = Issues::UpdateService.new(project, current_user, params[:issue]).execute(issue)
|
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
|
2014-01-16 12:03:42 -05:00
|
|
|
result = Issues::BulkUpdateService.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
|
2013-08-26 07:15:21 -04:00
|
|
|
@issue ||= begin
|
2014-01-19 13:55:59 -05:00
|
|
|
@project.issues.find_by!(iid: params[:id])
|
2013-08-26 07:15:21 -04:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
redirect_old
|
|
|
|
end
|
2011-10-17 06:39:03 -04:00
|
|
|
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
|
|
|
|
|
2014-02-10 08:36:58 -05:00
|
|
|
def authorize_admin_issues!
|
|
|
|
return render_404 unless can?(current_user, :admin_issue, @project)
|
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
|
2014-01-15 09:32:44 -05:00
|
|
|
params[:scope] = 'all' if params[:scope].blank?
|
|
|
|
params[:state] = 'opened' if params[:state].blank?
|
2014-02-25 12:15:08 -05:00
|
|
|
@issues = IssuesFinder.new.execute(current_user, params.merge(project_id: @project.id))
|
2012-06-27 16:13:44 -04:00
|
|
|
end
|
2013-08-26 07:15:21 -04:00
|
|
|
|
|
|
|
# Since iids are implemented only in 6.1
|
|
|
|
# user may navigate to issue page using old global ids.
|
|
|
|
#
|
|
|
|
# To prevent 404 errors we provide a redirect to correct iids until 7.0 release
|
|
|
|
#
|
|
|
|
def redirect_old
|
2014-01-19 13:55:59 -05:00
|
|
|
issue = @project.issues.find_by(id: params[:id])
|
2013-08-26 07:15:21 -04:00
|
|
|
|
|
|
|
if issue
|
|
|
|
redirect_to project_issue_path(@project, issue)
|
|
|
|
return
|
|
|
|
else
|
|
|
|
raise ActiveRecord::RecordNotFound.new
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|