Skip to content

Instantly share code, notes, and snippets.

@tddium
Created October 24, 2012 18:23
Show Gist options
  • Save tddium/3947861 to your computer and use it in GitHub Desktop.
Save tddium/3947861 to your computer and use it in GitHub Desktop.
Google Talk Post-Build Notifier
#!/usr/local/bin/ruby
# Copyright (c) 2012 Solano Labs All Rights Reserved
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
require 'rubygems'
require 'bundler'
require 'xmpp4r'
include Jabber
class BuildInfo
def initialize
@repo_name = File.basename(ENV['TDDIUM_REPO_ROOT'])
@session_id = ENV['TDDIUM_SESSION_ID']
@status = ENV['TDDIUM_BUILD_STATUS']
gtalk_login = ENV['GTALK_LOGIN']
gtalk_password = ENV['GTALK_PASSWORD']
@gtalk_target = ENV['GTALK_TARGET']
jid = JID::new(gtalk_login)
@client = Client.new(jid)
@client.connect("talk.google.com")
@client.auth(gtalk_password)
# Deliberately not making the sender available
# via "@client.send(Presence.new.set_type(:available))"
# to receive messagses.
end
def report_url
api_server = ENV['TDDIUM_API_SERVER'] || 'api.tddium.com'
return "https://#{api_server}/1/reports/#{@session_id}"
end
def status_update
status_msg = "#{@repo_name} #{@status}: #{report_url}"
msg = Message::new(@gtalk_target, status_msg)
msg.type=:chat
@client.send(msg)
end
end
info = BuildInfo.new
info.status_update()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment