The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

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