2013-01-09 00:14:05 -05:00
|
|
|
require 'sidekiq/web'
|
|
|
|
|
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"
|
2012-02-19 09:35:31 -05:00
|
|
|
|
2012-06-27 05:26:16 -04:00
|
|
|
# API
|
|
|
|
require 'api'
|
|
|
|
mount Gitlab::API => '/api'
|
|
|
|
|
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,
|
|
|
|
project_root: Gitlab.config.gitolite.repos_path,
|
|
|
|
upload_pack: Gitlab.config.gitolite.upload_pack,
|
|
|
|
receive_pack: Gitlab.config.gitolite.receive_pack
|
2012-12-31 17:12:07 -05:00
|
|
|
}), at: '/', constraints: lambda { |request| /[-\/\w\.-]+\.git\//.match(request.path_info) }
|
2012-06-28 23:30:31 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Help
|
|
|
|
#
|
2012-09-16 07:22:46 -04:00
|
|
|
get 'help' => 'help#index'
|
|
|
|
get 'help/permissions' => 'help#permissions'
|
|
|
|
get 'help/workflow' => 'help#workflow'
|
|
|
|
get 'help/api' => 'help#api'
|
|
|
|
get 'help/web_hooks' => 'help#web_hooks'
|
2012-07-12 15:10:34 -04:00
|
|
|
get 'help/system_hooks' => 'help#system_hooks'
|
2012-09-16 07:22:46 -04:00
|
|
|
get 'help/markdown' => 'help#markdown'
|
|
|
|
get 'help/ssh' => 'help#ssh'
|
2012-12-02 07:56:04 -05:00
|
|
|
get 'help/raketasks' => 'help#raketasks'
|
2013-01-13 10:24:29 -05:00
|
|
|
get 'help/public_area' => 'help#public_area'
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2013-01-10 13:17:57 -05:00
|
|
|
#
|
|
|
|
# Public namespace
|
|
|
|
#
|
|
|
|
namespace :public do
|
|
|
|
resources :projects, only: [:index]
|
|
|
|
root to: "projects#index"
|
|
|
|
end
|
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Admin Area
|
|
|
|
#
|
2011-10-26 09:46:25 -04:00
|
|
|
namespace :admin do
|
2012-06-28 23:30:31 -04:00
|
|
|
resources :users do
|
|
|
|
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
|
2012-10-02 12:01:40 -04:00
|
|
|
resources :groups, constraints: { id: /[^\/]+/ } do
|
|
|
|
member do
|
|
|
|
put :project_update
|
2012-12-25 17:52:20 -05:00
|
|
|
put :project_teams_update
|
2012-10-03 05:49:43 -04:00
|
|
|
delete :remove_project
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
|
|
|
end
|
2012-11-22 23:31:09 -05:00
|
|
|
resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, except: [:new, :create] do
|
2012-06-28 23:30:31 -04:00
|
|
|
member do
|
2012-01-21 11:06:14 -05:00
|
|
|
get :team
|
|
|
|
put :team_update
|
|
|
|
end
|
|
|
|
end
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :team_members, only: [:edit, :update, :destroy]
|
|
|
|
resources :hooks, only: [:index, :create, :destroy] do
|
2012-07-12 15:10:34 -04:00
|
|
|
get :test
|
|
|
|
end
|
2012-09-16 04:51:26 -04:00
|
|
|
resource :logs, only: [:show]
|
2012-09-16 07:22:46 -04:00
|
|
|
resource :resque, controller: 'resque', only: [:show]
|
|
|
|
root to: "dashboard#index"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2011-12-05 02:43:53 -05:00
|
|
|
get "errors/githost"
|
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 :account
|
|
|
|
get :history
|
|
|
|
get :token
|
|
|
|
get :design
|
|
|
|
|
|
|
|
put :update_password
|
|
|
|
put :reset_private_token
|
|
|
|
put :update_username
|
|
|
|
end
|
|
|
|
end
|
2012-09-16 07:22:46 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
resources :keys
|
2011-12-08 15:17:53 -05:00
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
#
|
|
|
|
# Dashboard Area
|
|
|
|
#
|
2012-09-16 07:22:46 -04:00
|
|
|
get "dashboard" => "dashboard#index"
|
|
|
|
get "dashboard/issues" => "dashboard#issues"
|
|
|
|
get "dashboard/merge_requests" => "dashboard#merge_requests"
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Groups Area
|
|
|
|
#
|
|
|
|
resources :groups, constraints: { id: /[^\/]+/ }, only: [:show] do
|
|
|
|
member do
|
|
|
|
get :issues
|
|
|
|
get :merge_requests
|
|
|
|
get :search
|
|
|
|
get :people
|
2012-12-26 11:31:18 -05:00
|
|
|
post :team_members
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
|
|
|
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-09-16 07:22:46 -04:00
|
|
|
devise_for :users, controllers: { omniauth_callbacks: :omniauth_callbacks }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Project Area
|
|
|
|
#
|
2012-12-24 22:14:05 -05:00
|
|
|
resources :projects, constraints: { id: /[a-zA-Z.0-9_\-\/]+/ }, except: [:new, :create, :index], path: "/" do
|
2011-10-26 09:46:25 -04:00
|
|
|
member do
|
2011-10-08 17:36:38 -04:00
|
|
|
get "wall"
|
2011-11-12 17:30:51 -05:00
|
|
|
get "graph"
|
2011-12-28 02:38:50 -05:00
|
|
|
get "files"
|
2011-11-16 00:38:53 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-12-25 09:24:44 -05:00
|
|
|
resources :tree, only: [:show, :edit, :update], constraints: {id: /.+/}
|
|
|
|
resources :commit, only: [:show], constraints: {id: /[[:alnum:]]{6,40}/}
|
|
|
|
resources :commits, only: [:show], constraints: {id: /.+/}
|
|
|
|
resources :compare, only: [:index, :create]
|
|
|
|
resources :blame, only: [:show], constraints: {id: /.+/}
|
|
|
|
resources :blob, only: [:show], constraints: {id: /.+/}
|
|
|
|
match "/compare/:from...:to" => "compare#show", as: "compare",
|
|
|
|
:via => [:get, :post], constraints: {from: /.+/, to: /.+/}
|
|
|
|
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :wikis, only: [:show, :edit, :destroy, :create] do
|
2012-08-09 00:34:29 -04:00
|
|
|
collection do
|
|
|
|
get :pages
|
|
|
|
end
|
|
|
|
|
2012-02-19 14:52:05 -05:00
|
|
|
member do
|
2012-06-28 23:30:31 -04:00
|
|
|
get "history"
|
2012-02-19 14:52:05 -05:00
|
|
|
end
|
|
|
|
end
|
2012-02-19 12:05:35 -05:00
|
|
|
|
2012-06-28 23:30:31 -04:00
|
|
|
resource :repository do
|
|
|
|
member do
|
2011-12-31 06:12:10 -05:00
|
|
|
get "branches"
|
|
|
|
get "tags"
|
2012-11-10 16:08:47 -05:00
|
|
|
get "stats"
|
2012-02-07 18:00:49 -05:00
|
|
|
get "archive"
|
2011-12-31 06:12:10 -05:00
|
|
|
end
|
|
|
|
end
|
2011-12-30 15:56:13 -05:00
|
|
|
|
2012-11-19 14:34:05 -05:00
|
|
|
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
|
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-29 14:44:16 -05:00
|
|
|
resources :deploy_keys
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :protected_branches, only: [:index, :create, :destroy]
|
2011-12-29 14:44:16 -05:00
|
|
|
|
2013-01-09 02:34:26 -05:00
|
|
|
resources :refs, only: [] do
|
2012-06-28 23:30:31 -04:00
|
|
|
collection do
|
2011-11-16 12:19:18 -05:00
|
|
|
get "switch"
|
|
|
|
end
|
|
|
|
|
2012-06-28 23:30:31 -04:00
|
|
|
member do
|
2012-09-17 12:26:29 -04:00
|
|
|
# tree viewer logs
|
|
|
|
get "logs_tree", constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }
|
2012-07-10 15:52:38 -04:00
|
|
|
get "logs_tree/:path" => "refs#logs_tree",
|
2012-09-16 07:22:46 -04:00
|
|
|
as: :logs_file,
|
|
|
|
constraints: {
|
|
|
|
id: /[a-zA-Z.0-9\/_\-]+/,
|
|
|
|
path: /.*/
|
2012-07-10 15:52:38 -04:00
|
|
|
}
|
2011-11-16 00:38:53 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2012-12-18 22:14:05 -05:00
|
|
|
resources :merge_requests, constraints: {id: /\d+/}, except: [:destroy] do
|
2012-06-28 23:30:31 -04:00
|
|
|
member do
|
2011-11-28 15:16:57 -05:00
|
|
|
get :diffs
|
2012-03-29 11:03:05 -04:00
|
|
|
get :automerge
|
2012-04-16 15:08:03 -04:00
|
|
|
get :automerge_check
|
2012-12-10 22:14:05 -05:00
|
|
|
get :ci_status
|
2011-11-28 15:16:57 -05:00
|
|
|
end
|
2012-03-13 17:54:49 -04:00
|
|
|
|
2012-06-28 23:30:31 -04:00
|
|
|
collection do
|
2012-03-13 17:54:49 -04:00
|
|
|
get :branch_from
|
|
|
|
get :branch_to
|
|
|
|
end
|
2011-11-28 15:16:57 -05:00
|
|
|
end
|
2012-06-28 23:30:31 -04:00
|
|
|
|
|
|
|
resources :snippets do
|
|
|
|
member do
|
2012-06-12 14:41:46 -04:00
|
|
|
get "raw"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :hooks, only: [:index, :create, :destroy] do
|
2012-06-28 23:30:31 -04:00
|
|
|
member do
|
2012-01-08 05:20:24 -05:00
|
|
|
get :test
|
|
|
|
end
|
|
|
|
end
|
2012-09-17 10:06:03 -04:00
|
|
|
|
|
|
|
|
2012-09-16 09:21:20 -04:00
|
|
|
resources :team, controller: 'team_members', only: [:index]
|
2012-12-18 22:14:05 -05:00
|
|
|
resources :milestones, except: [:destroy]
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :labels, only: [:index]
|
2012-12-18 22:14:05 -05:00
|
|
|
resources :issues, except: [:destroy] do
|
2011-10-15 12:56:53 -04:00
|
|
|
collection do
|
2011-11-15 03:55:57 -05:00
|
|
|
post :sort
|
2012-07-27 20:35:24 -04:00
|
|
|
post :bulk_update
|
2011-11-15 03:55:57 -05:00
|
|
|
get :search
|
2011-10-22 00:06:38 -04:00
|
|
|
end
|
2011-10-15 12:56:53 -04:00
|
|
|
end
|
2012-09-25 18:45:30 -04:00
|
|
|
|
2012-10-24 07:20:53 -04:00
|
|
|
resources :team_members do
|
|
|
|
collection do
|
|
|
|
|
|
|
|
# Used for import team
|
|
|
|
# from another project
|
|
|
|
get :import
|
|
|
|
post :apply_import
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :notes, only: [:index, :create, :destroy] do
|
2012-08-08 05:25:24 -04:00
|
|
|
collection do
|
|
|
|
post :preview
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2012-09-16 07:22:46 -04:00
|
|
|
|
|
|
|
root to: "dashboard#index"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|