sutty/config/routes.rb

80 lines
2.7 KiB
Ruby
Raw Normal View History

2019-03-26 15:32:20 +00:00
# frozen_string_literal: true
2018-01-02 17:19:25 +00:00
Rails.application.routes.draw do
2019-07-03 23:25:23 +00:00
devise_for :usuaries
get '/.well-known/change-password', to: redirect('/usuaries/edit')
2020-02-06 17:06:47 +00:00
mount Blazer::Engine, at: 'blazer'
2018-01-29 18:09:30 +00:00
2019-07-03 23:25:23 +00:00
root 'application#index'
2018-02-26 22:08:21 +00:00
constraints(Constraints::ApiSubdomain.new) do
2019-09-05 18:56:24 +00:00
scope module: 'api' do
namespace :v1 do
2020-02-06 16:11:17 +00:00
resources :csp_reports, only: %i[create]
2020-07-18 19:26:54 +00:00
get :'sites/hidden_services', to: 'sites#hidden_services'
post :'sites/add_onion', to: 'sites#add_onion'
2020-12-07 16:22:29 +00:00
resources :sites, only: %i[index], constraints: { site_id: /[a-z0-9\-.]+/, id: /[a-z0-9\-.]+/ } do
2020-06-16 22:10:54 +00:00
get :'invitades/cookie', to: 'invitades#cookie'
2020-09-29 21:22:28 +00:00
post :'posts/:layout', to: 'posts#create', as: :posts
2020-06-16 22:10:54 +00:00
get :'contact/cookie', to: 'invitades#contact_cookie'
2020-09-29 21:22:28 +00:00
post :'contact/:form', to: 'contact#receive', as: :contact
2020-02-11 15:06:36 +00:00
end
2019-09-05 18:56:24 +00:00
end
end
end
# Las rutas privadas empiezan con una ruta única para poder hacer un
# alias en nginx sin tener que usar expresiones regulares para
# detectar el nombre del sitio.
get '/sites/private/:site_id(*file)', to: 'private#show', constraints: { site_id: %r{[^/]+} }
# Obtener archivos estáticos desde el directorio público
get '/sites/:site_id/static_file/(*file)', to: 'sites#static_file', as: 'site_static_file',
constraints: { site_id: %r{[^/]+} }
2021-02-02 21:52:54 +00:00
get '/env.js', to: 'env#index'
2019-07-03 23:25:23 +00:00
match '/api/v3/projects/:site_id/notices' => 'api/v1/notices#create', via: %i[post]
resources :sites, constraints: { site_id: %r{[^/]+}, id: %r{[^/]+} } do
# Gestionar actualizaciones del sitio
get 'pull', to: 'sites#fetch'
post 'pull', to: 'sites#merge'
2019-07-04 16:23:43 +00:00
# Gestionar usuaries
2019-07-05 23:55:59 +00:00
get 'usuaries/invite', to: 'usuaries#invite'
post 'usuaries/invite', to: 'usuaries#send_invitations'
2019-07-08 17:55:19 +00:00
patch 'usuaries/accept_invitation', to: 'usuaries#accept_invitation'
patch 'usuaries/reject_invitation', to: 'usuaries#reject_invitation'
2019-07-04 16:23:43 +00:00
resources :usuaries do
patch 'demote', to: 'usuaries#demote'
patch 'promote', to: 'usuaries#promote'
2018-09-28 14:34:37 +00:00
end
2018-02-09 21:28:27 +00:00
2019-07-08 20:58:14 +00:00
get 'collaborate', to: 'collaborations#collaborate'
post 'collaborate', to: 'collaborations#accept_collaboration'
2020-05-23 15:38:03 +00:00
# Gestionar artículos según idioma
nested do
scope '(:locale)' do
post :'posts/reorder', to: 'posts#reorder'
resources :posts do
get :preview, to: 'posts#preview'
end
2020-05-23 15:38:03 +00:00
end
end
2019-07-04 16:23:43 +00:00
# Gestionar traducciones
2018-02-09 21:28:27 +00:00
get 'i18n', to: 'i18n#index'
get 'i18n/edit', to: 'i18n#edit'
post 'i18n', to: 'i18n#update'
2018-02-20 17:47:11 +00:00
2019-07-04 16:23:43 +00:00
# Compilar el sitio
2018-02-20 17:47:11 +00:00
post 'enqueue', to: 'sites#enqueue'
2018-04-27 20:24:28 +00:00
post 'reorder_posts', to: 'sites#reorder_posts'
2019-08-02 00:20:42 +00:00
resources :stats, only: [:index]
2018-01-29 18:09:30 +00:00
end
2018-01-02 17:19:25 +00:00
end