2016-11-14 09:55:31 -05:00
|
|
|
require 'constraints/project_url_constrainer'
|
|
|
|
|
|
|
|
resources :projects, only: [:index, :new, :create]
|
|
|
|
|
|
|
|
draw :git_http
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2016-11-14 09:55:31 -05:00
|
|
|
constraints(ProjectUrlConstrainer.new) do
|
2017-05-19 20:46:40 -04:00
|
|
|
# If the route has a wildcard segment, the segment has a regex constraint,
|
|
|
|
# the segment is potentially followed by _another_ wildcard segment, and
|
|
|
|
# the `format` option is not set to false, we need to specify that
|
|
|
|
# regex constraint _outside_ of `constraints: {}`.
|
|
|
|
#
|
|
|
|
# Otherwise, Rails will overwrite the constraint with `/.+?/`,
|
|
|
|
# which breaks some of our wildcard routes like `/blob/*id`
|
|
|
|
# and `/tree/*id` that depend on the negative lookahead inside
|
2017-05-24 16:59:26 -04:00
|
|
|
# `Gitlab::PathRegex.full_namespace_route_regex`, which helps the router
|
2017-05-19 20:46:40 -04:00
|
|
|
# determine whether a certain path segment is part of `*namespace_id`,
|
|
|
|
# `:project_id`, or `*id`.
|
|
|
|
#
|
|
|
|
# See https://github.com/rails/rails/blob/v4.2.8/actionpack/lib/action_dispatch/routing/mapper.rb#L155
|
|
|
|
scope(path: '*namespace_id',
|
|
|
|
as: :namespace,
|
2017-05-24 16:59:26 -04:00
|
|
|
namespace_id: Gitlab::PathRegex.full_namespace_route_regex) do
|
2016-11-14 09:55:31 -05:00
|
|
|
scope(path: ':project_id',
|
2017-05-24 16:59:26 -04:00
|
|
|
constraints: { project_id: Gitlab::PathRegex.project_route_regex },
|
2016-11-14 09:55:31 -05:00
|
|
|
module: :projects,
|
|
|
|
as: :project) do
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2016-10-12 23:33:09 -04:00
|
|
|
resources :autocomplete_sources, only: [] do
|
|
|
|
collection do
|
|
|
|
get 'members'
|
|
|
|
get 'issues'
|
|
|
|
get 'merge_requests'
|
|
|
|
get 'labels'
|
|
|
|
get 'milestones'
|
|
|
|
get 'commands'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
#
|
|
|
|
# Templates
|
|
|
|
#
|
|
|
|
get '/templates/:template_type/:key' => 'templates#show', as: :template
|
|
|
|
|
|
|
|
resource :avatar, only: [:show, :destroy]
|
|
|
|
resources :commit, only: [:show], constraints: { id: /\h{7,40}/ } do
|
|
|
|
member do
|
|
|
|
get :branches
|
|
|
|
get :pipelines
|
|
|
|
post :revert
|
|
|
|
post :cherry_pick
|
|
|
|
get :diff_for_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-14 15:22:44 -05:00
|
|
|
resource :pages, only: [:show, :destroy] do
|
2016-12-22 13:56:33 -05:00
|
|
|
resources :domains, only: [:show, :new, :create, :destroy], controller: 'pages_domains', constraints: { id: /[^\/]+/ }
|
2016-02-09 12:06:55 -05:00
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
resources :snippets, concerns: :awardable, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
2017-04-30 13:15:20 -04:00
|
|
|
get :raw
|
2017-02-01 13:15:59 -05:00
|
|
|
post :mark_as_spam
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
|
|
|
|
member do
|
2017-05-22 06:07:12 -04:00
|
|
|
put :test
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-19 17:53:19 -05:00
|
|
|
resource :mattermost, only: [:new, :create]
|
2016-12-13 13:52:41 -05:00
|
|
|
|
2017-05-10 05:25:30 -04:00
|
|
|
namespace :prometheus do
|
|
|
|
get :active_metrics
|
|
|
|
end
|
|
|
|
|
2017-03-31 08:54:38 -04:00
|
|
|
resources :deploy_keys, constraints: { id: /\d+/ }, only: [:index, :new, :create, :edit, :update] do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
|
|
|
put :enable
|
|
|
|
put :disable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :forks, only: [:index, :new, :create]
|
|
|
|
resource :import, only: [:new, :create, :show]
|
|
|
|
|
2017-06-13 18:12:31 -04:00
|
|
|
resources :merge_requests, concerns: :awardable, except: [:new, :create], constraints: { id: /\d+/ } do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
2017-05-09 00:15:34 -04:00
|
|
|
get :commit_change_content
|
2016-10-05 08:21:27 -04:00
|
|
|
post :merge
|
2017-02-17 08:56:13 -05:00
|
|
|
post :cancel_merge_when_pipeline_succeeds
|
2017-03-17 02:58:12 -04:00
|
|
|
get :pipeline_status
|
2016-10-07 18:10:06 -04:00
|
|
|
get :ci_environments_status
|
2016-10-05 08:21:27 -04:00
|
|
|
post :toggle_subscription
|
|
|
|
post :remove_wip
|
2016-08-08 18:30:01 -04:00
|
|
|
post :assign_related_issues
|
2017-06-13 18:12:31 -04:00
|
|
|
|
|
|
|
scope constraints: { format: nil }, action: :show do
|
|
|
|
get :commits, defaults: { tab: 'commits' }
|
|
|
|
get :pipelines, defaults: { tab: 'pipelines' }
|
|
|
|
get :diffs, defaults: { tab: 'diffs' }
|
|
|
|
end
|
|
|
|
|
|
|
|
scope constraints: { format: 'json' }, as: :json do
|
|
|
|
get :commits
|
|
|
|
get :pipelines
|
|
|
|
get :diffs, to: 'merge_requests/diffs#show'
|
|
|
|
end
|
|
|
|
|
|
|
|
get :diff_for_path, controller: 'merge_requests/diffs'
|
|
|
|
|
|
|
|
scope controller: 'merge_requests/conflicts' do
|
|
|
|
get :conflicts, action: :show
|
|
|
|
get :conflict_for_path
|
|
|
|
post :resolve_conflicts
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
collection do
|
|
|
|
get :diff_for_path
|
|
|
|
post :bulk_update
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :discussions, only: [], constraints: { id: /\h{40}/ } do
|
|
|
|
member do
|
|
|
|
post :resolve
|
|
|
|
delete :resolve, action: :unresolve
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-13 18:12:31 -04:00
|
|
|
controller 'merge_requests/creations', path: 'merge_requests' do
|
|
|
|
post '', action: :create, as: nil
|
|
|
|
|
|
|
|
scope path: 'new', as: :new_merge_request do
|
|
|
|
get '', action: :new
|
|
|
|
|
|
|
|
scope constraints: { format: nil }, action: :new do
|
|
|
|
get :diffs, defaults: { tab: 'diffs' }
|
|
|
|
get :pipelines, defaults: { tab: 'pipelines' }
|
|
|
|
end
|
|
|
|
|
|
|
|
scope constraints: { format: 'json' }, as: :json do
|
|
|
|
get :diffs
|
|
|
|
get :pipelines
|
|
|
|
end
|
|
|
|
|
|
|
|
get :diff_for_path
|
|
|
|
get :update_branches
|
|
|
|
get :branch_from
|
|
|
|
get :branch_to
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
resources :variables, only: [:index, :show, :update, :create, :destroy]
|
2017-03-07 08:02:56 -05:00
|
|
|
resources :triggers, only: [:index, :create, :edit, :update, :destroy] do
|
|
|
|
member do
|
|
|
|
post :take_ownership
|
|
|
|
end
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
resources :pipelines, only: [:index, :new, :create, :show] do
|
|
|
|
collection do
|
|
|
|
resource :pipelines_settings, path: 'settings', only: [:show, :update]
|
2017-03-02 12:57:01 -05:00
|
|
|
get :charts
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
2016-12-19 07:20:17 -05:00
|
|
|
get :stage
|
2016-10-05 08:21:27 -04:00
|
|
|
post :cancel
|
|
|
|
post :retry
|
2016-11-23 09:44:05 -05:00
|
|
|
get :builds
|
2017-04-15 21:33:01 -04:00
|
|
|
get :failures
|
2017-03-03 01:59:25 -05:00
|
|
|
get :status
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-07 18:35:56 -04:00
|
|
|
resources :pipeline_schedules, except: [:show] do
|
|
|
|
member do
|
|
|
|
post :take_ownership
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-03 10:44:06 -04:00
|
|
|
resources :clusters, except: [:edit] do
|
2017-09-25 03:10:25 -04:00
|
|
|
collection do
|
2017-09-27 08:01:08 -04:00
|
|
|
get :login
|
2017-09-25 03:10:25 -04:00
|
|
|
end
|
2017-09-28 05:11:17 -04:00
|
|
|
|
|
|
|
member do
|
2017-09-30 11:54:22 -04:00
|
|
|
get :status, format: :json
|
2017-09-28 05:11:17 -04:00
|
|
|
end
|
2017-09-25 03:10:25 -04:00
|
|
|
end
|
|
|
|
|
2016-10-17 09:40:18 -04:00
|
|
|
resources :environments, except: [:destroy] do
|
2016-10-17 05:33:24 -04:00
|
|
|
member do
|
|
|
|
post :stop
|
2016-12-14 19:59:04 -05:00
|
|
|
get :terminal
|
2017-03-07 11:57:42 -05:00
|
|
|
get :metrics
|
2017-05-10 05:25:30 -04:00
|
|
|
get :additional_metrics
|
2016-12-14 19:59:04 -05:00
|
|
|
get '/terminal.ws/authorize', to: 'environments#terminal_websocket_authorize', constraints: { format: nil }
|
2016-10-17 05:33:24 -04:00
|
|
|
end
|
2017-02-07 09:06:31 -05:00
|
|
|
|
|
|
|
collection do
|
2017-03-27 05:15:29 -04:00
|
|
|
get :folder, path: 'folders/*id', constraints: { format: /(html|json)/ }
|
2017-02-07 09:06:31 -05:00
|
|
|
end
|
2017-03-27 05:22:43 -04:00
|
|
|
|
2017-05-09 00:15:34 -04:00
|
|
|
resources :deployments, only: [:index] do
|
|
|
|
member do
|
|
|
|
get :metrics
|
2017-05-25 11:39:43 -04:00
|
|
|
get :additional_metrics
|
2017-05-09 00:15:34 -04:00
|
|
|
end
|
|
|
|
end
|
2016-10-17 05:33:24 -04:00
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
resource :cycle_analytics, only: [:show]
|
|
|
|
|
2016-10-24 10:24:56 -04:00
|
|
|
namespace :cycle_analytics do
|
2016-11-16 03:58:23 -05:00
|
|
|
scope :events, controller: 'events' do
|
2016-10-24 10:49:25 -04:00
|
|
|
get :issue
|
|
|
|
get :plan
|
|
|
|
get :code
|
|
|
|
get :test
|
|
|
|
get :review
|
|
|
|
get :staging
|
|
|
|
get :production
|
2016-10-24 10:24:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-31 04:56:00 -04:00
|
|
|
scope '-' do
|
|
|
|
resources :jobs, only: [:index, :show], constraints: { id: /\d+/ } do
|
|
|
|
collection do
|
|
|
|
post :cancel_all
|
|
|
|
|
|
|
|
resources :artifacts, only: [] do
|
|
|
|
collection do
|
|
|
|
get :latest_succeeded,
|
|
|
|
path: '*ref_name_and_path',
|
|
|
|
format: false
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-31 04:56:00 -04:00
|
|
|
member do
|
|
|
|
get :status
|
|
|
|
post :cancel
|
|
|
|
post :retry
|
|
|
|
post :play
|
|
|
|
post :erase
|
|
|
|
get :trace, defaults: { format: 'json' }
|
|
|
|
get :raw
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2017-05-31 04:56:00 -04:00
|
|
|
resource :artifacts, only: [] do
|
|
|
|
get :download
|
|
|
|
get :browse, path: 'browse(/*path)', format: false
|
|
|
|
get :file, path: 'file/*path', format: false
|
|
|
|
get :raw, path: 'raw/*path', format: false
|
|
|
|
post :keep
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-06 10:55:48 -04:00
|
|
|
draw :legacy_builds
|
2017-05-18 07:32:22 -04:00
|
|
|
|
2017-04-20 04:31:37 -04:00
|
|
|
resources :hooks, only: [:index, :create, :edit, :update, :destroy], constraints: { id: /\d+/ } do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
2017-04-27 06:08:57 -04:00
|
|
|
|
|
|
|
resources :hook_logs, only: [:show] do
|
|
|
|
member do
|
|
|
|
get :retry
|
|
|
|
end
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
2017-04-05 08:13:46 -04:00
|
|
|
resources :container_registry, only: [:index, :destroy],
|
2017-04-05 09:19:48 -04:00
|
|
|
controller: 'registry/repositories'
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2017-03-31 07:56:07 -04:00
|
|
|
namespace :registry do
|
|
|
|
resources :repository, only: [] do
|
2017-10-18 19:35:37 -04:00
|
|
|
# We default to JSON format in the controller to avoid ambiguity.
|
|
|
|
# `latest.json` could either be a request for a tag named `latest`
|
|
|
|
# in JSON format, or a request for tag named `latest.json`.
|
|
|
|
scope format: false do
|
|
|
|
resources :tags, only: [:index, :destroy],
|
|
|
|
constraints: { id: Gitlab::Regex.container_registry_tag_regex }
|
|
|
|
end
|
2017-03-31 07:56:07 -04:00
|
|
|
end
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
resources :milestones, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
put :sort_issues
|
|
|
|
put :sort_merge_requests
|
2017-04-25 10:25:20 -04:00
|
|
|
get :merge_requests
|
|
|
|
get :participants
|
|
|
|
get :labels
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :labels, except: [:show], constraints: { id: /\d+/ } do
|
|
|
|
collection do
|
|
|
|
post :generate
|
|
|
|
post :set_priorities
|
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
2016-11-02 07:58:59 -04:00
|
|
|
post :promote
|
2016-10-05 08:21:27 -04:00
|
|
|
post :toggle_subscription
|
|
|
|
delete :remove_priority
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :issues, concerns: :awardable, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
post :toggle_subscription
|
|
|
|
post :mark_as_spam
|
2017-08-14 03:26:19 -04:00
|
|
|
post :move
|
2016-10-05 08:21:27 -04:00
|
|
|
get :referenced_merge_requests
|
|
|
|
get :related_branches
|
|
|
|
get :can_create_branch
|
2017-05-13 16:19:49 -04:00
|
|
|
get :realtime_changes
|
2017-05-04 04:09:21 -04:00
|
|
|
post :create_merge_request
|
2017-06-09 17:24:54 -04:00
|
|
|
get :discussions, format: :json
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
collection do
|
|
|
|
post :bulk_update
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :project_members, except: [:show, :new, :edit], constraints: { id: /[a-zA-Z.\/0-9_\-#%+]+/ }, concerns: :access_requestable do
|
|
|
|
collection do
|
|
|
|
delete :leave
|
|
|
|
|
|
|
|
# Used for import team
|
|
|
|
# from another project
|
|
|
|
get :import
|
|
|
|
post :apply_import
|
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
|
|
|
post :resend_invite
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-06 10:30:34 -04:00
|
|
|
resources :group_links, only: [:index, :create, :update, :destroy], constraints: { id: /\d+/ }
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2017-02-07 12:02:02 -05:00
|
|
|
resources :notes, only: [:create, :destroy, :update], concerns: :awardable, constraints: { id: /\d+/ } do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
|
|
|
delete :delete_attachment
|
|
|
|
post :resolve
|
|
|
|
delete :resolve, action: :unresolve
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-07 12:02:02 -05:00
|
|
|
get 'noteable/:target_type/:target_id/notes' => 'notes#index', as: 'noteable_notes'
|
|
|
|
|
2017-08-28 17:56:49 -04:00
|
|
|
resources :boards, only: [:index, :show, :create, :update, :destroy]
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
resources :todos, only: [:create]
|
|
|
|
|
|
|
|
resources :uploads, only: [:create] do
|
|
|
|
collection do
|
|
|
|
get ":secret/:filename", action: :show, as: :show, constraints: { filename: /[^\/]+/ }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :runners, only: [:index, :edit, :update, :destroy, :show] do
|
|
|
|
member do
|
|
|
|
get :resume
|
|
|
|
get :pause
|
|
|
|
end
|
|
|
|
|
|
|
|
collection do
|
|
|
|
post :toggle_shared_runners
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :runner_projects, only: [:create, :destroy]
|
|
|
|
resources :badges, only: [:index] do
|
|
|
|
collection do
|
2017-05-24 16:59:26 -04:00
|
|
|
scope '*ref', constraints: { ref: Gitlab::PathRegex.git_reference_regex } do
|
2016-10-05 08:21:27 -04:00
|
|
|
constraints format: /svg/ do
|
2017-07-19 07:08:47 -04:00
|
|
|
# Keep around until 10.0, see gitlab-org/gitlab-ce#35307
|
|
|
|
get :build, to: "badges#pipeline"
|
|
|
|
get :pipeline
|
2016-10-05 08:21:27 -04:00
|
|
|
get :coverage
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-12-22 17:38:27 -05:00
|
|
|
namespace :settings do
|
2017-07-07 10:40:41 -04:00
|
|
|
get :members, to: redirect('/%{namespace_id}/%{project_id}/project_members')
|
2017-01-23 17:19:39 -05:00
|
|
|
resource :ci_cd, only: [:show], controller: 'ci_cd'
|
2016-12-30 12:30:25 -05:00
|
|
|
resource :integrations, only: [:show]
|
2017-01-19 11:48:53 -05:00
|
|
|
resource :repository, only: [:show], controller: :repository
|
2016-12-22 17:38:27 -05:00
|
|
|
end
|
|
|
|
|
2016-11-07 10:14:34 -05:00
|
|
|
# Since both wiki and repository routing contains wildcard characters
|
|
|
|
# its preferable to keep it below all other project routes
|
|
|
|
draw :wiki
|
|
|
|
draw :repository
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
2016-11-14 09:55:31 -05:00
|
|
|
|
|
|
|
resources(:projects,
|
|
|
|
path: '/',
|
2017-05-24 16:59:26 -04:00
|
|
|
constraints: { id: Gitlab::PathRegex.project_route_regex },
|
2016-11-14 09:55:31 -05:00
|
|
|
only: [:edit, :show, :update, :destroy]) do
|
|
|
|
member do
|
|
|
|
put :transfer
|
|
|
|
delete :remove_fork
|
|
|
|
post :archive
|
|
|
|
post :unarchive
|
|
|
|
post :housekeeping
|
|
|
|
post :toggle_star
|
|
|
|
post :preview_markdown
|
|
|
|
post :export
|
|
|
|
post :remove_export
|
|
|
|
post :generate_new_export
|
|
|
|
get :download_export
|
|
|
|
get :activity
|
|
|
|
get :refs
|
|
|
|
put :new_issue_address
|
|
|
|
end
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|