Commit 00c4e141 authored by Douwe Maan's avatar Douwe Maan

Remove format from end of URL for URLs that take a ref or path

parent 41acc87f
...@@ -42,29 +42,6 @@ constraints(ProjectUrlConstrainer.new) do ...@@ -42,29 +42,6 @@ constraints(ProjectUrlConstrainer.new) do
resources :domains, only: [:show, :new, :create, :destroy], controller: 'pages_domains', constraints: { id: /[^\/]+/ } resources :domains, only: [:show, :new, :create, :destroy], controller: 'pages_domains', constraints: { id: /[^\/]+/ }
end end
resources :compare, only: [:index, :create] do
collection do
get :diff_for_path
end
end
get '/compare/:from...:to', to: 'compare#show', as: 'compare', constraints: { from: /.+/, to: /.+/ }
# Don't use format parameter as file extension (old 3.0.x behavior)
# See http://guides.rubyonrails.org/routing.html#route-globbing-and-wildcard-segments
scope format: false do
resources :network, only: [:show], constraints: { id: Gitlab::Regex.git_reference_regex }
resources :graphs, only: [:show], constraints: { id: Gitlab::Regex.git_reference_regex } do
member do
get :charts
get :commits
get :ci
get :languages
end
end
end
resources :snippets, concerns: :awardable, constraints: { id: /\d+/ } do resources :snippets, concerns: :awardable, constraints: { id: /\d+/ } do
member do member do
get 'raw' get 'raw'
...@@ -128,15 +105,6 @@ constraints(ProjectUrlConstrainer.new) do ...@@ -128,15 +105,6 @@ constraints(ProjectUrlConstrainer.new) do
end end
end end
resources :branches, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
delete :merged_branches, controller: 'branches', action: :destroy_all_merged
resources :tags, only: [:index, :show, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex } do
resource :release, only: [:edit, :update]
end
resources :protected_branches, only: [:index, :show, :create, :update, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
resources :protected_tags, only: [:index, :show, :create, :update, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
resources :variables, only: [:index, :show, :update, :create, :destroy] resources :variables, only: [:index, :show, :update, :create, :destroy]
resources :triggers, only: [:index, :create, :edit, :update, :destroy] do resources :triggers, only: [:index, :create, :edit, :update, :destroy] do
member do member do
......
# All routing related to repositoty browsing # All routing related to repository browsing
resource :repository, only: [:create] do resource :repository, only: [:create] do
member do member do
...@@ -6,83 +6,84 @@ resource :repository, only: [:create] do ...@@ -6,83 +6,84 @@ resource :repository, only: [:create] do
end end
end end
resources :refs, only: [] do # Don't use format parameter as file extension (old 3.0.x behavior)
collection do # See http://guides.rubyonrails.org/routing.html#route-globbing-and-wildcard-segments
get 'switch' scope format: false do
get '/compare/:from...:to', to: 'compare#show', as: 'compare', constraints: { from: /.+/, to: /.+/ }
resources :compare, only: [:index, :create] do
collection do
get :diff_for_path
end
end end
member do resources :refs, only: [] do
# tree viewer logs collection do
get 'logs_tree', constraints: { id: Gitlab::Regex.git_reference_regex } get 'switch'
# Directories with leading dots erroneously get rejected if git end
# ref regex used in constraints. Regex verification now done in controller.
get 'logs_tree/*path' => 'refs#logs_tree', as: :logs_file, constraints: { member do
id: /.*/, # tree viewer logs
path: /.*/ get 'logs_tree', constraints: { id: Gitlab::Regex.git_reference_regex }
} # Directories with leading dots erroneously get rejected if git
# ref regex used in constraints. Regex verification now done in controller.
get 'logs_tree/*path', action: :logs_tree, as: :logs_file, format: false, constraints: {
id: /.*/,
path: /.*/
}
end
end end
end
get '/new/*id', to: 'blob#new', constraints: { id: /.+/ }, as: 'new_blob' scope constraints: { id: Gitlab::Regex.git_reference_regex } do
post '/create/*id', to: 'blob#create', constraints: { id: /.+/ }, as: 'create_blob' resources :network, only: [:show]
get '/edit/*id', to: 'blob#edit', constraints: { id: /.+/ }, as: 'edit_blob'
put '/update/*id', to: 'blob#update', constraints: { id: /.+/ }, as: 'update_blob'
post '/preview/*id', to: 'blob#preview', constraints: { id: /.+/ }, as: 'preview_blob'
scope('/blob/*id', as: :blob, controller: :blob, constraints: { id: /.+/, format: false }) do resources :graphs, only: [:show] do
get :diff member do
get '/', action: :show get :charts
delete '/', action: :destroy get :commits
post '/', action: :create get :ci
put '/', action: :update get :languages
end end
end
get( resources :branches, only: [:index, :new, :create, :destroy]
'/raw/*id', delete :merged_branches, controller: 'branches', action: :destroy_all_merged
to: 'raw#show', resources :tags, only: [:index, :show, :new, :create, :destroy] do
constraints: { id: /.+/, format: /(html|js)/ }, resource :release, only: [:edit, :update]
as: :raw end
)
get( resources :protected_branches, only: [:index, :show, :create, :update, :destroy]
'/tree/*id', resources :protected_tags, only: [:index, :show, :create, :update, :destroy]
to: 'tree#show', end
constraints: { id: /.+/, format: /(html|js)/ },
as: :tree scope constraints: { id: /.+/ } do
) scope controller: :blob do
get '/new/*id', action: :new, as: :new_blob
post '/create/*id', action: :create, as: :create_blob
get '/edit/*id', action: :edit, as: :edit_blob
put '/update/*id', action: :update, as: :update_blob
post '/preview/*id', action: :preview, as: :preview_blob
get( scope path: '/blob/*id', as: :blob do
'/find_file/*id', get :diff
to: 'find_file#show', get '/', action: :show
constraints: { id: /.+/, format: /html/ }, delete '/', action: :destroy
as: :find_file post '/', action: :create
) put '/', action: :update
end
end
get( get '/tree/*id', to: 'tree#show', as: :tree
'/files/*id', get '/raw/*id', to: 'raw#show', as: :raw
to: 'find_file#list', get '/blame/*id', to: 'blame#show', as: :blame
constraints: { id: /(?:[^.]|\.(?!json$))+/, format: /json/ }, get '/commits/*id', to: 'commits#show', as: :commits
as: :files
)
post( post '/create_dir/*id', to: 'tree#create_dir', as: :create_dir
'/create_dir/*id',
to: 'tree#create_dir',
constraints: { id: /.+/ },
as: 'create_dir'
)
get( scope controller: :find_file do
'/blame/*id', get '/find_file/*id', action: :show, as: :find_file
to: 'blame#show',
constraints: { id: /.+/, format: /(html|js)/ },
as: :blame
)
# File/dir history get '/files/*id', action: :list, as: :files
get( end
'/commits/*id', end
to: 'commits#show', end
constraints: { id: /.+/, format: false },
as: :commits
)
...@@ -484,7 +484,7 @@ describe 'project routing' do ...@@ -484,7 +484,7 @@ describe 'project routing' do
end end
it 'to #list' do it 'to #list' do
expect(get('/gitlab/gitlabhq/files/master.json')).to route_to('projects/find_file#list', namespace_id: 'gitlab', project_id: 'gitlabhq', id: 'master', format: 'json') expect(get('/gitlab/gitlabhq/files/master.json')).to route_to('projects/find_file#list', namespace_id: 'gitlab', project_id: 'gitlabhq', id: 'master.json')
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment