api_banking 0.1.32 → 0.1.33
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/api_banking.rb +1 -0
- data/lib/api_banking/environment/rbl/env.rb +2 -1
- data/lib/api_banking/json/panInquiry.rb +63 -0
- data/lib/api_banking/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0e8af2b7543aa53c59bf234a99ddecff092bd27
|
4
|
+
data.tar.gz: c8d57fb9319fa099c0c94b149fce5dedd5f2f1ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 08aa15ab94f9c5a362cb38bd9a0605db472b3384662b70c875371db2b6d80ac92aca4dccab8e472d956085237442214942c9d7ad68ae5ad7a087f386a8317450
|
7
|
+
data.tar.gz: 6c9a26161c5703c460e3b3e2209ed16cc4bef166b12e27ac2658ff522669270d9fd40f08804fac2d5d29698cd797e7662e0dc8027f8445084696d3805a09d878
|
data/lib/api_banking.rb
CHANGED
@@ -29,6 +29,7 @@ require_relative "api_banking/json/singlePayment"
|
|
29
29
|
require_relative "api_banking/json/accountStatement"
|
30
30
|
require_relative "api_banking/json/getAccountBalance"
|
31
31
|
require_relative "api_banking/json/getPaymentStatus"
|
32
|
+
require_relative "api_banking/json/panInquiry"
|
32
33
|
|
33
34
|
module ApiBanking
|
34
35
|
|
@@ -9,7 +9,8 @@ module ApiBanking
|
|
9
9
|
SinglePayment: 'https://apideveloper.rblbank.com/test/sb/rbl/v1/payments/corp/payment',
|
10
10
|
AccountStatement: 'https://apideveloper.rblbank.com/test/sb/rbl/v1/cas/statement',
|
11
11
|
GetAccountBalance: 'https://apideveloper.rblbank.com/test/sb/rbl/v1/accounts/balance/query',
|
12
|
-
GetPaymentStatus: 'https://apideveloper.rblbank.com/test/sb/rbl/v1/payments/corp/payment/query'
|
12
|
+
GetPaymentStatus: 'https://apideveloper.rblbank.com/test/sb/rbl/v1/payments/corp/payment/query',
|
13
|
+
PanInquiry: 'https://apideveloper.rblbank.com/test/sb/rbl/v1/PAN/Without_User_ID'
|
13
14
|
}
|
14
15
|
end
|
15
16
|
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
module ApiBanking
|
2
|
+
class PanInquiry < JsonClient
|
3
|
+
|
4
|
+
SERVICE_VERSION = 1
|
5
|
+
|
6
|
+
attr_accessor :request, :result
|
7
|
+
|
8
|
+
ReqHeader = Struct.new(:tranID, :corpID)
|
9
|
+
ReqBody = Struct.new(:panNumber)
|
10
|
+
Request = Struct.new(:header, :body)
|
11
|
+
|
12
|
+
Result = Struct.new(:panStatus, :lastName, :firstName, :middleName, :panTitle, :lastUpdateDate)
|
13
|
+
|
14
|
+
class << self
|
15
|
+
attr_accessor :configuration
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.configure
|
19
|
+
self.configuration ||= Configuration.new
|
20
|
+
yield(configuration)
|
21
|
+
end
|
22
|
+
|
23
|
+
class Configuration
|
24
|
+
attr_accessor :environment, :proxy, :timeout
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.pan_inquiry(env, request, callbacks = nil)
|
28
|
+
dataHash = {}
|
29
|
+
dataHash[:panInquiry] = {}
|
30
|
+
dataHash[:panInquiry][:Header] = {}
|
31
|
+
dataHash[:panInquiry][:Body] = {}
|
32
|
+
|
33
|
+
dataHash[:panInquiry][:Header][:TranID] = request.header.tranID
|
34
|
+
dataHash[:panInquiry][:Header][:Corp_ID] = request.header.corpID
|
35
|
+
|
36
|
+
dataHash[:panInquiry][:Body][:panNumbers] = []
|
37
|
+
dataHash[:panInquiry][:Body][:panNumbers][0] = {}
|
38
|
+
|
39
|
+
dataHash[:panInquiry][:Body][:panNumbers][0][:pan1] = request.body.panNumber
|
40
|
+
|
41
|
+
reply = do_remote_call(env, dataHash, callbacks)
|
42
|
+
|
43
|
+
parse_reply(reply)
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def self.parse_reply(reply)
|
49
|
+
if reply.kind_of?Fault
|
50
|
+
reply
|
51
|
+
else
|
52
|
+
PanInquiry::Result.new(
|
53
|
+
reply['panInquiryResponse']['Body']['panDetails'][0]['panstatus'],
|
54
|
+
reply['panInquiryResponse']['Body']['panDetails'][0]['lastname'],
|
55
|
+
reply['panInquiryResponse']['Body']['panDetails'][0]['firstname'],
|
56
|
+
reply['panInquiryResponse']['Body']['panDetails'][0]['middlename'],
|
57
|
+
reply['panInquiryResponse']['Body']['panDetails'][0]['pan-title'],
|
58
|
+
reply['panInquiryResponse']['Body']['panDetails'][0]['last-update-date']
|
59
|
+
)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
data/lib/api_banking/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: api_banking
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.33
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- akil
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -152,6 +152,7 @@ files:
|
|
152
152
|
- lib/api_banking/json/getAccountBalance.rb
|
153
153
|
- lib/api_banking/json/getPaymentStatus.rb
|
154
154
|
- lib/api_banking/json/json_client.rb
|
155
|
+
- lib/api_banking/json/panInquiry.rb
|
155
156
|
- lib/api_banking/json/singlePayment.rb
|
156
157
|
- lib/api_banking/soap/aadhaarVerificationService.rb
|
157
158
|
- lib/api_banking/soap/callbacks.rb
|