aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/notifiers/sms_aql.rb
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2011-04-13 17:03:16 +0100
committerPatrick J Cherry <patrick@bytemark.co.uk>2011-04-13 17:03:16 +0100
commit89a67770e66d11740948e90a41db6cee0482cf8e (patch)
treebe858515fb789a89d68f94975690ab019813726c /lib/mauve/notifiers/sms_aql.rb
new version.
Diffstat (limited to 'lib/mauve/notifiers/sms_aql.rb')
-rw-r--r--lib/mauve/notifiers/sms_aql.rb90
1 files changed, 90 insertions, 0 deletions
diff --git a/lib/mauve/notifiers/sms_aql.rb b/lib/mauve/notifiers/sms_aql.rb
new file mode 100644
index 0000000..1cf8c04
--- /dev/null
+++ b/lib/mauve/notifiers/sms_aql.rb
@@ -0,0 +1,90 @@
+require 'mauve/notifiers/debug'
+require 'cgi'
+
+module Mauve
+ module Notifiers
+ module Sms
+
+ require 'net/https'
+ class AQL
+ GATEWAY = "https://gw1.aql.com/sms/sms_gw.php"
+
+ attr :username, true
+ attr :password, true
+ attr :from, true
+ attr :max_messages_per_alert, true
+ attr_reader :name
+
+ def initialize(name)
+ @name = name
+ end
+
+ def send_alert(destination, alert, all_alerts, conditions = nil)
+ uri = URI.parse(GATEWAY)
+
+ opts_string = {
+ :username => @username,
+ :password => @password,
+ :destination => normalize_number(destination),
+ :message => prepare_message(destination, alert, all_alerts, conditions),
+ :originator => @from,
+ :flash => @flash ? 1 : 0
+ }.map { |k,v| "#{k}=#{CGI::escape(v.to_s)}" }.join("&")
+
+ http = Net::HTTP.new(uri.host, uri.port)
+ if uri.port == 443
+ http.use_ssl = true
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
+ end
+ response, data = http.post(uri.path, opts_string, {
+ 'Content-Type' => 'application/x-www-form-urlencoded',
+ 'Content-Length' => opts_string.length.to_s
+ })
+
+ raise response unless response.kind_of?(Net::HTTPSuccess)
+ end
+
+ protected
+ def prepare_message(destination, alert, all_alerts, conditions=nil)
+ if conditions
+ @suppressed_changed = conditions[:suppressed_changed]
+ end
+
+ txt = case @suppressed_changed
+ when true then "TOO MUCH NOISE! Last notification: "
+ when false then "BACK TO NORMAL: "
+ else
+ ""
+ end
+
+ txt += "#{alert.update_type.upcase}: "
+ txt += alert.summary_one_line
+
+ others = all_alerts-[alert]
+ if !others.empty?
+ txt += (1 == others.length)?
+ "and a lone other." :
+ "and #{others.length} others."
+ #txt += "and #{others.length} others: "
+ #txt += others.map { |alert| alert.summary_one_line }.join(", ")
+ end
+
+ txt += "link: https://alert.bytemark.co.uk/alerts"
+
+ ## @TODO: Add a link to acknowledge the alert in the text?
+ #txt += "Acknoweledge alert: "+
+ # "https://alert.bytemark.co.uk/alert/acknowledge/"+
+ # "#{alert.id}/#{alert.get_default_acknowledge_time}
+
+ txt
+ end
+
+ def normalize_number(n)
+ n.split("").select { |s| (?0..?9).include?(s[0]) }.join.gsub(/^0/, "44")
+ end
+ include Debug
+ end
+ end
+ end
+end
+