2013-01-09 00:14:05 -05:00
|
|
|
require 'sidekiq/web'
|
2013-05-14 08:33:31 -04:00
|
|
|
require 'api/api'
|
2013-01-09 00:14:05 -05:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
Gitlab::Application.routes.draw do
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Search
|
|
|
|
#
|
2012-03-15 19:14:39 -04:00
|
|
|
get 'search' => "search#show"
|
2014-01-18 07:16:46 -05:00
|
|
|
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
|
|
|
|
2013-01-09 00:14:05 -05:00
|
|
|
constraint = lambda { |request| request.env["warden"].authenticate? and request.env['warden'].user.admin? }
|
|
|
|
constraints constraint do
|
2013-01-09 00:44:05 -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
|
|
|
|
mount Grack::Bundle.new({
|
2012-12-14 19:16:25 -05:00
|
|
|
git_path: Gitlab.config.git.bin_path,
|
2013-02-11 12:16:59 -05:00
|
|
|
project_root: Gitlab.config.gitlab_shell.repos_path,
|
|
|
|
upload_pack: Gitlab.config.gitlab_shell.upload_pack,
|
|
|
|
receive_pack: Gitlab.config.gitlab_shell.receive_pack
|
2013-12-05 09:26:34 -05:00
|
|
|
}), at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }, via: [:get, :post]
|
2012-06-28 23:30:31 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Help
|
|
|
|
#
|
2013-01-18 19:34:11 -05:00
|
|
|
get 'help' => 'help#index'
|
|
|
|
get 'help/api' => 'help#api'
|
2013-06-06 06:19:23 -04:00
|
|
|
get 'help/api/:category' => 'help#api', as: 'help_api_file'
|
2013-01-18 19:34:11 -05:00
|
|
|
get 'help/markdown' => 'help#markdown'
|
|
|
|
get 'help/permissions' => 'help#permissions'
|
2013-01-18 19:32:38 -05:00
|
|
|
get 'help/public_access' => 'help#public_access'
|
2013-01-18 19:34:11 -05:00
|
|
|
get 'help/raketasks' => 'help#raketasks'
|
|
|
|
get 'help/ssh' => 'help#ssh'
|
|
|
|
get 'help/system_hooks' => 'help#system_hooks'
|
|
|
|
get 'help/web_hooks' => 'help#web_hooks'
|
|
|
|
get 'help/workflow' => 'help#workflow'
|
2013-06-30 15:10:52 -04:00
|
|
|
get 'help/shortcuts'
|
2013-09-26 16:40:55 -04:00
|
|
|
get 'help/security'
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2013-03-24 18:17:20 -04:00
|
|
|
#
|
|
|
|
# Global snippets
|
|
|
|
#
|
|
|
|
resources :snippets do
|
|
|
|
member do
|
|
|
|
get "raw"
|
|
|
|
end
|
|
|
|
end
|
2013-03-25 08:28:39 -04:00
|
|
|
get "/s/:username" => "snippets#user_index", as: :user_snippets, constraints: { username: /.*/ }
|
2013-03-24 18:17:20 -04:00
|
|
|
|
2013-01-10 13:17:57 -05:00
|
|
|
#
|
|
|
|
# Public namespace
|
|
|
|
#
|
|
|
|
namespace :public do
|
|
|
|
resources :projects, only: [:index]
|
|
|
|
root to: "projects#index"
|
|
|
|
end
|
|
|
|
|
2013-02-11 14:31:19 -05:00
|
|
|
#
|
|
|
|
# Attachments serving
|
|
|
|
#
|
2013-02-28 12:29:21 -05:00
|
|
|
get 'files/:type/:id/:filename' => 'files#download', constraints: { id: /\d+/, type: /[a-z]+/, filename: /.+/ }
|
2013-02-11 14:31:19 -05: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
|
2012-06-28 23:30:31 -04:00
|
|
|
member do
|
2012-02-11 12:56:18 -05:00
|
|
|
put :team_update
|
2012-04-16 16:33:03 -04:00
|
|
|
put :block
|
|
|
|
put :unblock
|
2012-02-11 12:56:18 -05:00
|
|
|
end
|
|
|
|
end
|
2013-01-22 16:03:52 -05:00
|
|
|
|
2012-10-02 12:01:40 -04:00
|
|
|
resources :groups, constraints: { id: /[^\/]+/ } do
|
|
|
|
member do
|
2012-12-25 17:52:20 -05:00
|
|
|
put :project_teams_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
|
|
|
|
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
|
|
|
|
|
|
|
resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, only: [:index, :show] do
|
|
|
|
member do
|
|
|
|
put :transfer
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-16 07:22:46 -04: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
|
|
|
|
get :history
|
|
|
|
get :design
|
|
|
|
|
|
|
|
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
|
2013-10-09 09:37:18 -04:00
|
|
|
resource :account, only: [:show, :update]
|
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
|
2013-06-24 11:24:14 -04:00
|
|
|
resources :keys
|
2013-07-12 11:22:03 -04:00
|
|
|
resources :groups, only: [:index] do
|
|
|
|
member do
|
|
|
|
delete :leave
|
|
|
|
end
|
|
|
|
end
|
2013-12-02 13:03:07 -05:00
|
|
|
resource :avatar, only: [:destroy]
|
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
|
|
|
|
2013-12-05 09:26:34 -05:00
|
|
|
match "/u/:username" => "users#show", as: :user, constraints: { username: /.*/ }, via: :get
|
2013-01-22 12:05:01 -05:00
|
|
|
|
|
|
|
|
2011-12-08 15:17:53 -05:00
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
#
|
|
|
|
# Dashboard Area
|
|
|
|
#
|
2013-06-22 08:11:23 -04:00
|
|
|
resource :dashboard, controller: "dashboard", only: [:show] do
|
2013-01-27 05:56:20 -05:00
|
|
|
member do
|
|
|
|
get :projects
|
|
|
|
get :issues
|
|
|
|
get :merge_requests
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
#
|
|
|
|
# Groups Area
|
|
|
|
#
|
2013-03-10 06:16:57 -04:00
|
|
|
resources :groups, constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/} do
|
2012-10-02 13:42:15 -04:00
|
|
|
member do
|
|
|
|
get :issues
|
|
|
|
get :merge_requests
|
2013-07-12 12:01:39 -04:00
|
|
|
get :members
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
2013-06-17 09:51:43 -04:00
|
|
|
|
|
|
|
resources :users_groups, only: [:create, :update, :destroy]
|
2014-01-27 16:34:05 -05:00
|
|
|
scope module: :groups do
|
|
|
|
resource :avatar, only: [:destroy]
|
|
|
|
end
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
|
|
|
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :projects, constraints: { id: /[^\/]+/ }, only: [:new, :create]
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2012-11-06 08:30:48 -05:00
|
|
|
devise_for :users, controllers: { omniauth_callbacks: :omniauth_callbacks, registrations: :registrations }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Project Area
|
|
|
|
#
|
2013-09-05 07:46:34 -04:00
|
|
|
resources :projects, constraints: { id: /[a-zA-Z.0-9_\-]+\/[a-zA-Z.0-9_\-]+/ }, except: [:new, :create, :index], path: "/" do
|
2013-03-25 04:48:30 -04:00
|
|
|
member do
|
|
|
|
put :transfer
|
2013-03-19 11:37:50 -04:00
|
|
|
post :fork
|
2013-11-29 11:10:59 -05:00
|
|
|
post :archive
|
|
|
|
post :unarchive
|
2013-05-03 11:39:18 -04:00
|
|
|
get :autocomplete_sources
|
2013-03-25 04:48:30 -04:00
|
|
|
end
|
|
|
|
|
2013-03-24 14:31:14 -04:00
|
|
|
scope module: :projects do
|
2013-11-19 09:14:48 -05:00
|
|
|
resources :blob, only: [:show, :destroy], constraints: {id: /.+/}
|
2013-11-05 03:28:49 -05:00
|
|
|
resources :raw, only: [:show], constraints: {id: /.+/}
|
|
|
|
resources :tree, only: [:show], constraints: {id: /.+/, format: /(html|js)/ }
|
|
|
|
resources :edit_tree, only: [:show, :update], constraints: {id: /.+/}, path: 'edit'
|
|
|
|
resources :new_tree, only: [:show, :update], constraints: {id: /.+/}, path: 'new'
|
|
|
|
resources :commit, only: [:show], constraints: {id: /[[:alnum:]]{6,40}/}
|
|
|
|
resources :commits, only: [:show], constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/}
|
|
|
|
resources :compare, only: [:index, :create]
|
|
|
|
resources :blame, only: [:show], constraints: {id: /.+/}
|
2013-06-23 12:47:22 -04:00
|
|
|
resources :network, only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}
|
2013-11-05 03:28:49 -05:00
|
|
|
resources :graphs, only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}
|
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
match "/compare/:from...:to" => "compare#show", as: "compare", via: [:get, :post], constraints: {from: /.+/, to: /.+/}
|
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
resources :snippets, constraints: {id: /\d+/} do
|
2013-06-23 12:47:22 -04:00
|
|
|
member do
|
|
|
|
get "raw"
|
|
|
|
end
|
2013-03-24 14:31:14 -04:00
|
|
|
end
|
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
resources :wikis, only: [:show, :edit, :destroy, :create], constraints: {id: /[a-zA-Z.0-9_\-]+/} do
|
2013-06-23 12:47:22 -04:00
|
|
|
collection do
|
|
|
|
get :pages
|
|
|
|
put ':id' => 'wikis#update'
|
|
|
|
get :git_access
|
|
|
|
end
|
2012-08-09 00:34:29 -04:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
member do
|
|
|
|
get "history"
|
|
|
|
end
|
2012-02-19 14:52:05 -05:00
|
|
|
end
|
2012-02-19 12:05:35 -05:00
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
resource :wall, only: [:show], constraints: {id: /\d+/} do
|
2013-06-23 12:47:22 -04:00
|
|
|
member do
|
|
|
|
get 'notes'
|
|
|
|
end
|
2013-03-19 06:35:42 -04:00
|
|
|
end
|
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
resource :repository, only: [:show] do
|
|
|
|
member do
|
|
|
|
get "stats"
|
2013-12-20 14:12:44 -05:00
|
|
|
get "archive", constraints: { format: Gitlab::Regex.archive_formats_regex }
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2011-12-31 06:12:10 -05:00
|
|
|
end
|
2011-12-30 15:56:13 -05:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
|
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
2012-11-19 14:34:05 -05:00
|
|
|
end
|
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
resources :deploy_keys, constraints: {id: /\d+/} do
|
2013-06-23 12:47:22 -04:00
|
|
|
member do
|
|
|
|
put :enable
|
|
|
|
put :disable
|
|
|
|
end
|
2013-05-06 08:10:55 -04:00
|
|
|
end
|
|
|
|
|
2013-09-02 06:48:32 -04:00
|
|
|
resources :branches, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex } do
|
2013-08-05 10:59:58 -04:00
|
|
|
collection do
|
2013-09-02 06:48:32 -04:00
|
|
|
get :recent, constraints: { id: Gitlab::Regex.git_reference_regex }
|
2013-08-05 10:59:58 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-02 06:48:32 -04:00
|
|
|
resources :tags, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
|
|
|
|
resources :protected_branches, only: [:index, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
|
2011-12-29 14:44:16 -05:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
resources :refs, only: [] do
|
|
|
|
collection do
|
|
|
|
get "switch"
|
|
|
|
end
|
2011-11-16 12:19:18 -05:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
member do
|
|
|
|
# tree viewer logs
|
2013-09-02 06:48:32 -04:00
|
|
|
get "logs_tree", constraints: { id: Gitlab::Regex.git_reference_regex }
|
2013-06-23 12:47:22 -04:00
|
|
|
get "logs_tree/:path" => "refs#logs_tree",
|
|
|
|
as: :logs_file,
|
|
|
|
constraints: {
|
2013-09-02 06:48:32 -04:00
|
|
|
id: Gitlab::Regex.git_reference_regex,
|
2013-06-23 12:47:22 -04:00
|
|
|
path: /.*/
|
|
|
|
}
|
|
|
|
end
|
2011-11-16 00:38:53 -05:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
resources :merge_requests, constraints: {id: /\d+/}, except: [:destroy] do
|
|
|
|
member do
|
|
|
|
get :diffs
|
|
|
|
get :automerge
|
|
|
|
get :automerge_check
|
|
|
|
get :ci_status
|
|
|
|
end
|
2012-03-13 17:54:49 -04:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
collection do
|
|
|
|
get :branch_from
|
|
|
|
get :branch_to
|
2013-04-25 10:15:33 -04:00
|
|
|
get :update_branches
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-03-13 17:54:49 -04:00
|
|
|
end
|
2012-06-28 23:30:31 -04:00
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
resources :hooks, only: [:index, :create, :destroy], constraints: {id: /\d+/} do
|
2013-06-23 12:47:22 -04:00
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
2012-01-08 05:20:24 -05:00
|
|
|
end
|
2012-09-17 10:06:03 -04:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
resources :team, controller: 'team_members', only: [:index]
|
2013-09-05 07:46:34 -04:00
|
|
|
resources :milestones, except: [:destroy], constraints: {id: /\d+/}
|
2013-05-07 10:57:29 -04:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
resources :labels, only: [:index] do
|
|
|
|
collection do
|
|
|
|
post :generate
|
|
|
|
end
|
2013-05-07 10:57:29 -04:00
|
|
|
end
|
|
|
|
|
2013-08-19 15:12:59 -04:00
|
|
|
resources :issues, constraints: {id: /\d+/}, except: [:destroy] do
|
2013-06-23 12:47:22 -04:00
|
|
|
collection do
|
|
|
|
post :bulk_update
|
|
|
|
end
|
2011-10-22 00:06:38 -04:00
|
|
|
end
|
2012-09-25 18:45:30 -04:00
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
resources :team_members, except: [:index, :edit], constraints: { id: /[a-zA-Z.\/0-9_\-#%+]+/ } do
|
2013-06-23 12:47:22 -04:00
|
|
|
collection do
|
2013-11-05 09:41:29 -05:00
|
|
|
delete :leave
|
2012-10-24 07:20:53 -04:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
# Used for import team
|
|
|
|
# from another project
|
|
|
|
get :import
|
|
|
|
post :apply_import
|
|
|
|
end
|
2012-10-24 07:20:53 -04:00
|
|
|
end
|
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
resources :notes, only: [:index, :create, :destroy, :update], constraints: {id: /\d+/} do
|
2013-01-23 09:14:20 -05:00
|
|
|
member do
|
2013-07-02 04:47:09 -04:00
|
|
|
delete :delete_attachment
|
2013-01-23 09:14:20 -05:00
|
|
|
end
|
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
collection do
|
|
|
|
post :preview
|
|
|
|
end
|
|
|
|
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
|
|
|
|
2013-01-27 05:56:20 -05:00
|
|
|
root to: "dashboard#show"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|