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
|
|
|
|
|
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]
|
|
|
|
|
|
|
|
resources :projects do
|
|
|
|
member do
|
|
|
|
get :status, to: 'projects#badge'
|
|
|
|
get :integration
|
|
|
|
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'
|
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2014-02-11 08:34:47 -05:00
|
|
|
# Get all keys of user
|
2013-10-02 11:09:29 -04:00
|
|
|
get ':username.keys' => 'profiles/keys#get_keys' , constraints: { username: /.*/ }
|
|
|
|
|
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
|
|
|
|
2012-06-28 23:30:31 -04:00
|
|
|
# Enable Grack support
|
2015-10-12 10:42:14 -04:00
|
|
|
mount Grack::AuthSpawner, at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }, via: [:get, :post, :put]
|
2012-06-28 23:30:31 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
# Help
|
2014-04-18 11:21:21 -04:00
|
|
|
get 'help' => 'help#index'
|
2015-04-15 13:15:18 -04:00
|
|
|
get 'help/:category/:file' => 'help#show', as: :help_page, constraints: { category: /.*/, file: /[^\/\.]+/ }
|
2014-05-29 06:01:34 -04:00
|
|
|
get 'help/shortcuts'
|
2015-03-08 17:46:22 -04:00
|
|
|
get 'help/ui' => 'help#ui'
|
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
|
|
|
|
|
|
|
get '/s/:username' => 'snippets#index', as: :user_snippets, constraints: { username: /.*/ }
|
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
|
|
|
|
2015-08-06 08:03:27 -04:00
|
|
|
# Spam reports
|
|
|
|
resources :abuse_reports, only: [:new, :create]
|
|
|
|
|
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
|
2015-01-27 18:37:19 -05:00
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
|
|
|
|
2015-02-02 20:01:07 -05:00
|
|
|
resource :gitlab, only: [:create, :new], 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
|
|
|
|
2015-02-17 10:59:50 -05:00
|
|
|
resource :bitbucket, only: [:create, :new], controller: :bitbucket do
|
|
|
|
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
|
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
|
|
|
|
|
|
|
# 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
|
|
|
|
2015-10-28 11:39:23 -04:00
|
|
|
delete 'stop_impersonation' => 'impersonation#destroy', on: :collection
|
|
|
|
|
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-02-11 12:56:18 -05:00
|
|
|
put :team_update
|
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
|
2015-10-28 11:39:23 -04:00
|
|
|
post 'impersonate' => 'impersonation#create'
|
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
|
|
|
|
2015-08-06 09:08:22 -04:00
|
|
|
resources :abuse_reports, 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
|
|
|
|
2013-11-12 08:20:31 -05:00
|
|
|
resources :broadcast_messages, only: [:index, :create, :destroy]
|
2012-09-16 04:51:26 -04:00
|
|
|
resource :logs, only: [:show]
|
2013-05-30 02:46:28 -04:00
|
|
|
resource :background_jobs, controller: 'background_jobs', only: [:show]
|
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
|
|
|
|
end
|
2015-12-04 06:55:23 -05:00
|
|
|
|
|
|
|
resources :runner_projects
|
2013-11-15 08:25:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-02-11 20:34:41 -05:00
|
|
|
resource :application_settings, only: [:show, :update] do
|
|
|
|
resources :services
|
2015-12-11 04:22:05 -05:00
|
|
|
put :reset_runners_token
|
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
|
2014-12-25 11:35:04 -05:00
|
|
|
get :applications
|
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
|
2015-03-21 20:44:40 -04:00
|
|
|
resource :account, only: [:show, :update] do
|
|
|
|
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]
|
2013-06-24 11:24:14 -04:00
|
|
|
resources :keys
|
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]
|
2015-03-31 15:42:17 -04:00
|
|
|
resource :two_factor_auth, only: [:new, :create, :destroy] do
|
|
|
|
member do
|
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
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
get 'u/:username/calendar' => 'users#calendar', as: :user_calendar,
|
2015-03-13 06:39:26 -04:00
|
|
|
constraints: { username: /.*/ }
|
|
|
|
|
|
|
|
get 'u/:username/calendar_activities' => 'users#calendar_activities', as: :user_calendar_activities,
|
|
|
|
constraints: { username: /.*/ }
|
2015-01-29 04:20:17 -05:00
|
|
|
|
2014-10-07 12:54:38 -04:00
|
|
|
get '/u/:username' => 'users#show', as: :user,
|
2015-04-21 10:57:01 -04:00
|
|
|
constraints: { username: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ }
|
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]
|
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]
|
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
|
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
|
2015-03-13 11:27:51 -04:00
|
|
|
resources :group_members, only: [:index, :create, :update, :destroy] 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
|
|
|
|
2014-10-02 08:38:26 -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
|
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
|
|
|
|
post :toggle_star
|
|
|
|
post :markdown_preview
|
|
|
|
get :autocomplete_sources
|
2015-07-07 10:01:12 -04:00
|
|
|
get :activity
|
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
|
|
|
|
# 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
|
|
|
|
|
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]
|
|
|
|
resources :commit, only: [:show], constraints: { id: /[[:alnum:]]{6,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
|
2015-10-06 07:12:21 -04:00
|
|
|
end
|
2015-03-20 15:03:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
resources :compare, only: [:index, :create]
|
|
|
|
resources :network, only: [:show], constraints: { id: /(?:[^.]|\.(?!json$))+/, format: /json/ }
|
|
|
|
|
|
|
|
resources :graphs, only: [:show], constraints: { id: /(?:[^.]|\.(?!json$))+/, format: /json/ } do
|
2015-01-24 13:02:58 -05:00
|
|
|
member do
|
|
|
|
get :commits
|
2015-09-23 10:16:45 -04:00
|
|
|
get :ci
|
2015-12-07 20:35:34 -05:00
|
|
|
get :languages
|
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
|
|
|
get '/compare/:from...:to' => 'compare#show', :as => 'compare',
|
|
|
|
:constraints => { from: /.+/, to: /.+/ }
|
2014-11-13 15:06:19 -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
|
|
|
|
2015-09-01 20:57:56 -04:00
|
|
|
WIKI_SLUG_ID = { id: /[a-zA-Z.0-9_\-\/]+/ } 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
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2013-05-06 08:10:55 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resource :repository, only: [:show, :create] do
|
|
|
|
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
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resource :fork, only: [:new, :create]
|
|
|
|
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
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :merge_requests, constraints: { id: /\d+/ }, except: [:destroy] do
|
|
|
|
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-11-23 03:42:20 -05:00
|
|
|
get :merge_check
|
2015-08-11 08:33:31 -04:00
|
|
|
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
|
2015-01-24 13:02:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
collection do
|
|
|
|
get :branch_from
|
|
|
|
get :branch_to
|
|
|
|
get :update_branches
|
|
|
|
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
|
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :protected_branches, only: [:index, :create, :update, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
|
2015-09-28 11:19:20 -04:00
|
|
|
resource :variables, only: [:show, :update]
|
2015-09-29 04:37:31 -04:00
|
|
|
resources :triggers, only: [:index, :create, :destroy]
|
2015-10-07 10:20:31 -04:00
|
|
|
|
2015-10-14 06:15:03 -04:00
|
|
|
resources :builds, only: [:index, :show] do
|
|
|
|
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-11-03 05:44:07 -05:00
|
|
|
post :cancel
|
2015-10-12 17:47:32 -04:00
|
|
|
get :download
|
2015-10-07 09:24:32 -04:00
|
|
|
post :retry
|
|
|
|
end
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :labels, constraints: { id: /\d+/ } do
|
|
|
|
collection do
|
|
|
|
post :generate
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2013-05-07 10:57:29 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :issues, constraints: { id: /\d+/ }, except: [:destroy] do
|
2015-03-15 12:17:12 -04:00
|
|
|
member do
|
2015-03-16 11:20:17 -04:00
|
|
|
post :toggle_subscription
|
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
|
|
|
|
2015-03-13 11:22:03 -04:00
|
|
|
resources :project_members, except: [:new, :edit], constraints: { id: /[a-zA-Z.\/0-9_\-#%+]+/ } 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
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :notes, only: [:index, :create, :destroy, :update], constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
delete :delete_attachment
|
|
|
|
end
|
2015-11-11 08:12:51 -05:00
|
|
|
|
|
|
|
collection do
|
|
|
|
post :award_toggle
|
|
|
|
end
|
2013-01-23 09:14:20 -05:00
|
|
|
end
|
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]
|
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
|
|
|
|
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
|