summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/workhorse_import_export_upload.rb
blob: 3c52f4d7adff09d3e4ff08a9e5483d3331619cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module WorkhorseImportExportUpload
  extend ActiveSupport::Concern
  include WorkhorseRequest

  included do
    skip_before_action :verify_authenticity_token, only: %i[authorize]
    before_action :verify_workhorse_api!, only: %i[authorize]
  end

  def authorize
    set_workhorse_internal_api_content_type

    authorized = ImportExportUploader.workhorse_authorize(
      has_length: false,
      maximum_size: Gitlab::CurrentSettings.max_import_size.megabytes
    )

    render json: authorized
  rescue SocketError
    render json: _("Error uploading file"), status: :internal_server_error
  end

  private

  def file_is_valid?(file)
    return false unless file.is_a?(::UploadedFile)

    ImportExportUploader::EXTENSION_WHITELIST
      .include?(File.extname(file.original_filename).delete('.'))
  end
end