routes.rb 9.2 KB
Newer Older
D
sidekiq  
Dmitriy Zaporozhets 已提交
1
require 'sidekiq/web'
2
require 'api/api'
D
sidekiq  
Dmitriy Zaporozhets 已提交
3

G
gitlabhq 已提交
4
Gitlab::Application.routes.draw do
5 6 7
  #
  # Search
  #
8
  get 'search' => "search#show"
9
  get 'search/autocomplete' => "search#autocomplete", as: :search_autocomplete
V
Valery Sizov 已提交
10

11
  # API
12 13
  API::API.logger Rails.logger
  mount API::API => '/api'
14

G
GitLab 已提交
15
  # Get all keys of user
16 17
  get ':username.keys' => 'profiles/keys#get_keys' , constraints: { username: /.*/ }

D
sidekiq  
Dmitriy Zaporozhets 已提交
18 19
  constraint = lambda { |request| request.env["warden"].authenticate? and request.env['warden'].user.admin? }
  constraints constraint do
20
    mount Sidekiq::Web, at: "/admin/sidekiq", as: :sidekiq
D
sidekiq  
Dmitriy Zaporozhets 已提交
21
  end
A
Ariejan de Vroom 已提交
22

23 24
  # Enable Grack support
  mount Grack::Bundle.new({
25
    git_path:     Gitlab.config.git.bin_path,
26 27 28
    project_root: Gitlab.config.gitlab_shell.repos_path,
    upload_pack:  Gitlab.config.gitlab_shell.upload_pack,
    receive_pack: Gitlab.config.gitlab_shell.receive_pack
29
  }), at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }, via: [:get, :post]
30

31 32 33
  #
  # Help
  #
J
Job van der Voort 已提交
34 35

  get 'help'                  => 'help#index'
36
  get 'help/:category/:file'  => 'help#show', as: :help_page
M
Marin Jankovski 已提交
37
  get 'help/shortcuts'
38

A
Andrew8xx8 已提交
39 40 41 42 43 44 45 46
  #
  # Global snippets
  #
  resources :snippets do
    member do
      get "raw"
    end
  end
A
Andrew8xx8 已提交
47
  get "/s/:username" => "snippets#user_index", as: :user_snippets, constraints: { username: /.*/ }
A
Andrew8xx8 已提交
48

49
  #
D
Dmitriy Zaporozhets 已提交
50
  # Explroe area
51
  #
D
Dmitriy Zaporozhets 已提交
52 53 54 55
  namespace :explore do
    resources :projects, only: [:index] do
      collection do
        get :trending
56
        get :starred
D
Dmitriy Zaporozhets 已提交
57 58 59
      end
    end

60
    resources :groups, only: [:index]
D
Dmitriy Zaporozhets 已提交
61
    root to: "projects#trending"
62 63
  end

D
Dmitriy Zaporozhets 已提交
64 65 66 67
  # Compatibility with old routing
  get 'public' => "explore/projects#index"
  get 'public/projects' => "explore/projects#index"

68 69 70
  #
  # Attachments serving
  #
71
  get 'files/:type/:id/:filename' => 'files#download', constraints: { id: /\d+/, type: /[a-z]+/, filename:  /.+/ }
72

73 74 75
  #
  # Admin Area
  #
N
Nihad Abbasov 已提交
76
  namespace :admin do
77
    resources :users, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do
78
      member do
D
Dmitriy Zaporozhets 已提交
79
        put :team_update
80 81
        put :block
        put :unblock
82
        delete 'remove/:email_id', action: 'remove_email', as: 'remove_email'
D
Dmitriy Zaporozhets 已提交
83 84
      end
    end
A
Andrey Kumanyaev 已提交
85

86 87
    resources :groups, constraints: { id: /[^\/]+/ } do
      member do
A
Andrey Kumanyaev 已提交
88
        put :project_teams_update
89
      end
A
Andrey Kumanyaev 已提交
90
    end
A
Andrey Kumanyaev 已提交
91

R
Robert Speicher 已提交
92
    resources :hooks, only: [:index, :create, :destroy] do
V
Valeriy Sizov 已提交
93 94
      get :test
    end
A
Andrey Kumanyaev 已提交
95

