messagepub 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt ADDED
@@ -0,0 +1,4 @@
1
+ == 0.0.1 2009-03-06
2
+
3
+ * 1 major enhancement:
4
+ * Initial release
data/Manifest.txt ADDED
@@ -0,0 +1,19 @@
1
+ History.txt
2
+ Manifest.txt
3
+ PostInstall.txt
4
+ Rakefile
5
+ README.rdoc
6
+ lib/messagepub.rb
7
+ lib/messagepub/reply.rb
8
+ lib/messagepub/recipient.rb
9
+ lib/messagepub/notification.rb
10
+ lib/messagepub/client.rb
11
+ script/
12
+ script/console
13
+ script/destroy
14
+ script/generate
15
+ tasks/
16
+ test/
17
+ test/test_helper.rb
18
+ test/test_messagepub.rb
19
+
data/PostInstall.txt ADDED
@@ -0,0 +1,4 @@
1
+
2
+ For more information on messagepub, go to http://messagepub.com
3
+
4
+
data/README.rdoc ADDED
@@ -0,0 +1,97 @@
1
+ = messagepub
2
+
3
+ * Website: http://messagepub.com
4
+
5
+ == DESCRIPTION:
6
+
7
+ * MessagePub is a dead-simple messaging API that you can start using for your applications in less than 5 minutes.
8
+
9
+
10
+ * Register for an API Key at http://messagepub.com
11
+
12
+
13
+ * Support for the following platforms: Twitter, Google Chat, AIM, Email, Phone, and SMS.
14
+
15
+
16
+ * Reach out to one person in multiple ways.
17
+
18
+
19
+ * Helper libraries in multiple languages.
20
+
21
+
22
+ * Schedule a message to be delivered in the future.
23
+
24
+
25
+ * Set up an escalation schedule.
26
+
27
+
28
+ * For more documentation on MessagePub, go to http://messagepub.com/documentation
29
+
30
+
31
+ == FEATURES:
32
+
33
+ You can currently do the following with the MessagePub gem:
34
+ * List notifications on your account.
35
+ * Get a notification from your account.
36
+ * Create a new notification.
37
+ * Get all replies from your account.
38
+
39
+ == SYNOPSIS:
40
+
41
+ # Get latest notifications from your account
42
+
43
+ client = MessagePub::Client.new('YOURAPIKEY')
44
+
45
+ notifications = client.notifications
46
+
47
+ # Get the notification with id = 1
48
+
49
+ notification = client.notification(1)
50
+
51
+ # Get all the replies from your account
52
+
53
+ replies = notification.replies
54
+
55
+ # Create a new notification
56
+
57
+ n = MessagePub::Notification.new(:body => 'your message goes here', :escalation => 20)
58
+
59
+ n.add_recipient(MessagePub::Recipient.new(:position => 1, :channel => 'twitter', :address => 'sharememeinc'))
60
+
61
+ n.add_recipient(MessagePub::Recipient.new(:position => 2, :channel => 'sms', :address => '9998887777'))
62
+
63
+ client.create!(n)
64
+
65
+
66
+ == REQUIREMENTS:
67
+
68
+ * Only one dependency: httparty
69
+
70
+ == INSTALL:
71
+
72
+ * sudo gem install messagepub
73
+
74
+ == LICENSE:
75
+
76
+ (The MIT License)
77
+
78
+ Copyright (c) 2009 Luc Castera
79
+
80
+ Permission is hereby granted, free of charge, to any person obtaining
81
+ a copy of this software and associated documentation files (the
82
+ 'Software'), to deal in the Software without restriction, including
83
+ without limitation the rights to use, copy, modify, merge, publish,
84
+ distribute, sublicense, and/or sell copies of the Software, and to
85
+ permit persons to whom the Software is furnished to do so, subject to
86
+ the following conditions:
87
+
88
+ The above copyright notice and this permission notice shall be
89
+ included in all copies or substantial portions of the Software.
90
+
91
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
92
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
93
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
94
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
95
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
96
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
97
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,28 @@
1
+ %w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
2
+ require File.dirname(__FILE__) + '/lib/messagepub'
3
+
4
+ # Generate all the Rake tasks
5
+ # Run 'rake -T' to see list of generated tasks (from gem root directory)
6
+ $hoe = Hoe.new('messagepub', Messagepub::VERSION) do |p|
7
+ p.developer('Luc Castera', 'luc.castera@gmail.com')
8
+ p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
9
+ p.post_install_message = 'PostInstall.txt'
10
+ p.rubyforge_name = p.name # TODO this is default value
11
+ p.extra_deps = [
12
+ ['httparty','>= 0.3.1'],
13
+ ]
14
+ p.extra_dev_deps = [
15
+ ['newgem', ">= #{::Newgem::VERSION}"]
16
+ ]
17
+
18
+ p.clean_globs |= %w[**/.DS_Store tmp *.log]
19
+ path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
20
+ p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
21
+ p.rsync_args = '-av --delete --ignore-errors'
22
+ end
23
+
24
+ require 'newgem/tasks' # load /tasks/*.rake
25
+ Dir['tasks/**/*.rake'].each { |t| load t }
26
+
27
+ # TODO - want other tests/tasks run by default? Add them to the list
28
+ # task :default => [:spec, :features]
@@ -0,0 +1,111 @@
1
+ # This module encapsulates functionality to interface with the MessagePub Rest API.
2
+ module MessagePub
3
+
4
+ # Implements a client object to communicate with the MessagePub Rest API.
5
+ class Client
6
+ include HTTParty
7
+ base_uri 'messagepub.com'
8
+ format :xml
9
+ headers 'Content-Type' => 'text/xml', 'Accept' => 'text/xml'
10
+
11
+ # To create a new MessagePub::Client, you need to pass in your MessagePub API Key.
12
+ #
13
+ # <tt>client = MessagePub::Client.new('YOURAPIKEYGOESHERE')</tt>
14
+ #
15
+ # You can also set it in your environment by putting the following line in your .bashrc file.
16
+ #
17
+ # <tt>export MESSAGEPUB_API_KEY=YOURKEY</tt>
18
+ #
19
+ # In that case, you can initialize a new client by simply saying:
20
+ #
21
+ # <tt>client = MessagePub::Client.new</tt>
22
+ def initialize(api_key=nil)
23
+ @api_key = api_key || ENV['MESSAGEPUB_API_KEY']
24
+ self.class.basic_auth @api_key, 'password'
25
+ end
26
+
27
+
28
+ # Gets a list of the last notifications sent
29
+ # Returns an array of MessagePub::Notification objects.
30
+ #
31
+ # <tt>client = MessagePub::Client.new('YOURAPIKEYGOESHERE')</tt>
32
+ #
33
+ # <tt>n = client.notifications</tt>
34
+ def notifications
35
+ response = self.class.get('/notifications.xml')
36
+ notifications_array = []
37
+ response['notifications'].each do |note|
38
+ new_note = Notification.new(:body => note["body"],
39
+ :send_at => note["send_at"],
40
+ :id => note["id"],
41
+ :escalation => note["escalation"])
42
+ note["recipients"].each do |rcpt|
43
+ new_note.add_recipient(Recipient.new(:id => rcpt["id"],
44
+ :channel => rcpt["channel"],
45
+ :address => rcpt["address"],
46
+ :status => rcpt["status"],
47
+ :send_at => rcpt["send_at"]))
48
+ end
49
+ notifications_array << new_note
50
+ end
51
+ notifications_array
52
+ end
53
+
54
+ # Gets the notification for the unique id specified.
55
+ # Returns a MessagePub::Notification object.
56
+ # <tt>my_notification = client.notification(4)</tt>
57
+ def notification(id)
58
+ response = self.class.get("/notifications/" + id.to_s + ".xml")
59
+ note = response["notification"]
60
+ new_note = Notification.new( :body => note["body"],
61
+ :id => note["id"],
62
+ :send_at => note["send_at"],
63
+ :escalation => note["escalation"])
64
+ note["recipients"].each do |rcpt|
65
+ new_note.add_recipient(Recipient.new(:id => rcpt["id"],
66
+ :channel => rcpt["channel"],
67
+ :address => rcpt["address"],
68
+ :status => rcpt["status"],
69
+ :send_at => rcpt["send_at"]))
70
+ end
71
+ new_note
72
+ end
73
+
74
+ # Creates a new notification.
75
+ #
76
+ # <tt>note = MessagePub::Notification.new</tt>
77
+ #
78
+ # <tt>note.body = 'The servers are down.'</tt>
79
+ #
80
+ # <tt>note.escalation = 15</tt>
81
+ #
82
+ # <tt>note.save</tt>
83
+ #
84
+ # <tt>note.add_recipient(MessagePub::Recipient.new(:position => 1, :channel => 'aim', :address => 'username'))</tt>
85
+ #
86
+ # <tt>note.add_recipient(MessagePub::Recipient.new(:position => 1, :channel => 'email', :address => 'joe@example.com'))</tt>
87
+ #
88
+ # <tt>client.create!(note)</tt>
89
+ def create!(note)
90
+ self.class.post('/notifications.xml', :body => note.to_xml)
91
+ end
92
+
93
+ # Gets a list of the latest replies to your notifications.
94
+ # Returns an array of MessagePub::Reply objects
95
+ #
96
+ # <tt>my_replies = client.replies</tt>
97
+ def replies
98
+ response = self.class.get("/replies.xml")
99
+ replies_array = []
100
+ response['replies'].each do |reply|
101
+ new_reply = Reply.new(:id => reply['id'], :body => reply['body'],
102
+ :channel => reply['channel'], :address => reply['address'],
103
+ :notification_id => reply['notification_id'])
104
+ replies_array << new_reply
105
+ end
106
+ replies_array
107
+ end
108
+
109
+ end
110
+
111
+ end
@@ -0,0 +1,57 @@
1
+ module MessagePub
2
+
3
+ # Represents a MessagePub notification.
4
+ # For more info, visit http://messagepub.com/documentation
5
+ class Notification
6
+
7
+ # The body of the message to send.
8
+ attr_accessor :body
9
+
10
+ # The amount of time (in minutes) to wait before sending to the next recipient in the list.
11
+ attr_accessor :escalation
12
+
13
+ # If postback_url is set in your account settings, this is the URL where MessagePub will post
14
+ # any replies it gets for this notification.
15
+ # For more info, visit http://messagepub.com/documentation/replies.
16
+ attr_accessor :postback_url
17
+
18
+ # The time in UTC at which the notification will be sent.
19
+ attr_accessor :send_at
20
+
21
+ # The unique id for the notification.
22
+ attr_accessor :id
23
+
24
+ # The array of recipients to which this notification will go to.
25
+ attr_reader :recipients
26
+
27
+ def initialize(options={})
28
+ @body = options[:body]
29
+ @escalation = options[:escalation]
30
+ @postback_url = options[:postback_url]
31
+ @send_at = options[:send_at]
32
+ @recipients = []
33
+ @id = nil
34
+ end
35
+
36
+ def add_recipient(rcpt)
37
+ @recipients << rcpt if rcpt.class == Recipient
38
+ end
39
+
40
+ # Returns an XML representation of the notification that can be POSTed to the REST API.
41
+ def to_xml
42
+ value = '<notification>'
43
+ value += '<body>' + self.body + '</body>'
44
+ value += '<escalation>' + self.escalation.to_s + '</escalation>' if self.escalation
45
+ value += '<postback_url>' + self.postback_url + '</postback_url>' if self.postback_url
46
+ value += '<send_at>' + self.send_at + '</send_at>' if self.send_at
47
+ value += '<recipients>'
48
+ self.recipients.each do |rcpt|
49
+ value += rcpt.to_xml
50
+ end
51
+ value += '</recipients></notification>'
52
+ value
53
+ end
54
+
55
+ end
56
+
57
+ end
@@ -0,0 +1,43 @@
1
+ module MessagePub
2
+
3
+ # Represents a MessagePub recipient.
4
+ # For more info, visit http://messagepub.com/documentation
5
+ class Recipient
6
+
7
+ # The position of this recipient in the list of recipients for the notification.
8
+ attr_accessor :position
9
+
10
+ # The communication channel for the recipient.
11
+ # It can be one of: sms, phone, email, twitter, aim, gchat
12
+ attr_accessor :channel
13
+
14
+ # The address for recipient.
15
+ # Depending on the channel, this can be a phone number, an email, a username, etc...
16
+ attr_accessor :address
17
+
18
+ # The unique id for this recipient for that particular notification.
19
+ attr_accessor :id
20
+
21
+ # The status of this recipient. Can be one of: sending, scheduled, sent, received, or failed
22
+ attr_accessor :status
23
+
24
+ def initialize(options={})
25
+ @position = options[:position]
26
+ @channel = options[:channel]
27
+ @address = options[:address]
28
+ @id = options[:id]
29
+ @status = options[:status]
30
+ end
31
+
32
+ # Returns an XML representation of the recipient.
33
+ def to_xml
34
+ value = '<recipient>'
35
+ value += '<position>' + self.position.to_s + '</position>'
36
+ value += '<channel>' + self.channel + '</channel>'
37
+ value += '<address>' + self.address + '</address>'
38
+ value += '</recipient>'
39
+ value
40
+ end
41
+
42
+ end
43
+ end
@@ -0,0 +1,33 @@
1
+ module MessagePub
2
+
3
+ # Represents a MessagePub reply..
4
+ # For more info, visit http://messagepub.com/documentation/replies
5
+ class Reply
6
+
7
+ # The ID of the notification associated with this reply.
8
+ attr_accessor :notification_id
9
+
10
+ # The communication channel where this reply was done.
11
+ # Must be one of the following: sms, phone, email, twitter, gchat, aim.
12
+ attr_accessor :channel
13
+
14
+ # The address for the person that replies.
15
+ # Depending on the channel, this can be a phone number, an email, a username, etc...
16
+ attr_accessor :address
17
+
18
+ # The content of the reply.
19
+ attr_accessor :body
20
+
21
+ # The unique id for this reply.
22
+ attr_accessor :id
23
+
24
+ def initialize(options={})
25
+ @notification_id = options[:notification_id]
26
+ @channel = options[:channel]
27
+ @address = options[:address]
28
+ @body = options[:body]
29
+ @id = nil
30
+ end
31
+ end
32
+
33
+ end
data/lib/messagepub.rb ADDED
@@ -0,0 +1,15 @@
1
+ $:.unshift(File.dirname(__FILE__)) unless
2
+ $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
+
4
+ module Messagepub
5
+ VERSION = '0.0.1'
6
+ end
7
+
8
+ require 'rubygems'
9
+ require 'httparty'
10
+
11
+ require 'messagepub/recipient'
12
+ require 'messagepub/notification'
13
+ require 'messagepub/reply'
14
+ require 'messagepub/client'
15
+
data/script/console ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ # File: script/console
3
+ irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
4
+
5
+ libs = " -r irb/completion"
6
+ # Perhaps use a console_lib to store any extra methods I may want available in the cosole
7
+ # libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}"
8
+ libs << " -r #{File.dirname(__FILE__) + '/../lib/messagepub.rb'}"
9
+ puts "Loading messagepub gem"
10
+ exec "#{irb} #{libs} --simple-prompt"
data/script/destroy ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
+
4
+ begin
5
+ require 'rubigen'
6
+ rescue LoadError
7
+ require 'rubygems'
8
+ require 'rubigen'
9
+ end
10
+ require 'rubigen/scripts/destroy'
11
+
12
+ ARGV.shift if ['--help', '-h'].include?(ARGV[0])
13
+ RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
14
+ RubiGen::Scripts::Destroy.new.run(ARGV)
data/script/generate ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
+
4
+ begin
5
+ require 'rubigen'
6
+ rescue LoadError
7
+ require 'rubygems'
8
+ require 'rubigen'
9
+ end
10
+ require 'rubigen/scripts/generate'
11
+
12
+ ARGV.shift if ['--help', '-h'].include?(ARGV[0])
13
+ RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
14
+ RubiGen::Scripts::Generate.new.run(ARGV)
@@ -0,0 +1,3 @@
1
+ require 'stringio'
2
+ require 'test/unit'
3
+ require File.dirname(__FILE__) + '/../lib/messagepub'
@@ -0,0 +1,42 @@
1
+ require File.dirname(__FILE__) + '/test_helper.rb'
2
+
3
+ class TestMessagepub < Test::Unit::TestCase
4
+
5
+ def setup
6
+ @recipient = MessagePub::Recipient.new(:position => 1,
7
+ :channel => 'twitter',
8
+ :address => 'luccastera')
9
+
10
+ @notification = MessagePub::Notification.new(:body => 'This is a test',
11
+ :escalation => 20,
12
+ :postback_url => 'http://messagepub.com/documentation/postback_test')
13
+
14
+ @reply = MessagePub::Reply.new(:body => 'Test reply', :channel => 'twitter', :address => 'ab')
15
+ end
16
+
17
+ def test_create_recipient
18
+ assert_equal 1, @recipient.position
19
+ assert_equal 'twitter', @recipient.channel
20
+ assert_equal 'luccastera', @recipient.address
21
+ end
22
+
23
+ def test_create_notification
24
+ assert_equal 'This is a test', @notification.body
25
+ assert_equal 20, @notification.escalation
26
+ assert_equal 'http://messagepub.com/documentation/postback_test',@notification.postback_url
27
+ end
28
+
29
+ def test_add_recipient_to_notification
30
+ assert_equal 0, @notification.recipients.size
31
+ @notification.add_recipient(@recipient)
32
+ assert_equal 1, @notification.recipients.size
33
+ end
34
+
35
+ def test_create_reply
36
+ assert_equal 'Test reply', @reply.body
37
+ assert_equal 'twitter', @reply.channel
38
+ assert_equal 'ab', @reply.address
39
+ end
40
+
41
+
42
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: messagepub
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Luc Castera
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-03-09 00:00:00 -04:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: httparty
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.3.1
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: newgem
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.2.3
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: hoe
37
+ type: :development
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 1.8.0
44
+ version:
45
+ description: "* MessagePub is a dead-simple messaging API that you can start using for your applications in less than 5 minutes. * Register for an API Key at http://messagepub.com * Support for the following platforms: Twitter, Google Chat, AIM, Email, Phone, and SMS. * Reach out to one person in multiple ways. * Helper libraries in multiple languages. * Schedule a message to be delivered in the future. * Set up an escalation schedule. * For more documentation on MessagePub, go to http://messagepub.com/documentation"
46
+ email:
47
+ - luc.castera@gmail.com
48
+ executables: []
49
+
50
+ extensions: []
51
+
52
+ extra_rdoc_files:
53
+ - History.txt
54
+ - Manifest.txt
55
+ - PostInstall.txt
56
+ - README.rdoc
57
+ files:
58
+ - History.txt
59
+ - Manifest.txt
60
+ - PostInstall.txt
61
+ - Rakefile
62
+ - README.rdoc
63
+ - lib/messagepub.rb
64
+ - lib/messagepub/reply.rb
65
+ - lib/messagepub/recipient.rb
66
+ - lib/messagepub/notification.rb
67
+ - lib/messagepub/client.rb
68
+ - script/
69
+ - script/console
70
+ - script/destroy
71
+ - script/generate
72
+ - tasks/
73
+ - test/
74
+ - test/test_helper.rb
75
+ - test/test_messagepub.rb
76
+ has_rdoc: true
77
+ homepage: "Website: http://messagepub.com"
78
+ post_install_message: PostInstall.txt
79
+ rdoc_options:
80
+ - --main
81
+ - README.rdoc
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: "0"
89
+ version:
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: "0"
95
+ version:
96
+ requirements: []
97
+
98
+ rubyforge_project: messagepub
99
+ rubygems_version: 1.3.1
100
+ signing_key:
101
+ specification_version: 2
102
+ summary: "* MessagePub is a dead-simple messaging API that you can start using for your applications in less than 5 minutes"
103
+ test_files:
104
+ - test/test_messagepub.rb
105
+ - test/test_helper.rb