debian-mirror-gitlab/config/routes.rb

262 lines
7.4 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'sidekiq/web'
2015-12-23 02:04:40 +05:30
require 'sidekiq/cron/web'
2016-06-02 11:05:42 +05:30
2016-11-03 12:29:30 +05:30
Rails.application.routes.draw do
concern :access_requestable do
post :request_access, on: :collection
post :approve_access_request, on: :member
end
2016-09-29 09:46:39 +05:30
concern :awardable do
post :toggle_award_emoji, on: :member
end
2018-11-08 19:23:39 +05:30
favicon_redirect = redirect do |_params, _request|
ActionController::Base.helpers.asset_url(Gitlab::Favicon.main)
end
get 'favicon.png', to: favicon_redirect
get 'favicon.ico', to: favicon_redirect
2016-11-03 12:29:30 +05:30
draw :sherlock
draw :development
2015-09-25 12:07:36 +05:30
2015-04-26 12:48:37 +05:30
use_doorkeeper do
controllers applications: 'oauth/applications',
authorized_applications: 'oauth/authorized_applications',
2020-03-13 15:44:24 +05:30
authorizations: 'oauth/authorizations',
token_info: 'oauth/token_info'
2015-04-26 12:48:37 +05:30
end
2019-09-30 21:07:59 +05:30
# This prefixless path is required because Jira gets confused if we set it up with a path
2019-12-04 20:38:33 +05:30
# More information: https://gitlab.com/gitlab-org/gitlab/issues/6752
2018-11-20 20:47:30 +05:30
scope path: '/login/oauth', controller: 'oauth/jira/authorizations', as: :oauth_jira do
2019-09-30 21:07:59 +05:30
Gitlab.ee do
get :authorize, action: :new
get :callback
post :access_token
end
# This helps minimize merge conflicts with CE for this scope block
2018-12-05 23:21:45 +05:30
match '*all', via: [:get, :post], to: proc { [404, {}, ['']] }
2018-11-20 20:47:30 +05:30
end
2018-12-13 13:39:08 +05:30
draw :oauth
2017-08-17 22:00:37 +05:30
use_doorkeeper_openid_connect
2019-12-21 20:55:43 +05:30
# Sign up
get 'users/sign_up/welcome' => 'registrations#welcome'
2019-12-26 22:10:19 +05:30
patch 'users/sign_up/update_registration' => 'registrations#update_registration'
2019-12-21 20:55:43 +05:30
2014-09-02 18:07:02 +05:30
# Search
2015-04-26 12:48:37 +05:30
get 'search' => 'search#show'
get 'search/autocomplete' => 'search#autocomplete', as: :search_autocomplete
2019-10-12 21:52:04 +05:30
get 'search/count' => 'search#count', as: :search_count
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
# JSON Web Token
get 'jwt/auth' => 'jwt#auth'
# Health check
get 'health_check(/:checks)' => 'health_check#index', as: :health_check
2020-04-22 19:07:51 +05:30
# Begin of the /-/ scope.
# Use this scope for all new global routes.
2017-09-10 17:25:29 +05:30
scope path: '-' do
2020-05-24 23:13:21 +05:30
# Autocomplete
get '/autocomplete/users' => 'autocomplete#users'
get '/autocomplete/users/:id' => 'autocomplete#user'
get '/autocomplete/projects' => 'autocomplete#projects'
get '/autocomplete/award_emojis' => 'autocomplete#award_emojis'
get '/autocomplete/merge_request_target_branches' => 'autocomplete#merge_request_target_branches'
Gitlab.ee do
get '/autocomplete/project_groups' => 'autocomplete#project_groups'
get '/autocomplete/project_routes' => 'autocomplete#project_routes'
get '/autocomplete/namespace_routes' => 'autocomplete#namespace_routes'
end
2019-12-04 20:38:33 +05:30
# '/-/health' implemented by BasicHealthCheck middleware
2017-09-10 17:25:29 +05:30
get 'liveness' => 'health#liveness'
get 'readiness' => 'health#readiness'
resources :metrics, only: [:index]
2018-05-09 12:01:36 +05:30
mount Peek::Railtie => '/peek', as: 'peek_routes'
2018-03-17 18:26:18 +05:30
# Boards resources shared between group and projects
resources :boards, only: [] do
resources :lists, module: :boards, only: [:index, :create, :update, :destroy] do
collection do
post :generate
end
resources :issues, only: [:index, :create, :update]
end
2019-09-30 21:07:59 +05:30
resources :issues, module: :boards, only: [:index, :update] do
collection do
put :bulk_move, format: :json
end
end
Gitlab.ee do
resources :users, module: :boards, only: [:index]
resources :milestones, module: :boards, only: [:index]
end
2018-03-17 18:26:18 +05:30
end
2019-09-04 21:01:54 +05:30
get 'acme-challenge/' => 'acme_challenges#show'
2018-03-17 18:26:18 +05:30
# UserCallouts
resources :user_callouts, only: [:create]
2018-05-09 12:01:36 +05:30
get 'ide' => 'ide#index'
get 'ide/*vueroute' => 'ide#index', format: false
2018-11-18 11:00:15 +05:30
2018-12-13 13:39:08 +05:30
draw :operations
2018-11-18 11:00:15 +05:30
draw :instance_statistics
2018-12-13 13:39:08 +05:30
2019-09-30 21:07:59 +05:30
Gitlab.ee do
2019-12-04 20:38:33 +05:30
draw :security
2019-09-30 21:07:59 +05:30
draw :smartcard
draw :jira_connect
2019-12-04 20:38:33 +05:30
draw :username
draw :trial
draw :trial_registration
draw :country
2020-01-01 13:55:28 +05:30
draw :country_state
draw :subscription
2020-04-08 14:13:33 +05:30
draw :analytics
2020-04-22 19:07:51 +05:30
scope '/push_from_secondary/:geo_node_id' do
draw :git_http
end
2020-05-24 23:13:21 +05:30
# Used for survey responses
resources :survey_responses, only: :index
2019-09-30 21:07:59 +05:30
end
2019-10-12 21:52:04 +05:30
if ENV['GITLAB_CHAOS_SECRET'] || Rails.env.development? || Rails.env.test?
2019-09-30 21:07:59 +05:30
resource :chaos, only: [] do
get :leakmem
get :cpu_spin
get :db_spin
get :sleep
get :kill
end
2018-12-13 13:39:08 +05:30
end
2020-04-08 14:13:33 +05:30
# Notification settings
resources :notification_settings, only: [:create, :update]
2020-04-22 19:07:51 +05:30
resources :invites, only: [:show], constraints: { id: /[A-Za-z0-9_-]+/ } do
member do
post :accept
match :decline, via: [:get, :post]
end
end
resources :sent_notifications, only: [], constraints: { id: /\h{32}/ } do
member do
get :unsubscribe
end
end
# Spam reports
resources :abuse_reports, only: [:new, :create]
# JWKS (JSON Web Key Set) endpoint
# Used by third parties to verify CI_JOB_JWT, placeholder route
# in case we decide to move away from doorkeeper-openid_connect
get 'jwks' => 'doorkeeper/openid_connect/discovery#keys'
2017-08-17 22:00:37 +05:30
end
2020-04-22 19:07:51 +05:30
# End of the /-/ scope.
2017-08-17 22:00:37 +05:30
2018-12-13 13:39:08 +05:30
concern :clusterable do
resources :clusters, only: [:index, :new, :show, :update, :destroy] do
collection do
post :create_user
post :create_gcp
2019-12-26 22:10:19 +05:30
post :create_aws
post :authorize_aws_role
2018-12-13 13:39:08 +05:30
end
member do
2019-09-30 21:07:59 +05:30
Gitlab.ee do
get :metrics, format: :json
2019-12-04 20:38:33 +05:30
get :metrics_dashboard
get :'/prometheus/api/v1/*proxy_path', to: 'clusters#prometheus_proxy', as: :prometheus_api
2019-12-21 20:55:43 +05:30
get :environments, format: :json
2019-09-30 21:07:59 +05:30
end
2018-12-13 13:39:08 +05:30
scope :applications do
post '/:application', to: 'clusters/applications#create', as: :install_applications
2019-07-07 11:18:12 +05:30
patch '/:application', to: 'clusters/applications#update', as: :update_applications
2019-07-31 22:56:46 +05:30
delete '/:application', to: 'clusters/applications#destroy', as: :uninstall_applications
2018-12-13 13:39:08 +05:30
end
get :cluster_status, format: :json
2020-01-01 13:55:28 +05:30
delete :clear_cache
2018-12-13 13:39:08 +05:30
end
end
end
2016-09-13 17:45:13 +05:30
2020-04-22 19:07:51 +05:30
# Deprecated routes.
# Will be removed as part of https://gitlab.com/gitlab-org/gitlab/-/issues/210024
scope as: :deprecated do
2020-05-24 23:13:21 +05:30
# Autocomplete
get '/autocomplete/users' => 'autocomplete#users'
get '/autocomplete/users/:id' => 'autocomplete#user'
get '/autocomplete/projects' => 'autocomplete#projects'
get '/autocomplete/award_emojis' => 'autocomplete#award_emojis'
get '/autocomplete/merge_request_target_branches' => 'autocomplete#merge_request_target_branches'
Gitlab.ee do
get '/autocomplete/project_groups' => 'autocomplete#project_groups'
get '/autocomplete/project_routes' => 'autocomplete#project_routes'
get '/autocomplete/namespace_routes' => 'autocomplete#namespace_routes'
end
2020-04-22 19:07:51 +05:30
resources :invites, only: [:show], constraints: { id: /[A-Za-z0-9_-]+/ } do
member do
post :accept
match :decline, via: [:get, :post]
end
2015-04-26 12:48:37 +05:30
end
2020-04-22 19:07:51 +05:30
resources :sent_notifications, only: [], constraints: { id: /\h{32}/ } do
member do
get :unsubscribe
end
end
2020-04-22 19:07:51 +05:30
resources :abuse_reports, only: [:new, :create]
end
2015-09-11 14:41:01 +05:30
2020-03-13 15:44:24 +05:30
resources :groups, only: [:index, :new, :create] do
post :preview_markdown
end
resources :projects, only: [:index, :new, :create]
get '/projects/:id' => 'projects#resolve'
draw :git_http
draw :api
draw :sidekiq
draw :help
draw :snippets
2018-03-17 18:26:18 +05:30
draw :google_api
2016-11-03 12:29:30 +05:30
draw :import
draw :uploads
draw :explore
draw :admin
draw :profile
draw :dashboard
draw :group
draw :user
draw :project
2014-09-02 18:07:02 +05:30
2016-11-03 12:29:30 +05:30
root to: "root#index"
2017-08-17 22:00:37 +05:30
get '*unmatched_route', to: 'application#route_not_found'
2014-09-02 18:07:02 +05:30
end