96
    resources :broadcast_messages, only: [:index, :create, :destroy]
97
    resource :logs, only: [:show]
98
    resource :background_jobs, controller: 'background_jobs', only: [:show]
99 100 101 102 103 104 105

    resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, only: [:index, :show] do
      member do
        put :transfer
      end
    end

R
Robert Speicher 已提交
106
    root to: "dashboard#index"
G
gitlabhq 已提交
107 108
  end

R
randx 已提交
109 110 111
  #
  # Profile Area
  #
112 113 114 115 116 117 118 119
  resource :profile, only: [:show, :update] do
    member do
      get :history
      get :design

      put :reset_private_token
      put :update_username
    end
D
Dmitriy Zaporozhets 已提交
120

121
    scope module: :profiles do
122
      resource :account, only: [:show, :update]
123
      resource :notifications, only: [:show, :update]
124 125 126 127 128
      resource :password, only: [:new, :create, :edit, :update] do
        member do
          put :reset
        end
      end
129
      resources :keys
130
      resources :emails, only: [:index, :create, :destroy]
131 132 133 134 135
      resources :groups, only: [:index] do
        member do
          delete :leave
        end
      end
136
      resource :avatar, only: [:destroy]
137
    end
138
  end
R
Robert Speicher 已提交
139

140
  match "/u/:username" => "users#show", as: :user, constraints: { username: /.*/ }, via: :get
D
Dmitriy Zaporozhets 已提交
141

R
randx 已提交
142 143 144
  #
  # Dashboard Area
  #
145
  resource :dashboard, controller: "dashboard", only: [:show] do
D
Dmitriy Zaporozhets 已提交
146 147 148 149 150 151
    member do
      get :projects
      get :issues
      get :merge_requests
    end
  end
G
gitlabhq 已提交
152

R
randx 已提交
153 154 155
  #
  # Groups Area
  #
156
  resources :groups, constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/}  do
R
randx 已提交
157 158 159
    member do
      get :issues
      get :merge_requests
160
      get :members
D
Dmitriy Zaporozhets 已提交
161
      get :projects
R
randx 已提交
162
    end
163 164

    resources :users_groups, only: [:create, :update, :destroy]
165

S
Steven Thonus 已提交
166 167
    scope module: :groups do
      resource :avatar, only: [:destroy]
168
      resources :milestones
S
Steven Thonus 已提交
169
    end
R
randx 已提交
170 171
  end

R
Robert Speicher 已提交
172
  resources :projects, constraints: { id: /[^\/]+/ }, only: [:new, :create]
173

174
  devise_for :users, controllers: { omniauth_callbacks: :omniauth_callbacks, registrations: :registrations , passwords: :passwords, sessions: :sessions }
G
gitlabhq 已提交
175

176 177 178
  devise_scope :user do
    get "/users/auth/:provider/omniauth_error" => "omniauth_callbacks#omniauth_error", as: :omniauth_error
  end
179 180 181
  #
  # Project Area
  #
182
  resources :projects, constraints: { id: /[a-zA-Z.0-9_\-]+\/[a-zA-Z.0-9_\-]+/ }, except: [:new, :create, :index], path: "/" do
183 184
    member do
      put :transfer
185
      post :fork
186 187
      post :archive
      post :unarchive
188
      post :upload_image
C
Ciro Santilli 已提交
189
      post :toggle_star
190
      get :autocomplete_sources
191 192
      get :import
      put :retry_import
193 194
    end

195
    scope module: :projects do
S
skv 已提交
196 197 198
      resources :blob, only: [:show, :destroy], constraints: { id: /.+/ } do
        get :diff, on: :member
      end
199 200
      resources :raw,       only: [:show], constraints: {id: /.+/}
      resources :tree,      only: [:show], constraints: {id: /.+/, format: /(html|js)/ }
S
skv-headless 已提交
201 202 203
      resources :edit_tree, only: [:show, :update], constraints: { id: /.+/ }, path: 'edit' do
        post :preview, on: :member
      end
204 205 206 207 208
      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: /.+/}
209
      resources :network,   only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}
210 211
      resources :graphs,    only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}

