Commit 04cc3758 authored by Bob Van Landuyt's avatar Bob Van Landuyt

Merge branch '214493-invaid-uri' into 'master'

Wrap redirect uri invalid error as RoutingError

See merge request gitlab-org/gitlab!33492
parents 98145c11 ba9e25a7
---
title: Return 404 response when redirecting request with invalid url.
merge_request: 33492
author:
type: fixed
......@@ -4,6 +4,36 @@ module Gitlab
module Routing
extend ActiveSupport::Concern
class LegacyRedirector
# @params path_type [symbol] type of path to do "-" redirection
# https://gitlab.com/gitlab-org/gitlab/-/issues/16854
def initialize(path_type)
@path_type = path_type
end
def call(_params, request)
ensure_valid_uri!(request)
# Only replace the last occurrence of `path`.
#
# `request.fullpath` includes the querystring
new_path = request.path.sub(%r{/#{@path_type}(/*)(?!.*#{@path_type})}, "/-/#{@path_type}\\1")
new_path = "#{new_path}?#{request.query_string}" if request.query_string.present?
new_path
end
private
def ensure_valid_uri!(request)
URI.parse(request.path)
rescue URI::InvalidURIError => e
# If url is invalid, raise custom error,
# which can be ignored by monitoring tools.
raise ActionController::RoutingError.new(e.message)
end
end
mattr_accessor :_includers
self._includers = []
......@@ -44,20 +74,10 @@ module Gitlab
end
def self.redirect_legacy_paths(router, *paths)
build_redirect_path = lambda do |request, _params, path|
# Only replace the last occurrence of `path`.
#
# `request.fullpath` includes the querystring
new_path = request.path.sub(%r{/#{path}(/*)(?!.*#{path})}, "/-/#{path}\\1")
new_path = "#{new_path}?#{request.query_string}" if request.query_string.present?
new_path
end
paths.each do |path|
router.match "/#{path}(/*rest)",
via: [:get, :post, :patch, :delete],
to: router.redirect { |params, request| build_redirect_path.call(request, params, path) },
to: router.redirect(LegacyRedirector.new(path)),
as: "legacy_#{path}_redirect"
end
end
......
......@@ -22,4 +22,25 @@ describe Gitlab::Routing do
expect(subject).to respond_to(:namespace_project_path)
end
end
describe Gitlab::Routing::LegacyRedirector do
subject { described_class.new(:wikis) }
let(:request) { double(:request, path: path, query_string: '') }
let(:path) { '/gitlab-org/gitlab-test/wikis/home' }
it 'returns "-" scoped url' do
expect(subject.call({}, request)).to eq('/gitlab-org/gitlab-test/-/wikis/home')
end
context 'invalid uri characters' do
let(:path) { '/gitlab-org/gitlab-test/wikis/home[' }
it 'raises error' do
expect do
subject.call({}, request)
end.to raise_error(ActionController::RoutingError)
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