1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- module NotificationFactory
- TEMPLATE_PATH_STRING = Rails.root.join('app', 'views', '%<type>s', '%<template>s', '%<filename>s').to_s.freeze
- APPLICATION_TEMPLATE_PATH_STRING = Rails.root.join('app', 'views', '%<type>s', 'application.%<format>s.erb').to_s.freeze
- =begin
- result = NotificationFactory.template_read(
- template: 'password_reset',
- locale: 'en-us',
- format: 'html',
- type: 'mailer',
- )
- or
- result = NotificationFactory.template_read(
- template: 'ticket_update',
- locale: 'en-us',
- format: 'md',
- type: 'slack',
- )
- returns
- {
- subject: 'some subject',
- body: 'some body',
- }
- =end
- def self.template_read(data)
- template = File.readlines(template_path(data))
- { subject: template.shift, body: template.join }
- end
- def self.template_path(data)
- template_filenames(data)
- .map { |filename| data.merge(filename: filename) }
- .map { |data_hash| TEMPLATE_PATH_STRING % data_hash }
- .find(&File.method(:exist?))
- end
- private_class_method :template_path
- def self.template_filenames(data)
- locale = data[:locale] || Setting.get('locale_default') || 'en-us'
- [locale, locale[0, 2], 'en']
- .uniq
- .map { |locale_code| "#{locale_code}.#{data[:format]}.erb" }
- .map { |basename| ["#{basename}.custom", basename] }.flatten
- end
- private_class_method :template_filenames
- =begin
- string = NotificationFactory.application_template_read(
- format: 'html',
- type: 'mailer',
- )
- or
- string = NotificationFactory.application_template_read(
- format: 'md',
- type: 'slack',
- )
- returns
- 'some template'
- =end
- def self.application_template_read(data)
- File.read(APPLICATION_TEMPLATE_PATH_STRING % data)
- end
- end
|