mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 11:48:06 +01:00
Add reject blurhash to Admin setting
This commit is contained in:
parent
833b6e40b8
commit
d518f06eae
7 changed files with 20 additions and 0 deletions
|
@ -14,6 +14,8 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
|||
else
|
||||
create_status
|
||||
end
|
||||
rescue Mastodon::RejectPayload
|
||||
reject_payload!
|
||||
end
|
||||
|
||||
private
|
||||
|
@ -83,6 +85,9 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
|||
@params = {}
|
||||
|
||||
process_status_params
|
||||
|
||||
raise Mastodon::RejectPayload if MediaAttachment.where(id: @params[:media_attachment_ids]).where(blurhash: Setting.reject_blurhash.split(/\r\n/).filter(&:present?).uniq).present?
|
||||
|
||||
process_tags
|
||||
process_audience
|
||||
|
||||
|
|
|
@ -46,6 +46,7 @@ class Form::AdminSettings
|
|||
captcha_enabled
|
||||
authorized_fetch
|
||||
reject_pattern
|
||||
reject_blurhash
|
||||
).freeze
|
||||
|
||||
INTEGER_KEYS = %i(
|
||||
|
|
|
@ -15,5 +15,8 @@
|
|||
.fields-group
|
||||
= f.input :reject_pattern, wrapper: :with_block_label, as: :text, label: t('admin.settings.reject_pattern.title'), hint: t('admin.settings.reject_pattern.desc_html'), input_html: { rows: 8 }
|
||||
|
||||
.fields-group
|
||||
= f.input :reject_blurhash, wrapper: :with_block_label, as: :text, label: t('admin.settings.reject_blurhash.title'), hint: t('admin.settings.reject_blurhash.desc_html'), input_html: { rows: 8 }
|
||||
|
||||
.actions
|
||||
= f.button :button, t('generic.save_changes'), type: :submit
|
||||
|
|
|
@ -778,6 +778,9 @@ en:
|
|||
approved: Approval required for sign up
|
||||
none: Nobody can sign up
|
||||
open: Anyone can sign up
|
||||
reject_blurhash:
|
||||
desc_html: Set a blurhashes to inspect Create Activity media attachments, and refuse Activity if you match
|
||||
title: Reject blurhash
|
||||
reject_pattern:
|
||||
desc_html: Set a regular expression pattern to inspect Create Activity content, and refuse Activity if you match
|
||||
title: Reject Pattern
|
||||
|
|
|
@ -760,6 +760,12 @@ ja:
|
|||
approved: 登録には承認が必要
|
||||
none: 誰にも許可しない
|
||||
open: 誰でも登録可
|
||||
reject_blurhash:
|
||||
desc_html: Create Activityの添付画像を検査するblurhashを設定し、一致する場合はActivityを拒否します
|
||||
title: 拒否画像ハッシュ
|
||||
reject_pattern:
|
||||
desc_html: Create Activityのcontentを検査する正規表現パターンを設定し、一致する場合はActivityを拒否します
|
||||
title: 拒否パターン
|
||||
security:
|
||||
authorized_fetch: 連合サーバーによる署名なしでの情報取得を拒否する
|
||||
authorized_fetch_hint: ほかの連合サーバーから受け付けるリクエストに署名を必須にすることで、ユーザーによるブロックおよびドメインブロック両方の効果をより強力にします。ただし連合の処理コストが増えてパフォーマンス面で不利になるほか、このサーバーから送られた反応が届く範囲が狭まったり、連合における互換性の問題を招く可能性もあります。また、この機能は公開投稿やプロフィールへのアクセスをブロックした相手から完全に遮断できるものではありません。
|
||||
|
|
|
@ -47,6 +47,7 @@ defaults: &defaults
|
|||
backups_retention_period: 7
|
||||
captcha_enabled: false
|
||||
reject_pattern: ''
|
||||
reject_blurhash: ''
|
||||
|
||||
development:
|
||||
<<: *defaults
|
||||
|
|
|
@ -8,6 +8,7 @@ module Mastodon
|
|||
class LengthValidationError < ValidationError; end
|
||||
class DimensionsValidationError < ValidationError; end
|
||||
class StreamValidationError < ValidationError; end
|
||||
class RejectPayload < ValidationError; end
|
||||
class RaceConditionError < Error; end
|
||||
class RateLimitExceededError < Error; end
|
||||
class SyntaxError < Error; end
|
||||
|
|
Loading…
Reference in a new issue