Class: IssuesController

Inherits:
ApplicationController show all
Includes:
AttachmentsHelper, CustomFieldsHelper, IssueRelationsHelper, IssuesHelper, ProjectsHelper, QueriesHelper, Redmine::Export::PDF, RepositoriesHelper, SortHelper, WatchersHelper
Defined in:
app/controllers/issues_controller.rb

Overview

Redmine - project management software Copyright © 2006-2008 Jean-Philippe Lang

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Constant Summary

Constants included from ApplicationHelper

ApplicationHelper::HEADING_RE, ApplicationHelper::TOC_RE

Instance Method Summary collapse

Methods included from Redmine::Export::PDF

#issue_to_pdf, #issues_to_pdf

Methods included from IssuesHelper

#find_name_by_reflection, #issue_list, #issues_to_csv, #query_links, #render_api_issue_children, #render_custom_fields_rows, #render_descendants_tree, #render_issue_subject_with_tree, #render_issue_tooltip, #render_sidebar_queries, #show_detail, #sidebar_queries

Methods included from ApplicationHelper

#accesskey, #api_meta, #authoring, #authorize_for, #avatar, #back_url_hidden_field_tag, #body_css_classes, #breadcrumb, #calendar_for, #check_all_links, #checked_image, #content_for, #context_menu, #context_menu_link, #current_theme, #due_date_distance_in_words, #favicon, #format_activity_day, #format_activity_description, #format_activity_title, #format_version_name, #has_content?, #heads_for_theme, #html_hours, #html_title, #image_to_function, #include_calendar_headers_tags, #include_in_api_response?, #javascript_heads, #label_tag_for, #labelled_tabular_form_for, #lang_options_for_select, #link_to_attachment, #link_to_if_authorized, #link_to_issue, #link_to_message, #link_to_project, #link_to_remote_if_authorized, #link_to_revision, #link_to_user, #other_formats_links, #page_header_title, #pagination_links_full, #parse_headings, #parse_inline_attachments, #parse_non_pre_blocks, #parse_redmine_links, #parse_wiki_links, #path_to_stylesheet, #per_page_links, #principals_check_box_tags, #progress_bar, #project_nested_ul, #project_tree, #project_tree_options_for_select, #prompt_to_remote, #render_flash_messages, #render_page_hierarchy, #render_project_jump_box, #render_tabs, #reorder_links, #replace_toc, #simple_format_without_paragraph, #stylesheet_path, #syntax_highlight, #textilizable, #time_tag, #to_path_param, #toggle_link, #truncate_lines, #truncate_single_line

Methods included from Redmine::I18n

#current_language, #day_name, #find_language, #format_date, #format_time, included, #l, #l_hours, #l_or_humanize, #ll, #month_name, #set_language_if_valid, #valid_languages

Methods included from Redmine::WikiFormatting::Macros::Definitions

#exec_macro, #extract_macro_options

Methods included from SortHelper

#sort_clause, #sort_clear, #sort_header_tag, #sort_init, #sort_link, #sort_name, #sort_update

Methods included from RepositoriesHelper

#bazaar_field_tags, #cvs_field_tags, #darcs_field_tags, #filesystem_field_tags, #format_revision, #git_field_tags, #mercurial_field_tags, #render_changes_tree, #render_changeset_changes, #render_properties, #replace_invalid_utf8, #repository_field_tags, #scm_select_tag, #subversion_field_tags, #to_utf8, #truncate_at_line_break, #with_leading_slash, #without_leading_slash

Methods included from QueriesHelper

#column_content, #column_header, #operators_for_select, #retrieve_query

Methods included from AttachmentsHelper

#link_to_attachments, #to_utf8

Methods included from WatchersHelper

#watcher_link, #watcher_tag, #watchers_list

Methods included from IssueRelationsHelper

#collection_for_relation_type_select

Methods included from CustomFieldsHelper

#custom_field_formats_for_select, #custom_field_label_tag, #custom_field_tag, #custom_field_tag_for_bulk_edit, #custom_field_tag_with_label, #custom_fields_tabs, #format_value, #render_api_custom_values, #show_value

Methods included from ProjectsHelper

#format_version_sharing, #link_to_version, #parent_project_select_tag, #project_settings_tabs, #render_project_hierarchy, #version_options_for_select

Methods inherited from ApplicationController

