2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
source 'https://rubygems.org'
|
2023-04-27 00:46:18 +01:00
|
|
|
ruby '>= 3.0.0'
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2022-12-02 14:31:29 +00:00
|
|
|
gem 'pkg-config', '~> 1.5'
|
2017-04-14 10:15:03 +01:00
|
|
|
|
2023-04-05 12:57:21 +01:00
|
|
|
gem 'puma', '~> 6.2'
|
2022-09-11 15:12:25 +01:00
|
|
|
gem 'rails', '~> 6.1.7'
|
2020-01-04 21:48:34 +00:00
|
|
|
gem 'sprockets', '~> 3.7.2'
|
2022-01-19 02:07:37 +00:00
|
|
|
gem 'thor', '~> 1.2'
|
2023-04-26 16:45:49 +01:00
|
|
|
gem 'rack', '~> 2.2.7'
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2023-02-13 03:59:30 +00:00
|
|
|
gem 'haml-rails', '~>2.0'
|
2023-04-26 16:46:01 +01:00
|
|
|
gem 'pg', '~> 1.5'
|
2021-01-23 14:25:08 +00:00
|
|
|
gem 'makara', '~> 0.5'
|
2023-01-22 22:09:02 +00:00
|
|
|
gem 'pghero'
|
2022-07-29 17:39:38 +01:00
|
|
|
gem 'dotenv-rails', '~> 2.8'
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2023-04-05 12:26:33 +01:00
|
|
|
gem 'aws-sdk-s3', '~> 1.120', require: false
|
2022-12-20 10:08:22 +00:00
|
|
|
gem 'fog-core', '<= 2.4.0'
|
2018-10-22 15:58:36 +01:00
|
|
|
gem 'fog-openstack', '~> 0.3', require: false
|
2023-02-15 07:30:27 +00:00
|
|
|
gem 'kt-paperclip', '~> 7.1', github: 'kreeti/kt-paperclip', ref: '11abf222dc31bff71160a1d138b445214f434b2b'
|
2019-04-27 02:24:09 +01:00
|
|
|
gem 'blurhash', '~> 0.1'
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2017-07-07 03:02:06 +01:00
|
|
|
gem 'active_model_serializers', '~> 0.10'
|
2021-07-08 06:35:20 +01:00
|
|
|
gem 'addressable', '~> 2.8'
|
2023-02-04 06:55:07 +00:00
|
|
|
gem 'bootsnap', '~> 1.16.0', require: false
|
2017-06-25 15:54:30 +01:00
|
|
|
gem 'browser'
|
2019-11-27 02:53:50 +00:00
|
|
|
gem 'charlock_holmes', '~> 0.7.7'
|
2023-04-12 12:47:38 +01:00
|
|
|
gem 'chewy', '~> 7.3'
|
2023-02-21 09:41:28 +00:00
|
|
|
gem 'devise', '~> 4.9'
|
2023-04-24 18:08:21 +01:00
|
|
|
# The below `v4.x` branch allows attr_encrypted 4.x, which is required for Rails 7.
|
|
|
|
# Once a new gem version is pushed, we can go back to released gem and off of github branch.
|
|
|
|
gem 'devise-two-factor', github: 'tinfoil/devise-two-factor', branch: 'v4.x'
|
|
|
|
gem 'attr_encrypted', '~> 4.0'
|
2018-02-02 09:18:55 +00:00
|
|
|
|
2018-03-19 19:08:56 +00:00
|
|
|
group :pam_authentication, optional: true do
|
2018-09-14 16:42:45 +01:00
|
|
|
gem 'devise_pam_authenticatable2', '~> 9.2'
|
2018-03-19 19:08:56 +00:00
|
|
|
end
|
2018-04-07 20:36:58 +01:00
|
|
|
|
2023-04-11 11:53:13 +01:00
|
|
|
gem 'net-ldap', '~> 0.18'
|
2020-11-19 16:43:58 +00:00
|
|
|
gem 'omniauth-cas', '~> 2.0'
|
2018-03-07 01:25:17 +00:00
|
|
|
gem 'omniauth-saml', '~> 1.10'
|
2023-03-08 10:44:23 +00:00
|
|
|
gem 'omniauth_openid_connect', '~> 0.6.1'
|
2018-12-17 09:15:14 +00:00
|
|
|
gem 'omniauth', '~> 1.9'
|
2020-11-28 04:17:53 +00:00
|
|
|
gem 'omniauth-rails_csrf_protection', '~> 0.1'
|
2018-02-02 09:18:55 +00:00
|
|
|
|
2020-07-05 17:28:25 +01:00
|
|
|
gem 'color_diff', '~> 0.1'
|
2020-03-25 21:48:52 +00:00
|
|
|
gem 'discard', '~> 1.2'
|
2022-09-11 14:23:56 +01:00
|
|
|
gem 'doorkeeper', '~> 5.6'
|
2022-01-19 02:04:11 +00:00
|
|
|
gem 'ed25519', '~> 1.3'
|
2017-05-11 10:27:01 +01:00
|
|
|
gem 'fast_blank', '~> 1.0'
|
2018-02-21 02:40:12 +00:00
|
|
|
gem 'fastimage'
|
2017-05-11 10:27:01 +01:00
|
|
|
gem 'hiredis', '~> 0.6'
|
2022-12-27 00:52:15 +00:00
|
|
|
gem 'redis-namespace', '~> 1.10'
|
2017-05-11 10:27:01 +01:00
|
|
|
gem 'htmlentities', '~> 4.3'
|
2022-06-27 12:54:46 +01:00
|
|
|
gem 'http', '~> 5.1'
|
2017-05-11 10:27:01 +01:00
|
|
|
gem 'http_accept_language', '~> 2.1'
|
2022-11-22 14:08:20 +00:00
|
|
|
gem 'httplog', '~> 1.6.2'
|
2017-07-15 16:24:35 +01:00
|
|
|
gem 'idn-ruby', require: 'idn'
|
2020-05-04 12:53:42 +01:00
|
|
|
gem 'kaminari', '~> 1.2'
|
2017-05-11 10:27:01 +01:00
|
|
|
gem 'link_header', '~> 0.0'
|
2021-11-18 00:44:08 +00:00
|
|
|
gem 'mime-types', '~> 3.4.1', require: 'mime/types/columnar'
|
2023-01-18 09:54:19 +00:00
|
|
|
gem 'nokogiri', '~> 1.14'
|
2021-04-13 02:45:45 +01:00
|
|
|
gem 'nsa', '~> 0.2'
|
2023-02-18 05:21:10 +00:00
|
|
|
gem 'oj', '~> 3.14'
|
2020-12-29 15:08:06 +00:00
|
|
|
gem 'ox', '~> 2.14'
|
2019-07-27 03:42:08 +01:00
|
|
|
gem 'parslet'
|
2020-07-28 16:59:29 +01:00
|
|
|
gem 'posix-spawn'
|
2022-12-06 23:15:24 +00:00
|
|
|
gem 'public_suffix', '~> 5.0'
|
2022-12-20 10:08:53 +00:00
|
|
|
gem 'pundit', '~> 2.3'
|
2018-01-16 02:29:11 +00:00
|
|
|
gem 'premailer-rails'
|
2022-03-12 08:23:53 +00:00
|
|
|
gem 'rack-attack', '~> 6.6'
|
2023-03-21 01:42:34 +00:00
|
|
|
gem 'rack-cors', '~> 2.0', require: 'rack/cors'
|
2021-03-24 09:44:31 +00:00
|
|
|
gem 'rails-i18n', '~> 6.0'
|
2023-02-15 07:30:27 +00:00
|
|
|
gem 'rails-settings-cached', '~> 0.6', git: 'https://github.com/mastodon/rails-settings-cached.git', branch: 'v0.6.6-aliases-true'
|
2023-02-01 10:19:30 +00:00
|
|
|
gem 'redcarpet', '~> 3.6'
|
2021-10-20 01:49:36 +01:00
|
|
|
gem 'redis', '~> 4.5', require: ['redis', 'redis/connection/hiredis']
|
2017-07-19 13:44:04 +01:00
|
|
|
gem 'mario-redis-lock', '~> 1.2', require: 'redis_lock'
|
2021-08-31 12:58:34 +01:00
|
|
|
gem 'rqrcode', '~> 2.1'
|
2023-04-24 18:07:45 +01:00
|
|
|
gem 'ruby-progressbar', '~> 1.13'
|
2021-08-09 19:46:57 +01:00
|
|
|
gem 'sanitize', '~> 6.0'
|
2022-12-20 10:10:09 +00:00
|
|
|
gem 'scenic', '~> 1.7'
|
2022-07-06 01:11:00 +01:00
|
|
|
gem 'sidekiq', '~> 6.5'
|
2023-02-13 12:31:42 +00:00
|
|
|
gem 'sidekiq-scheduler', '~> 5.0'
|
2021-06-30 16:45:49 +01:00
|
|
|
gem 'sidekiq-unique-jobs', '~> 7.1'
|
2022-05-18 22:29:14 +01:00
|
|
|
gem 'sidekiq-bulk', '~> 0.2.0'
|
2022-06-03 04:53:13 +01:00
|
|
|
gem 'simple-navigation', '~> 4.4'
|
2023-02-01 10:07:16 +00:00
|
|
|
gem 'simple_form', '~> 5.2'
|
2021-11-18 00:06:40 +00:00
|
|
|
gem 'sprockets-rails', '~> 3.4', require: 'sprockets/railtie'
|
2022-12-02 14:39:41 +00:00
|
|
|
gem 'stoplight', '~> 3.0.1'
|
2023-03-27 08:11:10 +01:00
|
|
|
gem 'strong_migrations', '~> 0.8'
|
2020-12-29 15:08:23 +00:00
|
|
|
gem 'tty-prompt', '~> 0.23', require: false
|
2021-03-02 11:02:56 +00:00
|
|
|
gem 'twitter-text', '~> 3.1.0'
|
2023-03-29 09:32:51 +01:00
|
|
|
gem 'tzinfo-data', '~> 1.2023'
|
2021-05-27 09:48:18 +01:00
|
|
|
gem 'webpacker', '~> 5.4'
|
2022-11-13 20:00:38 +00:00
|
|
|
gem 'webpush', github: 'ClearlyClaire/webpush', ref: 'f14a4d52e201128b1b00245d11b6de80d6cfdcd9'
|
2023-02-17 09:06:24 +00:00
|
|
|
gem 'webauthn', '~> 3.0'
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2020-01-13 18:01:43 +00:00
|
|
|
gem 'json-ld'
|
2022-01-25 12:23:42 +00:00
|
|
|
gem 'json-ld-preloaded', '~> 3.2'
|
2022-01-27 11:25:18 +00:00
|
|
|
gem 'rdf-normalize', '~> 0.5'
|
2017-08-26 12:47:38 +01:00
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
group :development, :test do
|
2022-07-29 17:27:12 +01:00
|
|
|
gem 'fabrication', '~> 2.30'
|
2019-11-11 13:05:16 +00:00
|
|
|
gem 'fuubar', '~> 2.5'
|
2022-04-08 12:14:50 +01:00
|
|
|
gem 'i18n-tasks', '~> 1.0', require: false
|
2023-03-02 14:55:37 +00:00
|
|
|
gem 'rspec-rails', '~> 6.0'
|
2023-03-07 03:49:43 +00:00
|
|
|
gem 'rspec_chunked', '~> 0.6'
|
2023-03-17 09:13:28 +00:00
|
|
|
|
|
|
|
gem 'rubocop-capybara', require: false
|
linting: RuboCop update, config fixes (#20574)
* fix(rubocop): update gems and add performance and rspec
fix(rubocop): update gems and add performance and rspec
- update present rubocop gems
- add rubocop-rspec and rubocop-performance gems
- move rubocop gems to gem group :development, :test in order to
make linting in a github action that runs with RAILS_ENV=test possible
* feat(rubocop): disable some annoyance RSpec cops
To mee these prooved to be more annoying than helpful.
If not agreed, they can be enabled any time.
* fix(rubocop): do not ignore spec/**/*
Because rubocop-rspec should lint the specs as well, and they
deserve to be readable in general. It is relevant code, after all.
* fix(rubocop): change ignore db/**/* to db/schema.rb
because rails cops do some lints for migrations.
E.g. reversable migrations linting and more.
* fix(rubocop): tune rules configs
Bunch of commits squashed:
fix(rubocop): enable Layout/LineLength cop
Because this project has code with line lenghts > 500 chars.
This is not good practice at all, so I strongly suggest to
change the practice in the future.
But allow heredoc, URI and comments to still be long lines
and make the default Max: 120 explicit, by repeating it in the
config. To me this max length seems reasonable. Perhaps
a bit more could be ok for some. But > 500 chars in one line
Seems to be way too long IMHO.
fix(rubocop): Metrics/CyclomaticComplexity Max to 12
The default is 7, perhaps quite strict. But 25 is too loose,
the rule becomes pointless like that.
fix(rubocop): AllCops ruby version, cacheing and more info
- fix the target ruby version from 2.5 to 3.0
- have the cop error messages to be more informative and helpful
- enable cacheing in /tmp
fix(rubocop): Metrics/AbcSize to 34 from 115
Rubocops default is 17. If the rule is at 115 is becomes
pointless.
fix(rubocop): Metrics/BlockLength improvements
- instead of ignoring tasks completely, ignore only the
long blocks that are specific to tasks (task, namespace)
- ignore also concern specific block methods (included, class_methods)
fix(rubocop): Metrics/ClassLength count heredoc array as one line
fix(rubocop): Metrics/MethodLength Max to 25
- the default is 10, but 65 is too loose, so perhaps 25?
fix(rubocop): Metrics/ModuleLength array and heredoc count as one
fix(rubocop): Metrics/PerceivedComplexity to 16 from 25
Rubocops default is 8, so how about only doubling that, instead
of > than tripple it?
fix(rubocop): enable Style/RedundantAssignment
Because I think that this rule would never really hurt,
but improve code quality and readability.
fix(rubocop): enable Style/RescueStandardError
I think everyone that ever had to debug what this can bring
will hopefully agree that this rule totally makes sense.
In the super rare exeptions where this is totally needed,
it can be excluded by disabling comment in that place.
fix(rubocop): Metrics/ParameterLists add explicit defaults and some excludes
2022-12-15 15:39:59 +00:00
|
|
|
gem 'rubocop-performance', require: false
|
|
|
|
gem 'rubocop-rails', require: false
|
|
|
|
gem 'rubocop-rspec', require: false
|
|
|
|
gem 'rubocop', require: false
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|
|
|
|
|
2018-02-24 18:16:11 +00:00
|
|
|
group :production, :test do
|
2018-09-20 23:42:59 +01:00
|
|
|
gem 'private_address_check', '~> 0.5'
|
2018-02-24 18:16:11 +00:00
|
|
|
end
|
|
|
|
|
2016-02-24 23:17:01 +00:00
|
|
|
group :test do
|
2023-04-05 12:29:14 +01:00
|
|
|
gem 'capybara', '~> 3.39'
|
2023-03-09 13:27:48 +00:00
|
|
|
gem 'climate_control'
|
2023-04-18 09:39:46 +01:00
|
|
|
gem 'faker', '~> 3.2'
|
2023-04-26 13:57:08 +01:00
|
|
|
gem 'json-schema', '~> 4.0'
|
2023-03-16 01:33:26 +00:00
|
|
|
gem 'rack-test', '~> 2.1'
|
2017-05-11 10:27:01 +01:00
|
|
|
gem 'rails-controller-testing', '~> 1.0'
|
2022-12-15 14:43:05 +00:00
|
|
|
gem 'rspec_junit_formatter', '~> 0.6'
|
2020-06-25 09:47:34 +01:00
|
|
|
gem 'rspec-sidekiq', '~> 3.1'
|
2022-12-27 00:37:19 +00:00
|
|
|
gem 'simplecov', '~> 0.22', require: false
|
2022-08-19 01:27:53 +01:00
|
|
|
gem 'webmock', '~> 3.18'
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
group :development do
|
2022-02-12 23:04:32 +00:00
|
|
|
gem 'annotate', '~> 3.2'
|
2020-11-10 14:11:15 +00:00
|
|
|
gem 'better_errors', '~> 2.9'
|
2021-01-07 05:10:49 +00:00
|
|
|
gem 'binding_of_caller', '~> 1.0'
|
2022-03-22 02:30:45 +00:00
|
|
|
gem 'letter_opener', '~> 1.8'
|
2021-11-18 00:20:31 +00:00
|
|
|
gem 'letter_opener_web', '~> 2.0'
|
2018-02-21 22:21:32 +00:00
|
|
|
gem 'memory_profiler'
|
2022-11-26 04:34:19 +00:00
|
|
|
gem 'brakeman', '~> 5.4', require: false
|
2021-09-19 06:44:27 +01:00
|
|
|
gem 'bundler-audit', '~> 0.9', require: false
|
2023-03-15 03:15:36 +00:00
|
|
|
gem 'haml_lint', require: false
|
2017-01-30 19:03:17 +00:00
|
|
|
|
2022-03-29 10:49:00 +01:00
|
|
|
gem 'capistrano', '~> 3.17'
|
2020-07-28 04:24:53 +01:00
|
|
|
gem 'capistrano-rails', '~> 1.6'
|
2020-07-27 19:24:09 +01:00
|
|
|
gem 'capistrano-rbenv', '~> 2.2'
|
2017-05-11 10:27:01 +01:00
|
|
|
gem 'capistrano-yarn', '~> 2.0'
|
2018-05-02 17:58:48 +01:00
|
|
|
|
|
|
|
gem 'stackprof'
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
group :production do
|
2022-04-08 05:40:05 +01:00
|
|
|
gem 'lograge', '~> 0.12'
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
2019-01-15 08:24:35 +00:00
|
|
|
|
|
|
|
gem 'concurrent-ruby', require: false
|
2019-07-01 23:34:38 +01:00
|
|
|
gem 'connection_pool', require: false
|
Add follower synchronization mechanism (#14510)
* Add support for followers synchronization on the receiving end
Check the `collectionSynchronization` attribute on `Create` and `Announce`
activities and synchronize followers from provided collection if possible.
* Add tests for followers synchronization on the receiving end
* Add support for follower synchronization on the sender's end
* Add tests for the sending end
* Switch from AS attributes to HTTP header
Replace the custom `collectionSynchronization` ActivityStreams attribute by
an HTTP header (`X-AS-Collection-Synchronization`) with the same syntax as
the `Signature` header and the following fields:
- `collectionId` to specify which collection to synchronize
- `digest` for the SHA256 hex-digest of the list of followers known on the
receiving instance (where “receiving instance” is determined by accounts
sharing the same host name for their ActivityPub actor `id`)
- `url` of a collection that should be fetched by the instance actor
Internally, move away from the webfinger-based `domain` attribute and use
account `uri` prefix to group accounts.
* Add environment variable to disable followers synchronization
Since the whole mechanism relies on some new preconditions that, in some
extremely rare cases, might not be met, add an environment variable
(DISABLE_FOLLOWERS_SYNCHRONIZATION) to disable the mechanism altogether and
avoid followers being incorrectly removed.
The current conditions are:
1. all managed accounts' actor `id` and inbox URL have the same URI scheme and
netloc.
2. all accounts whose actor `id` or inbox URL share the same URI scheme and
netloc as a managed account must be managed by the same Mastodon instance
as well.
As far as Mastodon is concerned, breaking those preconditions require extensive
configuration changes in the reverse proxy and might also cause other issues.
Therefore, this environment variable provides a way out for people with highly
unusual configurations, and can be safely ignored for the overwhelming majority
of Mastodon administrators.
* Only set follower synchronization header on non-public statuses
This is to avoid unnecessary computations and allow Follow-related
activities to be handled by the usual codepath instead of going through
the synchronization mechanism (otherwise, any Follow/Undo/Accept activity
would trigger the synchronization mechanism even if processing the activity
itself would be enough to re-introduce synchronization)
* Change how ActivityPub::SynchronizeFollowersService handles follow requests
If the remote lists a local follower which we only know has sent a follow
request, consider the follow request as accepted instead of sending an Undo.
* Integrate review feeback
- rename X-AS-Collection-Synchronization to Collection-Synchronization
- various minor refactoring and code style changes
* Only select required fields when computing followers_hash
* Use actor URI rather than webfinger domain in synchronization endpoint
* Change hash computation to be a XOR of individual hashes
Makes it much easier to be memory-efficient, and avoid sorting discrepancy issues.
* Marginally improve followers_hash computation speed
* Further improve hash computation performances by using pluck_each
2020-10-21 17:04:09 +01:00
|
|
|
gem 'xorcist', '~> 1.1'
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 08:42:13 +01:00
|
|
|
gem 'cocoon', '~> 1.2'
|
2023-02-13 13:36:07 +00:00
|
|
|
|
|
|
|
gem 'net-http', '~> 0.3.2'
|