module DiscourseNarrativeBot class CertificateGenerator def initialize(user, date) @user = user date = begin Date.parse(date) rescue ArgumentError => e if e.message == 'invalid date' Date.parse(Date.today.to_s) else raise e end end @date = I18n.l(date, format: :date_only) @discobot_user = User.find(-2) end def new_user_track width = 538.583 # Default width for the SVG svg = <<~SVG #{I18n.t('discourse_narrative_bot.new_user_narrative.title')} #{I18n.t('discourse_narrative_bot.new_user_narrative.cert_title')} #{@discobot_user.username} #{@date} #{name} #{logo_group(40, width, 280)} SVG end def advanced_user_track width = 722.8 # Default width for the SVG <<~SVG #{I18n.t('discourse_narrative_bot.advanced_user_narrative.cert_title')} #{@date} #{@discobot_user.username} #{name} #{logo_group(55, width, 350)} SVG end private def name @user.username.titleize end def logo_group(size, width, height) return unless SiteSetting.site_logo_small_url.present? begin uri = URI(SiteSetting.site_logo_small_url) logo_uri = if uri.host.blank? || uri.scheme.blank? URI("#{Discourse.base_url}/#{uri.path}") else uri end <<~URL URL rescue URI::InvalidURIError '' end end def base64_image_link(url) if image = fetch_image(url) "xlink:href=\"data:image/png;base64,#{Base64.strict_encode64(image)}\"" else "" end end def fetch_image(url) URI(url).open('rb', redirect: true, allow_redirections: :all).read rescue OpenURI::HTTPError # Ignore if fetching image returns a non 200 response end def avatar_url UrlHelper.absolute(Discourse.base_uri + @user.avatar_template.gsub('{size}', '250')) end end end