2015-03-04 06:58:40 -05:00
|
|
|
require 'html/pipeline'
|
|
|
|
require 'html/pipeline/gitlab'
|
|
|
|
|
2014-11-11 10:09:58 -05:00
|
|
|
module EmailsHelper
|
|
|
|
|
|
|
|
# Google Actions
|
|
|
|
# https://developers.google.com/gmail/markup/reference/go-to-action
|
2014-11-12 05:59:57 -05:00
|
|
|
def email_action(url)
|
|
|
|
name = action_title(url)
|
|
|
|
if name
|
|
|
|
data = {
|
|
|
|
"@context" => "http://schema.org",
|
|
|
|
"@type" => "EmailMessage",
|
|
|
|
"action" => {
|
|
|
|
"@type" => "ViewAction",
|
|
|
|
"name" => name,
|
|
|
|
"url" => url,
|
|
|
|
}
|
2014-11-11 10:09:58 -05:00
|
|
|
}
|
|
|
|
|
2014-11-12 05:59:57 -05:00
|
|
|
content_tag :script, type: 'application/ld+json' do
|
|
|
|
data.to_json.html_safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def action_title(url)
|
|
|
|
return unless url
|
|
|
|
["merge_requests", "issues", "commit"].each do |action|
|
|
|
|
if url.split("/").include?(action)
|
|
|
|
return "View #{action.humanize.singularize}"
|
|
|
|
end
|
2014-11-11 10:09:58 -05:00
|
|
|
end
|
|
|
|
end
|
2015-01-16 08:38:53 -05:00
|
|
|
|
|
|
|
def color_email_diff(diffcontent)
|
2015-03-31 06:30:09 -04:00
|
|
|
formatter = Rugments::Formatters::HTML.new(cssclass: "highlight", inline_theme: :github)
|
2015-01-16 08:38:53 -05:00
|
|
|
lexer = Rugments::Lexers::Diff.new
|
|
|
|
raw formatter.format(lexer.lex(diffcontent))
|
|
|
|
end
|
2015-03-04 06:58:40 -05:00
|
|
|
|
|
|
|
def replace_image_links_with_base64(text, project)
|
|
|
|
# Used pipelines in GitLab:
|
|
|
|
# GitlabEmailImageFilter - replaces images that have been uploaded as attachments with inline images in emails.
|
|
|
|
#
|
|
|
|
# see https://gitlab.com/gitlab-org/html-pipeline-gitlab for more filters
|
|
|
|
filters = [
|
|
|
|
HTML::Pipeline::Gitlab::GitlabEmailImageFilter
|
|
|
|
]
|
|
|
|
|
|
|
|
context = {
|
|
|
|
base_url: File.join(Gitlab.config.gitlab.url, project.path_with_namespace, 'uploads'),
|
|
|
|
upload_path: File.join(Rails.root, 'public', 'uploads', project.path_with_namespace),
|
|
|
|
}
|
|
|
|
|
|
|
|
pipeline = HTML::Pipeline::Gitlab.new(filters).pipeline
|
|
|
|
|
|
|
|
result = pipeline.call(text, context)
|
|
|
|
text = result[:output].to_html(save_with: 0)
|
|
|
|
|
|
|
|
text.html_safe
|
|
|
|
end
|
2014-11-11 10:09:58 -05:00
|
|
|
end
|