accept_key_auth, #accept_key_auth_actions, #api_key_from_request, #api_offset_and_limit, #api_request?, #authorize, #authorize_global, #back_url, #check_if_login_required, #check_project_privacy, #check_project_uniqueness, #default_template, #delete_broken_cookies, #deny_access, #filename_for_content_disposition, #find_current_user, #find_issues, #find_model_object, #find_optional_project, #find_project_by_project_id, #find_project_from_association, #invalid_authenticity_token, #logged_user=, model_object, #object_errors_to_json, #parse_qvalues, #per_page_option, #pick_layout, #query_statement_invalid, #redirect_back_or_default, #render_403, #render_404, #render_attachment_warning_if_needed, #render_error, #render_feed, #render_validation_errors, #require_admin, #require_login, #set_flash_from_bulk_issue_save, #set_localization, #use_layout, #user_setup

Methods included from Redmine::MenuManager::MenuController

#current_menu_item, included, #menu_items, #redirect_to_project_menu_item

Methods included from Redmine::Search::Controller

#default_search_scope, #default_search_scopes, included

Instance Method Details

#bulk_editObject

Bulk edit a set of issues



191
192
193
194
195
196
197
# File 'app/controllers/issues_controller.rb', line 191

def bulk_edit
  @issues.sort!
  @available_statuses = @projects.map{|p|Workflow.available_statuses(p)}.inject{|memo,w|memo & w}
  @custom_fields = @projects.map{|p|p.all_issue_custom_fields}.inject{|memo,c|memo & c}
  @assignables = @projects.map(&:assignable_users).inject{|memo,a| memo & a}
  @trackers = @projects.map(&:trackers).inject{|memo,t| memo & t}
end

#bulk_updateObject



199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# File 'app/controllers/issues_controller.rb', line 199

def bulk_update
  @issues.sort!
  attributes = parse_params_for_bulk_issue_attributes(params)

  unsaved_issue_ids = []
  @issues.each do |issue|
    issue.reload
    journal = issue.init_journal(User.current, params[:notes])
    issue.safe_attributes = attributes
    call_hook(:controller_issues_bulk_edit_before_save, { :params => params, :issue => issue })
    unless issue.save
      # Keep unsaved issue ids to display them in flash error
      unsaved_issue_ids << issue.id
    end
  end
  set_flash_from_bulk_issue_save(@issues, unsaved_issue_ids)
  redirect_back_or_default({:controller => 'issues', :action => 'index', :project_id => @project})
end

#createObject



133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'app/controllers/issues_controller.rb', line 133

def create
  call_hook(:controller_issues_new_before_save, { :params => params, :issue => @issue })
  if @issue.save
    attachments = Attachment.attach_files(@issue, params[:attachments])
    render_attachment_warning_if_needed(@issue)
    flash[:notice] = l(:notice_successful_create)
    call_hook(:controller_issues_new_after_save, { :params => params, :issue => @issue})
    respond_to do |format|
      format.html {
        redirect_to(params[:continue] ?  { :action => 'new', :project_id => @project, :issue => {:tracker_id => @issue.tracker, :parent_issue_id => @issue.parent_issue_id}.reject {|k,v| v.nil?} } :
                    { :action => 'show', :id => @issue })
      }
      format.api  { render :action => 'show', :status => :created, :location => issue_url(@issue) }
    end
    return
  else
    respond_to do |format|
      format.html { render :action => 'new' }
      format.api  { render_validation_errors(@issue) }
    end
  end
end

#destroyObject



218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'app/controllers/issues_controller.rb', line 218

def destroy
  @hours = TimeEntry.sum(:hours, :conditions => ['issue_id IN (?)', @issues]).to_f
  if @hours > 0
    case params[:todo]
    when 'destroy'
      # nothing to do
    when 'nullify'
      TimeEntry.update_all('issue_id = NULL', ['issue_id IN (?)', @issues])
    when 'reassign'
      reassign_to = @project.issues.find_by_id(params[:reassign_to_id])
      if reassign_to.nil?
        flash.now[:error] = l(:error_issue_not_found_in_project)
        return
      else
        TimeEntry.update_all("issue_id = #{reassign_to.id}", ['issue_id IN (?)', @issues])
      end
    else
      # display the destroy form if it's a user request
      return unless api_request?
    end
  end
  @issues.each(&:destroy)
  respond_to do |format|
    format.html { redirect_back_or_default(:action => 'index', :project_id => @project) }
    format.api  { head :ok }
  end
