2013-01-09 00:14:05 -05:00
|
|
|
require 'sidekiq/web'
|
2015-12-03 18:24:39 -05:00
|
|
|
require 'sidekiq/cron/web'
|
2013-05-14 08:33:31 -04:00
|
|
|
require 'api/api'
|
2013-01-09 00:14:05 -05:00
|
|
|
|
2015-11-25 11:18:44 -05:00
|
|
|
Rails.application.routes.draw do
|
2015-11-04 13:13:19 -05:00
|
|
|
if Gitlab::Sherlock.enabled?
|
|
|
|
namespace :sherlock do
|
|
|
|
resources :transactions, only: [:index, :show] do
|
|
|
|
resources :queries, only: [:show]
|
|
|
|
resources :file_samples, only: [:show]
|
|
|
|
|
|
|
|
collection do
|
|
|
|
delete :destroy_all
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-22 20:26:57 -04:00
|
|
|
if Rails.env.development?
|
2016-04-22 16:13:59 -04:00
|
|
|
# Make the built-in Rails routes available in development, otherwise they'd
|
|
|
|
# get swallowed by the `namespace/project` route matcher below.
|
|
|
|
#
|
|
|
|
# See https://git.io/va79N
|
2016-03-22 20:26:57 -04:00
|
|
|
get '/rails/mailers' => 'rails/mailers#index'
|
|
|
|
get '/rails/mailers/:path' => 'rails/mailers#preview'
|
|
|
|
get '/rails/info/properties' => 'rails/info#properties'
|
|
|
|
get '/rails/info/routes' => 'rails/info#routes'
|
|
|
|
get '/rails/info' => 'rails/info#index'
|
2016-04-22 16:13:59 -04:00
|
|
|
|
|
|
|
mount LetterOpenerWeb::Engine, at: '/rails/letter_opener'
|
2016-03-22 20:26:57 -04:00
|
|
|
end
|
|
|
|
|
2016-06-01 12:07:23 -04:00
|
|
|
concern :access_requestable do
|
|
|
|
post :request_access, on: :collection
|
2016-06-01 12:17:03 -04:00
|
|
|
post :approve_access_request, on: :member
|
2016-06-01 12:07:23 -04:00
|
|
|
end
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
namespace :ci do
|
|
|
|
# CI API
|
|
|
|
Ci::API::API.logger Rails.logger
|
|
|
|
mount Ci::API::API => '/api'
|
|
|
|
|
|
|
|
resource :lint, only: [:show, :create]
|
|
|
|
|
2016-05-03 18:32:14 -04:00
|
|
|
resources :projects, only: [:index, :show] do
|
2015-08-25 21:42:46 -04:00
|
|
|
member do
|
|
|
|
get :status, to: 'projects#badge'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
root to: 'projects#index'
|
|
|
|
end
|
|
|
|
|
2014-12-19 09:15:29 -05:00
|
|
|
use_doorkeeper do
|
2015-02-02 22:30:09 -05:00
|
|
|
controllers applications: 'oauth/applications',
|
|
|
|
authorized_applications: 'oauth/authorized_applications',
|
|
|
|
authorizations: 'oauth/authorizations'
|
2014-12-19 09:15:29 -05:00
|
|
|
end
|
2015-03-08 17:46:22 -04:00
|
|
|
|
2015-03-26 22:06:19 -04:00
|
|
|
# Autocomplete
|
|
|
|
get '/autocomplete/users' => 'autocomplete#users'
|
|
|
|
get '/autocomplete/users/:id' => 'autocomplete#user'
|
2016-05-16 10:24:51 -04:00
|
|
|
get '/autocomplete/projects' => 'autocomplete#projects'
|
2015-03-26 22:06:19 -04:00
|
|
|
|
2016-02-22 21:16:00 -05:00
|
|
|
# Emojis
|
|
|
|
resources :emojis, only: :index
|
2015-03-26 22:06:19 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
# Search
|
2015-01-19 15:37:20 -05:00
|
|
|
get 'search' => 'search#show'
|
|
|
|
get 'search/autocomplete' => 'search#autocomplete', as: :search_autocomplete
|
2012-02-19 09:35:31 -05:00
|
|
|
|
2016-05-02 07:29:17 -04:00
|
|
|
# JSON Web Token
|
|
|
|
get 'jwt/auth' => 'jwt#auth'
|
|
|
|
|
2012-06-27 05:26:16 -04:00
|
|
|
# API
|
2013-05-14 08:33:31 -04:00
|
|
|
API::API.logger Rails.logger
|
|
|
|
mount API::API => '/api'
|
2012-06-27 05:26:16 -04:00
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
constraint = lambda { |request| request.env['warden'].authenticate? and request.env['warden'].user.admin? }
|
2013-01-09 00:14:05 -05:00
|
|
|
constraints constraint do
|
2015-01-19 15:37:20 -05:00
|
|
|
mount Sidekiq::Web, at: '/admin/sidekiq', as: :sidekiq
|
2013-01-09 00:14:05 -05:00
|
|
|
end
|
2011-12-07 18:31:06 -05:00
|
|
|
|
2016-04-22 12:50:08 -04:00
|
|
|
# Health check
|
2016-05-13 03:51:13 -04:00
|
|
|
get 'health_check(/:checks)' => 'health_check#index', as: :health_check
|
2016-04-22 12:50:08 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
# Help
|
2016-07-19 13:17:14 -04:00
|
|
|
get 'help' => 'help#index'
|
|
|
|
get 'help/shortcuts' => 'help#shortcuts'
|
|
|
|
get 'help/ui' => 'help#ui'
|
|
|
|
get 'help/*path' => 'help#show', as: :help_page
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2013-03-24 18:17:20 -04:00
|
|
|
#
|
|
|
|
# Global snippets
|
|
|
|
#
|
|
|
|
resources :snippets do
|
|
|
|
member do
|
2015-01-19 15:37:20 -05:00
|
|
|
get 'raw'
|
2013-03-24 18:17:20 -04:00
|
|
|
end
|
|
|
|
end
|
2015-04-02 21:22:54 -04:00
|
|
|
|
2016-05-08 04:29:51 -04:00
|
|
|
get '/s/:username', to: redirect('/u/%{username}/snippets'),
|
2016-05-08 04:27:33 -04:00
|
|
|
constraints: { username: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ }
|
2013-03-24 18:17:20 -04:00
|
|
|
|
2015-04-10 09:22:31 -04:00
|
|
|
#
|
|
|
|
# Invites
|
|
|
|
#
|
|
|
|
|
|
|
|
resources :invites, only: [:show], constraints: { id: /[A-Za-z0-9_-]+/ } do
|
|
|
|
member do
|
|
|
|
post :accept
|
2015-04-10 10:37:02 -04:00
|
|
|
match :decline, via: [:get, :post]
|
2015-04-10 09:22:31 -04:00
|
|
|
end
|
|
|
|
end
|
2015-02-11 20:34:41 -05:00
|
|
|
|
2016-01-09 13:32:03 -05:00
|
|
|
resources :sent_notifications, only: [], constraints: { id: /\h{32}/ } do
|
2015-12-09 05:59:25 -05:00
|
|
|
member do
|
|
|
|
get :unsubscribe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-14 14:36:36 -04:00
|
|
|
#
|
2015-08-06 08:03:27 -04:00
|
|
|
# Spam reports
|
2016-06-14 14:36:36 -04:00
|
|
|
#
|
2015-08-06 08:03:27 -04:00
|
|
|
resources :abuse_reports, only: [:new, :create]
|
|
|
|
|
2016-06-14 14:36:36 -04:00
|
|
|
#
|
|
|
|
# Notification settings
|
|
|
|
#
|
|
|
|
resources :notification_settings, only: [:create, :update]
|
|
|
|
|
2014-12-31 08:07:48 -05:00
|
|
|
#
|
2015-02-02 20:01:07 -05:00
|
|
|
# Import
|
2014-12-31 08:07:48 -05:00
|
|
|
#
|
2015-02-02 20:01:07 -05:00
|
|
|
namespace :import do
|
|
|
|
resource :github, only: [:create, :new], controller: :github do
|
2016-05-02 11:22:38 -04:00
|
|
|
post :personal_access_token
|
2015-01-27 18:37:19 -05:00
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
|
|
|
|
2016-05-03 18:32:14 -04:00
|
|
|
resource :gitlab, only: [:create], controller: :gitlab do
|
2015-01-27 18:37:19 -05:00
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
2015-02-20 12:38:41 -05:00
|
|
|
|
2016-05-03 18:32:14 -04:00
|
|
|
resource :bitbucket, only: [:create], controller: :bitbucket do
|
2015-02-17 10:59:50 -05:00
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
2015-03-08 17:46:22 -04:00
|
|
|
|
2015-02-20 12:38:41 -05:00
|
|
|
resource :gitorious, only: [:create, :new], controller: :gitorious do
|
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
2015-04-03 09:29:27 -04:00
|
|
|
|
|
|
|
resource :google_code, only: [:create, :new], controller: :google_code do
|
|
|
|
get :status
|
|
|
|
post :callback
|
|
|
|
get :jobs
|
2015-04-14 08:50:56 -04:00
|
|
|
|
|
|
|
get :new_user_map, path: :user_map
|
|
|
|
post :create_user_map, path: :user_map
|
2015-04-03 09:29:27 -04:00
|
|
|
end
|
2015-08-04 18:21:12 -04:00
|
|
|
|
|
|
|
resource :fogbugz, only: [:create, :new], controller: :fogbugz do
|
|
|
|
get :status
|
|
|
|
post :callback
|
|
|
|
get :jobs
|
|
|
|
|
|
|
|
get :new_user_map, path: :user_map
|
|
|
|
post :create_user_map, path: :user_map
|
|
|
|
end
|
2016-04-25 12:00:15 -04:00
|
|
|
|
2016-05-17 03:39:34 -04:00
|
|
|
resource :gitlab_project, only: [:create, :new] do
|
2016-04-26 07:01:51 -04:00
|
|
|
post :create
|
2016-04-25 12:00:15 -04:00
|
|
|
end
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
2015-02-11 20:34:41 -05:00
|
|
|
|
2015-02-20 07:13:48 -05:00
|
|
|
#
|
|
|
|
# Uploads
|
|
|
|
#
|
2015-02-11 20:34:41 -05:00
|
|
|
|
2015-02-20 07:13:48 -05:00
|
|
|
scope path: :uploads do
|
|
|
|
# Note attachments and User/Group/Project avatars
|
2015-02-23 18:18:45 -05:00
|
|
|
get ":model/:mounted_as/:id/:filename",
|
|
|
|
to: "uploads#show",
|
2015-04-10 12:07:31 -04:00
|
|
|
constraints: { model: /note|user|group|project/, mounted_as: /avatar|attachment/, filename: /[^\/]+/ }
|
2015-02-20 07:13:48 -05:00
|
|
|
|
2016-02-22 14:49:16 -05:00
|
|
|
# Appearance
|
|
|
|
get ":model/:mounted_as/:id/:filename",
|
|
|
|
to: "uploads#show",
|
|
|
|
constraints: { model: /appearance/, mounted_as: /logo|header_logo/, filename: /.+/ }
|
|
|
|
|
2015-02-20 07:13:48 -05:00
|
|
|
# Project markdown uploads
|
2015-02-24 08:54:32 -05:00
|
|
|
get ":namespace_id/:project_id/:secret/:filename",
|
2015-02-23 19:29:32 -05:00
|
|
|
to: "projects/uploads#show",
|
2015-04-10 12:07:31 -04:00
|
|
|
constraints: { namespace_id: /[a-zA-Z.0-9_\-]+/, project_id: /[a-zA-Z.0-9_\-]+/, filename: /[^\/]+/ }
|
2015-02-20 07:13:48 -05:00
|
|
|
end
|
2014-12-31 08:07:48 -05:00
|
|
|
|
2015-02-27 05:26:47 -05:00
|
|
|
# Redirect old note attachments path to new uploads path.
|
2015-02-27 05:26:47 -05:00
|
|
|
get "files/note/:id/:filename",
|
|
|
|
to: redirect("uploads/note/attachment/%{id}/%{filename}"),
|
2015-04-10 12:07:31 -04:00
|
|
|
constraints: { filename: /[^\/]+/ }
|
2015-02-27 05:26:47 -05:00
|
|
|
|
2013-01-10 13:17:57 -05:00
|
|
|
#
|
2015-01-24 14:25:16 -05:00
|
|
|
# Explore area
|
2013-01-10 13:17:57 -05:00
|
|
|
#
|
2014-07-23 05:03:49 -04:00
|
|
|
namespace :explore do
|
|
|
|
resources :projects, only: [:index] do
|
|
|
|
collection do
|
|
|
|
get :trending
|
2014-07-25 15:05:23 -04:00
|
|
|
get :starred
|
2014-07-23 05:03:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-11 12:29:51 -04:00
|
|
|
resources :groups, only: [:index]
|
2015-09-08 09:49:20 -04:00
|
|
|
resources :snippets, only: [:index]
|
2015-01-19 15:37:20 -05:00
|
|
|
root to: 'projects#trending'
|
2013-01-10 13:17:57 -05:00
|
|
|
end
|
|
|
|
|
2014-07-23 05:03:49 -04:00
|
|
|
# Compatibility with old routing
|
2015-01-19 15:37:20 -05:00
|
|
|
get 'public' => 'explore/projects#index'
|
|
|
|
get 'public/projects' => 'explore/projects#index'
|
2014-07-23 05:03:49 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Admin Area
|
|
|
|
#
|
2011-10-26 09:46:25 -04:00
|
|
|
namespace :admin do
|
2013-01-26 05:08:34 -05:00
|
|
|
resources :users, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do
|
2014-12-30 04:15:11 -05:00
|
|
|
resources :keys, only: [:show, :destroy]
|
2015-12-11 15:33:15 -05:00
|
|
|
resources :identities, except: [:show]
|
2015-06-18 11:56:15 -04:00
|
|
|
|
2012-06-28 23:30:31 -04:00
|
|
|
member do
|
2015-06-22 11:12:20 -04:00
|
|
|
get :projects
|
|
|
|
get :keys
|
|
|
|
get :groups
|
2012-04-16 16:33:03 -04:00
|
|
|
put :block
|
|
|
|
put :unblock
|
2015-07-02 01:26:14 -04:00
|
|
|
put :unlock
|
2015-07-29 10:32:01 -04:00
|
|
|
put :confirm
|
2016-04-22 17:19:55 -04:00
|
|
|
post :impersonate
|
2015-07-10 17:11:18 -04:00
|
|
|
patch :disable_two_factor
|
2014-06-23 03:45:26 -04:00
|
|
|
delete 'remove/:email_id', action: 'remove_email', as: 'remove_email'
|
2012-02-11 12:56:18 -05:00
|
|
|
end
|
|
|
|
end
|
2013-01-22 16:03:52 -05:00
|
|
|
|
2016-04-22 17:19:55 -04:00
|
|
|
resource :impersonation, only: :destroy
|
|
|
|
|
2015-08-06 09:08:22 -04:00
|
|
|
resources :abuse_reports, only: [:index, :destroy]
|
2016-01-09 14:30:34 -05:00
|
|
|
resources :spam_logs, only: [:index, :destroy]
|
|
|
|
|
2015-01-17 18:37:27 -05:00
|
|
|
resources :applications
|
|
|
|
|
2012-10-02 12:01:40 -04:00
|
|
|
resources :groups, constraints: { id: /[^\/]+/ } do
|
|
|
|
member do
|
2015-03-13 11:22:03 -04:00
|
|
|
put :members_update
|
2013-01-20 06:25:16 -05:00
|
|
|
end
|
2013-01-19 12:11:11 -05:00
|
|
|
end
|
2013-01-22 16:03:52 -05:00
|
|
|
|
2015-06-03 17:27:23 -04:00
|
|
|
resources :deploy_keys, only: [:index, :new, :create, :destroy]
|
2015-03-27 09:43:48 -04:00
|
|
|
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :hooks, only: [:index, :create, :destroy] do
|
2012-07-12 15:10:34 -04:00
|
|
|
get :test
|
|
|
|
end
|
2013-01-22 16:03:52 -05:00
|
|
|
|
2016-02-03 23:01:04 -05:00
|
|
|
resources :broadcast_messages, only: [:index, :edit, :create, :update, :destroy] do
|
|
|
|
post :preview, on: :collection
|
|
|
|
end
|
|
|
|
|
2012-09-16 04:51:26 -04:00
|
|
|
resource :logs, only: [:show]
|
2016-05-09 19:21:22 -04:00
|
|
|
resource :health_check, controller: 'health_check', only: [:show]
|
2013-05-30 02:46:28 -04:00
|
|
|
resource :background_jobs, controller: 'background_jobs', only: [:show]
|
2016-06-22 10:43:28 -04:00
|
|
|
resource :system_info, controller: 'system_info', only: [:show]
|
2016-07-27 09:45:18 -04:00
|
|
|
resources :requests_profiles, only: [:index, :show], param: :name, constraints: { name: /.+\.html/ }
|
2013-11-15 08:25:37 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :namespaces, path: '/projects', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: [] do
|
|
|
|
root to: 'projects#index', as: :projects
|
|
|
|
|
2015-02-23 18:18:45 -05:00
|
|
|
resources(:projects,
|
|
|
|
path: '/',
|
2015-01-24 13:02:58 -05:00
|
|
|
constraints: { id: /[a-zA-Z.0-9_\-]+/ },
|
|
|
|
only: [:index, :show]) do
|
|
|
|
root to: 'projects#show'
|
|
|
|
|
|
|
|
member do
|
|
|
|
put :transfer
|
2016-04-06 07:47:05 -04:00
|
|
|
post :repository_check
|
2015-01-24 13:02:58 -05:00
|
|
|
end
|
2015-12-04 06:55:23 -05:00
|
|
|
|
2016-06-17 09:04:09 -04:00
|
|
|
resources :runner_projects, only: [:create, :destroy]
|
2013-11-15 08:25:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-03 18:32:14 -04:00
|
|
|
resource :appearances, only: [:show, :create, :update], path: 'appearance' do
|
2016-02-22 14:49:16 -05:00
|
|
|
member do
|
|
|
|
get :preview
|
|
|
|
delete :logo
|
|
|
|
delete :header_logos
|
|
|
|
end
|
|
|
|
end
|
2013-11-15 08:25:37 -05:00
|
|
|
|
2015-02-11 20:34:41 -05:00
|
|
|
resource :application_settings, only: [:show, :update] do
|
2016-05-03 18:32:14 -04:00
|
|
|
resources :services, only: [:index, :edit, :update]
|
2015-12-11 04:22:05 -05:00
|
|
|
put :reset_runners_token
|
2016-05-09 19:21:22 -04:00
|
|
|
put :reset_health_check_token
|
2016-04-12 11:32:58 -04:00
|
|
|
put :clear_repository_check_states
|
2015-02-11 20:34:41 -05:00
|
|
|
end
|
2015-01-08 03:22:50 -05:00
|
|
|
|
2015-09-03 08:50:23 -04:00
|
|
|
resources :labels
|
|
|
|
|
2015-12-04 06:55:23 -05:00
|
|
|
resources :runners, only: [:index, :show, :update, :destroy] do
|
|
|
|
member do
|
|
|
|
get :resume
|
|
|
|
get :pause
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :builds, only: :index do
|
|
|
|
collection do
|
|
|
|
post :cancel_all
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
root to: 'dashboard#index'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
#
|
|
|
|
# Profile Area
|
|
|
|
#
|
2012-12-02 06:29:24 -05:00
|
|
|
resource :profile, only: [:show, :update] do
|
|
|
|
member do
|
2015-07-03 07:54:50 -04:00
|
|
|
get :audit_log
|
2016-03-11 23:38:25 -05:00
|
|
|
get :applications, to: 'oauth/applications#index'
|
2012-12-02 06:29:24 -05:00
|
|
|
|
|
|
|
put :reset_private_token
|
|
|
|
put :update_username
|
|
|
|
end
|
2013-03-27 13:04:29 -04:00
|
|
|
|
2013-06-24 11:24:14 -04:00
|
|
|
scope module: :profiles do
|
2016-05-03 18:32:14 -04:00
|
|
|
resource :account, only: [:show] do
|
2015-03-21 20:44:40 -04:00
|
|
|
member do
|
|
|
|
delete :unlink
|
|
|
|
end
|
|
|
|
end
|
2013-06-24 11:24:14 -04:00
|
|
|
resource :notifications, only: [:show, :update]
|
2013-10-09 09:37:18 -04:00
|
|
|
resource :password, only: [:new, :create, :edit, :update] do
|
|
|
|
member do
|
|
|
|
put :reset
|
|
|
|
end
|
|
|
|
end
|
2015-06-05 14:00:21 -04:00
|
|
|
resource :preferences, only: [:show, :update]
|
2016-05-03 18:32:14 -04:00
|
|
|
resources :keys, only: [:index, :show, :new, :create, :destroy]
|
2014-02-08 22:08:49 -05:00
|
|
|
resources :emails, only: [:index, :create, :destroy]
|
2013-12-02 13:03:07 -05:00
|
|
|
resource :avatar, only: [:destroy]
|
2016-06-09 05:10:14 -04:00
|
|
|
|
2016-04-15 11:24:20 -04:00
|
|
|
resources :personal_access_tokens, only: [:index, :create] do
|
|
|
|
member do
|
|
|
|
put :revoke
|
|
|
|
end
|
|
|
|
end
|
2016-06-09 05:10:14 -04:00
|
|
|
|
2016-06-06 00:44:51 -04:00
|
|
|
resource :two_factor_auth, only: [:show, :create, :destroy] do
|
2015-03-31 15:42:17 -04:00
|
|
|
member do
|
2016-06-06 00:44:51 -04:00
|
|
|
post :create_u2f
|
2015-04-02 14:57:36 -04:00
|
|
|
post :codes
|
2015-12-23 21:02:52 -05:00
|
|
|
patch :skip
|
2015-03-31 15:42:17 -04:00
|
|
|
end
|
|
|
|
end
|
2013-06-24 11:24:14 -04:00
|
|
|
end
|
2012-12-02 06:29:24 -05:00
|
|
|
end
|
2012-09-16 07:22:46 -04:00
|
|
|
|
2016-05-08 09:48:07 -04:00
|
|
|
scope(path: 'u/:username',
|
2016-05-09 22:56:12 -04:00
|
|
|
as: :user,
|
2016-05-08 09:48:07 -04:00
|
|
|
constraints: { username: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ },
|
|
|
|
controller: :users) do
|
2016-05-09 22:56:12 -04:00
|
|
|
get :calendar
|
|
|
|
get :calendar_activities
|
|
|
|
get :groups
|
|
|
|
get :projects
|
|
|
|
get :contributed, as: :contributed_projects
|
|
|
|
get :snippets
|
|
|
|
get '/', action: :show
|
2016-05-08 04:27:33 -04:00
|
|
|
end
|
2013-01-22 12:05:01 -05:00
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
#
|
|
|
|
# Dashboard Area
|
|
|
|
#
|
2015-09-08 09:49:20 -04:00
|
|
|
resource :dashboard, controller: 'dashboard', only: [] do
|
|
|
|
get :issues
|
|
|
|
get :merge_requests
|
|
|
|
get :activity
|
2015-03-03 10:19:37 -05:00
|
|
|
|
|
|
|
scope module: :dashboard do
|
|
|
|
resources :milestones, only: [:index, :show]
|
2016-03-22 14:19:53 -04:00
|
|
|
resources :labels, only: [:index]
|
2015-03-08 20:03:30 -04:00
|
|
|
|
2015-03-13 11:28:33 -04:00
|
|
|
resources :groups, only: [:index]
|
2015-09-08 09:49:20 -04:00
|
|
|
resources :snippets, only: [:index]
|
2016-02-21 10:57:12 -05:00
|
|
|
|
|
|
|
resources :todos, only: [:index, :destroy] do
|
|
|
|
collection do
|
|
|
|
delete :destroy_all
|
|
|
|
end
|
|
|
|
end
|
2015-03-09 17:12:03 -04:00
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
resources :projects, only: [:index] do
|
2015-03-09 17:12:03 -04:00
|
|
|
collection do
|
|
|
|
get :starred
|
|
|
|
end
|
|
|
|
end
|
2015-03-03 10:19:37 -05:00
|
|
|
end
|
2015-09-08 09:49:20 -04:00
|
|
|
|
|
|
|
root to: "dashboard/projects#index"
|
2013-01-27 05:56:20 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
#
|
|
|
|
# Groups Area
|
|
|
|
#
|
2015-04-21 10:57:01 -04:00
|
|
|
resources :groups, constraints: { id: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ } do
|
2012-10-02 13:42:15 -04:00
|
|
|
member do
|
|
|
|
get :issues
|
|
|
|
get :merge_requests
|
2014-05-29 14:30:20 -04:00
|
|
|
get :projects
|
2016-03-10 08:29:38 -05:00
|
|
|
get :activity
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
2013-06-17 09:51:43 -04:00
|
|
|
|
2014-01-27 16:34:05 -05:00
|
|
|
scope module: :groups do
|
2016-06-01 12:17:03 -04:00
|
|
|
resources :group_members, only: [:index, :create, :update, :destroy], concerns: :access_requestable do
|
2015-04-10 09:26:03 -04:00
|
|
|
post :resend_invite, on: :member
|
2015-03-13 11:28:33 -04:00
|
|
|
delete :leave, on: :collection
|
2015-03-13 11:27:51 -04:00
|
|
|
end
|
2015-03-20 15:03:48 -04:00
|
|
|
|
2014-01-27 16:34:05 -05:00
|
|
|
resource :avatar, only: [:destroy]
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
resources :milestones, constraints: { id: /[^\/]+/ }, only: [:index, :show, :update, :new, :create]
|
2014-01-27 16:34:05 -05:00
|
|
|
end
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
resources :projects, constraints: { id: /[^\/]+/ }, only: [:index, :new, :create]
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2016-05-30 08:51:42 -04:00
|
|
|
devise_for :users, controllers: { omniauth_callbacks: :omniauth_callbacks,
|
|
|
|
registrations: :registrations,
|
|
|
|
passwords: :passwords,
|
|
|
|
sessions: :sessions,
|
|
|
|
confirmations: :confirmations }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2014-06-24 08:16:52 -04:00
|
|
|
devise_scope :user do
|
2015-01-19 15:37:20 -05:00
|
|
|
get '/users/auth/:provider/omniauth_error' => 'omniauth_callbacks#omniauth_error', as: :omniauth_error
|
2016-03-11 11:14:29 -05:00
|
|
|
get '/users/almost_there' => 'confirmations#almost_there'
|
2014-06-24 08:16:52 -04:00
|
|
|
end
|
2015-01-24 13:02:58 -05:00
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
root to: "root#index"
|
2015-01-24 13:02:58 -05:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Project Area
|
|
|
|
#
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :namespaces, path: '/', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: [] do
|
2015-04-21 10:57:01 -04:00
|
|
|
resources(:projects, constraints: { id: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ }, except:
|
2015-01-24 13:02:58 -05:00
|
|
|
[:new, :create, :index], path: "/") do
|
|
|
|
member do
|
|
|
|
put :transfer
|
2015-10-13 18:04:22 -04:00
|
|
|
delete :remove_fork
|
2015-01-24 13:02:58 -05:00
|
|
|
post :archive
|
|
|
|
post :unarchive
|
2015-10-21 09:15:54 -04:00
|
|
|
post :housekeeping
|
2015-01-24 13:02:58 -05:00
|
|
|
post :toggle_star
|
2016-04-13 08:17:42 -04:00
|
|
|
post :preview_markdown
|
2016-04-14 12:01:21 -04:00
|
|
|
post :export
|
2016-06-15 11:31:00 -04:00
|
|
|
post :remove_export
|
2016-06-17 09:47:00 -04:00
|
|
|
post :generate_new_export
|
2016-06-14 14:32:19 -04:00
|
|
|
get :download_export
|
2015-01-24 13:02:58 -05:00
|
|
|
get :autocomplete_sources
|
2015-07-07 10:01:12 -04:00
|
|
|
get :activity
|
2016-06-07 09:40:21 -04:00
|
|
|
get :refs
|
2014-08-02 11:12:01 -04:00
|
|
|
end
|
2015-01-26 18:02:59 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
scope module: :projects do
|
2016-06-09 06:53:11 -04:00
|
|
|
scope constraints: { id: /.+\.git/, format: nil } do
|
2016-07-20 12:41:26 -04:00
|
|
|
# Git HTTP clients ('git clone' etc.)
|
2016-03-24 11:28:18 -04:00
|
|
|
get '/info/refs', to: 'git_http#info_refs'
|
|
|
|
post '/git-upload-pack', to: 'git_http#git_upload_pack'
|
|
|
|
post '/git-receive-pack', to: 'git_http#git_receive_pack'
|
2016-07-20 12:41:26 -04:00
|
|
|
|
|
|
|
# Git LFS API (metadata)
|
|
|
|
post '/info/lfs/objects/batch', to: 'lfs_api#batch'
|
|
|
|
post '/info/lfs/objects', to: 'lfs_api#deprecated'
|
|
|
|
get '/info/lfs/objects/*oid', to: 'lfs_api#deprecated'
|
|
|
|
|
|
|
|
# GitLab LFS object storage
|
|
|
|
scope constraints: { oid: /[a-f0-9]{64}/ } do
|
|
|
|
get '/gitlab-lfs/objects/*oid', to: 'lfs_storage#download'
|
|
|
|
|
|
|
|
scope constraints: { size: /[0-9]+/ } do
|
|
|
|
put '/gitlab-lfs/objects/*oid/*size/authorize', to: 'lfs_storage#upload_authorize'
|
|
|
|
put '/gitlab-lfs/objects/*oid/*size', to: 'lfs_storage#upload_finalize'
|
|
|
|
end
|
|
|
|
end
|
2016-03-23 13:34:16 -04:00
|
|
|
end
|
|
|
|
|
2016-06-09 06:53:11 -04:00
|
|
|
# Allow /info/refs, /info/refs?service=git-upload-pack, and
|
|
|
|
# /info/refs?service=git-receive-pack, but nothing else.
|
|
|
|
#
|
|
|
|
git_http_handshake = lambda do |request|
|
|
|
|
request.query_string.blank? ||
|
|
|
|
request.query_string.match(/\Aservice=git-(upload|receive)-pack\z/)
|
|
|
|
end
|
|
|
|
|
|
|
|
ref_redirect = redirect do |params, request|
|
|
|
|
path = "#{params[:namespace_id]}/#{params[:project_id]}.git/info/refs"
|
|
|
|
path << "?#{request.query_string}" unless request.query_string.blank?
|
|
|
|
path
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/info/refs', constraints: git_http_handshake, to: ref_redirect
|
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
# Blob routes:
|
|
|
|
get '/new/*id', to: 'blob#new', constraints: { id: /.+/ }, as: 'new_blob'
|
|
|
|
post '/create/*id', to: 'blob#create', constraints: { id: /.+/ }, as: 'create_blob'
|
|
|
|
get '/edit/*id', to: 'blob#edit', constraints: { id: /.+/ }, as: 'edit_blob'
|
|
|
|
put '/update/*id', to: 'blob#update', constraints: { id: /.+/ }, as: 'update_blob'
|
|
|
|
post '/preview/*id', to: 'blob#preview', constraints: { id: /.+/ }, as: 'preview_blob'
|
|
|
|
|
|
|
|
scope do
|
2015-02-23 15:38:30 -05:00
|
|
|
get(
|
|
|
|
'/blob/*id/diff',
|
|
|
|
to: 'blob#diff',
|
|
|
|
constraints: { id: /.+/, format: false },
|
|
|
|
as: :blob_diff
|
|
|
|
)
|
|
|
|
get(
|
|
|
|
'/blob/*id',
|
|
|
|
to: 'blob#show',
|
|
|
|
constraints: { id: /.+/, format: false },
|
|
|
|
as: :blob
|
|
|
|
)
|
|
|
|
delete(
|
|
|
|
'/blob/*id',
|
|
|
|
to: 'blob#destroy',
|
|
|
|
constraints: { id: /.+/, format: false }
|
|
|
|
)
|
2015-09-10 10:18:40 -04:00
|
|
|
put(
|
|
|
|
'/blob/*id',
|
|
|
|
to: 'blob#update',
|
|
|
|
constraints: { id: /.+/, format: false }
|
|
|
|
)
|
|
|
|
post(
|
|
|
|
'/blob/*id',
|
|
|
|
to: 'blob#create',
|
|
|
|
constraints: { id: /.+/, format: false }
|
|
|
|
)
|
2015-01-24 13:02:58 -05:00
|
|
|
end
|
2015-02-03 00:30:11 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/raw/*id',
|
|
|
|
to: 'raw#show',
|
|
|
|
constraints: { id: /.+/, format: /(html|js)/ },
|
|
|
|
as: :raw
|
|
|
|
)
|
2014-09-26 13:32:44 -04:00
|
|
|
end
|
2013-11-05 03:28:49 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/tree/*id',
|
|
|
|
to: 'tree#show',
|
|
|
|
constraints: { id: /.+/, format: /(html|js)/ },
|
|
|
|
as: :tree
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2016-01-07 06:56:18 -05:00
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/find_file/*id',
|
|
|
|
to: 'find_file#show',
|
|
|
|
constraints: { id: /.+/, format: /html/ },
|
|
|
|
as: :find_file
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/files/*id',
|
|
|
|
to: 'find_file#list',
|
|
|
|
constraints: { id: /(?:[^.]|\.(?!json$))+/, format: /json/ },
|
|
|
|
as: :files
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2015-09-17 01:45:22 -04:00
|
|
|
scope do
|
|
|
|
post(
|
2015-12-14 21:53:52 -05:00
|
|
|
'/create_dir/*id',
|
2015-09-17 01:45:22 -04:00
|
|
|
to: 'tree#create_dir',
|
|
|
|
constraints: { id: /.+/ },
|
|
|
|
as: 'create_dir'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/blame/*id',
|
|
|
|
to: 'blame#show',
|
|
|
|
constraints: { id: /.+/, format: /(html|js)/ },
|
|
|
|
as: :blame
|
|
|
|
)
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-08-09 00:34:29 -04:00
|
|
|
|
2015-03-20 15:03:48 -04:00
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/commits/*id',
|
|
|
|
to: 'commits#show',
|
2015-03-20 16:01:43 -04:00
|
|
|
constraints: { id: /(?:[^.]|\.(?!atom$))+/, format: /atom/ },
|
2015-03-20 15:03:48 -04:00
|
|
|
as: :commits
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
resource :avatar, only: [:show, :destroy]
|
2016-01-29 19:49:07 -05:00
|
|
|
resources :commit, only: [:show], constraints: { id: /\h{7,40}/ } do
|
2015-10-06 07:12:21 -04:00
|
|
|
member do
|
|
|
|
get :branches
|
2015-11-03 05:44:07 -05:00
|
|
|
get :builds
|
|
|
|
post :cancel_builds
|
|
|
|
post :retry_builds
|
2016-02-02 23:39:52 -05:00
|
|
|
post :revert
|
2016-04-18 03:39:07 -04:00
|
|
|
post :cherry_pick
|
2016-07-08 17:50:06 -04:00
|
|
|
get :diff_for_path
|
2015-10-06 07:12:21 -04:00
|
|
|
end
|
2015-03-20 15:03:48 -04:00
|
|
|
end
|
|
|
|
|
2016-06-28 12:25:32 -04:00
|
|
|
resources :compare, only: [:index, :create] do
|
|
|
|
collection do
|
2016-07-08 17:50:06 -04:00
|
|
|
get :diff_for_path
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/compare/:from...:to', to: 'compare#show', as: 'compare', constraints: { from: /.+/, to: /.+/ }
|
|
|
|
|
2016-07-31 16:52:44 -04:00
|
|
|
# Don't use format parameter as file extension (old 3.0.x behavior)
|
|
|
|
# See http://guides.rubyonrails.org/routing.html#route-globbing-and-wildcard-segments
|
|
|
|
scope format: false do
|
|
|
|
resources :network, only: [:show], constraints: { id: Gitlab::Regex.git_reference_regex }
|
2015-03-20 15:03:48 -04:00
|
|
|
|
2016-07-31 16:52:44 -04:00
|
|
|
resources :graphs, only: [:show], constraints: { id: Gitlab::Regex.git_reference_regex } do
|
|
|
|
member do
|
|
|
|
get :commits
|
|
|
|
get :ci
|
|
|
|
get :languages
|
|
|
|
end
|
2015-01-24 13:02:58 -05:00
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-02-19 12:05:35 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :snippets, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
get 'raw'
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2011-12-30 15:56:13 -05:00
|
|
|
|
2016-01-12 08:29:33 -05:00
|
|
|
WIKI_SLUG_ID = { id: /\S+/ } unless defined? WIKI_SLUG_ID
|
2012-11-19 14:34:05 -05:00
|
|
|
|
2015-09-01 20:57:56 -04:00
|
|
|
scope do
|
|
|
|
# Order matters to give priority to these matches
|
|
|
|
get '/wikis/git_access', to: 'wikis#git_access'
|
|
|
|
get '/wikis/pages', to: 'wikis#pages', as: 'wiki_pages'
|
|
|
|
post '/wikis', to: 'wikis#create'
|
|
|
|
|
|
|
|
get '/wikis/*id/history', to: 'wikis#history', as: 'wiki_history', constraints: WIKI_SLUG_ID
|
|
|
|
get '/wikis/*id/edit', to: 'wikis#edit', as: 'wiki_edit', constraints: WIKI_SLUG_ID
|
|
|
|
|
|
|
|
get '/wikis/*id', to: 'wikis#show', as: 'wiki', constraints: WIKI_SLUG_ID
|
|
|
|
delete '/wikis/*id', to: 'wikis#destroy', constraints: WIKI_SLUG_ID
|
|
|
|
put '/wikis/*id', to: 'wikis#update', constraints: WIKI_SLUG_ID
|
2016-04-13 08:17:42 -04:00
|
|
|
post '/wikis/*id/preview_markdown', to: 'wikis#preview_markdown', constraints: WIKI_SLUG_ID, as: 'wiki_preview_markdown'
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2013-05-06 08:10:55 -04:00
|
|
|
|
2016-05-03 18:32:14 -04:00
|
|
|
resource :repository, only: [:create] do
|
2015-01-24 13:02:58 -05:00
|
|
|
member do
|
|
|
|
get 'archive', constraints: { format: Gitlab::Regex.archive_formats_regex }
|
|
|
|
end
|
|
|
|
end
|
2011-12-29 14:44:16 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
|
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2011-11-16 12:19:18 -05:00
|
|
|
|
2015-06-03 17:27:23 -04:00
|
|
|
resources :deploy_keys, constraints: { id: /\d+/ }, only: [:index, :new, :create] do
|
2015-01-24 13:02:58 -05:00
|
|
|
member do
|
|
|
|
put :enable
|
|
|
|
put :disable
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2016-01-11 14:44:31 -05:00
|
|
|
resources :forks, only: [:index, :new, :create]
|
2015-01-24 13:02:58 -05:00
|
|
|
resource :import, only: [:new, :create, :show]
|
|
|
|
|
|
|
|
resources :refs, only: [] do
|
|
|
|
collection do
|
|
|
|
get 'switch'
|
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
|
|
|
# tree viewer logs
|
|
|
|
get 'logs_tree', constraints: { id: Gitlab::Regex.git_reference_regex }
|
2015-10-13 00:43:24 -04:00
|
|
|
# Directories with leading dots erroneously get rejected if git
|
|
|
|
# ref regex used in constraints. Regex verification now done in controller.
|
2015-04-27 00:46:27 -04:00
|
|
|
get 'logs_tree/*path' => 'refs#logs_tree', as: :logs_file, constraints: {
|
2015-10-13 00:43:24 -04:00
|
|
|
id: /.*/,
|
2015-01-24 13:02:58 -05:00
|
|
|
path: /.*/
|
|
|
|
}
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-03-13 17:54:49 -04:00
|
|
|
|
2016-02-26 03:55:43 -05:00
|
|
|
resources :merge_requests, constraints: { id: /\d+/ } do
|
2015-01-24 13:02:58 -05:00
|
|
|
member do
|
2015-05-29 00:09:28 -04:00
|
|
|
get :commits
|
2015-01-24 13:02:58 -05:00
|
|
|
get :diffs
|
2015-12-08 07:04:24 -05:00
|
|
|
get :builds
|
2015-08-11 08:33:31 -04:00
|
|
|
get :merge_check
|
|
|
|
post :merge
|
2015-11-18 05:17:41 -05:00
|
|
|
post :cancel_merge_when_build_succeeds
|
2015-01-24 13:02:58 -05:00
|
|
|
get :ci_status
|
2015-03-16 11:20:17 -04:00
|
|
|
post :toggle_subscription
|
2016-04-16 15:09:08 -04:00
|
|
|
post :toggle_award_emoji
|
2016-02-26 22:34:32 -05:00
|
|
|
post :remove_wip
|
2016-07-08 17:50:06 -04:00
|
|
|
get :diff_for_path
|
2015-01-24 13:02:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
collection do
|
|
|
|
get :branch_from
|
|
|
|
get :branch_to
|
|
|
|
get :update_branches
|
2016-07-08 17:50:06 -04:00
|
|
|
get :diff_for_path
|
2015-01-24 13:02:58 -05:00
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-06-28 23:30:31 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :branches, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
|
2015-11-05 07:49:34 -05:00
|
|
|
resources :tags, only: [:index, :show, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex } do
|
|
|
|
resource :release, only: [:edit, :update]
|
2015-11-05 05:16:41 -05:00
|
|
|
end
|
|
|
|
|
2016-06-16 03:33:30 -04:00
|
|
|
resources :protected_branches, only: [:index, :show, :create, :update, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
|
2016-04-27 04:01:43 -04:00
|
|
|
resources :variables, only: [:index, :show, :update, :create, :destroy]
|
2015-09-29 04:37:31 -04:00
|
|
|
resources :triggers, only: [:index, :create, :destroy]
|
2015-10-07 10:20:31 -04:00
|
|
|
|
2016-04-13 07:01:08 -04:00
|
|
|
resources :pipelines, only: [:index, :new, :create, :show] do
|
2016-07-20 08:33:13 -04:00
|
|
|
collection do
|
|
|
|
resource :pipelines_settings, path: 'settings', only: [:show, :update]
|
|
|
|
end
|
2016-07-19 17:26:13 -04:00
|
|
|
|
2016-04-12 10:16:39 -04:00
|
|
|
member do
|
|
|
|
post :cancel
|
|
|
|
post :retry
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-29 06:14:36 -04:00
|
|
|
resources :environments
|
2016-04-29 09:14:38 -04:00
|
|
|
|
2016-02-08 02:51:10 -05:00
|
|
|
resources :builds, only: [:index, :show], constraints: { id: /\d+/ } do
|
2015-10-14 06:15:03 -04:00
|
|
|
collection do
|
2015-11-03 05:44:07 -05:00
|
|
|
post :cancel_all
|
2015-10-14 06:15:03 -04:00
|
|
|
end
|
|
|
|
|
2015-10-07 09:24:32 -04:00
|
|
|
member do
|
|
|
|
get :status
|
2015-12-17 08:24:43 -05:00
|
|
|
post :cancel
|
2015-10-07 09:24:32 -04:00
|
|
|
post :retry
|
2016-07-16 12:39:58 -04:00
|
|
|
post :play
|
2016-02-16 03:30:58 -05:00
|
|
|
post :erase
|
2016-05-09 12:59:45 -04:00
|
|
|
get :trace
|
2016-04-17 10:58:41 -04:00
|
|
|
get :raw
|
2015-10-07 09:24:32 -04:00
|
|
|
end
|
2015-12-17 08:24:43 -05:00
|
|
|
|
2015-12-18 02:41:16 -05:00
|
|
|
resource :artifacts, only: [] do
|
|
|
|
get :download
|
2016-01-14 06:12:05 -05:00
|
|
|
get :browse, path: 'browse(/*path)', format: false
|
|
|
|
get :file, path: 'file/*path', format: false
|
2016-06-08 11:18:54 -04:00
|
|
|
post :keep
|
2015-12-17 08:24:43 -05:00
|
|
|
end
|
2015-10-07 09:24:32 -04:00
|
|
|
end
|
2015-10-06 11:11:10 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :hooks, only: [:index, :create, :destroy], constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-09-17 10:06:03 -04:00
|
|
|
|
2016-05-08 16:50:30 -04:00
|
|
|
resources :container_registry, only: [:index, :destroy], constraints: { id: Gitlab::Regex.container_registry_reference_regex }
|
2016-04-18 08:14:40 -04:00
|
|
|
|
2015-07-14 18:20:38 -04:00
|
|
|
resources :milestones, constraints: { id: /\d+/ } do
|
2015-01-24 13:02:58 -05:00
|
|
|
member do
|
|
|
|
put :sort_issues
|
|
|
|
put :sort_merge_requests
|
|
|
|
end
|
2014-06-11 07:09:45 -04:00
|
|
|
end
|
2013-05-07 10:57:29 -04:00
|
|
|
|
2016-05-03 18:32:14 -04:00
|
|
|
resources :labels, except: [:show], constraints: { id: /\d+/ } do
|
2015-01-24 13:02:58 -05:00
|
|
|
collection do
|
|
|
|
post :generate
|
2016-06-02 16:21:15 -04:00
|
|
|
post :set_priorities
|
2015-01-24 13:02:58 -05:00
|
|
|
end
|
2016-02-12 09:58:39 -05:00
|
|
|
|
|
|
|
member do
|
|
|
|
post :toggle_subscription
|
2016-05-13 11:26:18 -04:00
|
|
|
delete :remove_priority
|
2016-02-12 09:58:39 -05:00
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2013-05-07 10:57:29 -04:00
|
|
|
|
2016-02-26 03:55:43 -05:00
|
|
|
resources :issues, constraints: { id: /\d+/ } do
|
2015-03-15 12:17:12 -04:00
|
|
|
member do
|
2015-03-16 11:20:17 -04:00
|
|
|
post :toggle_subscription
|
2016-04-16 15:09:08 -04:00
|
|
|
post :toggle_award_emoji
|
2016-04-12 09:55:54 -04:00
|
|
|
get :referenced_merge_requests
|
|
|
|
get :related_branches
|
2016-04-21 10:34:00 -04:00
|
|
|
get :can_create_branch
|
2015-03-15 12:17:12 -04:00
|
|
|
end
|
2015-01-24 13:02:58 -05:00
|
|
|
collection do
|
|
|
|
post :bulk_update
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-09-25 18:45:30 -04:00
|
|
|
|
2016-05-03 18:32:14 -04:00
|
|
|
resources :project_members, except: [:show, :new, :edit], constraints: { id: /[a-zA-Z.\/0-9_\-#%+]+/ }, concerns: :access_requestable do
|
2015-01-24 13:02:58 -05:00
|
|
|
collection do
|
|
|
|
delete :leave
|
2012-10-24 07:20:53 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
# Used for import team
|
|
|
|
# from another project
|
|
|
|
get :import
|
|
|
|
post :apply_import
|
|
|
|
end
|
2015-04-10 09:26:03 -04:00
|
|
|
|
|
|
|
member do
|
|
|
|
post :resend_invite
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-10-24 07:20:53 -04:00
|
|
|
|
2016-03-11 12:37:46 -05:00
|
|
|
resources :group_links, only: [:index, :create, :destroy], constraints: { id: /\d+/ }
|
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :notes, only: [:index, :create, :destroy, :update], constraints: { id: /\d+/ } do
|
|
|
|
member do
|
2016-06-03 17:16:13 -04:00
|
|
|
post :toggle_award_emoji
|
2015-01-24 13:02:58 -05:00
|
|
|
delete :delete_attachment
|
|
|
|
end
|
2013-01-23 09:14:20 -05:00
|
|
|
end
|
2015-02-24 08:54:32 -05:00
|
|
|
|
2016-06-17 13:31:37 -04:00
|
|
|
resources :todos, only: [:create]
|
2016-06-08 04:29:19 -04:00
|
|
|
|
2015-02-24 08:54:32 -05:00
|
|
|
resources :uploads, only: [:create] do
|
|
|
|
collection do
|
2015-04-10 12:07:31 -04:00
|
|
|
get ":secret/:filename", action: :show, as: :show, constraints: { filename: /[^\/]+/ }
|
2015-02-24 08:54:32 -05:00
|
|
|
end
|
2013-01-23 09:14:20 -05:00
|
|
|
end
|
2014-01-25 12:15:44 -05:00
|
|
|
|
2015-09-25 12:03:41 -04:00
|
|
|
resources :runners, only: [:index, :edit, :update, :destroy, :show] do
|
|
|
|
member do
|
|
|
|
get :resume
|
|
|
|
get :pause
|
|
|
|
end
|
2015-12-04 06:55:23 -05:00
|
|
|
|
|
|
|
collection do
|
|
|
|
post :toggle_shared_runners
|
|
|
|
end
|
2015-09-25 12:03:41 -04:00
|
|
|
end
|
2015-12-04 06:55:23 -05:00
|
|
|
|
|
|
|
resources :runner_projects, only: [:create, :destroy]
|
2016-03-22 05:21:45 -04:00
|
|
|
resources :badges, only: [:index] do
|
2016-02-09 07:10:16 -05:00
|
|
|
collection do
|
2016-03-21 06:59:55 -04:00
|
|
|
scope '*ref', constraints: { ref: Gitlab::Regex.git_reference_regex } do
|
2016-08-11 07:58:57 -04:00
|
|
|
constraints format: /svg/ do
|
|
|
|
get :build
|
|
|
|
get :coverage
|
|
|
|
end
|
2016-03-21 06:59:55 -04:00
|
|
|
end
|
2016-02-09 07:10:16 -05:00
|
|
|
end
|
|
|
|
end
|
2015-09-25 12:03:41 -04:00
|
|
|
end
|
2012-08-08 05:25:24 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2012-09-16 07:22:46 -04:00
|
|
|
|
2016-01-06 09:54:43 -05:00
|
|
|
# Get all keys of user
|
2016-05-30 08:51:42 -04:00
|
|
|
get ':username.keys' => 'profiles/keys#get_keys', constraints: { username: /.*/ }
|
2016-01-06 09:54:43 -05:00
|
|
|
|
2015-02-02 23:36:54 -05:00
|
|
|
get ':id' => 'namespaces#show', constraints: { id: /(?:[^.]|\.(?!atom$))+/, format: /atom/ }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|