2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
class Groups::UploadsController < Groups::ApplicationController
|
|
|
|
include UploadsActions
|
2018-11-08 19:23:39 +05:30
|
|
|
include WorkhorseRequest
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
skip_before_action :group, if: -> { action_name == 'show' && image_or_video? }
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
before_action :authorize_upload_file!, only: [:create, :authorize]
|
|
|
|
before_action :verify_workhorse_api!, only: [:authorize]
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def upload_model_class
|
|
|
|
Group
|
|
|
|
end
|
|
|
|
|
|
|
|
def uploader_class
|
|
|
|
NamespaceFileUploader
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_model
|
|
|
|
return @group if @group
|
|
|
|
|
|
|
|
group_id = params[:group_id]
|
|
|
|
|
|
|
|
Group.find_by_full_path(group_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_upload_file!
|
|
|
|
render_404 unless can?(current_user, :upload_file, group)
|
|
|
|
end
|
|
|
|
end
|