]> cat aescling's git repositories - mastodon.git/commit
Remove Salmon and PubSubHubbub (#11205)
authorEugen Rochko <eugen@zeonfederated.com>
Sat, 6 Jul 2019 21:26:16 +0000 (23:26 +0200)
committerGitHub <noreply@github.com>
Sat, 6 Jul 2019 21:26:16 +0000 (23:26 +0200)
commit23aeef52cc4540b4514e9f3b935b21f0530a3746
tree451fec4c4b674063597ee4911ce08fd1e624d74f
parentc07cca4727041ea5a5721acbc603d4bfb45a15a6
Remove Salmon and PubSubHubbub (#11205)

* Remove Salmon and PubSubHubbub endpoints

* Add error when trying to follow OStatus accounts

* Fix new accounts not being created in ResolveAccountService
102 files changed:
app/controllers/activitypub/inboxes_controller.rb
app/controllers/admin/accounts_controller.rb
app/controllers/api/push_controller.rb [deleted file]
app/controllers/api/salmon_controller.rb [deleted file]
app/controllers/api/subscriptions_controller.rb [deleted file]
app/controllers/api/v1/follows_controller.rb [deleted file]
app/lib/ostatus/activity/base.rb [deleted file]
app/lib/ostatus/activity/creation.rb [deleted file]
app/lib/ostatus/activity/deletion.rb [deleted file]
app/lib/ostatus/activity/general.rb [deleted file]
app/lib/ostatus/activity/post.rb [deleted file]
app/lib/ostatus/activity/remote.rb [deleted file]
app/lib/ostatus/activity/share.rb [deleted file]
app/lib/ostatus/atom_serializer.rb
app/models/account.rb
app/serializers/webfinger_serializer.rb
app/services/authorize_follow_service.rb
app/services/batched_remove_status_service.rb
app/services/block_domain_service.rb
app/services/block_service.rb
app/services/concerns/author_extractor.rb [deleted file]
app/services/concerns/stream_entry_renderer.rb [deleted file]
app/services/favourite_service.rb
app/services/fetch_remote_account_service.rb
app/services/fetch_remote_status_service.rb
app/services/follow_service.rb
app/services/post_status_service.rb
app/services/process_feed_service.rb [deleted file]
app/services/process_interaction_service.rb [deleted file]
app/services/process_mentions_service.rb
app/services/pubsubhubbub/subscribe_service.rb [deleted file]
app/services/pubsubhubbub/unsubscribe_service.rb [deleted file]
app/services/reblog_service.rb
app/services/reject_follow_service.rb
app/services/remove_status_service.rb
app/services/resolve_account_service.rb
app/services/send_interaction_service.rb [deleted file]
app/services/subscribe_service.rb [deleted file]
app/services/unblock_service.rb
app/services/unfavourite_service.rb
app/services/unfollow_service.rb
app/services/unsubscribe_service.rb [deleted file]
app/services/update_remote_profile_service.rb [deleted file]
app/services/verify_salmon_service.rb [deleted file]
app/views/accounts/show.html.haml
app/views/admin/subscriptions/_subscription.html.haml [deleted file]
app/views/admin/subscriptions/index.html.haml [deleted file]
app/views/well_known/webfinger/show.xml.ruby
app/workers/after_remote_follow_request_worker.rb
app/workers/after_remote_follow_worker.rb
app/workers/notification_worker.rb
app/workers/processing_worker.rb
app/workers/pubsubhubbub/confirmation_worker.rb
app/workers/pubsubhubbub/delivery_worker.rb
app/workers/pubsubhubbub/distribution_worker.rb
app/workers/pubsubhubbub/raw_distribution_worker.rb
app/workers/pubsubhubbub/subscribe_worker.rb
app/workers/pubsubhubbub/unsubscribe_worker.rb
app/workers/remote_profile_update_worker.rb
app/workers/salmon_worker.rb
app/workers/scheduler/subscriptions_scheduler.rb
config/locales/en.yml
config/navigation.rb
config/routes.rb
config/sidekiq.yml
spec/controllers/admin/accounts_controller_spec.rb
spec/controllers/admin/subscriptions_controller_spec.rb [deleted file]
spec/controllers/api/push_controller_spec.rb [deleted file]
spec/controllers/api/salmon_controller_spec.rb [deleted file]
spec/controllers/api/subscriptions_controller_spec.rb [deleted file]
spec/controllers/api/v1/follows_controller_spec.rb [deleted file]
spec/fixtures/requests/webfinger.txt
spec/lib/ostatus/atom_serializer_spec.rb
spec/services/authorize_follow_service_spec.rb
spec/services/batched_remove_status_service_spec.rb
spec/services/block_service_spec.rb
spec/services/favourite_service_spec.rb
spec/services/fetch_remote_account_service_spec.rb
spec/services/follow_service_spec.rb
spec/services/import_service_spec.rb
spec/services/post_status_service_spec.rb
spec/services/process_feed_service_spec.rb [deleted file]
spec/services/process_interaction_service_spec.rb [deleted file]
spec/services/process_mentions_service_spec.rb
spec/services/pubsubhubbub/subscribe_service_spec.rb [deleted file]
spec/services/pubsubhubbub/unsubscribe_service_spec.rb [deleted file]
spec/services/reblog_service_spec.rb
spec/services/reject_follow_service_spec.rb
spec/services/remove_status_service_spec.rb
spec/services/resolve_account_service_spec.rb
spec/services/send_interaction_service_spec.rb [deleted file]
spec/services/subscribe_service_spec.rb [deleted file]
spec/services/unblock_service_spec.rb
spec/services/unfollow_service_spec.rb
spec/services/unsubscribe_service_spec.rb [deleted file]
spec/services/update_remote_profile_service_spec.rb [deleted file]
spec/workers/after_remote_follow_request_worker_spec.rb [deleted file]
spec/workers/after_remote_follow_worker_spec.rb [deleted file]
spec/workers/pubsubhubbub/confirmation_worker_spec.rb [deleted file]
spec/workers/pubsubhubbub/delivery_worker_spec.rb [deleted file]
spec/workers/pubsubhubbub/distribution_worker_spec.rb [deleted file]
spec/workers/scheduler/subscriptions_scheduler_spec.rb [deleted file]