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 68 69 70 71 72 73 74 75 76 77 78 79 80
|
# frozen-string-literal: true
module Rodauth
Feature.define(:email_base, :EmailBase) do
translatable_method :email_subject_prefix, ''
auth_value_method :require_mail?, true
auth_value_method :allow_raw_email_token?, false
redirect :default_post_email
auth_value_methods(
:email_from
)
auth_methods(
:create_email,
:email_to,
:send_email
)
def post_configure
super
require 'mail' if require_mail?
end
def email_from
"webmaster@#{domain}"
end
def email_to
account[login_column]
end
private
def send_email(email)
email.deliver!
end
def create_email(subject, body)
create_email_to(email_to, subject, body)
end
def create_email_to(to, subject, body)
m = Mail.new
m.from = email_from
m.to = to
m.subject = "#{email_subject_prefix}#{subject}"
m.body = body
m
end
def token_link(route, param, key)
route_url(route, param => token_param_value(key))
end
def token_param_value(key)
"#{account_id}#{token_separator}#{convert_email_token_key(key)}"
end
def convert_email_token_key(key)
convert_token_key(key)
end
def account_from_key(token, status_id=nil)
id, key = split_token(token)
id = convert_token_id(id)
return unless id && key
return unless actual = yield(id)
unless (hmac_secret && timing_safe_eql?(key, convert_email_token_key(actual))) ||
(hmac_secret_rotation? && timing_safe_eql?(key, compute_old_hmac(actual))) ||
((!hmac_secret || allow_raw_email_token?) && timing_safe_eql?(key, actual))
return
end
_account_from_id(id, status_id)
end
end
end
|