end

#editObject



156
157
158
159
160
161
162
163
164
165
# File 'app/controllers/issues_controller.rb', line 156

def edit
  update_issue_from_params

  @journal = @issue.current_journal

  respond_to do |format|
    format.html { }
    format.xml  { }
  end
end

#indexObject



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'app/controllers/issues_controller.rb', line 64

def index
  retrieve_query
  sort_init(@query.sort_criteria.empty? ? [['id', 'desc']] : @query.sort_criteria)
  sort_update(@query.sortable_columns)
  
  if @query.valid?
    case params[:format]
    when 'csv', 'pdf'
      @limit = Setting.issues_export_limit.to_i
    when 'atom'
      @limit = Setting.feeds_limit.to_i
    when 'xml', 'json'
      @offset, @limit = api_offset_and_limit
    else
      @limit = per_page_option
    end
    
    @issue_count = @query.issue_count
    @issue_pages = Paginator.new self, @issue_count, @limit, params['page']
    @offset ||= @issue_pages.current.offset
    @issues = @query.issues(:include => [:assigned_to, :tracker, :priority, :category, :fixed_version],
                            :order => sort_clause, 
                            :offset => @offset, 
                            :limit => @limit)
    @issue_count_by_group = @query.issue_count_by_group
    
    respond_to do |format|
      format.html { render :template => 'issues/index.rhtml', :layout => !request.xhr? }
      format.api
      format.atom { render_feed(@issues, :title => "#{@project || Setting.app_title}: #{l(:label_issue_plural)}") }
      format.csv  { send_data(issues_to_csv(@issues, @project), :type => 'text/csv; header=present', :filename => 'export.csv') }
      format.pdf  { send_data(issues_to_pdf(@issues, @project, @query), :type => 'application/pdf', :filename => 'export.pdf') }
    end
  else
    # Send html if the query is not valid
    render(:template => 'issues/index.rhtml', :layout => !request.xhr?)
  end
rescue ActiveRecord::RecordNotFound
  render_404
end

#newObject

Add a new issue The new issue will be created from an existing one if copy_from parameter is given



126
127
128
129
130
131
# File 'app/controllers/issues_controller.rb', line 126

def new
  respond_to do |format|
    format.html { render :action => 'new', :layout => !request.xhr? }
    format.js { render :partial => 'attributes' }
  end
end

#showObject



105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'app/controllers/issues_controller.rb', line 105

def show
  @journals = @issue.journals.find(:all, :include => [:user, :details], :order => "#{Journal.table_name}.created_on ASC")
  @journals.each_with_index {|j,i| j.indice = i+1}
  @journals.reverse! if User.current.wants_comments_in_reverse_order?
  @changesets = @issue.changesets.visible.all
  @changesets.reverse! if User.current.wants_comments_in_reverse_order?
  @relations = @issue.relations.select {|r| r.other_issue(@issue) && r.other_issue(@issue).visible? }
  @allowed_statuses = @issue.new_statuses_allowed_to(User.current)
  @edit_allowed = User.current.allowed_to?(:edit_issues, @project)
  @priorities = IssuePriority.all
  @time_entry = TimeEntry.new
  respond_to do |format|
    format.html { render :template => 'issues/show.rhtml' }
    format.api
    format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' }
    format.pdf  { send_data(issue_to_pdf(@issue), :type => 'application/pdf', :filename => "#{@project.identifier}-#{@issue.id}.pdf") }
  end
end

#updateObject



167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'app/controllers/issues_controller.rb', line 167

def update
  update_issue_from_params

  if @issue.save_issue_with_child_records(params, @time_entry)
    render_attachment_warning_if_needed(@issue)
    flash[:notice] = l(:notice_successful_update) unless @issue.current_journal.new_record?

    respond_to do |format|
      format.html { redirect_back_or_default({:action => 'show', :id => @issue}) }
      format.api  { head :ok }
    end
  else
    render_attachment_warning_if_needed(@issue)
    flash[:notice] = l(:notice_successful_update) unless @issue.current_journal.new_record?
    @journal = @issue.current_journal

    respond_to do |format|
      format.html { render :action => 'edit' }
      format.api  { render_validation_errors(@issue) }
    end
  end
end