mandrill_inbound_parser 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 19f80f1a820499128d2d5d174350321ac50a573d
4
+ data.tar.gz: 131e761e9915301f27b7693b8ba3a53e67284af0
5
+ SHA512:
6
+ metadata.gz: 55e47de19a2370dae0da4ace7382e5cde9e6a1ba8b4cfa3cc40171d8f12e544165bc56c3e9023cc21abda105e3d1f91238090bd84a46315d4239752636281cab
7
+ data.tar.gz: fbfa969f8585ce30103b428c6ae14124cc0bc4e85a2aa99dfccf66e36c7c827da03874b0e25a6dadee865322c22687720163ce9d4535cbf2c5d5ddde9eac333d
@@ -0,0 +1,24 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
23
+ data
24
+ test_data.txt
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in mandrill_inbound_parser.gemspec
4
+ gemspec
5
+
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Gilang Mahardhika
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,49 @@
1
+ # MandrillInboundParser
2
+
3
+ Parsing inbound email from mandrill into readable text
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'mandrill_inbound_parser'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install mandrill_inbound_parser
18
+
19
+ ## Usage
20
+
21
+ @message = MandrillInboundParser::Parser.new(raw)
22
+
23
+ # Return the Sender Email
24
+ @message.email_from
25
+
26
+ # Return the Sender Name
27
+ @message.sender_name
28
+
29
+ ## Available Methods
30
+ attachments
31
+ email_from
32
+ event
33
+ html
34
+ images
35
+ recipients
36
+ recipient_emails
37
+ recipient_names
38
+ sender_name
39
+ subject
40
+ text
41
+
42
+
43
+ ## Contributing
44
+
45
+ 1. Fork it ( https://github.com/[my-github-username]/mandrill_inbound_parser/fork )
46
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
47
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
48
+ 4. Push to the branch (`git push origin my-new-feature`)
49
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,2 @@
1
+ require "mandrill_inbound_parser/version"
2
+ require "mandrill_inbound_parser/parser"
@@ -0,0 +1,67 @@
1
+ require 'json'
2
+ module MandrillInboundParser
3
+ class Parser
4
+ def initialize(raw_data)
5
+ raw = JSON.parse(raw_data)
6
+ @raw = raw.first
7
+ @raw
8
+ end
9
+
10
+ # Get all keys
11
+ def get_keys
12
+ @raw.keys
13
+ end
14
+
15
+ # Get event
16
+ def event
17
+ @raw["event"]
18
+ end
19
+
20
+ # get sender email
21
+ def email_from
22
+ @raw["msg"]["from_email"]
23
+ end
24
+
25
+ # Returns the sender name
26
+ def sender_name
27
+ @raw["msg"]["from_name"]
28
+ end
29
+
30
+ # Message content as text
31
+ def text
32
+ @raw["msg"]["text"]
33
+ end
34
+
35
+ # Return to Array
36
+ def recipient_emails
37
+ @raw["msg"]["to"].map{|x| x.first}
38
+ end
39
+
40
+ # Returns to Array
41
+ def recipient_names
42
+ @raw["msg"]["to"].map{|x| x.last}
43
+ end
44
+
45
+ # Returns the subject
46
+ def subject
47
+ @raw["msg"]["subject"]
48
+ end
49
+
50
+ def html
51
+ @raw["msg"]["html"]
52
+ end
53
+
54
+ def recipients
55
+ @raw["msg"]["to"]
56
+ end
57
+
58
+ def attachments
59
+ @raw["msg"]["attachments"]
60
+ end
61
+
62
+ def images
63
+ @raw["msg"]["images"]
64
+ end
65
+
66
+ end
67
+ end
@@ -0,0 +1,9 @@
1
+ require "mandrill_inbound_parser/parser"
2
+ module MandrillInboundParser
3
+ # include ActionView::Helpers::NumberHelper
4
+ class Railtie < Rails::Railtie
5
+ initializer "mandrill_inbound_parser.parser" do
6
+ ActionController.send(:include, MandrillInboundParser::Parser)
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module MandrillInboundParser
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'mandrill_inbound_parser/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "mandrill_inbound_parser"
8
+ spec.version = MandrillInboundParser::VERSION
9
+ spec.authors = ["Gilang Mahardhika"]
10
+ spec.email = ["gilangmahardhika@gmail.com"]
11
+ spec.summary = %q{Parse mandrill inbound data to readable text.}
12
+ spec.description = %q{Parse mandrill inbound data to readable text.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,55 @@
1
+ require 'spec_helper'
2
+ require 'mandrill_inbound_parser/parser'
3
+ describe "Parser" do
4
+ before(:each) do
5
+ @file = File.open(File.dirname(__FILE__)+'/test_data.txt').read
6
+ @raw = MandrillInboundParser::Parser.new(@file)
7
+ end
8
+ it "has required ts, msg, and event key" do
9
+ expect(@raw.get_keys.sort).to eq(["ts", "msg", "event"].sort)
10
+ end
11
+
12
+ it "event is inbound" do
13
+ expect(@raw.event).to eq("inbound")
14
+ end
15
+
16
+ it "returns the email sender" do
17
+ expect(@raw.email_from).to eq("gilang@softwareseni.com")
18
+ end
19
+
20
+ it "returns the email sender name" do
21
+ expect(@raw.sender_name).to eq("Gilang Mahardhika")
22
+ end
23
+
24
+ it "returns the text" do
25
+ expect(@raw.text == "").to be false
26
+ end
27
+
28
+ it "returns the recipient" do
29
+ expect(@raw.recipient_emails.first).to eq("gilang@mail.t-chat.us")
30
+ end
31
+
32
+ it "returns recipient names" do
33
+ expect(@raw.recipient_names.first).to eq(nil)
34
+ end
35
+
36
+ it "returns the email subject" do
37
+ expect(@raw.subject).to eq("Fwd: FW: {Disarmed} Enquiry from Tom Kuzma: Dec 21 to 28 - HomeAway.com.au #0013N")
38
+ end
39
+
40
+ it "returns the content as html" do
41
+ expect(@raw.html.class).to eq(String)
42
+ end
43
+
44
+ it "has recipients as Array" do
45
+ expect(@raw.recipients.class).to eq(Array)
46
+ end
47
+
48
+ it "has attachments as Array" do
49
+ expect(@raw.attachments).to eq(nil)
50
+ end
51
+
52
+ it "has images as Array" do
53
+ expect(@raw.images).to eq(nil)
54
+ end
55
+ end
@@ -0,0 +1 @@
1
+ require 'rspec'
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mandrill_inbound_parser
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Gilang Mahardhika
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Parse mandrill inbound data to readable text.
42
+ email:
43
+ - gilangmahardhika@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - lib/mandrill_inbound_parser.rb
54
+ - lib/mandrill_inbound_parser/parser.rb
55
+ - lib/mandrill_inbound_parser/railtie.rb
56
+ - lib/mandrill_inbound_parser/version.rb
57
+ - mandrill_inbound_parser.gemspec
58
+ - spec/parser_spec.rb
59
+ - spec/spec_helper.rb
60
+ homepage: ''
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.2.2
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: Parse mandrill inbound data to readable text.
84
+ test_files:
85
+ - spec/parser_spec.rb
86
+ - spec/spec_helper.rb