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

332 lines
9.0 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"
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
API::API.logger Rails.logger
mount API::API => '/api'
2012-06-27 05:26:16 -04:00
2014-02-11 08:34:47 -05:00
# Get all keys of user
get ':username.keys' => 'profiles/keys#get_keys' , constraints: { username: /.*/ }
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
}), at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }, via: [:get, :post]
#
# 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-06-30 15:10:52 -04:00
get 'help/shortcuts'
get 'help/security'
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
2012-12-25 17:52:20 -05:00
put :project_teams_update
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
resources :broadcast_messages, only: [:index, :create, :destroy]
resource :logs, only: [:show]
resource :background_jobs, controller: 'background_jobs', only: [:show]
resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, only: [:index, :show] do
member do
put :transfer
end
end
root to: "dashboard#index"
2011-10-08 17:36:38 -04:00
end
#
# 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 13:04:29 -04: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 :emails, only: [:index, :create, :destroy]
resources :groups, only: [:index] do
member do
delete :leave
end
end
resource :avatar, only: [:destroy]
end
end
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
#
# 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
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
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
post :archive
post :unarchive
get :autocomplete_sources
get :import
put :retry_import
end
scope module: :projects do
resources :blob, only: [:show, :destroy], 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 00:34:29 -04:00
member do
get "history"
end
2012-02-19 14:52:05 -05:00
end
2012-02-19 12:05:35 -05:00
resource :wall, only: [:show], constraints: {id: /\d+/} do
member do
get 'notes'
end
2013-03-19 06:35:42 -04:00
end
resource :repository, only: [:show] do
member do
get "stats"
get "archive", constraints: { format: Gitlab::Regex.archive_formats_regex }
end
2011-12-31 06:12:10 -05:00
end
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
member do
get :test
end
2012-11-19 14:34:05 -05:00
end
resources :deploy_keys, constraints: {id: /\d+/} do
member do
put :enable
put :disable
end
2013-05-06 08:10:55 -04:00
end
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
get :recent, constraints: { id: Gitlab::Regex.git_reference_regex }
2013-08-05 10:59:58 -04: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 14:44:16 -05:00
resources :refs, only: [] do
collection do
get "switch"
end
2011-11-16 12:19:18 -05: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 00:38:53 -05:00
end
2011-10-16 17:07:10 -04: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 10:15:33 -04: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 00:06:38 -04:00
end
2012-09-25 18:45:30 -04:00
resources :team_members, except: [:index, :edit], constraints: { id: /[a-zA-Z.\/0-9_\-#%+]+/ } do
collection do
delete :leave
2012-10-24 07:20:53 -04:00
# Used for import team
# from another project
get :import
post :apply_import
end
2012-10-24 07:20:53 -04: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 05:25:24 -04:00
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