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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
9124ebce
Commit
9124ebce
authored
Feb 29, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use internal reference extractor in banzai unfold pipeline
parent
3c493c24
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
66 additions
and
65 deletions
+66
-65
app/services/issues/move_service.rb
app/services/issues/move_service.rb
+9
-17
lib/banzai/filter/reference_unfold_filter.rb
lib/banzai/filter/reference_unfold_filter.rb
+14
-20
lib/banzai/pipeline/reference_unfold_pipeline.rb
lib/banzai/pipeline/reference_unfold_pipeline.rb
+13
-1
spec/lib/banzai/pipeline/reference_unfold_pipeline_spec.rb
spec/lib/banzai/pipeline/reference_unfold_pipeline_spec.rb
+30
-27
No files found.
app/services/issues/move_service.rb
View file @
9124ebce
...
...
@@ -72,30 +72,22 @@ module Issues
end
def
add_moved_from_note
SystemNoteService
.
noteable_moved
(
:from
,
@issue_new
,
@project_new
,
@issue_old
,
@current_user
)
SystemNoteService
.
noteable_moved
(
:from
,
@issue_new
,
@project_new
,
@issue_old
,
@current_user
)
end
def
add_moved_to_note
SystemNoteService
.
noteable_moved
(
:to
,
@issue_old
,
@project_old
,
@issue_new
,
@current_user
)
SystemNoteService
.
noteable_moved
(
:to
,
@issue_old
,
@project_old
,
@issue_new
,
@current_user
)
end
def
rewrite_references
(
noteable
)
references
=
noteable
.
all_references
new_content
=
noteable_content
(
noteable
).
dup
cross_project_mentionables
=
[
:issues
,
:merge_requests
,
:milestones
,
:snippets
,
:commits
,
:commit_ranges
]
content
=
noteable_content
(
noteable
).
dup
context
=
{
pipeline: :reference_unfold
,
project:
@project_old
,
new_project:
@project_new
}
cross_project_mentionables
.
each
do
|
type
|
referables
=
references
.
public_send
(
type
)
context
=
{
objects:
referables
,
project:
@project_new
,
pipeline: :reference_unfold
}
new_content
=
Banzai
.
render_result
(
new_content
,
context
)
new_content
=
new_content
[
:output
].
to_s
end
new_content
new_content
=
Banzai
.
render_result
(
content
,
context
)
new_content
[
:output
].
to_s
end
def
noteable_content
(
noteable
)
...
...
lib/banzai/filter/reference_unfold_filter.rb
View file @
9124ebce
require
'html/pipeline/filter'
module
Banzai
module
Filter
##
# Filter than unfolds local references.
#
# Replaces all local references with project cross reference version
# in all objects passed to this filter in context.
#
# Requires objects array with each element implementing `Referable`.
#
class
ReferenceUnfoldFilter
<
Reference
Filter
class
ReferenceUnfoldFilter
<
HTML
::
Pipeline
::
Filter
def
initialize
(
*
)
super
@objects
=
context
[
:objects
]
@project
=
context
[
:project
]
unless
@objects
.
all?
{
|
object
|
object
.
respond_to?
(
:to_reference
)
}
raise
StandardError
,
"No `to_reference` method implemented in one of the objects !"
unless
result
[
:references
].
is_a?
(
Hash
)
raise
StandardError
,
'References not processed!'
end
unless
@project
.
kind_of?
(
Project
)
raise
StandardError
,
'No valid project passed in context!'
end
@text
=
context
[
:text
].
dup
@new_project
=
context
[
:new_project
]
@referables
=
result
[
:references
].
values
.
flatten
end
def
call
@objects
.
each
do
|
object
|
pattern
=
/
#{
Regexp
.
escape
(
object
.
to_reference
)
}
/
replace_text_nodes_matching
(
pattern
)
do
|
content
|
content
.
gsub
(
pattern
,
object
.
to_reference
(
@project
))
end
@referables
.
each
do
|
referable
|
pattern
=
/
#{
Regexp
.
escape
(
referable
.
to_reference
)
}
/
@text
.
gsub!
(
pattern
,
referable
.
to_reference
(
@new_project
))
end
doc
@text
end
private
def
validate
needs
:project
needs
:objects
needs
:new_project
needs
:text
end
end
end
...
...
lib/banzai/pipeline/reference_unfold_pipeline.rb
View file @
9124ebce
...
...
@@ -2,7 +2,19 @@ module Banzai
module
Pipeline
class
ReferenceUnfoldPipeline
<
BasePipeline
def
self
.
filters
[
Filter
::
ReferenceUnfoldFilter
]
FullPipeline
.
filters
+
[
Filter
::
ReferenceGathererFilter
,
Filter
::
ReferenceUnfoldFilter
]
end
def
self
.
call
(
text
,
context
=
{})
context
=
context
.
merge
(
text:
text
)
super
end
class
<<
self
alias_method
:to_document
,
:call
alias_method
:to_html
,
:call
end
end
end
...
...
spec/lib/banzai/pipeline/reference_unfold_pipeline_spec.rb
View file @
9124ebce
...
...
@@ -2,58 +2,61 @@ require 'spec_helper'
describe
Banzai
::
Pipeline
::
ReferenceUnfoldPipeline
do
let
(
:text
)
{
'some text'
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:objects
)
{
[]
}
let
(
:old_project
)
{
create
(
:project
)
}
let
(
:new_project
)
{
create
(
:project
)
}
let
(
:pipeline_context
)
do
{
project:
old_project
,
new_project:
new_project
}
end
let
(
:result
)
do
described_class
.
to_
html
(
text
,
project:
project
,
objects:
objects
)
described_class
.
to_
document
(
text
,
pipeline_context
)
end
context
'invalid initializers'
do
subject
{
->
{
result
}
}
context
'project context is
invalid
'
do
let
(
:p
roject
)
{
nil
}
it
{
is_expected
.
to
raise_error
StandardError
,
/No valid project
/
}
context
'project context is
missing
'
do
let
(
:p
ipeline_context
)
{
{
new_project:
new_project
}
}
it
{
is_expected
.
to
raise_error
ArgumentError
,
/Missing context keys
/
}
end
context
'
objects context is invalid
'
do
let
(
:
objects
)
{
[
'issue'
]
}
it
{
is_expected
.
to
raise_error
StandardError
,
/No `to_reference` method
/
}
context
'
new project context is missing
'
do
let
(
:
pipeline_context
)
{
{
project:
old_project
}
}
it
{
is_expected
.
to
raise_error
ArgumentError
,
/Missing context keys
/
}
end
end
context
'multiple issues and merge requests referenced'
do
subject
{
result
}
let
(
:main_project
)
{
create
(
:project
)
}
let
(
:issue_first
)
{
create
(
:issue
,
project:
main_project
)
}
let
(
:issue_second
)
{
create
(
:issue
,
project:
main_project
)
}
let
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
main_project
)
}
subject
{
result
[
:output
]
}
let
(
:objects
)
{
[
issue_first
,
issue_second
,
merge_request
]
}
let!
(
:issue_first
)
{
create
(
:issue
,
project:
old_project
)
}
let!
(
:issue_second
)
{
create
(
:issue
,
project:
old_project
)
}
let!
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
old_project
)
}
context
'plain text description'
do
let
(
:text
)
{
'Description that references #1, #2 and !1'
}
it
{
is_expected
.
to
include
issue_first
.
to_reference
(
project
)
}
it
{
is_expected
.
to
include
issue_second
.
to_reference
(
project
)
}
it
{
is_expected
.
to
include
merge_request
.
to_reference
(
project
)
}
it
{
is_expected
.
to
include
issue_first
.
to_reference
(
new_
project
)
}
it
{
is_expected
.
to
include
issue_second
.
to_reference
(
new_
project
)
}
it
{
is_expected
.
to
include
merge_request
.
to_reference
(
new_
project
)
}
end
context
'description with ignored elements'
do
let
(
:text
)
do
<<-
EOF
Hi. This references #1, but not `#2`
<pre>and not !1</pre>
EOF
"Hi. This references #1, but not `#2`
\n
"
+
'<pre>and not !1</pre>'
end
it
{
is_expected
.
to
include
issue_first
.
to_reference
(
new_project
)
}
it
{
is_expected
.
to_not
include
issue_second
.
to_reference
(
new_project
)
}
it
{
is_expected
.
to_not
include
merge_request
.
to_reference
(
new_project
)
}
end
context
'description ambigous elements'
do
let
(
:url
)
{
'http://gitlab.com/#1'
}
let
(
:text
)
{
"This references #1, but not
#{
url
}
"
}
it
{
is_expected
.
to
include
issue_first
.
to_reference
(
project
)
}
it
{
is_expected
.
to_not
include
issue_second
.
to_reference
(
project
)
}
it
{
is_expected
.
to_not
include
merge_request
.
to_reference
(
project
)
}
it
{
is_expected
.
to
include
url
}
end
end
end
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