2012-09-27 20:59:42 +02:00
|
|
|
class IssuesController < ProjectResourceController
|
2012-02-06 18:40:32 +01:00
|
|
|
before_filter :module_enabled
|
2012-08-11 00:07:50 +02:00
|
|
|
before_filter :issue, only: [:edit, :update, :destroy, :show]
|
2012-06-27 22:13:44 +02:00
|
|
|
helper_method :issues_filter
|
|
|
|
|
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
|
2012-08-11 00:07:50 +02:00
|
|
|
before_filter :authorize_write_issue!, only: [:new, :create]
|
2011-12-15 22:57:46 +01:00
|
|
|
|
|
|
|
# Allow modify issue
|
2012-08-11 00:44:36 +02:00
|
|
|
before_filter :authorize_modify_issue!, only: [:edit, :update]
|
2011-12-15 22:57:46 +01:00
|
|
|
|
|
|
|
# Allow destroy issue
|
2012-08-11 00:07:50 +02:00
|
|
|
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
|
2012-06-12 10:31:38 +02:00
|
|
|
@issues = issues_filtered
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-04-08 23:28:58 +02:00
|
|
|
@issues = @issues.page(params[:page]).per(20)
|
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
|
2012-08-11 00:07:50 +02:00
|
|
|
format.atom { render layout: false }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
2012-09-07 19:59:12 +02:00
|
|
|
@issue = @project.issues.new(params[:issue])
|
2011-10-08 23:36:38 +02:00
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2012-08-11 00:07:50 +02:00
|
|
|
@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|
|
2012-08-30 19:00:16 +02:00
|
|
|
format.html do
|
|
|
|
if @issue.valid?
|
|
|
|
redirect_to project_issue_path(@project, @issue)
|
|
|
|
else
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
2012-02-29 21:38:24 +01:00
|
|
|
format.js
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2012-08-11 00:07:50 +02: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
|
|
|
|
@issue.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
2012-01-04 13:47:57 +01:00
|
|
|
format.html { redirect_to project_issues_path }
|
2012-08-11 00:07:50 +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)
|
|
|
|
|
2012-08-11 00:07:50 +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
|
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
render nothing: true
|
2011-10-15 18:56:53 +02:00
|
|
|
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']
|
|
|
|
|
2012-06-12 10:31:38 +02:00
|
|
|
@issues = issues_filtered
|
2011-11-15 09:13:59 +01:00
|
|
|
@issues = @issues.where("title LIKE ?", "%#{terms}%") unless terms.blank?
|
2012-06-12 10:31:38 +02:00
|
|
|
@issues = @issues.page(params[:page]).per(100)
|
2011-10-22 06:06:38 +02:00
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
render partial: 'issues'
|
2011-10-22 06:06:38 +02:00
|
|
|
end
|
|
|
|
|
2012-07-28 02:35:24 +02:00
|
|
|
def bulk_update
|
|
|
|
result = IssuesBulkUpdateContext.new(project, current_user, params).execute
|
2012-08-11 00:07:50 +02:00
|
|
|
redirect_to :back, notice: "#{result[:count]} issues updated"
|
2012-07-28 02:35:24 +02:00
|
|
|
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
|
2012-06-12 10:31:38 +02:00
|
|
|
|
|
|
|
def issues_filtered
|
2012-06-27 22:13:44 +02:00
|
|
|
@issues = case params[:f]
|
|
|
|
when issues_filter[:all] then @project.issues
|
|
|
|
when issues_filter[:closed] then @project.issues.closed
|
|
|
|
when issues_filter[:to_me] then @project.issues.opened.assigned(current_user)
|
2012-06-12 10:31:38 +02:00
|
|
|
else @project.issues.opened
|
|
|
|
end
|
|
|
|
|
2012-06-27 20:20:35 +02:00
|
|
|
@issues = @issues.tagged_with(params[:label_name]) if params[:label_name].present?
|
2012-06-27 20:30:35 +02:00
|
|
|
@issues = @issues.includes(:author, :project).order("updated_at")
|
2012-08-13 07:38:00 +02:00
|
|
|
|
2012-08-14 02:49:18 +02:00
|
|
|
# Filter by specific assignee_id (or lack thereof)?
|
|
|
|
if params[:assignee_id].present?
|
|
|
|
@issues = @issues.where(assignee_id: (params[:assignee_id] == '0' ? nil : params[:assignee_id]))
|
|
|
|
end
|
|
|
|
|
2012-08-13 07:38:00 +02:00
|
|
|
# Filter by specific milestone_id (or lack thereof)?
|
|
|
|
if params[:milestone_id].present?
|
|
|
|
@issues = @issues.where(milestone_id: (params[:milestone_id] == '0' ? nil : params[:milestone_id]))
|
|
|
|
end
|
2012-08-14 02:49:18 +02:00
|
|
|
|
2012-06-12 10:31:38 +02:00
|
|
|
@issues
|
|
|
|
end
|
2012-06-27 22:13:44 +02:00
|
|
|
|
|
|
|
def issues_filter
|
|
|
|
{
|
2012-08-30 21:15:34 +02:00
|
|
|
all: "all",
|
|
|
|
closed: "closed",
|
|
|
|
to_me: "assigned-to-me",
|
|
|
|
open: "open"
|
2012-06-27 22:13:44 +02:00
|
|
|
}
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|