project.rb 11.9 KB
Newer Older
1 2 3 4 5
require 'constraints/project_url_constrainer'

resources :projects, only: [:index, :new, :create]

draw :git_http
6

7
constraints(ProjectUrlConstrainer.new) do
8 9 10 11 12 13 14 15
  # 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
16
  # `Gitlab::PathRegex.full_namespace_route_regex`, which helps the router
17 18 19 20 21 22
  # 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,
23
        namespace_id: Gitlab::PathRegex.full_namespace_route_regex) do
24
    scope(path: ':project_id',
25
          constraints: { project_id: Gitlab::PathRegex.project_route_regex },
26 27
          module: :projects,
          as: :project) do
28

29 30 31 32 33 34 35 36 37 38 39
      resources :autocomplete_sources, only: [] do
        collection do
          get 'members'
          get 'issues'
          get 'merge_requests'
          get 'labels'
          get 'milestones'
          get 'commands'
        end
      end

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
      #
      # 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

56
      resource :pages, only: [:show, :destroy] do
57
        resources :domains, only: [:show, :new, :create, :destroy], controller: 'pages_domains', constraints: { id: /[^\/]+/ }
58 59
      end

60 61
      resources :snippets, concerns: :awardable, constraints: { id: /\d+/ } do
        member do
62
          get :raw
63
          post :mark_as_spam
64 65 66 67 68
        end
      end

      resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
        member do
69
          put :test
70 71 72
        end
      end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
73
      resource :mattermost, only: [:new, :create]
Z.J. van de Weg's avatar
Z.J. van de Weg committed
74

75 76 77 78
      namespace :prometheus do
        get :active_metrics
      end

79
      resources :deploy_keys, constraints: { id: /\d+/ }, only: [:index, :new, :create, :edit, :update] do
80 81 82 83 84 85 86 87 88
        member do
          put :enable
          put :disable
        end
      end

      resources :forks, only: [:index, :new, :create]
      resource :import, only: [:new, :create, :show]

89
      resources :merge_requests, concerns: :awardable, except: [:new, :create], constraints: { id: /\d+/ } do
90
        member do
Fatih Acet's avatar
Fatih Acet committed
91
          get :commit_change_content
92
          post :merge
93
          post :cancel_merge_when_pipeline_succeeds
94
          get :pipeline_status
95
          get :ci_environments_status
96 97
          post :toggle_subscription
          post :remove_wip
98
          post :assign_related_issues
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118

          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
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
        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

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
      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

157
      resources :variables, only: [:index, :show, :update, :create, :destroy]
158 159 160 161 162
      resources :triggers, only: [:index, :create, :edit, :update, :destroy] do
        member do
          post :take_ownership
        end
      end
163 164 165 166

      resources :pipelines, only: [:index, :new, :create, :show] do
        collection do
          resource :pipelines_settings, path: 'settings', only: [:show, :update]
167
          get :charts
168 169 170
        end

        member do
171
          get :stage
172 173
          post :cancel
          post :retry
Filipa Lacerda's avatar
Filipa Lacerda committed
174
          get :builds
175
          get :failures
176
          get :status
177 178 179
        end
      end

180 181 182 183 184 185
      resources :pipeline_schedules, except: [:show] do
        member do
          post :take_ownership
        end
      end

186
      resources :clusters, except: [:edit] do
187
        collection do
188
          get :login
189
        end
190 191

        member do
192
          get :status, format: :json
193
        end
194 195
      end

196
      resources :environments, except: [:destroy] do
197 198
        member do
          post :stop
199
          get :terminal
200
          get :metrics
201
          get :additional_metrics
202
          get '/terminal.ws/authorize', to: 'environments#terminal_websocket_authorize', constraints: { format: nil }
203
        end
204 205

        collection do
206
          get :folder, path: 'folders/*id', constraints: { format: /(html|json)/ }
207
        end
208

Fatih Acet's avatar
Fatih Acet committed
209 210 211
        resources :deployments, only: [:index] do
          member do
            get :metrics
