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

313 lines
8.3 KiB
Ruby
Raw Normal View History

2013-01-09 05:14:05 +00:00
require 'sidekiq/web'
require 'api/api'
2013-01-09 05:14:05 +00:00
2011-10-08 21:36:38 +00:00
Gitlab::Application.routes.draw do
#
# Search
#
2012-03-15 23:14:39 +00:00
get 'search' => "search#show"
2012-02-19 14:35:31 +00:00
2012-06-27 09:26:16 +00:00
# API
API::API.logger Rails.logger
mount API::API => '/api'
2012-06-27 09:26:16 +00:00
2013-01-09 05:14:05 +00: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 05:14:05 +00:00
end
# Enable Grack support
mount Grack::Bundle.new({
git_path: Gitlab.config.git.bin_path,
2013-02-11 17:16:59 +00: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 14:14:53 +00:00
}), at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }
#
# Help
#
2013-01-19 00:34:11 +00:00
get 'help' => 'help#index'
get 'help/api' => 'help#api'
2013-06-06 10:19:23 +00:00
get 'help/api/:category' => 'help#api', as: 'help_api_file'
2013-01-19 00:34:11 +00:00
get 'help/markdown' => 'help#markdown'
get 'help/permissions' => 'help#permissions'
get 'help/public_access' => 'help#public_access'
2013-01-19 00:34:11 +00: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 19:10:52 +00:00
get 'help/shortcuts'
get 'help/security'
2013-03-24 22:17:20 +00:00
#
# Global snippets
#
resources :snippets do
member do
get "raw"
end
end
2013-03-25 12:28:39 +00:00
get "/s/:username" => "snippets#user_index", as: :user_snippets, constraints: { username: /.*/ }
2013-03-24 22:17:20 +00:00
2013-01-10 18:17:57 +00:00
#
# Public namespace
#
namespace :public do
resources :projects, only: [:index]
root to: "projects#index"
end
2013-02-11 19:31:19 +00:00
#
# Attachments serving
#
2013-02-28 17:29:21 +00:00
get 'files/:type/:id/:filename' => 'files#download', constraints: { id: /\d+/, type: /[a-z]+/, filename: /.+/ }
2013-02-11 19:31:19 +00:00
#
# Admin Area
#
namespace :admin do
2013-01-26 10:08:34 +00:00
resources :users, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do
member do
2012-02-11 17:56:18 +00:00
put :team_update
put :block
put :unblock
2012-02-11 17:56:18 +00:00
end
end
2013-01-22 21:03:52 +00:00
resources :groups, constraints: { id: /[^\/]+/ } do
member do
2012-12-25 22:52:20 +00:00
put :project_teams_update
end
2013-01-19 17:11:11 +00:00
end
2013-01-22 21:03:52 +00:00
resources :hooks, only: [:index, :create, :destroy] do
2012-07-12 19:10:34 +00:00
get :test
end
2013-01-22 21:03:52 +00:00
resource :logs, only: [:show]
resource :background_jobs, controller: 'background_jobs', only: [:show]
resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, only: [:index, :show]
root to: "dashboard#index"
2011-10-08 21:36:38 +00:00
end
2011-12-05 07:43:53 +00:00
get "errors/githost"
#
# Profile Area
#
resource :profile, only: [:show, :update] do
member do
get :history
get :design
put :reset_private_token
put :update_username
end
2013-03-27 17:04:29 +00:00
scope module: :profiles do
resource :account, only: [:show, :update]
resource :notifications, only: [:show, :update]
resource :password, only: [:new, :create, :edit, :update] do
member do
put :reset
end
end
resources :keys
resources :groups, only: [:index] do
member do
delete :leave
end
end
end
end
2013-01-22 17:45:13 +00:00
match "/u/:username" => "users#show", as: :user, constraints: { username: /.*/ }
2013-01-22 17:05:01 +00:00
2011-12-08 20:17:53 +00:00
#
# Dashboard Area
#
2013-06-22 12:11:23 +00:00
resource :dashboard, controller: "dashboard", only: [:show] do
2013-01-27 10:56:20 +00:00
member do
get :projects
get :issues
get :merge_requests
end
end
2011-10-08 21:36:38 +00:00
2012-10-02 17:42:15 +00:00
#
# Groups Area
#
2013-03-10 10:16:57 +00:00
resources :groups, constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/} do
2012-10-02 17:42:15 +00:00
member do
get :issues
get :merge_requests
2013-07-12 16:01:39 +00:00
get :members
2012-10-02 17:42:15 +00:00
end
resources :users_groups, only: [:create, :update, :destroy]
2012-10-02 17:42:15 +00:00
end
resources :projects, constraints: { id: /[^\/]+/ }, only: [:new, :create]
2012-11-06 13:30:48 +00:00
devise_for :users, controllers: { omniauth_callbacks: :omniauth_callbacks, registrations: :registrations }
2011-10-08 21:36:38 +00: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
scope module: :projects do
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'
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: /.+/}
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: /.+/}
resources :snippets, constraints: {id: /\d+/} do
member do
get "raw"
end
end
resources :wikis, only: [:show, :edit, :destroy, :create], constraints: {id: /[a-zA-Z.0-9_\-]+/} do
collection do
get :pages
put ':id' => 'wikis#update'
get :git_access
end
2012-08-09 04:34:29 +00:00
member do
get "history"
end
2012-02-19 19:52:05 +00:00
end
2012-02-19 17:05:35 +00:00
resource :wall, only: [:show], constraints: {id: /\d+/} do
member do
get 'notes'
end
2013-03-19 10:35:42 +00:00
end
resource :repository, only: [:show] do
member do
get "stats"
get "archive"
end
2011-12-31 11:12:10 +00:00
end
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
member do
get :test
end
2012-11-19 19:34:05 +00:00
end
resources :deploy_keys, constraints: {id: /\d+/} do
member do
put :enable
put :disable
end
2013-05-06 12:10:55 +00:00
end
resources :branches, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex } do
2013-08-05 14:59:58 +00:00
collection do
get :recent, constraints: { id: Gitlab::Regex.git_reference_regex }
2013-08-05 14:59:58 +00:00
end
end
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 19:44:16 +00:00
resources :refs, only: [] do
collection do
get "switch"
end
2011-11-16 17:19:18 +00:00
member do
# tree viewer logs
get "logs_tree", constraints: { id: Gitlab::Regex.git_reference_regex }
get "logs_tree/:path" => "refs#logs_tree",
as: :logs_file,
constraints: {
id: Gitlab::Regex.git_reference_regex,
path: /.*/
}
end
2011-11-16 05:38:53 +00:00
end
2011-10-16 21:07:10 +00:00
resources :merge_requests, constraints: {id: /\d+/}, except: [:destroy] do
member do
get :diffs
get :automerge
get :automerge_check
get :ci_status
end
collection do
get :branch_from
get :branch_to
Merge Request on forked projects The good: - You can do a merge request for a forked commit and it will merge properly (i.e. it does work). - Push events take into account merge requests on forked projects - Tests around merge_actions now present, spinach, and other rspec tests - Satellites now clean themselves up rather then recreate The questionable: - Events only know about target projects - Project's merge requests only hold on to MR's where they are the target - All operations performed in the satellite The bad: - Duplication between project's repositories and satellites (e.g. commits_between) (for reference: http://feedback.gitlab.com/forums/176466-general/suggestions/3456722-merge-requests-between-projects-repos) Fixes: Make test repos/satellites only create when needed -Spinach/Rspec now only initialize test directory, and setup stubs (things that are relatively cheap) -project_with_code, source_project_with_code, and target_project_with_code now create/destroy their repos individually -fixed remote removal -How to merge renders properly -Update emails to show project/branches -Edit MR doesn't set target branch -Fix some failures on editing/creating merge requests, added a test -Added back a test around merge request observer -Clean up project_transfer_spec, Remove duplicate enable/disable observers -Ensure satellite lock files are cleaned up, Attempted to add some testing around these as well -Signifant speed ups for tests -Update formatting ordering in notes_on_merge_requests -Remove wiki schema update Fixes for search/search results -Search results was using by_project for a list of projects, updated this to use in_projects -updated search results to reference the correct (target) project -udpated search results to print both sides of the merge request Change-Id: I19407990a0950945cc95d62089cbcc6262dab1a8
2013-04-25 14:15:33 +00:00
get :update_branches
end
end
resources :hooks, only: [:index, :create, :destroy], constraints: {id: /\d+/} do
member do
get :test
end
end
resources :team, controller: 'team_members', only: [:index]
resources :milestones, except: [:destroy], constraints: {id: /\d+/}
resources :labels, only: [:index] do
collection do
post :generate
end
end
resources :issues, constraints: {id: /\d+/}, except: [:destroy] do
collection do
post :bulk_update
end
2011-10-22 04:06:38 +00:00
end
2012-09-25 22:45:30 +00:00
resources :team_members, except: [:index, :edit], constraints: { id: /[a-zA-Z.\/0-9_\-#%+]+/ } do
collection do
2012-10-24 11:20:53 +00:00
# Used for import team
# from another project
get :import
post :apply_import
end
2012-10-24 11:20:53 +00:00
end
resources :notes, only: [:index, :create, :destroy, :update], constraints: {id: /\d+/} do
member do
delete :delete_attachment
end
collection do
post :preview
end
end
2012-08-08 09:25:24 +00:00
end
2011-10-08 21:36:38 +00:00
end
2013-01-27 10:56:20 +00:00
root to: "dashboard#show"
2011-10-08 21:36:38 +00:00
end