class Fastlane::Actions::ChatworkAction

Public Class Methods

author() click to toggle source
# File fastlane/lib/fastlane/actions/chatwork.rb, line 67
def self.author
  "astronaughts"
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/chatwork.rb, line 38
def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :api_token,
                                 env_name: "CHATWORK_API_TOKEN",
                                 description: "ChatWork API Token",
                                 sensitive: true,
                                 code_gen_sensitive: true,
                                 verify_block: proc do |value|
                                   unless value.to_s.length > 0
                                     UI.error("Please add 'ENV[\"CHATWORK_API_TOKEN\"] = \"your token\"' to your Fastfile's `before_all` section.")
                                     UI.user_error!("No CHATWORK_API_TOKEN given.")
                                   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",
                                 type: Integer),
    FastlaneCore::ConfigItem.new(key: :success,
                                 env_name: "FL_CHATWORK_SUCCESS",
                                 description: "Was this build successful? (true/false)",
                                 optional: true,
                                 default_value: true,
                                 type: Boolean)
  ]
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/chatwork.rb, line 90
def self.category
  :notifications
end
description() click to toggle source
# File fastlane/lib/fastlane/actions/chatwork.rb, line 34
def self.description
  "Send a success/error message to [ChatWork](https://go.chatwork.com/)"
end
details() click to toggle source
# File fastlane/lib/fastlane/actions/chatwork.rb, line 75
def self.details
  "Information on how to obtain an API token: [http://developer.chatwork.com/ja/authenticate.html](http://developer.chatwork.com/ja/authenticate.html)"
end
example_code() click to toggle source
# File fastlane/lib/fastlane/actions/chatwork.rb, line 79
def self.example_code
  [
    'chatwork(
      message: "App successfully released!",
      roomid: 12345,
      success: true,
      api_token: "Your Token"
    )'
  ]
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/chatwork.rb, line 71
def self.is_supported?(platform)
  true
end
run(options) click to toggle source
# File fastlane/lib/fastlane/actions/chatwork.rb, line 7
def self.run(options)
  require 'net/http'
  require 'uri'

  emoticon = (options[:success] ? '(dance)' : ';(')

  uri = URI.parse("https://api.chatwork.com/v2/rooms/#{options[: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'] = options[:api_token]
  req.set_form_data({
    'body' => "[info][title]Notification from fastlane[/title]#{emoticon} #{options[:message]}[/info]"
  })

  response = https.request(req)
  case response.code.to_i
  when 200..299
    UI.success('Successfully sent notification to ChatWork right now 📢')
  else
    require 'json'
    json = JSON.parse(response.body)
    UI.user_error!("HTTP Error: #{response.code} #{json['errors']}")
  end
end