2013-06-23 12:47:22 -04:00
|
|
|
class Projects::IssuesController < Projects::ApplicationController
|
2016-03-15 12:18:47 -04:00
|
|
|
include ToggleSubscriptionAction
|
2016-03-21 09:12:52 -04:00
|
|
|
include IssuableActions
|
2016-04-16 15:09:08 -04:00
|
|
|
include ToggleAwardEmoji
|
2016-03-15 12:18:47 -04:00
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :module_enabled
|
2016-04-21 10:34:00 -04:00
|
|
|
before_action :issue, only: [:edit, :update, :show, :referenced_merge_requests,
|
|
|
|
:related_branches, :can_create_branch]
|
2012-06-27 16:13:44 -04:00
|
|
|
|
2011-12-15 16:57:46 -05:00
|
|
|
# Allow read any issue
|
2016-03-17 15:38:51 -04:00
|
|
|
before_action :authorize_read_issue!, only: [:show]
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
# Allow write(create) issue
|
2015-06-26 10:44:21 -04:00
|
|
|
before_action :authorize_create_issue!, only: [:new, :create]
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
# Allow modify issue
|
2015-06-26 10:44:21 -04:00
|
|
|
before_action :authorize_update_issue!, only: [:edit, :update]
|
2014-02-10 08:36:58 -05:00
|
|
|
|
|
|
|
# Allow issues bulk update
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :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']
|
2014-12-24 04:04:33 -05:00
|
|
|
@issues = get_issues_collection
|
2015-05-17 13:32:58 -04:00
|
|
|
|
|
|
|
if terms.present?
|
|
|
|
if terms =~ /\A#(\d+)\z/
|
|
|
|
@issues = @issues.where(iid: $1)
|
|
|
|
else
|
|
|
|
@issues = @issues.full_search(terms)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-19 17:37:54 -04:00
|
|
|
@issues = @issues.page(params[:page])
|
2016-04-09 00:09:09 -04:00
|
|
|
@labels = @project.labels.where(title: params[:label_name])
|
2011-11-15 04:09:07 -05: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: {
|
2016-04-09 00:09:09 -04:00
|
|
|
html: view_to_html_string("projects/issues/_issues"),
|
2016-04-20 12:00:12 -04:00
|
|
|
labels: @labels.as_json(methods: :text_color)
|
2013-11-29 08:05:32 -05:00
|
|
|
}
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
2014-07-01 08:03:49 -04:00
|
|
|
params[:issue] ||= ActionController::Parameters.new(
|
|
|
|
assignee_id: ""
|
|
|
|
)
|
|
|
|
|
2016-01-15 05:29:53 -05:00
|
|
|
@issue = @noteable = @project.issues.new(issue_params)
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2016-02-09 06:02:52 -05:00
|
|
|
@note = @project.notes.new(noteable: @issue)
|
2016-04-16 15:09:08 -04:00
|
|
|
@notes = @issue.notes.with_associations.fresh
|
2013-12-25 15:32:48 -05:00
|
|
|
@noteable = @issue
|
2011-11-04 11:46:51 -04:00
|
|
|
|
2016-03-13 15:08:42 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.json do
|
|
|
|
render json: @issue.to_json(include: [:milestone, :labels])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2014-06-26 07:30:07 -04:00
|
|
|
@issue = Issues::CreateService.new(project, current_user, issue_params).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?
|
2015-02-25 22:50:01 -05:00
|
|
|
redirect_to issue_path(@issue)
|
2012-08-30 13:00:16 -04:00
|
|
|
else
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
2014-05-23 04:22:00 -04:00
|
|
|
format.js do |format|
|
|
|
|
@link = @issue.attachment.url.to_js
|
|
|
|
end
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2014-06-26 07:30:07 -04:00
|
|
|
@issue = Issues::UpdateService.new(project, current_user, issue_params).execute(issue)
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2016-03-18 09:48:55 -04:00
|
|
|
if params[:move_to_project_id].to_i > 0
|
|
|
|
new_project = Project.find(params[:move_to_project_id])
|
2016-04-30 15:14:40 -04:00
|
|
|
return render_404 unless issue.can_move?(current_user, new_project)
|
|
|
|
|
2016-03-20 04:28:06 -04:00
|
|
|
move_service = Issues::MoveService.new(project, current_user)
|
2016-03-18 09:48:55 -04:00
|
|
|
@issue = move_service.execute(@issue, new_project)
|
2016-02-17 09:59:25 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2012-10-09 15:09:46 -04:00
|
|
|
format.html do
|
2012-03-25 12:05:24 -04:00
|
|
|
if @issue.valid?
|
2015-02-25 22:50:01 -05:00
|
|
|
redirect_to issue_path(@issue)
|
2012-03-25 12:05:24 -04:00
|
|
|
else
|
|
|
|
render :edit
|
|
|
|
end
|
|
|
|
end
|
2014-06-04 11:52:35 -04:00
|
|
|
format.json do
|
2016-04-22 08:30:58 -04:00
|
|
|
render json: @issue.to_json(include: { milestone: {}, assignee: { methods: :avatar_url }, labels: { methods: :text_color } })
|
2014-06-04 11:52:35 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-12 09:55:54 -04:00
|
|
|
def referenced_merge_requests
|
|
|
|
@merge_requests = @issue.referenced_merge_requests(current_user)
|
|
|
|
@closed_by_merge_requests = @issue.closed_by_merge_requests(current_user)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
|
|
|
render json: {
|
|
|
|
html: view_to_html_string('projects/issues/_merge_requests')
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def related_branches
|
2016-04-15 00:20:53 -04:00
|
|
|
@related_branches = @issue.related_branches(current_user)
|
2016-04-12 09:55:54 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
|
|
|
render json: {
|
|
|
|
html: view_to_html_string('projects/issues/_related_branches')
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-21 10:34:00 -04:00
|
|
|
def can_create_branch
|
|
|
|
can_create = current_user &&
|
|
|
|
can?(current_user, :push_code, @project) &&
|
|
|
|
@issue.can_be_worked_on?(current_user)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
|
|
|
render json: { can_create_branch: can_create }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-27 20:35:24 -04:00
|
|
|
def bulk_update
|
2015-03-06 09:01:13 -05:00
|
|
|
result = Issues::BulkUpdateService.new(project, current_user, bulk_update_params).execute
|
2016-05-09 16:54:46 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
|
|
|
render json: { notice: "#{result[:count]} issues updated" }
|
|
|
|
end
|
|
|
|
end
|
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
|
2016-03-15 12:18:47 -04:00
|
|
|
alias_method :subscribable_resource, :issue
|
2016-03-21 09:12:52 -04:00
|
|
|
alias_method :issuable, :issue
|
2016-04-16 15:09:08 -04:00
|
|
|
alias_method :awardable, :issue
|
2011-12-15 16:57:46 -05:00
|
|
|
|
2016-03-17 15:38:51 -04:00
|
|
|
def authorize_read_issue!
|
|
|
|
return render_404 unless can?(current_user, :read_issue, @issue)
|
|
|
|
end
|
|
|
|
|
2015-06-26 10:44:21 -04:00
|
|
|
def authorize_update_issue!
|
2015-06-26 09:55:56 -04:00
|
|
|
return render_404 unless can?(current_user, :update_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
|
2015-07-18 01:54:04 -04:00
|
|
|
return render_404 unless @project.issues_enabled && @project.default_issues_tracker?
|
2012-02-06 12:40:32 -05:00
|
|
|
end
|
2012-06-12 04:31:38 -04:00
|
|
|
|
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
|
2015-02-25 22:50:01 -05:00
|
|
|
redirect_to issue_path(issue)
|
2013-08-26 07:15:21 -04:00
|
|
|
return
|
|
|
|
else
|
|
|
|
raise ActiveRecord::RecordNotFound.new
|
|
|
|
end
|
|
|
|
end
|
2014-06-26 07:30:07 -04:00
|
|
|
|
|
|
|
def issue_params
|
2015-11-26 10:16:50 -05:00
|
|
|
params.require(:issue).permit(
|
2016-03-17 15:16:48 -04:00
|
|
|
:title, :assignee_id, :position, :description, :confidential,
|
2016-03-10 09:26:56 -05:00
|
|
|
:milestone_id, :due_date, :state_event, :task_num, label_ids: []
|
2014-06-26 07:30:07 -04:00
|
|
|
)
|
|
|
|
end
|
2015-03-06 09:01:13 -05:00
|
|
|
|
|
|
|
def bulk_update_params
|
|
|
|
params.require(:update).permit(
|
|
|
|
:issues_ids,
|
|
|
|
:assignee_id,
|
|
|
|
:milestone_id,
|
2016-04-22 17:14:28 -04:00
|
|
|
:state_event,
|
2016-04-29 12:38:07 -04:00
|
|
|
label_ids: [],
|
|
|
|
add_label_ids: [],
|
|
|
|
remove_label_ids: []
|
2015-03-06 09:01:13 -05:00
|
|
|
)
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|