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.

359 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
6 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',
  13. authorized_applications: 'oauth/authorized_applications',
  14. tokens: 'oauth/tokens'
  15. end
  16. get '.well-known/host-meta', to: 'well_known/host_meta#show', as: :host_meta, defaults: { format: 'xml' }
  17. get '.well-known/webfinger', to: 'well_known/webfinger#show', as: :webfinger
  18. get 'manifest', to: 'manifests#show', defaults: { format: 'json' }
  19. get 'intent', to: 'intents#show'
  20. devise_scope :user do
  21. get '/invite/:invite_code', to: 'auth/registrations#new', as: :public_invite
  22. match '/auth/finish_signup' => 'auth/confirmations#finish_signup', via: [:get, :patch], as: :finish_signup
  23. end
  24. devise_for :users, path: 'auth', controllers: {
  25. omniauth_callbacks: 'auth/omniauth_callbacks',
  26. sessions: 'auth/sessions',
  27. registrations: 'auth/registrations',
  28. passwords: 'auth/passwords',
  29. confirmations: 'auth/confirmations',
  30. }
  31. get '/users/:username', to: redirect('/@%{username}'), constraints: lambda { |req| req.format.nil? || req.format.html? }
  32. resources :accounts, path: 'users', only: [:show], param: :username do
  33. resources :stream_entries, path: 'updates', only: [:show] do
  34. member do
  35. get :embed
  36. end
  37. end
  38. get :remote_follow, to: 'remote_follow#new'
  39. post :remote_follow, to: 'remote_follow#create'
  40. resources :statuses, only: [:show] do
  41. member do
  42. get :activity
  43. get :embed
  44. end
  45. end
  46. resources :followers, only: [:index], controller: :follower_accounts
  47. resources :following, only: [:index], controller: :following_accounts
  48. resource :follow, only: [:create], controller: :account_follow
  49. resource :unfollow, only: [:create], controller: :account_unfollow
  50. resource :outbox, only: [:show], module: :activitypub
  51. resource :inbox, only: [:create], module: :activitypub
  52. resources :collections, only: [:show], module: :activitypub
  53. end
  54. resource :inbox, only: [:create], module: :activitypub
  55. get '/@:username', to: 'accounts#show', as: :short_account
  56. get '/@:username/with_replies', to: 'accounts#show', as: :short_account_with_replies
  57. get '/@:username/media', to: 'accounts#show', as: :short_account_media
  58. get '/@:account_username/:id', to: 'statuses#show', as: :short_account_status
  59. get '/@:account_username/:id/embed', to: 'statuses#embed', as: :embed_short_account_status
  60. namespace :settings do
  61. resource :profile, only: [:show, :update]
  62. resource :preferences, only: [:show, :update]
  63. resource :notifications, only: [:show, :update]
  64. resource :import, only: [:show, :create]
  65. resource :export, only: [:show, :create]
  66. namespace :exports, constraints: { format: :csv } do
  67. resources :follows, only: :index, controller: :following_accounts
  68. resources :blocks, only: :index, controller: :blocked_accounts
  69. resources :mutes, only: :index, controller: :muted_accounts
  70. end
  71. resource :two_factor_authentication, only: [:show, :create, :destroy]
  72. namespace :two_factor_authentication do
  73. resources :recovery_codes, only: [:create]
  74. resource :confirmation, only: [:new, :create]
  75. end
  76. resource :follower_domains, only: [:show, :update]
  77. resources :applications, except: [:edit] do
  78. member do
  79. post :regenerate
  80. end
  81. end
  82. resources :flavours, only: [:index, :show, :update], param: :flavour
  83. resource :delete, only: [:show, :destroy]
  84. resource :migration, only: [:show, :update]
  85. resources :sessions, only: [:destroy]
  86. end
  87. resources :media, only: [:show] do
  88. get :player
  89. end
  90. resources :tags, only: [:show]
  91. resources :emojis, only: [:show]
  92. resources :invites, only: [:index, :create, :destroy]
  93. resources :filters, except: [:show]
  94. get '/media_proxy/:id/(*any)', to: 'media_proxy#show', as: :media_proxy
  95. # Remote follow
  96. resource :remote_unfollow, only: [:create]
  97. resource :authorize_follow, only: [:show, :create]
  98. resource :share, only: [:show, :create]
  99. namespace :admin do
  100. resources :subscriptions, only: [:index]
  101. resources :domain_blocks, only: [:index, :new, :create, :show, :destroy]
  102. resources :email_domain_blocks, only: [:index, :new, :create, :destroy]
  103. resources :action_logs, only: [:index]
  104. resource :settings, only: [:edit, :update]
  105. resources :invites, only: [:index, :create, :destroy]
  106. resources :instances, only: [:index] do
  107. collection do
  108. post :resubscribe
  109. end
  110. end
  111. resources :reports, only: [:index, :show, :update] do
  112. resources :reported_statuses, only: [:create]
  113. end
  114. resources :report_notes, only: [:create, :destroy]
  115. resources :accounts, only: [:index, :show] do
  116. member do
  117. post :subscribe
  118. post :unsubscribe
  119. post :enable
  120. post :disable
  121. post :redownload
  122. post :remove_avatar
  123. post :memorialize
  124. end
  125. resource :change_email, only: [:show, :update]
  126. resource :reset, only: [:create]
  127. resource :silence, only: [:create, :destroy]
  128. resource :suspension, only: [:create, :destroy]
  129. resources :statuses, only: [:index, :create, :update, :destroy]
  130. resource :confirmation, only: [:create] do
  131. collection do
  132. post :resend
  133. end
  134. end
  135. resource :role do
  136. member do
  137. post :promote
  138. post :demote
  139. end
  140. end
  141. end
  142. resources :users, only: [] do
  143. resource :two_factor_authentication, only: [:destroy]
  144. end
  145. resources :custom_emojis, only: [:index, :new, :create, :update, :destroy] do
  146. member do
  147. post :copy
  148. post :enable
  149. post :disable
  150. end
  151. end
  152. resources :account_moderation_notes, only: [:create, :destroy]
  153. end
  154. authenticate :user, lambda { |u| u.admin? } do
  155. get '/admin', to: redirect('/admin/settings/edit', status: 302)
  156. end
  157. authenticate :user, lambda { |u| u.moderator? } do
  158. get '/admin', to: redirect('/admin/reports', status: 302)
  159. end
  160. namespace :api do
  161. # PubSubHubbub outgoing subscriptions
  162. resources :subscriptions, only: [:show]
  163. post '/subscriptions/:id', to: 'subscriptions#update'
  164. # PubSubHubbub incoming subscriptions
  165. post '/push', to: 'push#update', as: :push
  166. # Salmon
  167. post '/salmon/:id', to: 'salmon#update', as: :salmon
  168. # OEmbed
  169. get '/oembed', to: 'oembed#show', as: :oembed
  170. # JSON / REST API
  171. namespace :v1 do
  172. resources :statuses, only: [:create, :show, :destroy] do
  173. scope module: :statuses do
  174. resources :reblogged_by, controller: :reblogged_by_accounts, only: :index
  175. resources :favourited_by, controller: :favourited_by_accounts, only: :index
  176. resource :reblog, only: :create
  177. post :unreblog, to: 'reblogs#destroy'
  178. resource :favourite, only: :create
  179. post :unfavourite, to: 'favourites#destroy'
  180. resource :bookmark, only: :create
  181. post :unbookmark, to: 'bookmarks#destroy'
  182. resource :mute, only: :create
  183. post :unmute, to: 'mutes#destroy'
  184. resource :pin, only: :create
  185. post :unpin, to: 'pins#destroy'
  186. end
  187. member do
  188. get :context
  189. get :card
  190. end
  191. end
  192. namespace :timelines do
  193. resource :direct, only: :show, controller: :direct
  194. resource :home, only: :show, controller: :home
  195. resource :public, only: :show, controller: :public
  196. resources :tag, only: :show
  197. resources :list, only: :show
  198. end
  199. resources :streaming, only: [:index]
  200. resources :custom_emojis, only: [:index]
  201. resources :suggestions, only: [:index, :destroy]
  202. get '/search', to: 'search#index', as: :search
  203. resources :follows, only: [:create]
  204. resources :media, only: [:create, :update]
  205. resources :blocks, only: [:index]
  206. resources :mutes, only: [:index] do
  207. collection do
  208. get 'details'
  209. end
  210. end
  211. resources :favourites, only: [:index]
  212. resources :bookmarks, only: [:index]
  213. resources :reports, only: [:index, :create]
  214. resources :filters, only: [:index, :create, :show, :update, :destroy]
  215. namespace :apps do
  216. get :verify_credentials, to: 'credentials#show'
  217. end
  218. resources :apps, only: [:create]
  219. resource :instance, only: [:show] do
  220. resources :peers, only: [:index], controller: 'instances/peers'
  221. resource :activity, only: [:show], controller: 'instances/activity'
  222. end
  223. resource :domain_blocks, only: [:show, :create, :destroy]
  224. resources :follow_requests, only: [:index] do
  225. member do
  226. post :authorize
  227. post :reject
  228. end
  229. end
  230. resources :notifications, only: [:index, :show, :destroy] do
  231. collection do
  232. post :clear
  233. post :dismiss
  234. delete :destroy_multiple
  235. end
  236. end
  237. namespace :accounts do
  238. get :verify_credentials, to: 'credentials#show'
  239. patch :update_credentials, to: 'credentials#update'
  240. resource :search, only: :show, controller: :search
  241. resources :relationships, only: :index
  242. end
  243. resources :accounts, only: [:show] do
  244. resources :statuses, only: :index, controller: 'accounts/statuses'
  245. resources :followers, only: :index, controller: 'accounts/follower_accounts'
  246. resources :following, only: :index, controller: 'accounts/following_accounts'
  247. resources :lists, only: :index, controller: 'accounts/lists'
  248. member do
  249. post :follow
  250. post :unfollow
  251. post :block
  252. post :unblock
  253. post :mute
  254. post :unmute
  255. end
  256. end
  257. resources :lists, only: [:index, :create, :show, :update, :destroy] do
  258. resource :accounts, only: [:show, :create, :destroy], controller: 'lists/accounts'
  259. end
  260. namespace :push do
  261. resource :subscription, only: [:create, :show, :update, :destroy]
  262. end
  263. end
  264. namespace :v2 do
  265. get '/search', to: 'search#index', as: :search
  266. end
  267. namespace :web do
  268. resource :settings, only: [:update]
  269. resource :embed, only: [:create]
  270. resources :push_subscriptions, only: [:create] do
  271. member do
  272. put :update
  273. end
  274. end
  275. end
  276. end
  277. get '/web/(*any)', to: 'home#index', as: :web
  278. get '/about', to: 'about#show'
  279. get '/about/more', to: 'about#more'
  280. get '/terms', to: 'about#terms'
  281. root 'home#index'
  282. match '*unmatched_route',
  283. via: :all,
  284. to: 'application#raise_not_found',
  285. format: false
  286. end