mirror of
https://github.com/mastodon/mastodon.git
synced 2026-05-21 23:59:19 -05:00
Some checks failed
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Crowdin / Upload translations / upload-translations (push) Waiting to run
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Haml Linting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
Historical data migration test / test (16-alpine) (push) Has been cancelled
Historical data migration test / test (17-alpine) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Has been cancelled
70 lines
1.8 KiB
Ruby
70 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class CollectionsController < BaseController
|
|
before_action :set_account
|
|
before_action :set_collection, only: :show
|
|
before_action :set_collections, except: :show
|
|
|
|
PER_PAGE = 20
|
|
|
|
def index
|
|
authorize [:admin, :collection], :index?
|
|
@collection_batch_action = Admin::CollectionBatchAction.new
|
|
end
|
|
|
|
def show
|
|
authorize @collection, :show?
|
|
end
|
|
|
|
def batch
|
|
authorize [:admin, :collection], :index?
|
|
|
|
@collection_batch_action = Admin::CollectionBatchAction.new(admin_collection_batch_action_params.merge(current_account: current_account, report_id: params[:report_id], type: action_from_button))
|
|
|
|
@collection_batch_action.save!
|
|
rescue ActionController::ParameterMissing
|
|
flash[:alert] = I18n.t('admin.collections.no_collection_selected')
|
|
ensure
|
|
redirect_to after_create_redirect_path
|
|
end
|
|
|
|
private
|
|
|
|
def after_create_redirect_path
|
|
report_id = @collections_batch_action&.report_id || params[:report_id]
|
|
|
|
if report_id.present?
|
|
admin_report_path(report_id)
|
|
else
|
|
admin_account_collections_path(params[:account_id], params[:page])
|
|
end
|
|
end
|
|
|
|
def admin_collection_batch_action_params
|
|
params
|
|
.expect(admin_collection_batch_action: [collection_ids: []])
|
|
end
|
|
|
|
def set_account
|
|
@account = Account.find(params[:account_id])
|
|
end
|
|
|
|
def set_collection
|
|
@collection = @account.collections.includes(accepted_collection_items: :account).find(params[:id])
|
|
end
|
|
|
|
def set_collections
|
|
@collections = @account.collections.includes(accepted_collection_items: :account).page(params[:page]).per(PER_PAGE)
|
|
end
|
|
|
|
def action_from_button
|
|
if params[:report]
|
|
'report'
|
|
elsif params[:remove_from_report]
|
|
'remove_from_report'
|
|
end
|
|
end
|
|
end
|
|
end
|