You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

347 lines
11 KiB

8 years ago
7 years ago
Account domain blocks (#2381) * Add <ostatus:conversation /> tag to Atom input/output Only uses ref attribute (not href) because href would be the alternate link that's always included also. Creates new conversation for every non-reply status. Carries over conversation for every reply. Keeps remote URIs verbatim, generates local URIs on the fly like the rest of them. * Conversation muting - prevents notifications that reference a conversation (including replies, favourites, reblogs) from being created. API endpoints /api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute Currently no way to tell when a status/conversation is muted, so the web UI only has a "disable notifications" button, doesn't work as a toggle * Display "Dismiss notifications" on all statuses in notifications column, not just own * Add "muted" as a boolean attribute on statuses JSON For now always false on contained reblogs, since it's only relevant for statuses returned from the notifications endpoint, which are not nested Remove "Disable notifications" from detailed status view, since it's only relevant in the notifications column * Up max class length * Remove pending test for conversation mute * Add tests, clean up * Rename to "mute conversation" and "unmute conversation" * Raise validation error when trying to mute/unmute status without conversation * Adding account domain blocks that filter notifications and public timelines * Add tests for domain blocks in notifications, public timelines Filter reblogs of blocked domains from home * Add API for listing and creating account domain blocks * API for creating/deleting domain blocks, tests for Status#ancestors and Status#descendants, filter domain blocks from them * Filter domains in streaming API * Update account_domain_block_spec.rb
7 years ago
Web Push Notifications (#3243) * feat: Register push subscription * feat: Notify when mentioned * feat: Boost, favourite, reply, follow, follow request * feat: Notification interaction * feat: Handle change of public key * feat: Unsubscribe if things go wrong * feat: Do not send normal notifications if push is enabled * feat: Focus client if open * refactor: Move push logic to WebPushSubscription * feat: Better title and body * feat: Localize messages * chore: Fix lint errors * feat: Settings * refactor: Lazy load * fix: Check if push settings exist * feat: Device-based preferences * refactor: Simplify logic * refactor: Pull request feedback * refactor: Pull request feedback * refactor: Create /api/web/push_subscriptions endpoint * feat: Spec PushSubscriptionController * refactor: WebPushSubscription => Web::PushSubscription * feat: Spec Web::PushSubscription * feat: Display first media attachment * feat: Support direction * fix: Stuff broken while rebasing * refactor: Integration with session activations * refactor: Cleanup * refactor: Simplify implementation * feat: Set VAPID keys via environment * chore: Comments * fix: Crash when no alerts * fix: Set VAPID keys in testing environment * fix: Follow link * feat: Notification actions * fix: Delete previous subscription * chore: Temporary logs * refactor: Move migration to a later date * fix: Fetch the correct session activation and misc bugs * refactor: Move migration to a later date * fix: Remove follow request (no notifications) * feat: Send administrator contact to push service * feat: Set time-to-live * fix: Do not show sensitive images * fix: Reducer crash in error handling * feat: Add badge * chore: Fix lint error * fix: Checkbox label overlap * fix: Check for payload support * fix: Rename action "type" (crash in latest Chrome) * feat: Action to expand notification * fix: Lint errors * fix: Unescape notification body * fix: Do not allow boosting if the status is hidden * feat: Add VAPID keys to the production sample environment * fix: Strip HTML tags from status * refactor: Better error messages * refactor: Handle browser not implementing the VAPID protocol (Samsung Internet) * fix: Error when target_status is nil * fix: Handle lack of image * fix: Delete reference to invalid subscriptions * feat: Better error handling * fix: Unescape HTML characters after tags are striped * refactor: Simpify code * fix: Modify to work with #4091 * Sort strings alphabetically * i18n: Updated Polish translation it annoys me that it's not fully localized :P * refactor: Use current_session in PushSubscriptionController * fix: Rebase mistake * fix: Set cacheName to mastodon * refactor: Pull request feedback * refactor: Remove logging statements * chore(yarn): Fix conflicts with master * chore(yarn): Copy latest from master * chore(yarn): Readd offline-plugin * refactor: Use save! and update! * refactor: Send notifications async * fix: Allow retry when push fails * fix: Save track for failed pushes * fix: Minify sw.js * fix: Remove account_id from fabricator
7 years ago
8 years ago
  1. # frozen_string_literal: true
  2. require 'sidekiq/web'
  3. require 'sidekiq-scheduler/web'
  4. Sidekiq::Web.set :session_secret, Rails.application.secrets[:secret_key_base]
  5. Rails.application.routes.draw do
  6. mount LetterOpenerWeb::Engine, at: 'letter_opener' if Rails.env.development?
  7. authenticate :user, lambda { |u| u.admin? } do
  8. mount Sidekiq::Web, at: 'sidekiq', as: :sidekiq
  9. mount PgHero::Engine, at: 'pghero', as: :pghero
  10. end
  11. use_doorkeeper do
  12. controllers authorizations: 'oauth/authorizations', authorized_applications: 'oauth/authorized_applications'
  13. end
  14. get '.well-known/host-meta', to: 'well_known/host_meta#show', as: :host_meta, defaults: { format: 'xml' }
  15. get '.well-known/webfinger', to: 'well_known/webfinger#show', as: :webfinger
  16. get 'manifest', to: 'manifests#show', defaults: { format: 'json' }
  17. get 'intent', to: 'intents#show'
  18. devise_scope :user do
  19. get '/invite/:invite_code', to: 'auth/registrations#new', as: :public_invite
  20. match '/auth/finish_signup' => 'auth/confirmations#finish_signup', via: [:get, :patch], as: :finish_signup
  21. end
  22. devise_for :users, path: 'auth', controllers: {
  23. omniauth_callbacks: 'auth/omniauth_callbacks',
  24. sessions: 'auth/sessions',
  25. registrations: 'auth/registrations',
  26. passwords: 'auth/passwords',
  27. confirmations: 'auth/confirmations',
  28. }
  29. get '/users/:username', to: redirect('/@%{username}'), constraints: lambda { |req| req.format.nil? || req.format.html? }
  30. resources :accounts, path: 'users', only: [:show], param: :username do
  31. resources :stream_entries, path: 'updates', only: [:show] do
  32. member do
  33. get :embed
  34. end
  35. end
  36. get :remote_follow, to: 'remote_follow#new'
  37. post :remote_follow, to: 'remote_follow#create'
  38. resources :statuses, only: [:show] do
  39. member do
  40. get :activity
  41. get :embed
  42. end
  43. end
  44. resources :followers, only: [:index], controller: :follower_accounts
  45. resources :following, only: [:index], controller: :following_accounts
  46. resource :follow, only: [:create], controller: :account_follow
  47. resource :unfollow, only: [:create], controller: :account_unfollow
  48. resource :outbox, only: [:show], module: :activitypub
  49. resource :inbox, only: [:create], module: :activitypub
  50. resources :collections, only: [:show], module: :activitypub
  51. end
  52. resource :inbox, only: [:create], module: :activitypub
  53. get '/@:username', to: 'accounts#show', as: :short_account
  54. get '/@:username/with_replies', to: 'accounts#show', as: :short_account_with_replies
  55. get '/@:username/media', to: 'accounts#show', as: :short_account_media
  56. get '/@:account_username/:id', to: 'statuses#show', as: :short_account_status
  57. get '/@:account_username/:id/embed', to: 'statuses#embed', as: :embed_short_account_status
  58. namespace :settings do
  59. resource :profile, only: [:show, :update]
  60. resources :keyword_mutes do
  61. collection do
  62. delete :destroy_all
  63. end
  64. end
  65. resource :preferences, only: [:show, :update]
  66. resource :notifications, only: [:show, :update]
  67. resource :import, only: [:show, :create]
  68. resource :export, only: [:show, :create]
  69. namespace :exports, constraints: { format: :csv } do
  70. resources :follows, only: :index, controller: :following_accounts
  71. resources :blocks, only: :index, controller: :blocked_accounts
  72. resources :mutes, only: :index, controller: :muted_accounts
  73. end
  74. resource :two_factor_authentication, only: [:show, :create, :destroy]
  75. namespace :two_factor_authentication do
  76. resources :recovery_codes, only: [:create]
  77. resource :confirmation, only: [:new, :create]
  78. end
  79. resource :follower_domains, only: [:show, :update]
  80. resources :applications, except: [:edit] do
  81. member do
  82. post :regenerate
  83. end
  84. end
  85. resources :flavours, only: [:index, :show, :update], param: :flavour
  86. resource :delete, only: [:show, :destroy]
  87. resource :migration, only: [:show, :update]
  88. resources :sessions, only: [:destroy]
  89. end
  90. resources :media, only: [:show] do
  91. get :player
  92. end
  93. resources :tags, only: [:show]
  94. resources :emojis, only: [:show]
  95. resources :invites, only: [:index, :create, :destroy]
  96. get '/media_proxy/:id/(*any)', to: 'media_proxy#show', as: :media_proxy
  97. # Remote follow
  98. resource :remote_unfollow, only: [:create]
  99. resource :authorize_follow, only: [:show, :create]
  100. resource :share, only: [:show, :create]
  101. namespace :admin do
  102. resources :subscriptions, only: [:index]
  103. resources :domain_blocks, only: [:index, :new, :create, :show, :destroy]
  104. resources :email_domain_blocks, only: [:index, :new, :create, :destroy]
  105. resources :action_logs, only: [:index]
  106. resource :settings, only: [:edit, :update]
  107. resources :invites, only: [:index, :create, :destroy]
  108. resources :instances, only: [:index] do
  109. collection do
  110. post :resubscribe
  111. end
  112. end
  113. resources :reports, only: [:index, :show, :update] do
  114. resources :reported_statuses, only: [:create, :update, :destroy]
  115. end
  116. resources :report_notes, only: [:create, :destroy]
  117. resources :accounts, only: [:index, :show] do
  118. member do
  119. post :subscribe
  120. post :unsubscribe
  121. post :enable
  122. post :disable
  123. post :redownload
  124. post :remove_avatar
  125. post :memorialize
  126. end
  127. resource :change_email, only: [:show, :update]
  128. resource :reset, only: [:create]
  129. resource :silence, only: [:create, :destroy]
  130. resource :suspension, only: [:create, :destroy]
  131. resource :confirmation, only: [:create]
  132. resources :statuses, only: [:index, :create, :update, :destroy]
  133. resource :role do
  134. member do
  135. post :promote
  136. post :demote
  137. end
  138. end
  139. end
  140. resources :users, only: [] do
  141. resource :two_factor_authentication, only: [:destroy]
  142. end
  143. resources :custom_emojis, only: [:index, :new, :create, :update, :destroy] do
  144. member do
  145. post :copy
  146. post :enable
  147. post :disable
  148. end
  149. end
  150. resources :account_moderation_notes, only: [:create, :destroy]
  151. end
  152. authenticate :user, lambda { |u| u.admin? } do
  153. get '/admin', to: redirect('/admin/settings/edit', status: 302)
  154. end
  155. authenticate :user, lambda { |u| u.moderator? } do
  156. get '/admin', to: redirect('/admin/reports', status: 302)
  157. end
  158. namespace :api do
  159. # PubSubHubbub outgoing subscriptions
  160. resources :subscriptions, only: [:show]
  161. post '/subscriptions/:id', to: 'subscriptions#update'
  162. # PubSubHubbub incoming subscriptions
  163. post '/push', to: 'push#update', as: :push
  164. # Salmon
  165. post '/salmon/:id', to: 'salmon#update', as: :salmon
  166. # OEmbed
  167. get '/oembed', to: 'oembed#show', as: :oembed
  168. # JSON / REST API
  169. namespace :v1 do
  170. resources :statuses, only: [:create, :show, :destroy] do
  171. scope module: :statuses do
  172. resources :reblogged_by, controller: :reblogged_by_accounts, only: :index
  173. resources :favourited_by, controller: :favourited_by_accounts, only: :index
  174. resource :reblog, only: :create
  175. post :unreblog, to: 'reblogs#destroy'
  176. resource :favourite, only: :create
  177. post :unfavourite, to: 'favourites#destroy'
  178. resource :bookmark, only: :create
  179. post :unbookmark, to: 'bookmarks#destroy'
  180. resource :mute, only: :create
  181. post :unmute, to: 'mutes#destroy'
  182. resource :pin, only: :create
  183. post :unpin, to: 'pins#destroy'
  184. end
  185. member do
  186. get :context
  187. get :card
  188. end
  189. end
  190. namespace :timelines do
  191. resource :direct, only: :show, controller: :direct
  192. resource :home, only: :show, controller: :home
  193. resource :public, only: :show, controller: :public
  194. resources :tag, only: :show
  195. resources :list, only: :show
  196. end
  197. resources :streaming, only: [:index]
  198. resources :custom_emojis, only: [:index]
  199. get '/search', to: 'search#index', as: :search
  200. resources :follows, only: [:create]
  201. resources :media, only: [:create, :update]
  202. resources :blocks, only: [:index]
  203. resources :mutes, only: [:index] do
  204. collection do
  205. get 'details'
  206. end
  207. end
  208. resources :favourites, only: [:index]
  209. resources :bookmarks, only: [:index]
  210. resources :reports, only: [:index, :create]
  211. namespace :apps do
  212. get :verify_credentials, to: 'credentials#show'
  213. end
  214. resources :apps, only: [:create]
  215. resource :instance, only: [:show] do
  216. resources :peers, only: [:index], controller: 'instances/peers'
  217. resource :activity, only: [:show], controller: 'instances/activity'
  218. end
  219. resource :domain_blocks, only: [:show, :create, :destroy]
  220. resources :follow_requests, only: [:index] do
  221. member do
  222. post :authorize
  223. post :reject
  224. end
  225. end
  226. resources :notifications, only: [:index, :show, :destroy] do
  227. collection do
  228. post :clear
  229. post :dismiss
  230. delete :destroy_multiple
  231. end
  232. end
  233. namespace :accounts do
  234. get :verify_credentials, to: 'credentials#show'
  235. patch :update_credentials, to: 'credentials#update'
  236. resource :search, only: :show, controller: :search
  237. resources :relationships, only: :index
  238. end
  239. resources :accounts, only: [:show] do
  240. resources :statuses, only: :index, controller: 'accounts/statuses'
  241. resources :followers, only: :index, controller: 'accounts/follower_accounts'
  242. resources :following, only: :index, controller: 'accounts/following_accounts'
  243. resources :lists, only: :index, controller: 'accounts/lists'
  244. member do
  245. post :follow
  246. post :unfollow
  247. post :block
  248. post :unblock
  249. post :mute
  250. post :unmute
  251. end
  252. end
  253. resources :lists, only: [:index, :create, :show, :update, :destroy] do
  254. resource :accounts, only: [:show, :create, :destroy], controller: 'lists/accounts'
  255. end
  256. end
  257. namespace :web do
  258. resource :settings, only: [:update]
  259. resource :embed, only: [:create]
  260. resources :push_subscriptions, only: [:create] do
  261. member do
  262. put :update
  263. end
  264. end
  265. end
  266. end
  267. get '/web/(*any)', to: 'home#index', as: :web
  268. get '/about', to: 'about#show'
  269. get '/about/more', to: 'about#more'
  270. get '/terms', to: 'about#terms'
  271. root 'home#index'
  272. match '*unmatched_route',
  273. via: :all,
  274. to: 'application#raise_not_found',
  275. format: false
  276. end