gitlabhq/config/routes.rb

305 lines
7.4 KiB
Ruby
Raw Permalink Normal View History

2013-01-09 06:14:05 +01:00
require 'sidekiq/web'
2011-10-08 23:36:38 +02:00
Gitlab::Application.routes.draw do
#
# Search
#
2012-03-16 00:14:39 +01:00
get 'search' => "search#show"
2012-02-19 15:35:31 +01:00
2012-06-27 11:26:16 +02:00
# API
require 'api'
Gitlab::API.logger Rails.logger
2012-06-27 11:26:16 +02:00
mount Gitlab::API => '/api'
2013-01-09 06:14:05 +01: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 06:14:05 +01:00
end
# Enable Grack support
mount Grack::Bundle.new({
git_path: Gitlab.config.git.bin_path,
2013-02-11 18:16:59 +01: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 15:14:53 +01:00
}), at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }
#
# Help
#
2013-01-19 01:34:11 +01:00
get 'help' => 'help#index'
get 'help/api' => 'help#api'
get 'help/markdown' => 'help#markdown'
get 'help/permissions' => 'help#permissions'
get 'help/public_access' => 'help#public_access'
2013-01-19 01:34:11 +01: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-01-10 19:17:57 +01:00
#
# Public namespace
#
namespace :public do
resources :projects, only: [:index]
root to: "projects#index"
end
2013-02-11 20:31:19 +01:00
#
# Attachments serving
#
2013-02-28 18:29:21 +01:00
get 'files/:type/:id/:filename' => 'files#download', constraints: { id: /\d+/, type: /[a-z]+/, filename: /.+/ }
2013-02-11 20:31:19 +01:00
#
# Admin Area
#
namespace :admin do
2013-01-26 11:08:34 +01:00
resources :users, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do
member do
2012-02-11 18:56:18 +01:00
put :team_update
put :block
put :unblock
2012-02-11 18:56:18 +01:00
end
end
2013-01-22 22:03:52 +01:00
resources :groups, constraints: { id: /[^\/]+/ } do
member do
put :project_update
2012-12-25 23:52:20 +01:00
put :project_teams_update
delete :remove_project
end
end
2013-01-22 22:03:52 +01:00
resources :teams, constraints: { id: /[^\/]+/ } do
scope module: :teams do
2013-01-22 22:03:52 +01: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 18:11:11 +01:00
end
2013-01-22 22:03:52 +01:00
resources :hooks, only: [:index, :create, :destroy] do
2012-07-12 21:10:34 +02:00
get :test
end
2013-01-22 22:03:52 +01:00
resource :logs, only: [:show]
resource :resque, controller: 'resque', only: [:show]
2013-01-22 22:03:52 +01: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 22:03:52 +01:00
resources :members, only: [:edit, :update, :destroy]
end
end
root to: "dashboard#index"
2011-10-08 23:36:38 +02:00
end
2011-12-05 08:43:53 +01: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 18:04:29 +01:00
resource :notifications
end
resources :keys
2013-01-22 18:45:13 +01:00
match "/u/:username" => "users#show", as: :user, constraints: { username: /.*/ }
2013-01-22 18:05:01 +01:00
2011-12-08 21:17:53 +01:00
#
# Dashboard Area
#
2013-01-27 11:56:20 +01:00
resource :dashboard, controller: "dashboard" do
member do
get :projects
get :issues
get :merge_requests
end
end
2011-10-08 23:36:38 +02:00
2012-10-02 19:42:15 +02:00
#
# Groups Area
#
2013-03-10 11:16:57 +01:00
resources :groups, constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/} do
2012-10-02 19:42:15 +02:00
member do
get :issues
get :merge_requests
get :search
get :people
2012-12-26 17:31:18 +01:00
post :team_members
2012-10-02 19:42:15 +02:00
end
end
2013-01-22 22:03:52 +01:00
#
# Teams Area
#
2013-03-10 11:16:57 +01:00
resources :teams, constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/} do
2013-01-19 18:32:09 +01:00
member do
get :issues
get :merge_requests
end
2013-01-19 18:47:08 +01:00
scope module: :teams do
2013-01-22 22:03:52 +01:00
resources :members, only: [:index, :new, :create, :edit, :update, :destroy]
resources :projects, only: [:index, :new, :create, :edit, :update, :destroy], constraints: { id: /[a-zA-Z.0-9_\-\/]+/ }
2013-01-19 18:47:08 +01:00
end
2013-01-19 18:32:09 +01:00
end
resources :projects, constraints: { id: /[^\/]+/ }, only: [:new, :create]
2012-11-06 14:30:48 +01:00
devise_for :users, controllers: { omniauth_callbacks: :omniauth_callbacks, registrations: :registrations }
2011-10-08 23:36:38 +02: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
end
resources :blob, 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 15:24:44 +01:00
resources :commit, only: [:show], constraints: {id: /[[:alnum:]]{6,40}/}
resources :commits, only: [:show], constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/}
2012-12-25 15:24:44 +01:00
resources :compare, only: [:index, :create]
resources :blame, only: [:show], constraints: {id: /.+/}
resources :graph, only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}
2012-12-25 15:24:44 +01:00
match "/compare/:from...:to" => "compare#show", as: "compare",
:via => [:get, :post], constraints: {from: /.+/, to: /.+/}
resources :wikis, only: [:show, :edit, :destroy, :create] do
2012-08-09 06:34:29 +02:00
collection do
get :pages
put ':id' => 'wikis#update'
get :git_access
2012-08-09 06:34:29 +02:00
end
2012-02-19 20:52:05 +01:00
member do
get "history"
2012-02-19 20:52:05 +01:00
end
end
2012-02-19 18:05:35 +01:00
2013-03-19 11:35:42 +01:00
resource :wall, only: [:show] do
member do
get 'notes'
end
end
resource :repository do
member do
2011-12-31 12:12:10 +01:00
get "branches"
get "tags"
2012-11-10 22:08:47 +01:00
get "stats"
get "archive"
2011-12-31 12:12:10 +01:00
end
end
2012-11-19 20:34:05 +01:00
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
member do
get :test
end
end
2011-12-29 20:44:16 +01:00
resources :deploy_keys
resources :protected_branches, only: [:index, :create, :destroy]
2011-12-29 20:44:16 +01:00
resources :refs, only: [] do
collection do
2011-11-16 18:19:18 +01:00
get "switch"
end
member do
# tree viewer logs
get "logs_tree", constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }
2012-07-10 21:52:38 +02:00
get "logs_tree/:path" => "refs#logs_tree",
as: :logs_file,
constraints: {
id: /[a-zA-Z.0-9\/_\-]+/,
path: /.*/
2012-07-10 21:52:38 +02:00
}
2011-11-16 06:38:53 +01:00
end
2011-10-08 23:36:38 +02:00
end
2011-10-16 23:07:10 +02:00
2012-12-19 04:14:05 +01:00
resources :merge_requests, constraints: {id: /\d+/}, except: [:destroy] do
member do
2011-11-28 21:16:57 +01:00
get :diffs
2012-03-29 17:03:05 +02:00
get :automerge
2012-04-16 21:08:03 +02:00
get :automerge_check
get :ci_status
2011-11-28 21:16:57 +01:00
end
collection do
get :branch_from
get :branch_to
end
2011-11-28 21:16:57 +01:00
end
resources :snippets do
member do
get "raw"
end
end
resources :hooks, only: [:index, :create, :destroy] do
member do
get :test
end
end
resources :team, controller: 'team_members', only: [:index]
2012-12-19 04:14:05 +01:00
resources :milestones, except: [:destroy]
resources :labels, only: [:index]
2012-12-19 04:14:05 +01:00
resources :issues, except: [:destroy] do
2011-10-15 18:56:53 +02:00
collection do
post :sort
2012-07-28 02:35:24 +02:00
post :bulk_update
get :search
2011-10-22 06:06:38 +02:00
end
2011-10-15 18:56:53 +02:00
end
2012-09-26 00:45:30 +02:00
2012-10-24 13:20:53 +02:00
resources :team_members do
collection do
# Used for import team
# from another project
get :import
post :apply_import
end
end
scope module: :projects do
resources :teams, only: [] do
collection do
get :available
post :assign
end
member do
delete :resign
end
end
end
resources :notes, only: [:index, :create, :destroy] do
2012-08-08 11:25:24 +02:00
collection do
post :preview
end
end
2011-10-08 23:36:38 +02:00
end
2013-01-27 11:56:20 +01:00
root to: "dashboard#show"
2011-10-08 23:36:38 +02:00
end