fio_api 0.0.8 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a41f97466cbef12c0831c61816e4af0158774950ce6d26e587ad4bf197d8fade
4
- data.tar.gz: 70f37c8c60b9a66ecc3607a8e932700f9715d7135d8359deee1995ab41d2b8d9
3
+ metadata.gz: cc55159a121e534fbc4cd4026c817f2659b251d3100ae163fc26ce30e8b9b504
4
+ data.tar.gz: 931218cb83b33ffe3af6f6385065c075915d759b37df9fef7d44c6d6d9e38e85
5
5
  SHA512:
6
- metadata.gz: e2cf734a2c4a315c310b5484bd2021eaec5b30c1307b83c248f02dbc84e358b790509ba2cba413f0c5484cfc75e65cff33a7c5e67218d16875fdabeb3851fba4
7
- data.tar.gz: b667de20c8af691bc0c276faade40977b094911bab473536323e0e2a2ee22bc7c559508f3e5147add86ea26c3a28d87942cd04cfcd51eb3369f3b578ac8dd033
6
+ metadata.gz: 242daa426d0ca9749b3f7d816149a7087e2064d462bc0d2f7da485f93bc7b4092718704b78cbb019c1d6ccb19c33c58fbc7a1165c0bad8c6118ddcc3c96a8539
7
+ data.tar.gz: 5cfcbc4d3d3a20b22700068431cbcc64255b85f46118d39478f428b9940227a234fdde6ed14f50c08fe848ac497e49c0d42bd559aac27c2887a09ff557e8c5f4
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'http://rubygems.org'
2
4
 
3
5
  gem 'httparty', '>= 0.16.2'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.8
1
+ 0.0.9
data/fio_api.gemspec CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "fio_api".freeze
9
- s.version = "0.0.8"
9
+ s.version = "0.0.10"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
@@ -26,6 +26,8 @@ module FioAPI
26
26
  # New object with account and transactions attributes
27
27
  #
28
28
  def deserialize(json)
29
+ raise FioAPI::InvalidJsonResponse.new(json) if json.is_a?(String)
30
+
29
31
  self.account = deserialize_account(json.try_path('accountStatement', 'info'))
30
32
  self.transactions = deserialize_transactions(json.try_path('accountStatement', 'transactionList', 'transaction'))
31
33
  self
data/lib/base/list.rb CHANGED
@@ -14,7 +14,7 @@ module FioAPI
14
14
  # == Returns:
15
15
  # List insatnce with account info and transactions list
16
16
  #
17
- # https://fioapi.fio.cz/rest/periods/(token)/(date_from)/(date_to)/transactions.(format)
17
+ # https://fioapi.fio.cz/v1/rest/periods/(token)/(date_from)/(date_to)/transactions.(format)
18
18
  def by_date_range(from_date, to_date)
19
19
  fetch_and_deserialize_response("/periods/#{FioAPI.token}/#{from_date}/#{to_date}/transactions.json")
20
20
  end
@@ -30,7 +30,7 @@ module FioAPI
30
30
  # == Returns:
31
31
  # List insatnce with account info and transactions list
32
32
  #
33
- # https://fioapi.fio.cz/rest/by-id/(token)/(year)/(id)/transactions.(format)
33
+ # https://fioapi.fio.cz/v1/rest/by-id/(token)/(year)/(id)/transactions.(format)
34
34
  def by_listing_id_and_year(listing_id, year)
35
35
  fetch_and_deserialize_response("/by-id/#{FioAPI.token}/#{year}/#{listing_id}/transactions.json")
36
36
  end
@@ -40,7 +40,7 @@ module FioAPI
40
40
  # == Returns:
41
41
  # List insatnce with account info and transactions list
42
42
  #
43
- # https://fioapi.fio.cz/rest/last/(token)/transactions.(format)
43
+ # https://fioapi.fio.cz/v1/rest/last/(token)/transactions.(format)
44
44
  def from_last_fetch
45
45
  fetch_and_deserialize_response("/last/#{FioAPI.token}/transactions.json")
46
46
  end
@@ -54,7 +54,7 @@ module FioAPI
54
54
  # == Returns:
