routes.rb 8.6 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
37

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

48 49 50 51 52 53 54 55
  #
  # Public namespace
  #
  namespace :public do
    resources :projects, only: [:index]
    root to: "projects#index"
  end

56 57 58
  #
  # Attachments serving
  #
59
  get 'files/:type/:id/:filename' => 'files#download', constraints: { id: /\d+/, type: /[a-z]+/, filename:  /.+/ }
60

61 62 63
  #
  # Admin Area
  #
N
Nihad Abbasov 已提交
64
  namespace :admin do
65
    resources :users, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do
66
      member do
D
Dmitriy Zaporozhets 已提交
67
        put :team_update
68 69
        put :block
        put :unblock
D
Dmitriy Zaporozhets 已提交
70 71
      end
    end
A
Andrey Kumanyaev 已提交
72

73 74
    resources :groups, constraints: { id: /[^\/]+/ } do
      member do
A
Andrey Kumanyaev 已提交
75
        put :project_teams_update
76
      end
A
Andrey Kumanyaev 已提交
77
    end
A
Andrey Kumanyaev 已提交
78

R
Robert Speicher 已提交
79
    resources :hooks, only: [:index, :create, :destroy] do
V
Valeriy Sizov 已提交
80 81
      get :test
    end
A
Andrey Kumanyaev 已提交
82

83
    resources :broadcast_messages, only: [:index, :create, :destroy]
84
    resource :logs, only: [:show]
85
    resource :background_jobs, controller: 'background_jobs', only: [:show]
86 87 88 89 90 91 92

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

R
Robert Speicher 已提交
93
    root to: "dashboard#index"
G
gitlabhq 已提交
94 95
  end

R
randx 已提交
96 97 98
  #
  # Profile Area
  #
99 100 101 102 103 104 105 106
  resource :profile, only: [:show, :update] do
    member do
      get :history
      get :design

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

108
    scope module: :profiles do
109
      resource :account, only: [:show, :update]
110
      resource :notifications, only: [:show, :update]
111 112 113 114 115
      resource :password, only: [:new, :create, :edit, :update] do
        member do
          put :reset
        end
      end
116
      resources :keys
117
      resources :emails, only: [:index, :create, :destroy]
118 119 120 121 122
      resources :groups, only: [:index] do
        member do
          delete :leave
        end
      end
123
      resource :avatar, only: [:destroy]
124
    end
125
  end
R
Robert Speicher 已提交
126

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

R
randx 已提交
129 130 131
  #
  # Dashboard Area
  #
132
  resource :dashboard, controller: "dashboard", only: [:show] do
D
Dmitriy Zaporozhets 已提交
133 134 135 136 137 138
    member do
      get :projects
      get :issues
      get :merge_requests
    end
  end
G
gitlabhq 已提交
139

R
randx 已提交
140 141 142
  #
  # Groups Area
  #
143
  resources :groups, constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/}  do
R
randx 已提交
144 145 146
    member do
      get :issues
      get :merge_requests
147
      get :members
R
randx 已提交
148
    end
149 150

    resources :users_groups, only: [:create, :update, :destroy]
S
Steven Thonus 已提交
151 152 153
    scope module: :groups do
      resource :avatar, only: [:destroy]
    end
R
randx 已提交
154 155
  end

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

158
  devise_for :users, controllers: { omniauth_callbacks: :omniauth_callbacks, registrations: :registrations , passwords: :passwords}
G
gitlabhq 已提交
159

160 161 162
  #
  # Project Area
  #
163
  resources :projects, constraints: { id: /[a-zA-Z.0-9_\-]+\/[a-zA-Z.0-9_\-]+/ }, except: [:new, :create, :index], path: "/" do
164 165
    member do
      put :transfer
166
      post :fork
167 168
      post :archive
      post :unarchive
169
      post :upload_image
170
      get :autocomplete_sources
171 172
      get :import
      put :retry_import
173 174
    end

175
    scope module: :projects do
176
      resources :blob,      only: [:show, :destroy], constraints: {id: /.+/}
177 178
      resources :raw,       only: [:show], constraints: {id: /.+/}
      resources :tree,      only: [:show], constraints: {id: /.+/, format: /(html|js)/ }
