Skip to content
Snippets Groups Projects
Commit f4e8f6c8 authored by Lin Jen-Shin's avatar Lin Jen-Shin
Browse files

Merge branch '10864-fix-undefined-with-fallback' into 'master'

Backport: Bring back Gitlab::UntrustedRegexp.with_fallback

See merge request gitlab-org/gitlab-ce!26901
parents 53bf489a ac841c37
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -47,6 +47,19 @@ module Gitlab
self.source == other.source
end
 
# Handles regular expressions with the preferred RE2 library where possible
# via UntustedRegex. Falls back to Ruby's built-in regular expression library
# when the syntax would be invalid in RE2.
#
# One difference between these is `(?m)` multi-line mode. Ruby regex enables
# this by default, but also handles `^` and `$` differently.
# See: https://www.regular-expressions.info/modifiers.html
def self.with_fallback(pattern, multiline: false)
UntrustedRegexp.new(pattern, multiline: multiline)
rescue RegexpError
Regexp.new(pattern)
end
private
 
attr_reader :regexp
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment