Commit Graph

828 Commits (4906cabc6b8d91136973ad159f6a02209ea8e166)

Author SHA1 Message Date
Eugen Rochko 4906cabc6b
Add aac, m4a, 3gp to allowed audio formats ()
Fix 
ThibG 7e2b6da57f Add setting to disable the anti-spam ()
* Add environment variable to disable the anti-spam

* Move antispam setting to admin settings

* Fix typo

* antispam → spam_check
ThibG 91544a6cb5 Remove unused Account#magic_key ()
Eugen Rochko 9b1d3e4acb
Add option to disable real-time updates in web UI ()
Fix 
Fix 
Eugen Rochko 6ff67be0f6
Add a spam check ()
* Add a spam check

* Use Nilsimsa to generate locality-sensitive hashes and compare using Levenshtein distance

* Add more tests

* Add exemption when the message is a reply to something that mentions the sender

* Use Nilsimsa Compare Value instead of Levenshtein distance

* Use MD5 for messages shorter than 10 characters

* Add message to automated report, do not add non-public statuses to
automated report, add trust level to accounts and make unsilencing
raise the trust level to prevent repeated spam checks on that account

* Expire spam check data after 3 months

* Add support for local statuses, reduce expiration to 1 week, always create a report

* Add content warnings to the spam check and exempt empty statuses

* Change Nilsimsa threshold to 95 and make sure removed statuses are removed from the spam check

* Add all matched statuses into automatic report
ThibG 1e7187f2a8 Fix Status.remote scope matching *all* statuses ()
Eugen Rochko 63c7fe8e48
Refactor controllers for statuses, accounts, and more ()
Eugen Rochko b851456139
Remove Atom feeds and old URLs in the form of `GET /:username/updates/:id` ()
Eugen Rochko 23aeef52cc
Remove Salmon and PubSubHubbub ()
* Remove Salmon and PubSubHubbub endpoints

* Add error when trying to follow OStatus accounts

* Fix new accounts not being created in ResolveAccountService
Eugen Rochko ae003d54f9
Fix option to send e-mail notification about account action always being true ()
Eugen Rochko 3fd6ab99e6
Remove deprecated REST API `GET /api/v1/timelines/direct` ()
ThibG 082b3b282f Fix expiration date of filters being set to “Never” when editing them ()
When editing a custom filter, select the shortest preset duration that
still covers the remaining time of that filter.

Fixes 
Eugen Rochko 06424786a1
Fix support for MP4 files that are actually M4V files ()
Resolve 
Eugen Rochko e64e6a03dd
Add categories for custom emojis ()
Fix 
ThibG 3086c645fd Add option to disable blurhash previews ()
* Add option to disable blurhash previews

* Update option text

* Change options order
Eugen Rochko b927bb3f07
Fix audio-only OGG and WebM files not being processed as such ()
Also, because Chrome sends audio/mp3 instead of audio/mpeg as it's
supposed to, we need to whitelist that mime type as well
Eugen Rochko aa9b37822b
Fix audio not being downloaded from remote servers ()
Eugen Rochko 1b052c7b2d
Remove expensive counters from federation page in admin UI ()
Eugen Rochko 707ddf7808
Change domain blocks to automatically support subdomains ()
* Change domain blocks to automatically support subdomains

If a more authoritative domain is blocked (example.com), then the
same block will be applied to a subdomain (foo.example.com)

* Match subdomains of existing accounts when blocking/unblocking domains

* Improve code style
Eugen Rochko 49ebda4d49
Change audio format from ogg to mp3 for wider compatibility ()
* Change audio format from ogg to mp3 for wider compatibility

* Add media description as title to links of unknown media attachments
Eugen Rochko 8f23726918
Fix converted media being saved with original extension and mime type ()
Eugen Rochko 7696f77245
Add moderation API ()
Fix 
Fix 
Eugen Rochko f7f23b4a19
Add audio uploads ()
* Add audio uploads

Fix 

Accept uploads of OGG, WAV, FLAC, OPUS and MP3 files, and converts
them to OGG. Media attachments get a new `audio` type. In the UI,
audio uploads are displayed identically to video uploads.

* Improve code style
ThibG 17747e2cd7 Fix User#active scope only returning suspended users ()
Fix a regression from 
Eugen Rochko 6a9a759f40
Change reblogs counter to be updated when boosted privately ()
Eugen Rochko f2b743e715
Refactor all ActivityPub deliveries to be serialized and signed through one concern ()
Eugen Rochko 1e5532e693
Add responsive panels to the single-column layout ()
* Add responsive panels to the single-column layout

* Fixes

* Fix not being able to save the preference

* Fix code style issues

* Set max-height on the compose textarea and add a link to relationship manager
Paul Woolcock 0c933c1b8c Add `account_id` param to `GET /api/v1/notifications` ()
* Add `from_account` to notifications API

this adds the ability to filter notifications by the account they
originated from

* passing a non-existent user should cause none to be returned

* Fix codeclimate warnings

* fix more codeclimate warnings

* make requested changes:

* use account id instead of user@domain
* name the param `account_id` instead of `from_account`

* Don't use `return` in a lambda
trwnh a6caf919e2 Change bio limit from 160 to 500 ()
* Change note_length validator from 160 to 500

