Class: Fastlane::Actions::HipchatAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::HipchatAction
- Defined in:
- lib/fastlane/actions/hipchat.rb
Constant Summary
Constants inherited from Fastlane::Action
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary collapse
- .author ⇒ Object
- .available_options ⇒ Object
- .category ⇒ Object
- .check_response_code(response, channel) ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .example_code ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .run(options) ⇒ Object
- .user?(channel) ⇒ Boolean
Methods inherited from Fastlane::Action
action_name, authors, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text
Class Method Details
.author ⇒ Object
168 169 170 |
# File 'lib/fastlane/actions/hipchat.rb', line 168 def self. "jingx23" end |
.available_options ⇒ Object
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 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 164 165 166 |
# File 'lib/fastlane/actions/hipchat.rb', line 94 def self. [ FastlaneCore::ConfigItem.new(key: :message, env_name: "FL_HIPCHAT_MESSAGE", description: "The message to post on HipChat", default_value: ''), FastlaneCore::ConfigItem.new(key: :channel, env_name: "FL_HIPCHAT_CHANNEL", description: "The room or @username"), FastlaneCore::ConfigItem.new(key: :api_token, env_name: "HIPCHAT_API_TOKEN", description: "Hipchat API Token", verify_block: proc do |value| unless value.to_s.length > 0 UI.error("Please add 'ENV[\"HIPCHAT_API_TOKEN\"] = \"your token\"' to your Fastfile's `before_all` section.") UI.user_error!("No HIPCHAT_API_TOKEN given.") end end), FastlaneCore::ConfigItem.new(key: :custom_color, env_name: "FL_HIPCHAT_CUSTOM_COLOR", description: "Specify a custom color, this overrides the success boolean. Can be one of 'yellow', 'red', 'green', 'purple', 'gray', or 'random'", optional: true, is_string: true), FastlaneCore::ConfigItem.new(key: :success, env_name: "FL_HIPCHAT_SUCCESS", description: "Was this build successful? (true/false)", optional: true, default_value: true, is_string: false), FastlaneCore::ConfigItem.new(key: :version, env_name: "HIPCHAT_API_VERSION", description: "Version of the Hipchat API. Must be 1 or 2", verify_block: proc do |value| if value.nil? || ![1, 2].include?(value.to_i) UI.error("Please add 'ENV[\"HIPCHAT_API_VERSION\"] = \"1 or 2\"' to your Fastfile's `before_all` section.") UI.user_error!("No HIPCHAT_API_VERSION given.") end end), FastlaneCore::ConfigItem.new(key: :notify_room, env_name: "HIPCHAT_NOTIFY_ROOM", description: "Should the people in the room be notified? (true/false)", default_value: false, optional: true, is_string: false), FastlaneCore::ConfigItem.new(key: :api_host, env_name: "HIPCHAT_API_HOST", description: "The host of the HipChat-Server API", default_value: "api.hipchat.com", optional: true), FastlaneCore::ConfigItem.new(key: :message_format, env_name: "FL_HIPCHAT_MESSAGE_FORMAT", description: "Format of the message to post. Must be either 'html' or 'text'", default_value: "html", optional: true, verify_block: proc do |value| unless ["html", "text"].include?(value.to_s) UI.error("Please specify the message format as either 'html' or 'text'.") UI.user_error!("Unrecognized message_format.") end end), FastlaneCore::ConfigItem.new(key: :include_html_header, env_name: "FL_HIPCHAT_INCLUDE_HTML_HEADER", description: "Should html formatted messages include a preformatted header? (true/false)", default_value: true, optional: true, is_string: false), FastlaneCore::ConfigItem.new(key: :from, env_name: "FL_HIPCHAT_FROM", description: "Name the message will appear be sent from", default_value: "fastlane", optional: true) ] end |
.category ⇒ Object
191 192 193 |
# File 'lib/fastlane/actions/hipchat.rb', line 191 def self.category :notifications end |
.check_response_code(response, channel) ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/fastlane/actions/hipchat.rb', line 77 def self.check_response_code(response, channel) case response.code.to_i when 200, 204 true when 404 UI.user_error!("Channel `#{channel}` not found") when 401 UI.user_error!("Access denied for channel `#{channel}`") else UI.user_error!("Unexpected #{response.code} for `#{channel}` with response: #{response.body}") end end |
.description ⇒ Object
90 91 92 |
# File 'lib/fastlane/actions/hipchat.rb', line 90 def self.description "Send a error/success message to HipChat" end |
.details ⇒ Object
176 177 178 |
# File 'lib/fastlane/actions/hipchat.rb', line 176 def self.details "Send a message to **room** (by default) or a direct message to **@username** with success (green) or failure (red) status." end |
.example_code ⇒ Object
180 181 182 183 184 185 186 187 188 189 |
# File 'lib/fastlane/actions/hipchat.rb', line 180 def self.example_code [ 'hipchat( message: "App successfully released!", message_format: "html", # or "text", defaults to "html" channel: "Room or @username", success: true )' ] end |
.is_supported?(platform) ⇒ Boolean
172 173 174 |
# File 'lib/fastlane/actions/hipchat.rb', line 172 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 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 |
# File 'lib/fastlane/actions/hipchat.rb', line 7 def self.run() require 'net/http' require 'uri' api_token = [:api_token] api_version = [:version] api_host = [:api_host] = [:message_format] channel = [:channel] if ['yellow', 'red', 'green', 'purple', 'gray', 'random'].include?([:custom_color]) == true color = [:custom_color] else color = ([:success] ? 'green' : 'red') end from = [:from] = [:message] if ( == "html") && ([:include_html_header] == true) = "<table><tr><td><img src='https://s3-eu-west-1.amazonaws.com/fastlane.tools/fastlane.png' width='50' height='50'></td><td>#{[0..9999]}</td></tr></table>" end if api_version.to_i == 1 ########## running on V1 ########## if user?(channel) UI.user_error!("HipChat private message not working with API V1 please use API V2 instead") else uri = URI.parse("https://#{api_host}/v1/rooms/message") response = Net::HTTP.post_form(uri, { 'from' => from, 'auth_token' => api_token, 'color' => color, 'message_format' => , 'room_id' => channel, 'message' => , 'notify' => [:notify_room] ? '1' : '0' }) check_response_code(response, channel) end else ########## running on V2 ########## if user?(channel) params = { 'message' => , 'message_format' => } json_headers = { 'Content-Type' => 'application/json', 'Accept' => 'application/json', 'Authorization' => "Bearer #{api_token}" } escaped_channel = URI.unescape(channel) == channel ? URI.escape(channel) : channel uri = URI.parse("https://#{api_host}/v2/user/#{escaped_channel}/message") http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = true response = http.post(uri.path, params.to_json, json_headers) else uri = URI.parse("https://#{api_host}/v2/room/#{channel}/notification") response = Net::HTTP.post_form(uri, { 'from' => from, 'auth_token' => api_token, 'color' => color, 'message_format' => , 'message' => , 'notify' => [:notify_room] ? 'true' : 'false' }) end check_response_code(response, channel) end end |
.user?(channel) ⇒ Boolean
73 74 75 |
# File 'lib/fastlane/actions/hipchat.rb', line 73 def self.user?(channel) channel.to_s.start_with?('@') end |