app
controllers
activitypub
admin
api
v1
accounts
apps
lists
statuses
timelines
accounts_controller.rb
apps_controller.rb
blocks_controller.rb
custom_emojis_controller.rb
domain_blocks_controller.rb
favourites_controller.rb
follow_requests_controller.rb
follows_controller.rb
instances_controller.rb
lists_controller.rb
media_controller.rb
mutes_controller.rb
notifications_controller.rb
reports_controller.rb
search_controller.rb
statuses_controller.rb
streaming_controller.rb
web
base_controller.rb
oembed_controller.rb
push_controller.rb
salmon_controller.rb
subscriptions_controller.rb
auth
concerns
oauth
settings
well_known
about_controller.rb
account_follow_controller.rb
account_unfollow_controller.rb
accounts_controller.rb
application_controller.rb
authorize_follows_controller.rb
emojis_controller.rb
follower_accounts_controller.rb
following_accounts_controller.rb
home_controller.rb
intents_controller.rb
invites_controller.rb
manifests_controller.rb
media_controller.rb
media_proxy_controller.rb
remote_follow_controller.rb
shares_controller.rb
statuses_controller.rb
stream_entries_controller.rb
tags_controller.rb
helpers
javascript
lib
mailers
models
policies
presenters
serializers
services
validators
views
workers
bin
config
db
docs
lib
log
nanobox
public
spec
streaming
vendor
.babelrc
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.yml
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.postcssrc.yml
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.travis.yml
.yarnclean
Aptfile
CODEOWNERS
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
ISSUE_TEMPLATE.md
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
boxfile.yml
config.ru
docker-compose.yml
docker_entrypoint.sh
jest.config.js
package.json
scalingo.json
yarn.lock
* Move ApiController to Api/BaseController * API controllers inherit from Api::BaseController * Add coverage for various error cases in api/base controller
77 lines
1.5 KiB
Ruby
77 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::DomainBlocksController < Api::BaseController
|
|
BLOCK_LIMIT = 100
|
|
|
|
before_action -> { doorkeeper_authorize! :follow }
|
|
before_action :require_user!
|
|
after_action :insert_pagination_headers, only: :show
|
|
|
|
respond_to :json
|
|
|
|
def show
|
|
@blocks = load_domain_blocks
|
|
render json: @blocks.map(&:domain)
|
|
end
|
|
|
|
def create
|
|
BlockDomainFromAccountService.new.call(current_account, domain_block_params[:domain])
|
|
render_empty
|
|
end
|
|
|
|
def destroy
|
|
current_account.unblock_domain!(domain_block_params[:domain])
|
|
render_empty
|
|
end
|
|
|
|
private
|
|
|
|
def load_domain_blocks
|
|
account_domain_blocks.paginate_by_max_id(
|
|
limit_param(BLOCK_LIMIT),
|
|
params[:max_id],
|
|
params[:since_id]
|
|
)
|
|
end
|
|
|
|
def account_domain_blocks
|
|
current_account.domain_blocks
|
|
end
|
|
|
|
def insert_pagination_headers
|
|
set_pagination_headers(next_path, prev_path)
|
|
end
|
|
|
|
def next_path
|
|
if records_continue?
|
|
api_v1_domain_blocks_url pagination_params(max_id: pagination_max_id)
|
|
end
|
|
end
|
|
|
|
def prev_path
|
|
unless @blocks.empty?
|
|
api_v1_domain_blocks_url pagination_params(since_id: pagination_since_id)
|
|
end
|
|
end
|
|
|
|
def pagination_max_id
|
|
@blocks.last.id
|
|
end
|
|
|
|
def pagination_since_id
|
|
@blocks.first.id
|
|
end
|
|
|
|
def records_continue?
|
|
@blocks.size == limit_param(BLOCK_LIMIT)
|
|
end
|
|
|
|
def pagination_params(core_params)
|
|
params.permit(:limit).merge(core_params)
|
|
end
|
|
|
|
def domain_block_params
|
|
params.permit(:domain)
|
|
end
|
|
end
|