Class: FilesController

Inherits:
ApplicationController show all
Includes:
SortHelper
Defined in:
app/controllers/files_controller.rb

Instance Method Summary collapse

Methods included from SortHelper

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

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, #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

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

Instance Method Details

#createObject



26
27
28
29
30
31
32
33
34
35
# File 'app/controllers/files_controller.rb', line 26

def create
  container = (params[:version_id].blank? ? @project : @project.versions.find_by_id(params[:version_id]))
  attachments = Attachment.attach_files(container, params[:attachments])
  render_attachment_warning_if_needed(container)

  if !attachments.empty? && !attachments[:files].blank? && Setting.notified_events.include?('file_added')
    Mailer.deliver_attachments_added(attachments[:files])
  end
  redirect_to project_files_path(@project)
end

#indexObject



10
11
12
13
14
15
16
17
18
19
20
# File 'app/controllers/files_controller.rb', line 10

def index
  sort_init 'filename', 'asc'
  sort_update 'filename' => "#{Attachment.table_name}.filename",
              'created_on' => "#{Attachment.table_name}.created_on",
              'size' => "#{Attachment.table_name}.filesize",
              'downloads' => "#{Attachment.table_name}.downloads"
              
  @containers = [ Project.find(@project.id, :include => :attachments, :order => sort_clause)]
  @containers += @project.versions.find(:all, :include => :attachments, :order => sort_clause).sort.reverse
  render :layout => !request.xhr?
end

#newObject



22
23
24
# File 'app/controllers/files_controller.rb', line 22

def new
  @versions = @project.versions.sort
end