Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
b1ef1aa5
Commit
b1ef1aa5
authored
Mar 27, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Slightly refactor ReferenceExtractor.
parent
254698d6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
43 deletions
+41
-43
app/models/concerns/mentionable.rb
app/models/concerns/mentionable.rb
+3
-5
lib/gitlab/closing_issue_extractor.rb
lib/gitlab/closing_issue_extractor.rb
+3
-3
lib/gitlab/reference_extractor.rb
lib/gitlab/reference_extractor.rb
+35
-35
No files found.
app/models/concerns/mentionable.rb
View file @
b1ef1aa5
...
...
@@ -65,12 +65,10 @@ module Mentionable
# Extract GFM references to other Mentionables from this Mentionable. Always excludes its #local_reference.
def
references
(
p
=
project
,
text
=
mentionable_text
)
return
[]
if
text
.
blank?
ext
=
Gitlab
::
ReferenceExtractor
.
new
ext
.
analyze
(
text
,
p
)
ext
=
Gitlab
::
ReferenceExtractor
.
new
(
p
)
ext
.
analyze
(
text
)
(
ext
.
issues_for
(
p
)
+
ext
.
merge_requests_for
(
p
)
+
ext
.
commits_for
(
p
)).
uniq
-
[
local_reference
]
(
ext
.
issues
+
ext
.
merge_requests
+
ext
.
commits
).
uniq
-
[
local_reference
]
end
# Create a cross-reference Note for each GFM reference to another Mentionable found in +mentionable_text+.
...
...
lib/gitlab/closing_issue_extractor.rb
View file @
b1ef1aa5
...
...
@@ -9,9 +9,9 @@ module Gitlab
md
=
message
.
scan
(
ISSUE_CLOSING_REGEX
)
md
.
each
do
|
ref
|
extractor
=
Gitlab
::
ReferenceExtractor
.
new
extractor
.
analyze
(
ref
[
0
]
,
project
)
issues
+=
extractor
.
issues
_for
(
project
)
extractor
=
Gitlab
::
ReferenceExtractor
.
new
(
project
)
extractor
.
analyze
(
ref
[
0
])
issues
+=
extractor
.
issues
end
end
...
...
lib/gitlab/reference_extractor.rb
View file @
b1ef1aa5
module
Gitlab
# Extract possible GFM references from an arbitrary String for further processing.
class
ReferenceExtractor
attr_accessor
:
users
,
:labels
,
:issues
,
:merge_requests
,
:snippets
,
:commits
,
:commit_rang
es
attr_accessor
:
project
,
:referenc
es
include
Markdown
def
initialize
@users
,
@labels
,
@issues
,
@merge_requests
,
@snippets
,
@commits
,
@commit_ranges
=
[],
[],
[],
[],
[],
[],
[]
def
initialize
(
project
)
@project
=
project
@references
=
Hash
.
new
{
[]
}
end
def
analyze
(
string
,
projec
t
)
text
=
string
.
dup
def
analyze
(
tex
t
)
text
=
text
.
dup
# Remove preformatted/code blocks so that references are not included
text
.
gsub!
(
%r{<pre>.*?</pre>|<code>.*?</code>}m
)
{
|
match
|
''
}
text
.
gsub!
(
%r{^```.*?^```}m
)
{
|
match
|
''
}
parse_references
(
text
,
project
)
parse_references
(
text
)
end
# Given a valid project, resolve the extracted identifiers of the requested type to
# model objects.
def
users
_for
(
project
)
users
.
map
do
|
entry
|
def
users
references
[
:users
]
.
map
do
|
entry
|
project
.
users
.
where
(
username:
entry
[
:id
]).
first
end
.
reject
(
&
:nil?
)
end
.
compact
end
def
labels
_for
(
project
=
nil
)
labels
.
map
do
|
entry
|
def
labels
references
[
:labels
]
.
map
do
|
entry
|
project
.
labels
.
where
(
id:
entry
[
:id
]).
first
end
.
reject
(
&
:nil?
)
end
.
compact
end
def
issues
_for
(
project
=
nil
)
issues
.
map
do
|
entry
|
if
should_lookup?
(
project
,
entry
[
:project
])
def
issues
references
[
:issues
]
.
map
do
|
entry
|
if
should_lookup?
(
entry
[
:project
])
entry
[
:project
].
issues
.
where
(
iid:
entry
[
:id
]).
first
end
end
.
reject
(
&
:nil?
)
end
.
compact
end
def
merge_requests
_for
(
project
=
nil
)
merge_requests
.
map
do
|
entry
|
if
should_lookup?
(
project
,
entry
[
:project
])
def
merge_requests
references
[
:merge_requests
]
.
map
do
|
entry
|
if
should_lookup?
(
entry
[
:project
])
entry
[
:project
].
merge_requests
.
where
(
iid:
entry
[
:id
]).
first
end
end
.
reject
(
&
:nil?
)
end
.
compact
end
def
snippets
_for
(
project
)
snippets
.
map
do
|
entry
|
def
snippets
references
[
:snippets
]
.
map
do
|
entry
|
project
.
snippets
.
where
(
id:
entry
[
:id
]).
first
end
.
reject
(
&
:nil?
)
end
.
compact
end
def
commits
_for
(
project
=
nil
)
commits
.
map
do
|
entry
|
def
commits
references
[
:commits
]
.
map
do
|
entry
|
repo
=
entry
[
:project
].
repository
if
entry
[
:project
]
if
should_lookup?
(
project
,
entry
[
:project
])
if
should_lookup?
(
entry
[
:project
])
repo
.
commit
(
entry
[
:id
])
if
repo
end
end
.
reject
(
&
:nil?
)
end
.
compact
end
def
commit_ranges
_for
(
project
=
nil
)
commit_ranges
.
map
do
|
entry
|
def
commit_ranges
references
[
:commit_ranges
]
.
map
do
|
entry
|
repo
=
entry
[
:project
].
repository
if
entry
[
:project
]
if
repo
&&
should_lookup?
(
project
,
entry
[
:project
])
if
repo
&&
should_lookup?
(
entry
[
:project
])
from_id
,
to_id
=
entry
[
:id
].
split
(
/\.{2,3}/
,
2
)
[
repo
.
commit
(
from_id
),
repo
.
commit
(
to_id
)]
end
end
.
reject
(
&
:nil?
)
end
.
compact
end
private
def
reference_link
(
type
,
identifier
,
project
,
_
)
# Append identifier to the appropriate collection.
send
(
"
#{
type
}
s"
)
<<
{
project:
project
,
id:
identifier
}
references
[
type
]
<<
{
project:
project
,
id:
identifier
}
end
def
should_lookup?
(
project
,
entry_project
)
def
should_lookup?
(
entry_project
)
if
entry_project
.
nil?
false
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment