mirror of
https://github.com/mastodon/mastodon.git
synced 2026-07-03 22:40:53 -05:00
Some checks failed
Bundler Audit / security (push) Waiting to run
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
Check formatting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (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
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Crowdin / Upload translations / upload-translations (push) Has been cancelled
66 lines
1.6 KiB
Ruby
66 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class IpBlocksController < BaseController
|
|
def index
|
|
authorize :ip_block, :index?
|
|
|
|
@ip_blocks = filter_by_ip(IpBlock.order(ip: :asc).page(params[:page]))
|
|
@form = Form::IpBlockBatch.new
|
|
end
|
|
|
|
def new
|
|
authorize :ip_block, :create?
|
|
|
|
@ip_block = IpBlock.new(ip: '', severity: :no_access, expires_in: 1.year)
|
|
end
|
|
|
|
def create
|
|
authorize :ip_block, :create?
|
|
|
|
@ip_block = IpBlock.new(resource_params)
|
|
|
|
if @ip_block.save
|
|
log_action :create, @ip_block
|
|
redirect_to admin_ip_blocks_path, notice: I18n.t('admin.ip_blocks.created_msg')
|
|
else
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def batch
|
|
authorize :ip_block, :index?
|
|
|
|
@form = Form::IpBlockBatch.new(form_ip_block_batch_params.merge(current_account: current_account, action: action_from_button))
|
|
@form.save
|
|
rescue ActionController::ParameterMissing
|
|
flash[:alert] = I18n.t('admin.ip_blocks.no_ip_block_selected')
|
|
rescue Mastodon::NotPermittedError
|
|
flash[:alert] = I18n.t('admin.custom_emojis.not_permitted')
|
|
ensure
|
|
redirect_to admin_ip_blocks_path
|
|
end
|
|
|
|
private
|
|
|
|
def filter_by_ip(scope)
|
|
scope.merge!(IpBlock.overlapping_with(params[:ip])) if params[:ip].present?
|
|
scope
|
|
end
|
|
|
|
def resource_params
|
|
params
|
|
.expect(ip_block: [:ip, :severity, :comment, :expires_in])
|
|
end
|
|
|
|
def action_from_button
|
|
'delete' if params[:delete]
|
|
end
|
|
|
|
def form_ip_block_batch_params
|
|
params
|
|
.expect(form_ip_block_batch: [ip_block_ids: []])
|
|
end
|
|
end
|
|
end
|