55
55
  # List insatnce with account info and transactions list
56
56
  #
57
- # https://fioapi.fio.cz/rest/set-last-id/(token)/(id)/
57
+ # https://fioapi.fio.cz/v1/rest/set-last-id/(token)/(id)/
58
58
  def set_last_fetch_id(transaction_id)
59
59
  fetch_and_deserialize_response("/set-last-id/#{FioAPI.token}/#{transaction_id}/")
60
60
  end
@@ -68,7 +68,7 @@ module FioAPI
68
68
  # == Returns:
69
69
  # List insatnce with account info and transactions list
70
70
  #
71
- # https://fioapi.fio.cz/rest/set-last-date/(token)/(rrrr-mm-dd)/
71
+ # https://fioapi.fio.cz/v1/rest/set-last-date/(token)/(rrrr-mm-dd)/
72
72
  def set_last_fetch_date(date)
73
73
  fetch_and_deserialize_response("/set-last-date/#{FioAPI.token}/#{date}/")
74
74
  end
data/lib/base/request.rb CHANGED
@@ -4,7 +4,7 @@ module FioAPI
4
4
  class Request < FioAPI::Base
5
5
  include HTTParty
6
6
 
7
- base_uri 'https://fioapi.fio.cz/rest/'
7
+ base_uri 'https://fioapi.fio.cz/v1/rest/'
8
8
 
9
9
  class << self
10
10
  # Reader for token
data/lib/fio_api.rb CHANGED
@@ -12,12 +12,13 @@ require 'base/payments/xml/root'
12
12
  require 'base/payments/xml/item'
13
13
  require 'base/deserializers/list_response_deserializer'
14
14
  require 'base/deserializers/import_response_deserializer'
15
+ require 'base/errors/invalid_json_response'
15
16
 
16
17
  module FioAPI
17
18
  # == Returns:
18
19
  # A string with current version of gem
19
20
  #
20
- VERSION = '0.0.6'.freeze
21
+ VERSION = '0.0.10'.freeze
21
22
 
22
23
  # Set API token for requests
23
24
  #
@@ -8,7 +8,7 @@ describe FioAPI::List do
8
8
  it 'should set request with uri for date range' do
9
9
  date_from = Date.new(2011, 1, 1)
10
10
  date_to = Date.new(2012, 11, 25)
11
- url = "https://fioapi.fio.cz/rest/periods/#{FioAPI.token}/#{date_from}/#{date_to}/transactions.json"
11
+ url = "https://fioapi.fio.cz/v1/rest/periods/#{FioAPI.token}/#{date_from}/#{date_to}/transactions.json"
12
12
  VCR.use_cassette 'by_date_range', erb: true do
13
13
  list = @list.by_date_range(date_from, date_to)
14
14
  expect(list.request.uri.to_s).to eq url
@@ -19,7 +19,7 @@ describe FioAPI::List do
19
19
  it 'should set request with uri for listing_id and year' do
20
20
  year = 2012
21
21
  id = '12345'
22
- url = "https://fioapi.fio.cz/rest/by-id/#{FioAPI.token}/#{year}/#{id}/transactions.json"
22
+ url = "https://fioapi.fio.cz/v1/rest/by-id/#{FioAPI.token}/#{year}/#{id}/transactions.json"
23
23
  VCR.use_cassette 'by_listing_id_and_year', erb: true do
24
24
  list = @list.by_listing_id_and_year(id, year)
25
25
  expect(list.request.uri.to_s).to eq url
@@ -28,7 +28,7 @@ describe FioAPI::List do
28
28
  end
29
29
 
30
30
  it 'should set request with uri from last fetch' do
31
- url = "https://fioapi.fio.cz/rest/last/#{FioAPI.token}/transactions.json"
31
+ url = "https://fioapi.fio.cz/v1/rest/last/#{FioAPI.token}/transactions.json"
32
32
  VCR.use_cassette 'from_last_fetch', erb: true do
33
33
  list = @list.from_last_fetch
34
34
  expect(list.request.uri.to_s).to eq url
@@ -38,7 +38,7 @@ describe FioAPI::List do
38
38
 
