Class: Fastlane::Actions::ChatworkAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::ChatworkAction
- Defined in:
- lib/fastlane/actions/chatwork.rb
Class Method Summary collapse
- .author ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .run(options) ⇒ Object
Methods inherited from Fastlane::Action
action_name, authors, details, output, sh, step_text
Class Method Details
.author ⇒ Object
65 66 67 |
# File 'lib/fastlane/actions/chatwork.rb', line 65 def self. "ChatWork Inc." end |
.available_options ⇒ Object
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 |
# File 'lib/fastlane/actions/chatwork.rb', line 38 def self. [ FastlaneCore::ConfigItem.new(key: :api_token, env_name: "CHATWORK_API_TOKEN", description: "ChatWork API Token", verify_block: Proc.new do |value| unless value.to_s.length > 0 Helper.log.fatal "Please add 'ENV[\"CHATWORK_API_TOKEN\"] = \"your token\"' to your Fastfile's `before_all` section.".red raise 'No CHATWORK_API_TOKEN given.'.red end end), FastlaneCore::ConfigItem.new(key: :message, env_name: "FL_CHATWORK_MESSAGE", description: "The message to post on ChatWork"), FastlaneCore::ConfigItem.new(key: :roomid, env_name: "FL_CHATWORK_ROOMID", description: "The room ID", is_string: false), FastlaneCore::ConfigItem.new(key: :success, env_name: "FL_CHATWORK_SUCCESS", description: "Was this build successful? (true/false)", optional: true, default_value: true, is_string: false) ] end |
.description ⇒ Object
34 35 36 |
# File 'lib/fastlane/actions/chatwork.rb', line 34 def self.description "Send a success/error message to ChatWork" end |
.is_supported?(platform) ⇒ Boolean
69 70 71 |
# File 'lib/fastlane/actions/chatwork.rb', line 69 def self.is_supported?(platform) true end |
.run(options) ⇒ Object
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 |
# File 'lib/fastlane/actions/chatwork.rb', line 7 def self.run() require 'net/http' require 'uri' emoticon = ([:success] ? '(dance)' : ';(') uri = URI.parse("https://api.chatwork.com/v1/rooms/#{[:roomid]}/messages") https = Net::HTTP.new(uri.host, uri.port) https.use_ssl = true req = Net::HTTP::Post.new(uri.request_uri) req['X-ChatWorkToken'] = [:api_token] req.set_form_data({ 'body' => "[info][title]Notification from fastlane[/title]#{emoticon} #{[:message]}[/info]" }) response = https.request(req) case response.code.to_i when 200..299 Helper.log.info 'Successfully sent notification to ChatWork right now 📢'.green else require 'json' json = JSON.parse(response.body) raise "HTTP Error: #{response.code} #{json['errors']}".red end end |