S
skv-headless 已提交
179 180 181
      resources :edit_tree, only: [:show, :update], constraints: { id: /.+/ }, path: 'edit' do
        post :preview, on: :member
      end
182 183 184 185 186
      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: /.+/}
187
      resources :network,   only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}
188 189
      resources :graphs,    only: [:show], constraints: {id: /(?:[^.]|\.(?!json$))+/, format: /json/}

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

192
        resources :snippets, constraints: {id: /\d+/} do
193 194 195
          member do
            get "raw"
          end
196 197
        end

M
Marin Jankovski 已提交
198
      resources :wikis, only: [:show, :edit, :destroy, :create], constraints: {id: /[a-zA-Z.0-9_\-\/]+/} do
199 200 201 202 203
        collection do
          get :pages
          put ':id' => 'wikis#update'
          get :git_access
        end
D
Dmitriy Zaporozhets 已提交
204

205 206 207
        member do
          get "history"
        end
V
Valery Sizov 已提交
208
      end
V
Valery Sizov 已提交
209

210
      resource :wall, only: [:show], constraints: {id: /\d+/} do
211 212 213
        member do
          get 'notes'
        end
D
Dmitriy Zaporozhets 已提交
214 215
      end

216 217 218
      resource :repository, only: [:show] do
        member do
          get "stats"
219
          get "archive", constraints: { format: Gitlab::Regex.archive_formats_regex }
220
        end
D
Dmitriy Zaporozhets 已提交
221
      end
222

223 224 225 226
      resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
        member do
          get :test
        end
D
Dmitriy Zaporozhets 已提交
227 228
      end

229
      resources :deploy_keys, constraints: {id: /\d+/} do
230 231 232 233
        member do
          put :enable
          put :disable
        end
234 235
      end

236
      resources :branches, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
237 238
      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 已提交
239

240 241 242 243
      resources :refs, only: [] do
        collection do
          get "switch"
        end
G
gitlabhq 已提交
244

245 246
        member do
          # tree viewer logs
247
          get "logs_tree", constraints: { id: Gitlab::Regex.git_reference_regex }
248 249 250
          get "logs_tree/:path" => "refs#logs_tree",
            as: :logs_file,
            constraints: {
251
              id:   Gitlab::Regex.git_reference_regex,
252 253 254
              path: /.*/
            }
        end
G
gitlabhq 已提交
255
      end
G
gitlabhq 已提交
256

257 258 259
      resources :merge_requests, constraints: {id: /\d+/}, except: [:destroy] do
        member do
          get :diffs
260
          post :automerge
261 262 263
          get :automerge_check
          get :ci_status
        end
264

265 266 267
        collection do
          get :branch_from
          get :branch_to
I
Izaak Alpert 已提交
268
          get :update_branches
269
        end
270
      end
271

272
      resources :hooks, only: [:index, :create, :destroy], constraints: {id: /\d+/} do
273 274 275
        member do
          get :test
        end
276
      end
277

278
      resources :team, controller: 'team_members', only: [:index]
279
      resources :milestones, except: [:destroy], constraints: {id: /\d+/}
280

281 282 283 284
      resources :labels, only: [:index] do
        collection do
          post :generate
        end
285 286
      end

287
      resources :issues, constraints: {id: /\d+/}, except: [:destroy] do
288 289 290
        collection do
          post  :bulk_update
        end
A
Adam Leonard 已提交
291
      end
R
Robert Speicher 已提交
292

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

297 298 299 300 301
          # Used for import team
          # from another project
          get :import
          post :apply_import
        end
D
Dmitriy Zaporozhets 已提交
302 303
      end

304
      resources :notes, only: [:index, :create, :destroy, :update], constraints: {id: /\d+/} do
305
        member do
306
          delete :delete_attachment
307 308
        end

309 310 311 312
        collection do
          post :preview
        end
      end
313
    end
G
gitlabhq 已提交
314
  end
R
Robert Speicher 已提交
315

G
GitLab 已提交
316 317
  get ':id' => "groups#show", constraints: {id: /(?:[^.]|\.(?!atom$))+/, format: /atom/}

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