39
39
  it 'should set request with uri to set last fetch id' do
40
40
  id = '12345'
41
- url = "https://fioapi.fio.cz/rest/set-last-id/#{FioAPI.token}/#{id}/"
41
+ url = "https://fioapi.fio.cz/v1/rest/set-last-id/#{FioAPI.token}/#{id}/"
42
42
  VCR.use_cassette 'set_last_fetch_id', erb: true do
43
43
  list = @list.set_last_fetch_id(id)
44
44
  expect(list.request.uri.to_s).to eq url
@@ -48,7 +48,7 @@ describe FioAPI::List do
48
48
 
49
49
  it 'should set request with uri to set last date' do
50
50
  date = Date.new(2012, 11, 25)
51
- url = "https://fioapi.fio.cz/rest/set-last-date/#{FioAPI.token}/#{date}/"
51
+ url = "https://fioapi.fio.cz/v1/rest/set-last-date/#{FioAPI.token}/#{date}/"
52
52
  VCR.use_cassette 'set_last_fetch_date', erb: true do
53
53
  list = @list.set_last_fetch_date(date)
54
54
  expect(list.request.uri.to_s).to eq url
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://fioapi.fio.cz/rest/periods/<%= FioAPI.token %>/2011-01-01/2012-11-25/transactions.json
5
+ uri: https://fioapi.fio.cz/v1/rest/periods/<%= FioAPI.token %>/2011-01-01/2012-11-25/transactions.json
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ""
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://fioapi.fio.cz/rest/by-id/<%= FioAPI.token %>/2012/12345/transactions.json
5
+ uri: https://fioapi.fio.cz/v1/rest/by-id/<%= FioAPI.token %>/2012/12345/transactions.json
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ""
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://fioapi.fio.cz/rest/last/<%= FioAPI.token %>/transactions.json
5
+ uri: https://fioapi.fio.cz/v1/rest/last/<%= FioAPI.token %>/transactions.json
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ""
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: https://fioapi.fio.cz/rest/import/?token=<%= FioAPI.token %>&type=xml
5
+ uri: https://fioapi.fio.cz/v1/rest/import/?token=<%= FioAPI.token %>&type=xml
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string:
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: https://fioapi.fio.cz/rest/import/?token=<%= FioAPI.token %>&type=xml
5
+ uri: https://fioapi.fio.cz/v1/rest/import/?token=<%= FioAPI.token %>&type=xml
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string:
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: https://fioapi.fio.cz/rest/import/?token=<%= FioAPI.token %>&type=xml
5
+ uri: https://fioapi.fio.cz/v1/rest/import/?token=<%= FioAPI.token %>&type=xml
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string:
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://fioapi.fio.cz/rest/set-last-date/<%= FioAPI.token %>/2012-11-25/
5
+ uri: https://fioapi.fio.cz/v1/rest/set-last-date/<%= FioAPI.token %>/2012-11-25/
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ""
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://fioapi.fio.cz/rest/set-last-id/<%= FioAPI.token %>/12345/
5
+ uri: https://fioapi.fio.cz/v1/rest/set-last-id/<%= FioAPI.token %>/12345/
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ""
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: https://fioapi.fio.cz/rest/import/?token=somelongtoken&type=xml
5
+ uri: https://fioapi.fio.cz/v1/rest/import/?token=somelongtoken&type=xml
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string:
metadata CHANGED
@@ -1,12 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fio_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robin Bortlik
8
8
  - Adam Martinik
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
11
  date: 2018-06-06 00:00:00.000000000 Z
@@ -180,7 +179,6 @@ homepage: http://github.com/14113/fio_api
180
179
  licenses:
181
180
  - MIT
182
181
  metadata: {}
183
- post_install_message:
184
182
  rdoc_options: []
185
183
  require_paths:
186
184
  - lib
@@ -195,8 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
195
193
  - !ruby/object:Gem::Version
196
194
  version: '0'
197
195
  requirements: []
198
- rubygems_version: 3.4.21
199
- signing_key:
196
+ rubygems_version: 3.6.4
200
197
  specification_version: 4
201
198
  summary: API wrapper for FIO bank
202
199
  test_files: []