Class: Fastlane::Actions::MailgunAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::MailgunAction
- Defined in:
- fastlane/lib/fastlane/actions/mailgun.rb
Constant Summary
Constants inherited from Fastlane::Action
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary collapse
- .author ⇒ Object
- .available_options ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .example_code ⇒ Object
- .handle_params_transition(options) ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .mail_template(options) ⇒ Object
- .mailgunit(options) ⇒ Object
- .run(options) ⇒ Object
Methods inherited from Fastlane::Action
action_name, authors, deprecated_notes, details, lane_context, method_missing, other_action, output, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.author ⇒ Object
105 106 107 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 105 def self. "thiagolioy" end |
.available_options ⇒ Object
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 21 def self. [ # This is here just for while due to the transition, not needed anymore FastlaneCore::ConfigItem.new(key: :mailgun_sandbox_domain, env_name: "MAILGUN_SANDBOX_POSTMASTER", optional: true, description: "Mailgun sandbox domain postmaster for your mail. Please use postmaster instead"), # This is here just for while due to the transition, should use postmaster instead FastlaneCore::ConfigItem.new(key: :mailgun_sandbox_postmaster, env_name: "MAILGUN_SANDBOX_POSTMASTER", optional: true, description: "Mailgun sandbox domain postmaster for your mail. Please use postmaster instead"), # This is here just for while due to the transition, should use apikey instead FastlaneCore::ConfigItem.new(key: :mailgun_apikey, env_name: "MAILGUN_APIKEY", sensitive: true, optional: true, description: "Mailgun apikey for your mail. Please use postmaster instead"), FastlaneCore::ConfigItem.new(key: :postmaster, env_name: "MAILGUN_SANDBOX_POSTMASTER", description: "Mailgun sandbox domain postmaster for your mail"), FastlaneCore::ConfigItem.new(key: :apikey, env_name: "MAILGUN_APIKEY", sensitive: true, description: "Mailgun apikey for your mail"), FastlaneCore::ConfigItem.new(key: :to, env_name: "MAILGUN_TO", description: "Destination of your mail"), FastlaneCore::ConfigItem.new(key: :from, env_name: "MAILGUN_FROM", optional: true, description: "Mailgun sender name", default_value: "Mailgun Sandbox"), FastlaneCore::ConfigItem.new(key: :message, env_name: "MAILGUN_MESSAGE", description: "Message of your mail"), FastlaneCore::ConfigItem.new(key: :subject, env_name: "MAILGUN_SUBJECT", description: "Subject of your mail", optional: true, is_string: true, default_value: "fastlane build"), FastlaneCore::ConfigItem.new(key: :success, env_name: "MAILGUN_SUCCESS", description: "Was this build successful? (true/false)", optional: true, default_value: true, is_string: false), FastlaneCore::ConfigItem.new(key: :app_link, env_name: "MAILGUN_APP_LINK", description: "App Release link", optional: false, is_string: true), FastlaneCore::ConfigItem.new(key: :ci_build_link, env_name: "MAILGUN_CI_BUILD_LINK", description: "CI Build Link", optional: true, is_string: true), FastlaneCore::ConfigItem.new(key: :template_path, env_name: "MAILGUN_TEMPLATE_PATH", description: "Mail HTML template", optional: true, is_string: true), FastlaneCore::ConfigItem.new(key: :reply_to, env_name: "MAILGUN_REPLY_TO", description: "Mail Reply to", optional: true, is_string: true), FastlaneCore::ConfigItem.new(key: :attachment, env_name: "MAILGUN_ATTACHMENT", description: "Mail Attachment filenames, either an array or just one string", optional: true, is_string: false), FastlaneCore::ConfigItem.new(key: :custom_placeholders, short_option: "-p", env_name: "MAILGUN_CUSTOM_PLACEHOLDERS", description: "Placeholders for template given as a hash", default_value: {}, is_string: false, type: Hash) ] end |
.category ⇒ Object
192 193 194 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 192 def self.category :notifications end |
.description ⇒ Object
17 18 19 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 17 def self.description "Send a success/error message to an email group" end |
.example_code ⇒ Object
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 165 def self.example_code [ 'mailgun( to: "[email protected]", success: true, message: "This is the mail\'s content" )', 'mailgun( postmaster: "MY_POSTMASTER", apikey: "MY_API_KEY", to: "DESTINATION_EMAIL", from: "EMAIL_FROM_NAME", reply_to: "EMAIL_REPLY_TO", success: true, message: "Mail Body", app_link: "http://www.myapplink.com", ci_build_link: "http://www.mycibuildlink.com", template_path: "HTML_TEMPLATE_PATH", custom_placeholders: { :var1 => 123, :var2 => "string" }, attachment: "dirname/filename.ext" )' ] end |
.handle_params_transition(options) ⇒ Object
109 110 111 112 113 114 115 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 109 def self.handle_params_transition() [:postmaster] = [:mailgun_sandbox_postmaster] if [:mailgun_sandbox_postmaster] puts("\nUsing :mailgun_sandbox_postmaster is deprecated, please change to :postmaster".yellow) if [:mailgun_sandbox_postmaster] [:apikey] = [:mailgun_apikey] if [:mailgun_apikey] puts("\nUsing :mailgun_apikey is deprecated, please change to :apikey".yellow) if [:mailgun_apikey] end |
.is_supported?(platform) ⇒ Boolean
6 7 8 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 6 def self.is_supported?(platform) true end |
.mail_template(options) ⇒ Object
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 139 def self.mail_template() hash = { author: Actions., last_commit: Actions., message: [:message], app_link: [:app_link] } hash[:success] = [:success] hash[:ci_build_link] = [:ci_build_link] # concatenate with custom placeholders passed by user hash = hash.merge([:custom_placeholders]) # grabs module eth = Fastlane::ErbTemplateHelper # create html from template html_template_path = [:template_path] if html_template_path && File.exist?(html_template_path) html_template = eth.load_from_path(html_template_path) else html_template = eth.load("mailgun_html_template") end eth.render(html_template, hash) end |
.mailgunit(options) ⇒ Object
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 117 def self.mailgunit() sandbox_domain = [:postmaster].split("@").last params = { from: "#{[:from]} <#{[:postmaster]}>", to: ([:to]).to_s, subject: [:subject], html: mail_template() } unless [:reply_to].nil? params.store(:"h:Reply-To", [:reply_to]) end unless [:attachment].nil? = [*[:attachment]] = .map { |filename| File.new(filename, 'rb') } params.store(:attachment, ) end RestClient.post("https://api:#{[:apikey]}@api.mailgun.net/v3/#{sandbox_domain}/messages", params) mail_template() end |
.run(options) ⇒ Object
10 11 12 13 14 15 |
# File 'fastlane/lib/fastlane/actions/mailgun.rb', line 10 def self.run() Actions.verify_gem!('rest-client') require 'rest-client' handle_params_transition() mailgunit() end |