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.

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