gitlab-org--gitlab-foss/config/routes.rb

305 lines
7.4 KiB
Ruby
Raw Normal View History

2013-01-09 00:14:05 -05:00
require 'sidekiq/web'
require 'api/api'
2013-01-09 00:14:05 -05:00
2011-10-08 17:36:38 -04:00
Gitlab::Application.routes.draw do
#
# 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
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
mount Sidekiq::Web, at: "/admin/sidekiq", as: :sidekiq
2013-01-09 00:14:05 -05:00
end
# Enable Grack support
mount Grack::Bundle.new({
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-01-23 09:14:53 -05:00
}), at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }
#
# 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'
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-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
#
# Admin Area
#
namespace :admin do
2013-01-26 05:08:34 -05:00
resources :users, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do
member do
2012-02-11 12:56:18 -05:00
put :team_update
put :block
put :unblock
2012-02-11 12:56:18 -05:00
end
end
2013-01-22 16:03:52 -05:00
resources :groups, constraints: { id: /[^\/]+/ } do
member do
put :project_update
2012-12-25 17:52:20 -05:00
put :project_teams_update
delete :remove_project
end
end
2013-01-22 16:03:52 -05:00
resources :teams, constraints: { id: /[^\/]+/ } do
scope module: :teams do
2013-01-22 16:03:52 -05:00
resources :members, only: [:edit, :update, :destroy, :new, :create]
resources :projects, only: [:edit, :update, :destroy, :new, :create], constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }
end
2013-01-19 12:11:11 -05:00
end
2013-01-22 16:03:52 -05: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
resource :logs, only: [:show]
resource :background_jobs, controller: 'background_jobs', only: [:show]
2013-01-22 16:03:52 -05:00
resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, only: [:index, :show] do
scope module: :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do
2013-01-22 16:03:52 -05:00
resources :members, only: [:edit, :update, :destroy]
end
end
root to: "dashboard#index"
2011-10-08 17:36:38 -04:00
end
2011-12-05 02:43:53 -05:00
get "errors/githost"
#
# Profile Area
#
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
2013-03-27 13:04:29 -04:00
resource :notifications
resource :password
end
resources :keys
2013-01-22 12:45:13 -05:00
match "/u/:username" => "users#show", as: :user, constraints: { username: /.*/ }
2013-01-22 12:05:01 -05:00
2011-12-08 15:17:53 -05:00
#
# Dashboard Area
#
2013-01-27 05:56:20 -05:00
resource :dashboard, controller: "dashboard" do
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
get :people
end
resources :users_groups, only: [:create, :update, :destroy]
2012-10-02 13:42:15 -04:00
end
resources :projects, constraints: { id: /[^\/]+/ }, only: [:new, :create]
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
#
# Project Area
#
resources :projects, constraints: { id: /(?:[a-zA-Z.0-9_\-]+\/)?[a-zA-Z.0-9_\-]+/ }, except: [:new, :create, :index], path: "/" do
member do
put :transfer
post :fork
get :autocomplete_sources
end
resources :blob, only: [:show], constraints: {id: /.+/}
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'
2012-12-25 09:24:44 -05:00
resources :commit, only: [:show], constraints: {id: /[[:alnum:]]{6,40}/}
resources :commits, only: [:show], constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/}
2012-12-25 09:24:44 -05:00
resources :compare, only: [:index, :create]
resources :blame, only: [:show], constraints: {id: /.+/}
resources :network, only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}
resources :graphs, only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}
match "/compare/:from...:to" => "compare#show", as: "compare", via: [:get, :post], constraints: {from: /.+/, to: /.+/}
2012-12-25 09:24:44 -05:00
scope module: :projects do
resources :snippets do
member do
get "raw"
end
end
end
resources :wikis, only: [:show, :edit, :destroy, :create] do
2012-08-09 00:34:29 -04:00
collection do
get :pages
put ':id' => 'wikis#update'
get :git_access
2012-08-09 00:34:29 -04:00
end
2012-02-19 14:52:05 -05:00
member do
get "history"
2012-02-19 14:52:05 -05:00
end
end
2012-02-19 12:05:35 -05:00
2013-03-19 06:35:42 -04:00
resource :wall, only: [:show] do
member do
get 'notes'
end
end
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"
get "archive"
2011-12-31 06:12:10 -05:00
end
end
2012-11-19 14:34:05 -05:00
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
member do
get :test
end
end
2013-05-06 08:10:55 -04:00
resources :deploy_keys do
member do
put :enable
put :disable
end
end
resources :protected_branches, only: [:index, :create, :destroy]
2011-12-29 14:44:16 -05:00
resources :refs, only: [] do
collection do
2011-11-16 12:19:18 -05:00
get "switch"
end
member do
# 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",
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
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
get :ci_status
2011-11-28 15:16:57 -05:00
end
collection do
get :branch_from
get :branch_to
end
2011-11-28 15:16:57 -05:00
end
resources :hooks, only: [:index, :create, :destroy] do
member do
get :test
end
end
resources :team, controller: 'team_members', only: [:index]
2012-12-18 22:14:05 -05:00
resources :milestones, except: [:destroy]
resources :labels, only: [:index] do
collection do
post :generate
end
end
2012-12-18 22:14:05 -05:00
resources :issues, except: [:destroy] do
2011-10-15 12:56:53 -04:00
collection do
2012-07-27 20:35:24 -04:00
post :bulk_update
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
resources :team_members, except: [:index, :edit] do
2012-10-24 07:20:53 -04:00
collection do
# Used for import team
# from another project
get :import
post :apply_import
end
end
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
2013-01-27 05:56:20 -05:00
root to: "dashboard#show"
2011-10-08 17:36:38 -04:00
end