* Change input maxlength from 160 to 500

* update bio test from 160 to 500

* Multiply a string 30 times instead of 10
ThibG ae18386558 Fix “invited by” not showing up for invited accounts in admin interface ()
ThibG 14f6ce2885 Record account suspend/silence time and keep track of domain blocks ()
* Record account suspend/silence time and keep track of domain blocks

* Also unblock users who were suspended/silenced before dates were recorded

* Add tests

* Keep track of suspending date for users suspended through the CLI

* Show accurate number of accounts that would be affected by unsuspending an instance

* Change migration to set silenced_at and suspended_at

* Revert "Also unblock users who were suspended/silenced before dates were recorded"

This reverts commit a015c65d2d.

* Switch from using suspended and silenced to suspended_at and silenced_at

* Add post-deployment migration script to remove `suspended` and `silenced` columns

* Use Account#silence! and Account#suspend! instead of updating the underlying property

* Add silenced_at and suspended_at migration to post-migration

* Change account fabricator to translate suspended and silenced attributes

* Minor fixes

* Make unblocking domains always retroactive
Jeong Arm ce8635605c Record deleted(by mod) status to prevent re-appear ()
* Record deleted(by mod) status to prevent re-appear

* Move to Tombstone

* Add missing migration script
Eugen Rochko 7cb369d4c6
Change e-mail whitelist/blacklist to not be checked when invited ()
* Change e-mail whitelist/blacklist to not be checked when invited

And only when creating an account, not when updating it later

Fix 

* Fix test
ThibG 011b032300 Provide a link to existing domain block when trying to block an already-blocked domain ()
* When trying to block an already-blocked domain, provide a link to the block

* Fix styling for links in flash messages

* Allow blocks to be upgraded but not downgraded
ThibG 21a73c52a7 Check that an invite link is valid before bypassing approval mode ()
* Check that an invite link is valid before bypassing approval mode

Fixes 

* Add tests

* Only consider valid invite links in registration controller

* fixup
Eugen Rochko e18786dec7
Fix approved column being set to nil instead of false ()
Fix https://github.com/tootsuite/mastodon/pull/10621#issuecomment-487316619
Eugen Rochko fba96c808d
Add blurhash ()
* Add blurhash

* Use fallback color for spoiler when blurhash missing

* Federate the blurhash and accept it as long as it's at most 5x5

* Display unknown media attachments as blurhash placeholders

* Improve style of embed actions and spoiler button

* Change blurhash resolution from 3x3 to 4x4

* Improve dependency definitions

* Fix code style issues
Eugen Rochko e451ba0e83
Fix LDAP/PAM/SAML/CAS users not being approved instantly ()
Eugen Rochko a9f130b8d8
Fix Keybase verification using wrong domain for remote accounts ()
Alex Gessner d431c810d3 increase allowable length of remote proof username ()
Eugen Rochko 400397c0c7
Change HTML validator to ignore all errors except unmatched tags ()
Eugen Rochko 36b39fbac5
Add preference to disable e-mails about new pending accounts ()
Eugen Rochko 8b69a66380 Add "why do you want to join" field to invite requests ()
* Add "why do you want to join" field to invite requests

Fix 

* Remove unused translations

* Fix broken registrations when no invite request text is submitted
ThibG cb71c95e22 Export and import show_reblogs together with following list ()
* Refactor imports

* Export show_reblogs when exporting list of followed users

* Add support for importing show_reblogs with following collection

* Fix tests
Eugen Rochko 67b3b62b98
Improve blocked view of profiles ()
* Revert "Fix filtering of favourited_by, reblogged_by, followers and following ()"

This reverts commit 120544067f.

* Revert "Hide blocking accounts from blocked users ()"

This reverts commit 62bafa20a1.

* Improve blocked view of profiles

- Change "You are blocked" to "Profile unavailable"
- Hide following/followers in API when blocked
- Disable follow button and show "Profile unavailable" on public profile as well
Eugen Rochko e1d0390e29
Add batch actions for approving and rejecting pending accounts ()
Eugen Rochko 2c63e0292a
Fix admin validation being too strict about usernames ()
* Fix admin validation being too strict about usernames

Fix 

* Strip Setting.site_contact_username consistently throughout the codebase
ThibG d4882aa64a Export and import `hide_notifications` alongside user mutes ()
* Export hide_notifications along with user mutes

* Import hide_notifications along with muted users list

* Add headers for CSV exports
ThibG 120544067f Fix filtering of favourited_by, reblogged_by, followers and following ()
ThibG 62bafa20a1 Hide blocking accounts from blocked users ()
* Revert "Add indication that you have been blocked in web UI ()"

This reverts commit bd02ec6daa.

* Revert "Add `blocked_by` relationship to the REST API ()"

This reverts commit 9745de883b.

* Hide blocking accounts from search results

* Filter blocking accouts from account followers

* Filter blocking accouts from account's following accounts

* Filter blocking accounts from “reblogged by” and “favourited by” lists

* Remove blocking account from URL search

* Return 410 on trying to fetch user data from a user who blocked us

* Return 410 in /api/v1/account/statuses for suspended or blocking accounts

* Fix status filtering when performing URL search

* Restore some React improvements

Restore some cleanup from bd02ec6daa

* Refactor by adding `without_blocking` scope