2015-05-09 19:02:59 -04:00
|
|
|
# == Referable concern
|
|
|
|
#
|
|
|
|
# Contains functionality related to making a model referable in Markdown, such
|
|
|
|
# as "#1", "!2", "~3", etc.
|
|
|
|
module Referable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
# Returns the String necessary to reference this object in Markdown
|
|
|
|
#
|
|
|
|
# from_project - Refering Project object
|
|
|
|
#
|
|
|
|
# This should be overridden by the including class.
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
|
|
|
# Issue.first.to_reference # => "#1"
|
|
|
|
# Issue.last.to_reference(other_project) # => "cross-project#1"
|
|
|
|
#
|
|
|
|
# Returns a String
|
|
|
|
def to_reference(_from_project = nil)
|
|
|
|
''
|
|
|
|
end
|
|
|
|
|
2015-12-01 06:58:45 -05:00
|
|
|
def reference_link_text(from_project = nil)
|
|
|
|
to_reference(from_project)
|
|
|
|
end
|
|
|
|
|
2015-05-09 19:02:59 -04:00
|
|
|
module ClassMethods
|
|
|
|
# The character that prefixes the actual reference identifier
|
|
|
|
#
|
|
|
|
# This should be overridden by the including class.
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
|
|
|
# Issue.reference_prefix # => '#'
|
|
|
|
# MergeRequest.reference_prefix # => '!'
|
|
|
|
#
|
|
|
|
# Returns a String
|
|
|
|
def reference_prefix
|
|
|
|
''
|
|
|
|
end
|
2015-05-14 16:59:39 -04:00
|
|
|
|
|
|
|
# Regexp pattern used to match references to this object
|
|
|
|
#
|
|
|
|
# This must be overridden by the including class.
|
|
|
|
#
|
2015-05-14 17:09:02 -04:00
|
|
|
# Returns a Regexp
|
2015-05-14 16:59:39 -04:00
|
|
|
def reference_pattern
|
2015-05-15 16:09:17 -04:00
|
|
|
raise NotImplementedError, "#{self} does not implement #{__method__}"
|
2015-05-14 16:59:39 -04:00
|
|
|
end
|
2015-11-30 15:14:46 -05:00
|
|
|
|
2016-06-18 13:55:45 -04:00
|
|
|
def reference_valid?(reference)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2015-11-30 15:14:46 -05:00
|
|
|
def link_reference_pattern(route, pattern)
|
|
|
|
%r{
|
|
|
|
(?<url>
|
|
|
|
#{Regexp.escape(Gitlab.config.gitlab.url)}
|
|
|
|
\/#{Project.reference_pattern}
|
|
|
|
\/#{Regexp.escape(route)}
|
|
|
|
\/#{pattern}
|
|
|
|
(?<path>
|
|
|
|
(\/[a-z0-9_=-]+)*
|
|
|
|
)?
|
|
|
|
(?<query>
|
|
|
|
\?[a-z0-9_=-]+
|
|
|
|
(&[a-z0-9_=-]+)*
|
|
|
|
)?
|
|
|
|
(?<anchor>\#[a-z0-9_-]+)?
|
|
|
|
)
|
|
|
|
}x
|
|
|
|
end
|
2015-05-09 19:02:59 -04:00
|
|
|
end
|
|
|
|
end
|