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
Tatuya Kamada
gitlab-ce
Commits
abbca615
Commit
abbca615
authored
Oct 21, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make pipelines actually make sense
parent
de0acf3c
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
265 additions
and
178 deletions
+265
-178
lib/gitlab/markdown.rb
lib/gitlab/markdown.rb
+38
-178
lib/gitlab/markdown/asciidoc_pipeline.rb
lib/gitlab/markdown/asciidoc_pipeline.rb
+13
-0
lib/gitlab/markdown/atom_pipeline.rb
lib/gitlab/markdown/atom_pipeline.rb
+14
-0
lib/gitlab/markdown/combined_pipeline.rb
lib/gitlab/markdown/combined_pipeline.rb
+25
-0
lib/gitlab/markdown/description_pipeline.rb
lib/gitlab/markdown/description_pipeline.rb
+14
-0
lib/gitlab/markdown/email_pipeline.rb
lib/gitlab/markdown/email_pipeline.rb
+13
-0
lib/gitlab/markdown/full_pipeline.rb
lib/gitlab/markdown/full_pipeline.rb
+9
-0
lib/gitlab/markdown/gfm_pipeline.rb
lib/gitlab/markdown/gfm_pipeline.rb
+41
-0
lib/gitlab/markdown/note_pipeline.rb
lib/gitlab/markdown/note_pipeline.rb
+14
-0
lib/gitlab/markdown/pipeline.rb
lib/gitlab/markdown/pipeline.rb
+29
-0
lib/gitlab/markdown/plain_markdown_pipeline.rb
lib/gitlab/markdown/plain_markdown_pipeline.rb
+13
-0
lib/gitlab/markdown/post_process_pipeline.rb
lib/gitlab/markdown/post_process_pipeline.rb
+20
-0
lib/gitlab/markdown/reference_extraction_pipeline.rb
lib/gitlab/markdown/reference_extraction_pipeline.rb
+13
-0
lib/gitlab/markdown/single_line_pipeline.rb
lib/gitlab/markdown/single_line_pipeline.rb
+9
-0
No files found.
lib/gitlab/markdown.rb
View file @
abbca615
...
@@ -35,14 +35,8 @@ module Gitlab
...
@@ -35,14 +35,8 @@ module Gitlab
end
end
def
self
.
render_result
(
text
,
context
=
{})
def
self
.
render_result
(
text
,
context
=
{})
pipeline
=
context
[
:pipeline
]
||=
:full
pipeline_type
=
context
[
:pipeline
]
||=
:full
pipeline_by_type
(
pipeline_type
).
call
(
text
,
context
)
html_pipeline
=
html_pipelines
[
pipeline
]
transformers
=
context_transformers
[
pipeline
]
context
=
transformers
.
reduce
(
context
)
{
|
context
,
transformer
|
transformer
.
call
(
context
)
}
html_pipeline
.
call
(
text
,
context
)
end
end
# Perform post-processing on an HTML String
# Perform post-processing on an HTML String
...
@@ -59,17 +53,37 @@ module Gitlab
...
@@ -59,17 +53,37 @@ module Gitlab
#
#
# Returns an HTML-safe String
# Returns an HTML-safe String
def
self
.
post_process
(
html
,
context
)
def
self
.
post_process
(
html
,
context
)
html_pipeline
=
html_pipelines
[
:post_process
]
pipeline
=
pipeline_by_type
(
:post_process
)
if
context
[
:xhtml
]
if
context
[
:xhtml
]
html_
pipeline
.
to_document
(
html
,
context
).
to_html
(
save_with:
Nokogiri
::
XML
::
Node
::
SaveOptions
::
AS_XHTML
)
pipeline
.
to_document
(
html
,
context
).
to_html
(
save_with:
Nokogiri
::
XML
::
Node
::
SaveOptions
::
AS_XHTML
)
else
else
html_
pipeline
.
to_html
(
html
,
context
)
pipeline
.
to_html
(
html
,
context
)
end
.
html_safe
end
.
html_safe
end
end
private
private
def
self
.
cacheless_render
(
text
,
context
=
{})
result
=
render_result
(
text
,
context
)
output
=
result
[
:output
]
if
output
.
respond_to?
(
:to_html
)
output
.
to_html
else
output
.
to_s
end
end
def
self
.
full_cache_key
(
cache_key
,
pipeline
=
:full
)
return
unless
cache_key
[
"markdown"
,
*
cache_key
,
pipeline
]
end
def
self
.
pipeline_by_type
(
pipeline_type
)
const_get
(
"
#{
pipeline_type
.
to_s
.
camelize
}
Pipeline"
)
end
# Provide autoload paths for filters to prevent a circular dependency error
# Provide autoload paths for filters to prevent a circular dependency error
autoload
:AutolinkFilter
,
'gitlab/markdown/autolink_filter'
autoload
:AutolinkFilter
,
'gitlab/markdown/autolink_filter'
autoload
:CommitRangeReferenceFilter
,
'gitlab/markdown/commit_range_reference_filter'
autoload
:CommitRangeReferenceFilter
,
'gitlab/markdown/commit_range_reference_filter'
...
@@ -91,172 +105,18 @@ module Gitlab
...
@@ -91,172 +105,18 @@ module Gitlab
autoload
:UserReferenceFilter
,
'gitlab/markdown/user_reference_filter'
autoload
:UserReferenceFilter
,
'gitlab/markdown/user_reference_filter'
autoload
:UploadLinkFilter
,
'gitlab/markdown/upload_link_filter'
autoload
:UploadLinkFilter
,
'gitlab/markdown/upload_link_filter'
def
self
.
gfm_filters
autoload
:AsciidocPipeline
,
'gitlab/markdown/asciidoc_pipeline'
@gfm_filters
||=
[
autoload
:AtomPipeline
,
'gitlab/markdown/atom_pipeline'
Gitlab
::
Markdown
::
SyntaxHighlightFilter
,
autoload
:CombinedPipeline
,
'gitlab/markdown/combined_pipeline'
Gitlab
::
Markdown
::
SanitizationFilter
,
autoload
:DescriptionPipeline
,
'gitlab/markdown/description_pipeline'
autoload
:EmailPipeline
,
'gitlab/markdown/email_pipeline'
Gitlab
::
Markdown
::
UploadLinkFilter
,
autoload
:FullPipeline
,
'gitlab/markdown/full_pipeline'
Gitlab
::
Markdown
::
EmojiFilter
,
autoload
:GfmPipeline
,
'gitlab/markdown/gfm_pipeline'
Gitlab
::
Markdown
::
TableOfContentsFilter
,
autoload
:NotePipeline
,
'gitlab/markdown/note_pipeline'
Gitlab
::
Markdown
::
AutolinkFilter
,
autoload
:Pipeline
,
'gitlab/markdown/pipeline'
Gitlab
::
Markdown
::
ExternalLinkFilter
,
autoload
:PlainMarkdownPipeline
,
'gitlab/markdown/plain_markdown_pipeline'
autoload
:PostProcessPipeline
,
'gitlab/markdown/post_process_pipeline'
Gitlab
::
Markdown
::
UserReferenceFilter
,
autoload
:ReferenceExtractionPipeline
,
'gitlab/markdown/reference_extraction_pipeline'
Gitlab
::
Markdown
::
IssueReferenceFilter
,
autoload
:SingleLinePipeline
,
'gitlab/markdown/single_line_pipeline'
Gitlab
::
Markdown
::
ExternalIssueReferenceFilter
,
Gitlab
::
Markdown
::
MergeRequestReferenceFilter
,
Gitlab
::
Markdown
::
SnippetReferenceFilter
,
Gitlab
::
Markdown
::
CommitRangeReferenceFilter
,
Gitlab
::
Markdown
::
CommitReferenceFilter
,
Gitlab
::
Markdown
::
LabelReferenceFilter
,
Gitlab
::
Markdown
::
TaskListFilter
]
end
def
self
.
all_filters
@all_filters
||=
{
plain_markdown:
[
Gitlab
::
Markdown
::
MarkdownFilter
],
gfm:
gfm_filters
,
full:
[
:plain_markdown
,
:gfm
],
atom: :full
,
email: :full
,
description: :full
,
note: :full
,
single_line: :gfm
,
asciidoc:
[
Gitlab
::
Markdown
::
RelativeLinkFilter
],
post_process:
[
Gitlab
::
Markdown
::
RelativeLinkFilter
,
Gitlab
::
Markdown
::
RedactorFilter
],
reference_extraction:
[
Gitlab
::
Markdown
::
ReferenceGathererFilter
]
}
end
def
self
.
all_context_transformers
@all_context_transformers
||=
{
gfm:
{
only_path:
true
,
# EmojiFilter
asset_host:
Gitlab
::
Application
.
config
.
asset_host
,
asset_root:
Gitlab
.
config
.
gitlab
.
base_url
},
full: :gfm
,
atom:
[
:full
,
{
only_path:
false
,
xhtml:
true
}
],
email:
[
:full
,
{
only_path:
false
}
],
note:
[
:full
,
{
# TableOfContentsFilter
no_header_anchors:
true
}
],
description:
[
:full
,
{
# SanitizationFilter
inline_sanitization:
true
}
],
single_line: :gfm
,
post_process:
{
post_process:
true
}
}
end
def
self
.
html_filters
@html_filters
||=
Hash
.
new
do
|
hash
,
pipeline
|
filters
=
get_filters
(
pipeline
)
hash
[
pipeline
]
=
filters
if
pipeline
.
is_a?
(
Symbol
)
filters
end
end
def
self
.
html_pipelines
@html_pipelines
||=
Hash
.
new
do
|
hash
,
pipeline
|
filters
=
get_filters
(
pipeline
)
html_pipeline
=
HTML
::
Pipeline
.
new
(
filters
)
hash
[
pipeline
]
=
html_pipeline
if
pipeline
.
is_a?
(
Symbol
)
html_pipeline
end
end
def
self
.
context_transformers
@context_transformers
||=
Hash
.
new
do
|
hash
,
pipeline
|
transformers
=
get_context_transformers
(
pipeline
)
hash
[
pipeline
]
=
transformers
if
pipeline
.
is_a?
(
Symbol
)
transformers
end
end
def
self
.
get_filters
(
pipelines
)
Array
.
wrap
(
pipelines
).
flat_map
do
|
pipeline
|
case
pipeline
when
Class
pipeline
when
Symbol
html_filters
[
all_filters
[
pipeline
]]
when
Array
html_filters
[
pipeline
]
end
end
.
compact
end
def
self
.
get_context_transformers
(
pipelines
)
Array
.
wrap
(
pipelines
).
flat_map
do
|
pipeline
|
case
pipeline
when
Hash
->
(
context
)
{
context
.
merge
(
pipeline
)
}
when
Proc
pipeline
when
Symbol
context_transformers
[
all_context_transformers
[
pipeline
]]
when
Array
context_transformers
[
pipeline
]
end
end
.
compact
end
def
self
.
cacheless_render
(
text
,
context
=
{})
result
=
render_result
(
text
,
context
)
output
=
result
[
:output
]
if
output
.
respond_to?
(
:to_html
)
output
.
to_html
else
output
.
to_s
end
end
def
self
.
full_cache_key
(
cache_key
,
pipeline
=
:full
)
return
unless
cache_key
&&
pipeline
.
is_a?
(
Symbol
)
[
"markdown"
,
*
cache_key
,
pipeline
]
end
end
end
end
end
lib/gitlab/markdown/asciidoc_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
AsciidocPipeline
<
Pipeline
def
self
.
filters
[
Gitlab
::
Markdown
::
RelativeLinkFilter
]
end
end
end
end
lib/gitlab/markdown/atom_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
AtomPipeline
<
FullPipeline
def
self
.
transform_context
(
context
)
super
(
context
).
merge
(
only_path:
false
,
xhtml:
true
)
end
end
end
end
lib/gitlab/markdown/combined_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
module
CombinedPipeline
def
self
.
new
(
*
pipelines
)
Class
.
new
(
Pipeline
)
do
const_set
:PIPELINES
,
pipelines
def
self
.
filters
pipelines
.
flat_map
(
&
:filters
)
end
def
self
.
transform_context
(
context
)
pipelines
.
reduce
(
context
)
{
|
context
,
pipeline
|
pipeline
.
transform_context
(
context
)
}
end
def
self
.
pipelines
self
::
PIPELINES
end
end
end
end
end
end
lib/gitlab/markdown/description_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
DescriptionPipeline
<
FullPipeline
def
self
.
transform_context
(
context
)
super
(
context
).
merge
(
# SanitizationFilter
inline_sanitization:
true
)
end
end
end
end
lib/gitlab/markdown/email_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
EmailPipeline
<
FullPipeline
def
self
.
transform_context
(
context
)
super
(
context
).
merge
(
only_path:
false
)
end
end
end
end
lib/gitlab/markdown/full_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
FullPipeline
<
CombinedPipeline
.
new
(
PlainMarkdownPipeline
,
GfmPipeline
)
end
end
end
lib/gitlab/markdown/gfm_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
GfmPipeline
<
Pipeline
def
self
.
filters
@filters
||=
[
Gitlab
::
Markdown
::
SyntaxHighlightFilter
,
Gitlab
::
Markdown
::
SanitizationFilter
,
Gitlab
::
Markdown
::
UploadLinkFilter
,
Gitlab
::
Markdown
::
EmojiFilter
,
Gitlab
::
Markdown
::
TableOfContentsFilter
,
Gitlab
::
Markdown
::
AutolinkFilter
,
Gitlab
::
Markdown
::
ExternalLinkFilter
,
Gitlab
::
Markdown
::
UserReferenceFilter
,
Gitlab
::
Markdown
::
IssueReferenceFilter
,
Gitlab
::
Markdown
::
ExternalIssueReferenceFilter
,
Gitlab
::
Markdown
::
MergeRequestReferenceFilter
,
Gitlab
::
Markdown
::
SnippetReferenceFilter
,
Gitlab
::
Markdown
::
CommitRangeReferenceFilter
,
Gitlab
::
Markdown
::
CommitReferenceFilter
,
Gitlab
::
Markdown
::
LabelReferenceFilter
,
Gitlab
::
Markdown
::
TaskListFilter
]
end
def
self
.
transform_context
(
context
)
context
.
merge
(
only_path:
true
,
# EmojiFilter
asset_host:
Gitlab
::
Application
.
config
.
asset_host
,
asset_root:
Gitlab
.
config
.
gitlab
.
base_url
)
end
end
end
end
lib/gitlab/markdown/note_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
NotePipeline
<
FullPipeline
def
self
.
transform_context
(
context
)
super
(
context
).
merge
(
# TableOfContentsFilter
no_header_anchors:
true
)
end
end
end
end
lib/gitlab/markdown/pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
Pipeline
def
self
.
filters
[]
end
def
self
.
transform_context
(
context
)
context
end
def
self
.
html_pipeline
@html_pipeline
||=
HTML
::
Pipeline
.
new
(
filters
)
end
class
<<
self
%i(call to_document to_html)
.
each
do
|
meth
|
define_method
(
meth
)
do
|
text
,
context
|
context
=
transform_context
(
context
)
html_pipeline
.
send
(
meth
,
text
,
context
)
end
end
end
end
end
end
lib/gitlab/markdown/plain_markdown_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
PlainMarkdownPipeline
<
Pipeline
def
self
.
filters
[
Gitlab
::
Markdown
::
MarkdownFilter
]
end
end
end
end
lib/gitlab/markdown/post_process_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
PostProcessPipeline
<
Pipeline
def
self
.
filters
[
Gitlab
::
Markdown
::
RelativeLinkFilter
,
Gitlab
::
Markdown
::
RedactorFilter
]
end
def
self
.
transform_context
(
context
)
context
.
merge
(
post_process:
true
)
end
end
end
end
lib/gitlab/markdown/reference_extraction_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
ReferenceExtractionPipeline
<
Pipeline
def
self
.
filters
[
Gitlab
::
Markdown
::
ReferenceGathererFilter
]
end
end
end
end
lib/gitlab/markdown/single_line_pipeline.rb
0 → 100644
View file @
abbca615
require
'gitlab/markdown'
module
Gitlab
module
Markdown
class
SingleLinePipeline
<
GfmPipeline
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