2012-09-27 20:59:42 +02:00
|
|
|
class IssuesController < ProjectResourceController
|
2012-02-06 19:40:32 +02:00
|
|
|
before_filter :module_enabled
|
2012-12-19 06:14:05 +03:00
|
|
|
before_filter :issue, only: [:edit, :update, :show]
|
2012-06-27 23:13:44 +03:00
|
|
|
|
2011-12-15 23:57:46 +02:00
|
|
|
# Allow read any issue
|
2011-10-09 00:36:38 +03:00
|
|
|
before_filter :authorize_read_issue!
|
2011-12-15 23:57:46 +02:00
|
|
|
|
|
|
|
# Allow write(create) issue
|
2012-08-10 18:07:50 -04:00
|
|
|
before_filter :authorize_write_issue!, only: [:new, :create]
|
2011-12-15 23:57:46 +02:00
|
|
|
|
|
|
|
# Allow modify issue
|
2012-08-10 18:44:36 -04:00
|
|
|
before_filter :authorize_modify_issue!, only: [:edit, :update]
|
2011-12-15 23:57:46 +02:00
|
|
|
|
2011-11-24 08:08:20 -05:00
|
|
|
respond_to :js, :html
|
2011-10-09 00:36:38 +03:00
|
|
|
|
|
|
|
def index
|
2012-06-12 11:31:38 +03:00
|
|
|
@issues = issues_filtered
|
2012-04-09 00:28:58 +03:00
|
|
|
@issues = @issues.page(params[:page]).per(20)
|
2011-11-15 04:09:07 -05:00
|
|
|
|
2011-10-09 00:36:38 +03: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-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
2012-09-07 20:59:12 +03:00
|
|
|
@issue = @project.issues.new(params[:issue])
|
2011-10-09 00:36:38 +03: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)
|
2011-11-04 11:46:51 -04:00
|
|
|
|
2011-11-11 13:29:58 +04:00
|
|
|
respond_to do |format|
|
2011-11-04 11:46:51 -04:00
|
|
|
format.html
|
2012-02-24 09:16:06 +02:00
|
|
|
format.js
|
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-12-17 15:58:35 +02:00
|
|
|
@issue.save
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2012-02-29 22:38:24 +02:00
|
|
|
respond_to do |format|
|
2012-08-30 20:00:16 +03:00
|
|
|
format.html do
|
2012-10-09 22:09:46 +03:00
|
|
|
if @issue.valid?
|
2012-08-30 20:00:16 +03:00
|
|
|
redirect_to project_issue_path(@project, @issue)
|
|
|
|
else
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
2012-02-29 22:38:24 +02:00
|
|
|
format.js
|
|
|
|
end
|
2011-10-09 00:36:38 +03: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-09 00:36:38 +03:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.js
|
2012-10-09 22:09:46 +03:00
|
|
|
format.html do
|
2012-03-25 19:05:24 +03:00
|
|
|
if @issue.valid?
|
|
|
|
redirect_to [@project, @issue]
|
|
|
|
else
|
|
|
|
render :edit
|
|
|
|
end
|
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-15 19:56:53 +03:00
|
|
|
def sort
|
2012-04-09 00:28:58 +03:00
|
|
|
return render_404 unless can?(current_user, :admin_issue, @project)
|
|
|
|
|
2012-08-10 18:07:50 -04: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
|
|
|
|
|
2012-08-10 18:07:50 -04:00
|
|
|
render nothing: true
|
2011-10-15 19:56:53 +03:00
|
|
|
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']
|
|
|
|
|
2012-06-12 11:31:38 +03:00
|
|
|
@issues = issues_filtered
|
2011-11-15 12:13:59 +04:00
|
|
|
@issues = @issues.where("title LIKE ?", "%#{terms}%") unless terms.blank?
|
2012-06-12 11:31:38 +03:00
|
|
|
@issues = @issues.page(params[:page]).per(100)
|
2011-10-22 00:06:38 -04:00
|
|
|
|
2012-08-10 18:07:50 -04:00
|
|
|
render partial: 'issues'
|
2011-10-22 00:06:38 -04:00
|
|
|
end
|
|
|
|
|
2012-07-28 03:35:24 +03:00
|
|
|
def bulk_update
|
|
|
|
result = IssuesBulkUpdateContext.new(project, current_user, params).execute
|
2012-08-10 18:07:50 -04:00
|
|
|
redirect_to :back, notice: "#{result[:count]} issues updated"
|
2012-07-28 03:35:24 +03:00
|
|
|
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-12-15 23:57:46 +02:00
|
|
|
|
|
|
|
def authorize_modify_issue!
|
2012-02-22 00:31:18 +02:00
|
|
|
return render_404 unless can?(current_user, :modify_issue, @issue)
|
2011-12-15 23:57:46 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_issue!
|
2012-02-22 00:31:18 +02:00
|
|
|
return render_404 unless can?(current_user, :admin_issue, @issue)
|
2011-12-15 23:57:46 +02:00
|
|
|
end
|
2012-02-06 19:40:32 +02:00
|
|
|
|
|
|
|
def module_enabled
|
|
|
|
return render_404 unless @project.issues_enabled
|
|
|
|
end
|
2012-06-12 11:31:38 +03:00
|
|
|
|
|
|
|
def issues_filtered
|
2012-10-09 22:09:46 +03:00
|
|
|
@issues = IssuesListContext.new(project, current_user, params).execute
|
2012-06-27 23:13:44 +03:00
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|