BigW Consortium Gitlab

emails_helper.rb 1.59 KB
Newer Older
1
module EmailsHelper
2 3
  include AppearancesHelper

4 5
  # Google Actions
  # https://developers.google.com/gmail/markup/reference/go-to-action
6 7 8 9 10 11 12 13 14 15 16
  def email_action(url)
    name = action_title(url)
    if name
      data = {
        "@context" => "http://schema.org",
        "@type" => "EmailMessage",
        "action" => {
          "@type" => "ViewAction",
          "name" => name,
          "url" => url,
          }
17 18
        }

19 20 21 22 23 24 25 26
      content_tag :script, type: 'application/ld+json' do
        data.to_json.html_safe
      end
    end
  end

  def action_title(url)
    return unless url
Douwe Maan committed
27
    %w(merge_requests issues commit).each do |action|
28 29 30
      if url.split("/").include?(action)
        return "View #{action.humanize.singularize}"
      end
31
    end
32 33

    nil
34
  end
35

36 37 38 39 40 41 42 43 44 45 46 47 48 49
  def password_reset_token_valid_time
    valid_hours = Devise.reset_password_within / 60 / 60
    if valid_hours >= 24
      unit = 'day'
      valid_length = (valid_hours / 24).floor
    else
      unit = 'hour'
      valid_length = valid_hours.floor
    end

    pluralize(valid_length, unit)
  end

  def reset_token_expire_message
50
    link_tag = link_to('request a new one', new_user_password_url(user_email: @user.email))
51 52 53
    msg = "This link is valid for #{password_reset_token_valid_time}.  "
    msg << "After it expires, you can #{link_tag}."
  end
54 55 56

  def header_logo
    if brand_item && brand_item.header_logo?
57 58 59 60
      image_tag(
        brand_item.header_logo,
        style: 'height: 50px'
      )
61 62 63 64 65 66 67 68
    else
      image_tag(
        image_url('mailers/gitlab_header_logo.gif'),
        size: "55x50",
        alt: "GitLab"
      )
    end
  end
69
end