debian-mirror-gitlab/app/helpers/emails_helper.rb

173 lines
4.2 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
module EmailsHelper
2017-08-17 22:00:37 +05:30
include AppearancesHelper
2015-04-26 12:48:37 +05:30
# 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,
2017-09-10 17:25:29 +05:30
"url" => url
2015-04-26 12:48:37 +05:30
}
}
content_tag :script, type: 'application/ld+json' do
data.to_json.html_safe
end
end
end
def action_title(url)
return unless url
2018-03-17 18:26:18 +05:30
2017-08-17 22:00:37 +05:30
%w(merge_requests issues commit).each do |action|
2015-04-26 12:48:37 +05:30
if url.split("/").include?(action)
return "View #{action.humanize.singularize}"
end
end
2015-12-23 02:04:40 +05:30
nil
2015-04-26 12:48:37 +05:30
end
2019-02-15 15:39:39 +05:30
def sanitize_name(name)
if name =~ URI::DEFAULT_PARSER.regexp[:URI_REF]
name.tr('.', '_')
else
name
end
end
2015-09-11 14:41:01 +05:30
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
link_tag = link_to('request a new one', new_user_password_url(user_email: @user.email))
2018-12-05 23:21:45 +05:30
"This link is valid for #{password_reset_token_valid_time}. " \
"After it expires, you can #{link_tag}."
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
def header_logo
2018-05-09 12:01:36 +05:30
if current_appearance&.header_logo?
2017-08-17 22:00:37 +05:30
image_tag(
2019-02-15 15:39:39 +05:30
current_appearance.header_logo_path,
2017-08-17 22:00:37 +05:30
style: 'height: 50px'
)
else
image_tag(
image_url('mailers/gitlab_header_logo.gif'),
2017-09-10 17:25:29 +05:30
size: '55x50',
alt: 'GitLab'
2017-08-17 22:00:37 +05:30
)
end
end
2017-09-10 17:25:29 +05:30
def email_default_heading(text)
content_tag :h1, text, style: [
"font-family:'Helvetica Neue',Helvetica,Arial,sans-serif",
'color:#333333',
'font-size:18px',
'font-weight:400',
'line-height:1.4',
'padding:0',
'margin:0',
'text-align:center'
].join(';')
end
2018-03-17 18:26:18 +05:30
# "You are receiving this email because #{reason}"
def notification_reason_text(reason)
string = case reason
when NotificationReason::OWN_ACTIVITY
'of your activity'
when NotificationReason::ASSIGNED
'you have been assigned an item'
when NotificationReason::MENTIONED
'you have been mentioned'
else
'of your account'
end
"#{string} on #{Gitlab.config.gitlab.host}"
end
2019-02-15 15:39:39 +05:30
def create_list_id_string(project, list_id_max_length = 255)
project_path_as_domain = project.full_path.downcase
.split('/').reverse.join('/')
.gsub(%r{[^a-z0-9\/]}, '-')
.gsub(%r{\/+}, '.')
.gsub(/(\A\.+|\.+\z)/, '')
max_domain_length = list_id_max_length - Gitlab.config.gitlab.host.length - project.id.to_s.length - 2
if max_domain_length < 3
return project.id.to_s + "..." + Gitlab.config.gitlab.host
end
if project_path_as_domain.length > max_domain_length
project_path_as_domain = project_path_as_domain.slice(0, max_domain_length)
last_dot_index = project_path_as_domain[0..-2].rindex(".")
last_dot_index ||= max_domain_length - 2
project_path_as_domain = project_path_as_domain.slice(0, last_dot_index).concat("..")
end
project.id.to_s + "." + project_path_as_domain + "." + Gitlab.config.gitlab.host
end
2019-07-07 11:18:12 +05:30
def html_header_message
return unless show_header?
render_message(:header_message, style: '')
end
def html_footer_message
return unless show_footer?
render_message(:footer_message, style: '')
end
def text_header_message
return unless show_header?
strip_tags(render_message(:header_message, style: ''))
end
def text_footer_message
return unless show_footer?
strip_tags(render_message(:footer_message, style: ''))
end
private
def show_footer?
email_header_and_footer_enabled? && current_appearance&.show_footer?
end
def show_header?
email_header_and_footer_enabled? && current_appearance&.show_header?
end
def email_header_and_footer_enabled?
current_appearance&.email_header_and_footer_enabled?
end
2015-04-26 12:48:37 +05:30
end