zenvia-rb 0.0.2

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: b5aa70cb21355907f090155c6b338a53762c679e
4
+ data.tar.gz: 142fbd5fc352c3ae22ddb5282e32364e20d57616
5
+ SHA512:
6
+ metadata.gz: 005c4bd586f8064531939d02dd9e71f2f4ca462ec83b0dc5e1437bd5978a3009af45d2ea71133db4b6ee2d9000d888033a0099d4edbf5623995ad41b0636ef7f
7
+ data.tar.gz: c43d285e01a59ad293a9635c2b3d7491f108fbbeae1c0fcc58e9de6267bf3eecccbb03c5b4e13ac79f66af2fb4e9431d44fbe1ffde98616881276bf3830be039
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /.idea/*
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.1
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in zenvia.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Jeferson Huan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,47 @@
1
+ # Zenvia
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's Gemfile:
6
+
7
+ ```ruby
8
+ gem 'zenvia-rb', '~> 0.0.1'
9
+ ```
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install zenvia-rb
18
+
19
+ HTTParty is the only dependency for this gem.
20
+
21
+ ## Usage
22
+
23
+ In your script
24
+ ```ruby
25
+ require 'zenvia'
26
+
27
+ sms = Zenvia.new(USER, CODE)
28
+ sms.send_message(FROM, NUMBER, TEXT, DELAY=0)
29
+ ```
30
+
31
+ That's all ;)
32
+
33
+ ## Development
34
+
35
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake false` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
36
+
37
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
38
+
39
+ ## Contributing
40
+
41
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jeferson/zenvia
42
+
43
+
44
+ ## License
45
+
46
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
47
+
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "zenvia"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,52 @@
1
+ require "zenvia/version"
2
+ require 'httparty'
3
+ require 'base64'
4
+ require 'json'
5
+
6
+ class Zenvia
7
+ # initialize Zenvia class with user and code, both given from Zenvia (the corp)
8
+ def initialize(user, code)
9
+ return puts 'User and code must no be nil' if user.nil? or code.nil?
10
+ # such as done in shell (echo -n user:code | base64), the strip method removes '\n' from the generated code
11
+ @auth = Base64.encode64("#{user}:#{code}").strip
12
+ end
13
+
14
+ attr_writer :auth
15
+
16
+ # send the message itself, from: user or enterprise name, number: receiver number, message: text
17
+ # delay: given in seconds to determinate
18
+ def send_message(from, number, message, delay = 0)
19
+ return puts 'The receiver must not be nil' if number.nil?
20
+ return puts 'The sender cannot be nil' if from.nil?
21
+ number = number.to_s unless number.class.eql? String
22
+ return puts 'The number must have just numbers!' unless /\d*/.match(number)
23
+ response = send_sms(from, number, message, delay)
24
+ response = JSON.parse(response.body)
25
+ puts 'Response: ' + response['sendSmsResponse']['statusDescription']
26
+ end
27
+
28
+ private
29
+ # todo add multiple sms
30
+ def send_sms(from, number, message, delay)
31
+ # due to timezone, I decided to use strftime in order to send the message instantly
32
+ schedule = (Time.now + delay).strftime("%Y-%m-%dT%H:%M:%S")
33
+ number.insert(0, '55') unless /^55/.match(number)
34
+ endpoint = 'https://api-rest.zenvia360.com.br/services/send-sms'
35
+ HTTParty.post(endpoint,
36
+ body: {
37
+ sendSmsRequest: {
38
+ from: from,
39
+ to: number,
40
+ schedule: schedule,
41
+ msg: message,
42
+ callbackOption: 'NONE'
43
+ }
44
+ }.to_json,
45
+ headers: {
46
+ 'Content-Type' => 'application/json',
47
+ 'Authorization' => "Basic #{@auth}",
48
+ 'Accept' => 'application/json'
49
+ }
50
+ )
51
+ end
52
+ end
@@ -0,0 +1,3 @@
1
+ class Zenvia
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,33 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'zenvia/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "zenvia-rb"
8
+ spec.version = Zenvia::VERSION
9
+ spec.authors = ["Jeferson Huan"]
10
+ spec.email = ["jeferson.hsa@gmail.com"]
11
+
12
+ spec.summary = %q{Zenvia!}
13
+ spec.description = %q{RubyGem to send SMS through Zenvia's api}
14
+ spec.homepage = "https://github.com/jefersonhuan/zenvia-rb"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "bundler", "~> 1.10"
31
+ spec.add_development_dependency "rake", "~> 10.0"
32
+ spec.add_runtime_dependency 'httparty', '~> 0.13.7'
33
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zenvia-rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Jeferson Huan
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-12-29 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.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: httparty
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.13.7
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.13.7
55
+ description: RubyGem to send SMS through Zenvia's api
56
+ email:
57
+ - jeferson.hsa@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".travis.yml"
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - bin/console
69
+ - bin/setup
70
+ - lib/zenvia.rb
71
+ - lib/zenvia/version.rb
72
+ - zenvia-rb.gemspec
73
+ homepage: https://github.com/jefersonhuan/zenvia-rb
74
+ licenses:
75
+ - MIT
76
+ metadata:
77
+ allowed_push_host: https://rubygems.org
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project:
94
+ rubygems_version: 2.4.8
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Zenvia!
98
+ test_files: []