2011-10-08 17:36:38 -04:00
|
|
|
class IssuesController < ApplicationController
|
|
|
|
before_filter :authenticate_user!
|
2011-10-26 09:46:25 -04:00
|
|
|
before_filter :project
|
2012-02-06 12:40:32 -05:00
|
|
|
before_filter :module_enabled
|
2012-08-10 18:07:50 -04:00
|
|
|
before_filter :issue, only: [:edit, :update, :destroy, :show]
|
2012-06-27 16:13:44 -04:00
|
|
|
helper_method :issues_filter
|
|
|
|
|
2011-10-28 08:07:58 -04:00
|
|
|
layout "project"
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
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:07:50 -04:00
|
|
|
before_filter :authorize_modify_issue!, only: [:close, :edit, :update]
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
# Allow destroy issue
|
2012-08-10 18:07:50 -04:00
|
|
|
before_filter :authorize_admin_issue!, only: [:destroy]
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-11-24 08:08:20 -05:00
|
|
|
respond_to :js, :html
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
def index
|
2012-06-12 04:31:38 -04:00
|
|
|
@issues = issues_filtered
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-04-08 17:28:58 -04:00
|
|
|
@issues = @issues.page(params[:page]).per(20)
|
2011-11-15 04:09:07 -05:00
|
|
|
|
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)
|
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
|
|
|
|
if @issue.valid?
|
|
|
|
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-03-25 12:05:24 -04:00
|
|
|
format.html do
|
|
|
|
if @issue.valid?
|
|
|
|
redirect_to [@project, @issue]
|
|
|
|
else
|
|
|
|
render :edit
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2011-10-17 06:39:03 -04:00
|
|
|
return access_denied! unless can?(current_user, :admin_issue, @issue)
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
@issue.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
2012-01-04 07:47:57 -05:00
|
|
|
format.html { redirect_to project_issues_path }
|
2012-08-10 18:07:50 -04:00
|
|
|
format.js { render nothing: true }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
2011-10-15 12:56:53 -04:00
|
|
|
|
|
|
|
def sort
|
2012-04-08 17:28:58 -04: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 12:56:53 -04: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 12:56:53 -04:00
|
|
|
end
|
2011-10-17 06:39:03 -04: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 04:31:38 -04:00
|
|
|
@issues = issues_filtered
|
2011-11-15 03:13:59 -05:00
|
|
|
@issues = @issues.where("title LIKE ?", "%#{terms}%") unless terms.blank?
|
2012-06-12 04:31:38 -04: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-27 20:35:24 -04: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-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
|
2012-06-27 16:13:44 -04: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 04:31:38 -04:00
|
|
|
else @project.issues.opened
|
|
|
|
end
|
|
|
|
|
2012-06-27 14:20:35 -04:00
|
|
|
@issues = @issues.tagged_with(params[:label_name]) if params[:label_name].present?
|
2012-06-27 14:30:35 -04:00
|
|
|
@issues = @issues.includes(:author, :project).order("updated_at")
|
2012-08-13 01:38:00 -04:00
|
|
|
|
2012-08-13 20:49:18 -04: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 01:38:00 -04: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-13 20:49:18 -04:00
|
|
|
|
2012-06-12 04:31:38 -04:00
|
|
|
@issues
|
|
|
|
end
|
2012-06-27 16:13:44 -04:00
|
|
|
|
|
|
|
def issues_filter
|
|
|
|
{
|
2012-08-30 15:15:34 -04:00
|
|
|
all: "all",
|
|
|
|
closed: "closed",
|
|
|
|
to_me: "assigned-to-me",
|
|
|
|
open: "open"
|
2012-06-27 16:13:44 -04:00
|
|
|
}
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|