212
            get :additional_metrics
Fatih Acet's avatar
Fatih Acet committed
213 214
          end
        end
215
      end
216 217 218

      resource :cycle_analytics, only: [:show]

219
      namespace :cycle_analytics do
220
        scope :events, controller: 'events' do
221 222 223 224 225 226 227
          get :issue
          get :plan
          get :code
          get :test
          get :review
          get :staging
          get :production
228 229 230
        end
      end

231 232 233 234 235 236 237 238 239 240 241
      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
242 243 244
            end
          end

245 246 247 248 249 250 251 252 253
          member do
            get :status
            post :cancel
            post :retry
            post :play
            post :erase
            get :trace, defaults: { format: 'json' }
            get :raw
          end
254

255 256 257 258 259 260 261
          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
262 263 264
        end
      end

Lin Jen-Shin's avatar
Lin Jen-Shin committed
265
      draw :legacy_builds
266

267
      resources :hooks, only: [:index, :create, :edit, :update, :destroy], constraints: { id: /\d+/ } do
268 269 270
        member do
          get :test
        end
271 272 273 274 275 276

        resources :hook_logs, only: [:show] do
          member do
            get :retry
          end
        end
277 278
      end

279
      resources :container_registry, only: [:index, :destroy],
280
                                     controller: 'registry/repositories'
281

282 283
      namespace :registry do
        resources :repository, only: [] do
284
          resources :tags, only: [:index, :destroy],
285
                           constraints: { id: Gitlab::Regex.container_registry_tag_regex }
286 287
        end
      end
288 289 290 291 292

      resources :milestones, constraints: { id: /\d+/ } do
        member do
          put :sort_issues
          put :sort_merge_requests
293 294 295
          get :merge_requests
          get :participants
          get :labels
296 297 298 299 300 301 302 303 304 305
        end
      end

      resources :labels, except: [:show], constraints: { id: /\d+/ } do
        collection do
          post :generate
          post :set_priorities
        end

        member do
306
          post :promote
307 308 309 310 311 312 313 314 315
          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
316
          post :move
317 318 319
          get :referenced_merge_requests
          get :related_branches
          get :can_create_branch
320
          get :realtime_changes
321
          post :create_merge_request
322
          get :discussions, format: :json
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
        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

344
      resources :group_links, only: [:index, :create, :update, :destroy], constraints: { id: /\d+/ }
345

346
      resources :notes, only: [:create, :destroy, :update], concerns: :awardable, constraints: { id: /\d+/ } do
347 348 349 350 351 352 353
        member do
          delete :delete_attachment
          post :resolve
          delete :resolve, action: :unresolve
        end
      end

354 355
      get 'noteable/:target_type/:target_id/notes' => 'notes#index', as: 'noteable_notes'

Felipe Artur's avatar
Felipe Artur committed
356
      resources :boards, only: [:index, :show, :create, :update, :destroy]
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379

      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
380
          scope '*ref', constraints: { ref: Gitlab::PathRegex.git_reference_regex } do
381
            constraints format: /svg/ do
382 383 384
              # Keep around until 10.0, see gitlab-org/gitlab-ce#35307
              get :build, to: "badges#pipeline"
              get :pipeline
385 386 387 388 389
              get :coverage
            end
          end
        end
      end
390
      namespace :settings do
391
        get :members, to: redirect('/%{namespace_id}/%{project_id}/project_members')
392
        resource :ci_cd, only: [:show], controller: 'ci_cd'
393
        resource :integrations, only: [:show]
394
        resource :repository, only: [:show], controller: :repository
395 396
      end

397 398 399 400
      # Since both wiki and repository routing contains wildcard characters
      # its preferable to keep it below all other project routes
      draw :wiki
      draw :repository
401
    end
402 403 404

    resources(:projects,
              path: '/',
405
              constraints: { id: Gitlab::PathRegex.project_route_regex },
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
              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
424 425
  end
end