summaryrefslogtreecommitdiff
path: root/app/helpers/emails_helper.rb
blob: 08476f8516e8265af3ef0f1c374b732de0301863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
require 'html/pipeline'
require 'html/pipeline/gitlab'

module EmailsHelper

  # Google Actions
  # https://developers.google.com/gmail/markup/reference/go-to-action
  def email_action(url)
    name = action_title(url)
    if name
      data = {
        "@context" => "http://schema.org",
        "@type" => "EmailMessage",
        "action" => {
          "@type" => "ViewAction",
          "name" => name,
          "url" => url,
          }
        }

      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
    end
  end

  def add_email_highlight_css
    Rugments::Themes::Github.render(scope: '.highlight')
  end

  def color_email_diff(diffcontent)
    formatter = Rugments::Formatters::HTML.new(cssclass: 'highlight')
    lexer = Rugments::Lexers::Diff.new
    raw formatter.format(lexer.lex(diffcontent))
  end

  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
end