pg_connection 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "bundler", "~> 1.0.0"
10
+ gem "jeweler", "~> 1.5.1"
11
+ gem "rcov", ">= 0"
12
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,18 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ git (1.2.5)
5
+ jeweler (1.5.1)
6
+ bundler (~> 1.0.0)
7
+ git (>= 1.2.5)
8
+ rake
9
+ rake (0.8.7)
10
+ rcov (0.9.9)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ bundler (~> 1.0.0)
17
+ jeweler (~> 1.5.1)
18
+ rcov
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Simon Chiu
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = pg_connection
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to pg_connection
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
9
+ * Fork the project
10
+ * Start a feature/bugfix branch
11
+ * Commit and push until you are happy with your contribution
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2010 Simon Chiu. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'rake'
11
+
12
+ require 'jeweler'
13
+ Jeweler::Tasks.new do |gem|
14
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
15
+ gem.name = "pg_connection"
16
+ gem.homepage = "http://github.com/drchiu/pg_connection"
17
+ gem.license = "MIT"
18
+ gem.summary = %Q{Dependency library to connect to psigate}
19
+ gem.description = %Q{This library is adapted from ActiveMerchant. It is used to connect to Psigate's server via Net/HTTP.}
20
+ gem.email = "skhchiu@gmail.com"
21
+ gem.authors = ["Simon Chiu"]
22
+ # Include your dependencies below. Runtime dependencies are required when using your gem,
23
+ # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
+ # gem.add_runtime_dependency 'jabber4r', '> 0.1'
25
+ # gem.add_development_dependency 'rspec', '> 1.2.3'
26
+ end
27
+ Jeweler::RubygemsDotOrgTasks.new
28
+
29
+ require 'rake/testtask'
30
+ Rake::TestTask.new(:test) do |test|
31
+ test.libs << 'lib' << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+
36
+ require 'rcov/rcovtask'
37
+ Rcov::RcovTask.new do |test|
38
+ test.libs << 'test'
39
+ test.pattern = 'test/**/test_*.rb'
40
+ test.verbose = true
41
+ end
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "pg_connection #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1 @@
1
+ require 'ruby_psigate/connection'
@@ -0,0 +1,96 @@
1
+ module RubyPsigate
2
+
3
+ class Connection
4
+
5
+ MAX_RETRIES = 3
6
+ RETRY_SAFE = true
7
+
8
+ # => Values in seconds
9
+ READ_TIMEOUT = 60
10
+ OPEN_TIMEOUT = 30
11
+ VERIFY_PEER = true
12
+
13
+ def initialize(endpoint)
14
+ @endpoint = endpoint.is_a?(URI) ? endpoint : URI.parse(endpoint)
15
+ @retry_safe = RETRY_SAFE
16
+ @read_timeout = READ_TIMEOUT
17
+ @open_timeout = OPEN_TIMEOUT
18
+ @verify_peer = VERIFY_PEER
19
+ end
20
+
21
+ attr_reader :endpoint
22
+ attr_accessor :retry_safe
23
+ attr_accessor :read_timeout
24
+ attr_accessor :open_timeout
25
+ attr_accessor :verify_peer
26
+
27
+ def post(params)
28
+ retry_exceptions do
29
+ begin
30
+
31
+ uri = @endpoint
32
+ psigate = Net::HTTP.new(uri.host, uri.port)
33
+
34
+ # Configure Timeouts
35
+ psigate.open_timeout = open_timeout
36
+ psigate.read_timeout = read_timeout
37
+
38
+ # Configure SSL
39
+ psigate.use_ssl = true
40
+ if verify_peer
41
+ psigate.verify_mode = OpenSSL::SSL::VERIFY_PEER
42
+ psigate.ca_file = ca_file
43
+ else
44
+ psigate.verify_mode = OpenSSL::SSL::VERIFY_NONE
45
+ end
46
+
47
+ raw_response = psigate.post(uri.path, params)
48
+ response = handle_response(raw_response)
49
+ response
50
+ rescue EOFError => e
51
+ raise ConnectionError, "The remote server dropped the connection"
52
+ rescue Errno::ECONNRESET => e
53
+ raise ConnectionError, "The remote server reset the connection"
54
+ rescue Errno::ECONNREFUSED => e
55
+ raise RetriableConnectionError, "The remote server refused the connection"
56
+ rescue Timeout::Error, Errno::ETIMEDOUT => e
57
+ raise ConnectionError, "The connection to the remote server timed out"
58
+
59
+ end # begin
60
+ end # retry_exceptions
61
+ end
62
+
63
+ private
64
+
65
+ def ca_file
66
+ ca_file = File.dirname(__FILE__) + '/../certs/cacert.pem'
67
+ raise CertVerificationFileMissingError unless File.exists?(ca_file)
68
+ ca_file
69
+ end
70
+
71
+ def handle_response(raw_response)
72
+ case raw_response.code.to_i
73
+ when 200..300
74
+ raw_response.body
75
+ else
76
+ raise ResponseError.new(raw_response)
77
+ end
78
+ end
79
+
80
+ def retry_exceptions(&block)
81
+ retries = MAX_RETRIES
82
+ begin
83
+ yield
84
+ rescue RetriableConnectionError => e
85
+ retries -= 1
86
+ retry unless retries.zero?
87
+ raise ConnectionError, e.message
88
+ rescue ConnectionError
89
+ retries -= 1
90
+ retry if retry_safe && !retries.zero?
91
+ raise
92
+ end
93
+ end
94
+
95
+ end
96
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,17 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+
12
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ require 'pg_connection'
15
+
16
+ class Test::Unit::TestCase
17
+ end
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestPgConnection < Test::Unit::TestCase
4
+ def test_something_for_real
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,119 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pg_connection
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
10
+ platform: ruby
11
+ authors:
12
+ - Simon Chiu
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-11-23 00:00:00 -05:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: bundler
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 1
29
+ - 0
30
+ - 0
31
+ version: 1.0.0
32
+ type: :development
33
+ prerelease: false
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: jeweler
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ~>
41
+ - !ruby/object:Gem::Version
42
+ segments:
43
+ - 1
44
+ - 5
45
+ - 1
46
+ version: 1.5.1
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: rcov
52
+ requirement: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ type: :development
61
+ prerelease: false
62
+ version_requirements: *id003
63
+ description: This library is adapted from ActiveMerchant. It is used to connect to Psigate's server via Net/HTTP.
64
+ email: skhchiu@gmail.com
65
+ executables: []
66
+
67
+ extensions: []
68
+
69
+ extra_rdoc_files:
70
+ - LICENSE.txt
71
+ - README.rdoc
72
+ files:
73
+ - .document
74
+ - Gemfile
75
+ - Gemfile.lock
76
+ - LICENSE.txt
77
+ - README.rdoc
78
+ - Rakefile
79
+ - VERSION
80
+ - lib/pg_connection.rb
81
+ - lib/ruby_psigate/connection.rb
82
+ - test/helper.rb
83
+ - test/test_pg_connection.rb
84
+ has_rdoc: true
85
+ homepage: http://github.com/drchiu/pg_connection
86
+ licenses:
87
+ - MIT
88
+ post_install_message:
89
+ rdoc_options: []
90
+
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ hash: -1277786927198836317
99
+ segments:
100
+ - 0
101
+ version: "0"
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ none: false
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ segments:
108
+ - 0
109
+ version: "0"
110
+ requirements: []
111
+
112
+ rubyforge_project:
113
+ rubygems_version: 1.3.7
114
+ signing_key:
115
+ specification_version: 3
116
+ summary: Dependency library to connect to psigate
117
+ test_files:
118
+ - test/helper.rb
119
+ - test/test_pg_connection.rb