212 213
      match "/compare/:from...:to" => "compare#show", as: "compare", via: [:get, :post], constraints: {from: /.+/, to: /.+/}

214
        resources :snippets, constraints: {id: /\d+/} do
215 216 217
          member do
            get "raw"
          end
218 219
        end

M
Marin Jankovski 已提交
220
      resources :wikis, only: [:show, :edit, :destroy, :create], constraints: {id: /[a-zA-Z.0-9_\-\/]+/} do
221 222 223 224 225
        collection do
          get :pages
          put ':id' => 'wikis#update'
          get :git_access
        end
D
Dmitriy Zaporozhets 已提交
226

227 228 229
        member do
          get "history"
        end
V
Valery Sizov 已提交
230
      end
V
Valery Sizov 已提交
231

232 233 234
      resource :repository, only: [:show] do
        member do
          get "stats"
235
          get "archive", constraints: { format: Gitlab::Regex.archive_formats_regex }
236
        end
D
Dmitriy Zaporozhets 已提交
237
      end
238

239 240 241 242
      resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
        member do
          get :test
        end
D
Dmitriy Zaporozhets 已提交
243 244
      end

245
      resources :deploy_keys, constraints: {id: /\d+/} do
246 247 248 249
        member do
          put :enable
          put :disable
        end
250 251
      end

252
      resources :branches, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
253 254
      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 }
M
miks 已提交
255

256 257 258 259
      resources :refs, only: [] do
        collection do
          get "switch"
        end
G
gitlabhq 已提交
260

261 262
        member do
          # tree viewer logs
263
          get "logs_tree", constraints: { id: Gitlab::Regex.git_reference_regex }
264 265 266
          get "logs_tree/:path" => "refs#logs_tree",
            as: :logs_file,
            constraints: {
267
              id:   Gitlab::Regex.git_reference_regex,
268 269 270
              path: /.*/
            }
        end
G
gitlabhq 已提交
271
      end
G
gitlabhq 已提交
272

273 274 275
      resources :merge_requests, constraints: {id: /\d+/}, except: [:destroy] do
        member do
          get :diffs
276
          post :automerge
277 278 279
          get :automerge_check
          get :ci_status
        end
280

281 282 283
        collection do
          get :branch_from
          get :branch_to
I
Izaak Alpert 已提交
284
          get :update_branches
285
        end
286
      end
287

288
      resources :hooks, only: [:index, :create, :destroy], constraints: {id: /\d+/} do
289 290 291
        member do
          get :test
        end
292
      end
293

294
      resources :team, controller: 'team_members', only: [:index]
D
Dmitriy Zaporozhets 已提交
295 296 297
      resources :milestones, except: [:destroy], constraints: {id: /\d+/} do
        member do
          put :sort_issues
298
          put :sort_merge_requests
D
Dmitriy Zaporozhets 已提交
299 300
        end
      end
301

302
      resources :labels, constraints: {id: /\d+/} do
303 304 305
        collection do
          post :generate
        end
306 307
      end

308
      resources :issues, constraints: {id: /\d+/}, except: [:destroy] do
309 310 311
        collection do
          post  :bulk_update
        end
A
Adam Leonard 已提交
312
      end
R
Robert Speicher 已提交
313

314
      resources :team_members, except: [:index, :edit], constraints: { id: /[a-zA-Z.\/0-9_\-#%+]+/ } do
315
        collection do
316
          delete :leave
D
Dmitriy Zaporozhets 已提交
317

318 319 320 321 322
          # Used for import team
          # from another project
          get :import
          post :apply_import
        end
D
Dmitriy Zaporozhets 已提交
323 324
      end

325
      resources :notes, only: [:index, :create, :destroy, :update], constraints: {id: /\d+/} do
326
        member do
327
          delete :delete_attachment
328 329
        end

330 331 332 333
        collection do
          post :preview
        end
      end
334
    end
G
gitlabhq 已提交
335
  end
R
Robert Speicher 已提交
336

D
Dmitriy Zaporozhets 已提交
337
  get ':id' => "namespaces#show", constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/}
G
GitLab 已提交
338

D
Dmitriy Zaporozhets 已提交
339
  root to: "dashboard#show"
G
gitlabhq 已提交
340
end