The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

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