restpack_service_messaging 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7842035b7b33f08dd0bfd2727020297c1ca6e66f
4
- data.tar.gz: f7219addd8ed1f93deb7f8fd901608380b242202
3
+ metadata.gz: 663df98703c1316f7a18ea1b323720dd4aff6d4d
4
+ data.tar.gz: e0a52f44dc91e80fa0ee14fc63969dfa905568ab
5
5
  SHA512:
6
- metadata.gz: 447135080cbcdda8e7622b6cf4f8fd5e3b9b80aa0bbb734b660caba8dfc93445b9eed55240ded48e85fdfbc84870237fe721cdaa1f0f4c88a093b47ee5fe6298
7
- data.tar.gz: 1ce15b2f3e9546aed8824d0c87733891a731c11ff2eb51c3bcda30f0b86c8bc5ef3fe78781632ba93b10574d5812ccbe4197b18e974eb4bb23af92f2a23a0aa2
6
+ metadata.gz: bb38439aaabe7cbf922212c210e83edb32e83b299bfffb476376172a582508dbf42e5bece680c05150a5d4cb530245d740f312ebe94a7d6e081874acf38b81a9
7
+ data.tar.gz: 5463c0cee01659388d24e7fa6989df23cece65d3f85628e187b77a296de0af0ca4dd026309bee7c55ac66525fb4f88c8c377e918ec4a068660f0d2b9907ce8b0
@@ -3,11 +3,10 @@ require 'rubykiq'
3
3
  require 'restpack_service'
4
4
  require 'restpack_service_messaging/version'
5
5
 
6
+ require 'restpack_service_messaging/commands/activity/create'
6
7
  require 'restpack_service_messaging/commands/email/send'
8
+ require 'restpack_service_messaging/commands/email/send_raw'
7
9
 
8
10
  #TODO: GJ: load Rubykiq configuration
9
11
  #Rubykiq.url = "redis://127.0.0.1:6379"
10
12
 
11
- module Commands
12
- include RestPack::Service::Messaging::Commands
13
- end
@@ -0,0 +1,32 @@
1
+ module Messaging
2
+ module Activity
3
+ class Create < RestPack::Service::Command
4
+ required do
5
+ integer :application_id
6
+ integer :user_id
7
+ string :content
8
+ end
9
+
10
+ optional do
11
+ string :title, empty: true
12
+ string :tags, empty: true
13
+ string :access, empty: true
14
+ float :latitude
15
+ float :longitude
16
+ model :data, class: Hash
17
+ end
18
+
19
+ def execute
20
+ job_id = Rubykiq.push(
21
+ class: 'Jobs::Activities::Activity::Create',
22
+ queue: 'activity',
23
+ args: [inputs]
24
+ )
25
+
26
+ {
27
+ job_id: job_id
28
+ }
29
+ end
30
+ end
31
+ end
32
+ end
@@ -1,22 +1,23 @@
1
- module RestPack::Service::Messaging::Commands
1
+ module Messaging
2
2
  module Email
3
3
  class Send < RestPack::Service::Command
4
4
  required do
5
5
  integer :application_id
6
- string :from #TODO: GJ: add email validation
7
6
  string :to
8
- string :subject
9
- string :text_body
7
+ string :template
10
8
  end
11
9
 
12
10
  optional do
11
+ string :from #TODO: GJ: add email validation
12
+ string :subject
13
13
  string :cc
14
14
  string :bcc
15
15
  string :reply_to
16
- string :html_body
16
+ hash :data
17
17
  end
18
18
 
19
19
  def execute
20
+ inputs[:data] = raw_inputs[:data] if raw_inputs[:data]
20
21
  job_id = Rubykiq.push(
21
22
  class: 'Jobs::Email::Send',
22
23
  queue: 'email',
@@ -0,0 +1,32 @@
1
+ module Messaging
2
+ module Email
3
+ class SendRaw < RestPack::Service::Command
4
+ required do
5
+ integer :application_id
6
+ string :from #TODO: GJ: add email validation
7
+ string :to
8
+ string :subject
9
+ string :text_body
10
+ end
11
+
12
+ optional do
13
+ string :cc
14
+ string :bcc
15
+ string :reply_to
16
+ string :html_body
17
+ end
18
+
19
+ def execute
20
+ job_id = Rubykiq.push(
21
+ class: 'Jobs::Email::SendRaw',
22
+ queue: 'email',
23
+ args: [inputs]
24
+ )
25
+
26
+ {
27
+ job_id: job_id
28
+ }
29
+ end
30
+ end
31
+ end
32
+ end
@@ -1,7 +1,7 @@
1
1
  module RestPack
2
2
  module Service
3
3
  module Messaging
4
- VERSION = "0.0.2"
4
+ VERSION = "0.0.3"
5
5
  end
6
6
  end
7
7
  end
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Commands::Email::Send do
3
+ describe Commands::Email::SendRaw do
4
4
  is_required :application_id, :from, :to, :subject, :text_body
5
5
  is_optional :cc, :bcc, :reply_to, :html_body
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restpack_service_messaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gavin Joyce
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-11 00:00:00.000000000 Z
11
+ date: 2013-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mutations
@@ -150,10 +150,12 @@ files:
150
150
  - README.md
151
151
  - Rakefile
152
152
  - lib/restpack_service_messaging.rb
153
+ - lib/restpack_service_messaging/commands/activity/create.rb
153
154
  - lib/restpack_service_messaging/commands/email/send.rb
155
+ - lib/restpack_service_messaging/commands/email/send_raw.rb
154
156
  - lib/restpack_service_messaging/version.rb
155
157
  - restpack_service_messaging.gemspec
156
- - spec/commands/email/send_spec.rb
158
+ - spec/commands/email/send_raw_spec.rb
157
159
  - spec/spec_helper.rb
158
160
  homepage: https://github.com/RestPack
159
161
  licenses:
@@ -181,5 +183,5 @@ specification_version: 4
181
183
  summary: A simple mechanism for sending messages to services without knowing much
182
184
  about them
183
185
  test_files:
184
- - spec/commands/email/send_spec.rb
186
+ - spec/commands/email/send_raw_spec.rb
185
187
  - spec/spec_helper.rb