The code powering m.abunchtell.com https://m.abunchtell.com
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

437 linhas
13 KiB

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