xolphin-api 1.5.0 → 1.9.0
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 +5 -5
- data/.gitignore +13 -12
- data/.rspec +2 -2
- data/.rubocop.yml +28 -28
- data/.travis.yml +5 -5
- data/CHANGELOG.md +19 -0
- data/Gemfile +6 -6
- data/LICENSE.txt +21 -21
- data/README.md +169 -169
- data/Rakefile +12 -12
- data/bin/console +14 -14
- data/bin/setup +8 -8
- data/examples/_credentials.rb +9 -8
- data/examples/certificate_cancel.rb +6 -6
- data/examples/certificate_reissue.rb +23 -25
- data/examples/certificate_renew.rb +22 -22
- data/examples/get_notes.rb +9 -9
- data/examples/invoices_get.rb +7 -0
- data/examples/request_create.rb +40 -0
- data/examples/request_create_ee.rb +29 -29
- data/examples/request_get_id.rb +6 -0
- data/examples/request_validation_call.rb +6 -5
- data/examples/requests_get.rb +8 -7
- data/examples/send_csa_email.rb +5 -5
- data/examples/send_note.rb +6 -6
- data/lib/xolphin/api/certificate_requests/certificate_reissue.rb +54 -47
- data/lib/xolphin/api/certificate_requests/certificate_renew.rb +58 -51
- data/lib/xolphin/api/certificate_requests/create_certificate_request.rb +59 -52
- data/lib/xolphin/api/certificate_requests/create_ee_request.rb +28 -33
- data/lib/xolphin/api/client.rb +25 -21
- data/lib/xolphin/api/dcv_type.rb +9 -9
- data/lib/xolphin/api/endpoint/certificate.rb +59 -59
- data/lib/xolphin/api/endpoint/invoice.rb +40 -0
- data/lib/xolphin/api/endpoint/request.rb +116 -86
- data/lib/xolphin/api/endpoint/support.rb +47 -47
- data/lib/xolphin/api/format_type.rb +12 -12
- data/lib/xolphin/api/http.rb +70 -67
- data/lib/xolphin/api/invoice_format_type.rb +8 -0
- data/lib/xolphin/api/product_type.rb +9 -9
- data/lib/xolphin/api/responses/base.rb +43 -43
- data/lib/xolphin/api/responses/certificate.rb +53 -53
- data/lib/xolphin/api/responses/certificates.rb +25 -25
- data/lib/xolphin/api/responses/csr_data.rb +43 -43
- data/lib/xolphin/api/responses/invoice.rb +57 -0
- data/lib/xolphin/api/responses/invoices.rb +25 -0
- data/lib/xolphin/api/responses/note.rb +45 -37
- data/lib/xolphin/api/responses/notes.rb +23 -24
- data/lib/xolphin/api/responses/product.rb +53 -53
- data/lib/xolphin/api/responses/product_price.rb +27 -27
- data/lib/xolphin/api/responses/products.rb +25 -25
- data/lib/xolphin/api/responses/request.rb +142 -119
- data/lib/xolphin/api/responses/request_ee.rb +29 -29
- data/lib/xolphin/api/responses/request_validation.rb +37 -37
- data/lib/xolphin/api/responses/request_validation_domain.rb +51 -35
- data/lib/xolphin/api/responses/requests.rb +25 -25
- data/lib/xolphin/api/responses/validation_call.rb +23 -0
- data/lib/xolphin/api/responses/validation_calls.rb +25 -0
- data/lib/xolphin/api/version.rb +5 -5
- data/lib/xolphin/api.rb +38 -32
- data/xolphin-api.gemspec +25 -26
- metadata +19 -9
- data/xolphin-api-0.1.0.gem +0 -0
@@ -1,24 +1,23 @@
|
|
1
|
-
module Xolphin
|
2
|
-
module Api
|
3
|
-
module Responses
|
4
|
-
class Notes < Base
|
5
|
-
def initialize(data)
|
6
|
-
super(data)
|
7
|
-
end
|
8
|
-
|
9
|
-
def notes
|
10
|
-
@notes ||= begin
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
end
|
1
|
+
module Xolphin
|
2
|
+
module Api
|
3
|
+
module Responses
|
4
|
+
class Notes < Base
|
5
|
+
def initialize(data)
|
6
|
+
super(data)
|
7
|
+
end
|
8
|
+
|
9
|
+
def notes
|
10
|
+
@notes ||= begin
|
11
|
+
notes = []
|
12
|
+
if _embedded && _embedded["notes"]
|
13
|
+
_embedded["notes"].each do |note|
|
14
|
+
notes << Note.new(note)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
notes
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -1,53 +1,53 @@
|
|
1
|
-
module Xolphin
|
2
|
-
module Api
|
3
|
-
module Responses
|
4
|
-
class Product < Base
|
5
|
-
def initialize(data)
|
6
|
-
super(data)
|
7
|
-
end
|
8
|
-
|
9
|
-
def prices
|
10
|
-
@prices ||= begin
|
11
|
-
prices = []
|
12
|
-
|
13
|
-
if @data["prices"]
|
14
|
-
@data["prices"].each do |price|
|
15
|
-
prices << ProductPrice.new(price)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
prices
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
def id
|
24
|
-
@data["id"]
|
25
|
-
end
|
26
|
-
|
27
|
-
def brand
|
28
|
-
@data["brand"]
|
29
|
-
end
|
30
|
-
|
31
|
-
def name
|
32
|
-
@data["name"]
|
33
|
-
end
|
34
|
-
|
35
|
-
def type
|
36
|
-
@data["type"]
|
37
|
-
end
|
38
|
-
|
39
|
-
def validation
|
40
|
-
@data["validation"]
|
41
|
-
end
|
42
|
-
|
43
|
-
def included_domains
|
44
|
-
@data["includedDomains"]
|
45
|
-
end
|
46
|
-
|
47
|
-
def max_domains
|
48
|
-
@data["maxDomains"]
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
1
|
+
module Xolphin
|
2
|
+
module Api
|
3
|
+
module Responses
|
4
|
+
class Product < Base
|
5
|
+
def initialize(data)
|
6
|
+
super(data)
|
7
|
+
end
|
8
|
+
|
9
|
+
def prices
|
10
|
+
@prices ||= begin
|
11
|
+
prices = []
|
12
|
+
|
13
|
+
if @data["prices"]
|
14
|
+
@data["prices"].each do |price|
|
15
|
+
prices << ProductPrice.new(price)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
prices
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def id
|
24
|
+
@data["id"]
|
25
|
+
end
|
26
|
+
|
27
|
+
def brand
|
28
|
+
@data["brand"]
|
29
|
+
end
|
30
|
+
|
31
|
+
def name
|
32
|
+
@data["name"]
|
33
|
+
end
|
34
|
+
|
35
|
+
def type
|
36
|
+
@data["type"]
|
37
|
+
end
|
38
|
+
|
39
|
+
def validation
|
40
|
+
@data["validation"]
|
41
|
+
end
|
42
|
+
|
43
|
+
def included_domains
|
44
|
+
@data["includedDomains"]
|
45
|
+
end
|
46
|
+
|
47
|
+
def max_domains
|
48
|
+
@data["maxDomains"]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -1,27 +1,27 @@
|
|
1
|
-
module Xolphin
|
2
|
-
module Api
|
3
|
-
module Responses
|
4
|
-
class ProductPrice < Base
|
5
|
-
def initialize(data)
|
6
|
-
super(data)
|
7
|
-
end
|
8
|
-
|
9
|
-
def years
|
10
|
-
@data["years"]
|
11
|
-
end
|
12
|
-
|
13
|
-
def price
|
14
|
-
@data["price"]
|
15
|
-
end
|
16
|
-
|
17
|
-
def extra_price
|
18
|
-
@data["extraPrice"]
|
19
|
-
end
|
20
|
-
|
21
|
-
def extra_price_wildcard
|
22
|
-
@data["extraPriceWildcard"]
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
1
|
+
module Xolphin
|
2
|
+
module Api
|
3
|
+
module Responses
|
4
|
+
class ProductPrice < Base
|
5
|
+
def initialize(data)
|
6
|
+
super(data)
|
7
|
+
end
|
8
|
+
|
9
|
+
def years
|
10
|
+
@data["years"]
|
11
|
+
end
|
12
|
+
|
13
|
+
def price
|
14
|
+
@data["price"]
|
15
|
+
end
|
16
|
+
|
17
|
+
def extra_price
|
18
|
+
@data["extraPrice"]
|
19
|
+
end
|
20
|
+
|
21
|
+
def extra_price_wildcard
|
22
|
+
@data["extraPriceWildcard"]
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -1,25 +1,25 @@
|
|
1
|
-
module Xolphin
|
2
|
-
module Api
|
3
|
-
module Responses
|
4
|
-
class Products < Base
|
5
|
-
def initialize(data)
|
6
|
-
super(data)
|
7
|
-
end
|
8
|
-
|
9
|
-
def products
|
10
|
-
@products ||= begin
|
11
|
-
products = []
|
12
|
-
|
13
|
-
if _embedded && _embedded["products"]
|
14
|
-
_embedded["products"].each do |product|
|
15
|
-
products << Product.new(product)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
products
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
1
|
+
module Xolphin
|
2
|
+
module Api
|
3
|
+
module Responses
|
4
|
+
class Products < Base
|
5
|
+
def initialize(data)
|
6
|
+
super(data)
|
7
|
+
end
|
8
|
+
|
9
|
+
def products
|
10
|
+
@products ||= begin
|
11
|
+
products = []
|
12
|
+
|
13
|
+
if _embedded && _embedded["products"]
|
14
|
+
_embedded["products"].each do |product|
|
15
|
+
products << Product.new(product)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
products
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -1,119 +1,142 @@
|
|
1
|
-
require 'time'
|
2
|
-
|
3
|
-
module Xolphin
|
4
|
-
module Api
|
5
|
-
module Responses
|
6
|
-
class Request < Base
|
7
|
-
def initialize(data)
|
8
|
-
super(data)
|
9
|
-
end
|
10
|
-
|
11
|
-
def id
|
12
|
-
@data["id"]
|
13
|
-
end
|
14
|
-
|
15
|
-
def
|
16
|
-
@data["
|
17
|
-
end
|
18
|
-
|
19
|
-
def
|
20
|
-
@data["
|
21
|
-
end
|
22
|
-
|
23
|
-
def
|
24
|
-
|
25
|
-
end
|
26
|
-
|
27
|
-
def
|
28
|
-
@data["
|
29
|
-
end
|
30
|
-
|
31
|
-
def
|
32
|
-
@data["
|
33
|
-
end
|
34
|
-
|
35
|
-
def
|
36
|
-
@data["
|
37
|
-
end
|
38
|
-
|
39
|
-
def
|
40
|
-
@data["
|
41
|
-
end
|
42
|
-
|
43
|
-
def
|
44
|
-
@data["
|
45
|
-
end
|
46
|
-
|
47
|
-
def
|
48
|
-
@data["
|
49
|
-
end
|
50
|
-
|
51
|
-
def
|
52
|
-
@data["
|
53
|
-
end
|
54
|
-
|
55
|
-
def
|
56
|
-
@data["
|
57
|
-
end
|
58
|
-
|
59
|
-
def
|
60
|
-
@data["
|
61
|
-
end
|
62
|
-
|
63
|
-
def
|
64
|
-
@data["
|
65
|
-
end
|
66
|
-
|
67
|
-
def
|
68
|
-
@data["
|
69
|
-
end
|
70
|
-
|
71
|
-
def
|
72
|
-
@data["
|
73
|
-
end
|
74
|
-
|
75
|
-
def
|
76
|
-
@data["
|
77
|
-
end
|
78
|
-
|
79
|
-
def
|
80
|
-
@data["
|
81
|
-
end
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
1
|
+
require 'time'
|
2
|
+
|
3
|
+
module Xolphin
|
4
|
+
module Api
|
5
|
+
module Responses
|
6
|
+
class Request < Base
|
7
|
+
def initialize(data)
|
8
|
+
super(data)
|
9
|
+
end
|
10
|
+
|
11
|
+
def id
|
12
|
+
@data["id"]
|
13
|
+
end
|
14
|
+
|
15
|
+
def order_number
|
16
|
+
@data["orderNumber"]
|
17
|
+
end
|
18
|
+
|
19
|
+
def domain_name
|
20
|
+
@data["domainName"]
|
21
|
+
end
|
22
|
+
|
23
|
+
def company
|
24
|
+
@data["company"]
|
25
|
+
end
|
26
|
+
|
27
|
+
def date_ordered
|
28
|
+
Time.parse(@data["dateOrdered"])
|
29
|
+
end
|
30
|
+
|
31
|
+
def subject_alternative_names
|
32
|
+
@data["subjectAlternativeNames"]
|
33
|
+
end
|
34
|
+
|
35
|
+
def years
|
36
|
+
@data["years"]
|
37
|
+
end
|
38
|
+
|
39
|
+
def department
|
40
|
+
@data["department"]
|
41
|
+
end
|
42
|
+
|
43
|
+
def address
|
44
|
+
@data["address"]
|
45
|
+
end
|
46
|
+
|
47
|
+
def zipcode
|
48
|
+
@data["zipcode"]
|
49
|
+
end
|
50
|
+
|
51
|
+
def city
|
52
|
+
@data["city"]
|
53
|
+
end
|
54
|
+
|
55
|
+
def province
|
56
|
+
@data["province"]
|
57
|
+
end
|
58
|
+
|
59
|
+
def country
|
60
|
+
@data["country"]
|
61
|
+
end
|
62
|
+
|
63
|
+
def reference
|
64
|
+
@data["reference"]
|
65
|
+
end
|
66
|
+
|
67
|
+
def approver_first_name
|
68
|
+
@data["approverFirstName"]
|
69
|
+
end
|
70
|
+
|
71
|
+
def approver_last_name
|
72
|
+
@data["approverLastName"]
|
73
|
+
end
|
74
|
+
|
75
|
+
def approver_email
|
76
|
+
@data["approverEmail"]
|
77
|
+
end
|
78
|
+
|
79
|
+
def approver_phone
|
80
|
+
@data["approverPhone"]
|
81
|
+
end
|
82
|
+
def approver_representative_first_name
|
83
|
+
@data["approverRepresentativeFirstName"]
|
84
|
+
end
|
85
|
+
|
86
|
+
def approver_representative_last_name
|
87
|
+
@data["approverRepresentativeLastName"]
|
88
|
+
end
|
89
|
+
|
90
|
+
def approver_representative_email
|
91
|
+
@data["approverRepresentativeEmail"]
|
92
|
+
end
|
93
|
+
|
94
|
+
def approver_representative_phone
|
95
|
+
@data["approverRepresentativePhone"]
|
96
|
+
end
|
97
|
+
|
98
|
+
def approver_position
|
99
|
+
@data["approverRepresentativePosition"]
|
100
|
+
end
|
101
|
+
|
102
|
+
def postbox
|
103
|
+
@data["postbox"]
|
104
|
+
end
|
105
|
+
|
106
|
+
def kvk
|
107
|
+
@data["kvk"]
|
108
|
+
end
|
109
|
+
|
110
|
+
def reqiures_action
|
111
|
+
@data["requiresAction"]
|
112
|
+
end
|
113
|
+
|
114
|
+
def brand_validation
|
115
|
+
@data["brandValidation"]
|
116
|
+
end
|
117
|
+
|
118
|
+
def validations
|
119
|
+
@validations ||= begin
|
120
|
+
validations = []
|
121
|
+
|
122
|
+
if @data["validations"]
|
123
|
+
@data["validations"].each do |validation|
|
124
|
+
validations << RequestValidation.new(validation)
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
validations
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
def product
|
133
|
+
@product ||= begin
|
134
|
+
if _embedded && _embedded["product"]
|
135
|
+
Product.new(_embedded["product"])
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
@@ -1,29 +1,29 @@
|
|
1
|
-
require 'time'
|
2
|
-
|
3
|
-
module Xolphin
|
4
|
-
module Api
|
5
|
-
module Responses
|
6
|
-
class RequestEE < Base
|
7
|
-
def initialize(data)
|
8
|
-
super(data)
|
9
|
-
end
|
10
|
-
|
11
|
-
def id
|
12
|
-
@data["id"]
|
13
|
-
end
|
14
|
-
|
15
|
-
def date_ordered
|
16
|
-
Time.parse(@data["dateOrdered"])
|
17
|
-
end
|
18
|
-
|
19
|
-
def certificate
|
20
|
-
@data["certificate"]
|
21
|
-
end
|
22
|
-
|
23
|
-
def pkcs7
|
24
|
-
@data["pkcs7"]
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
1
|
+
require 'time'
|
2
|
+
|
3
|
+
module Xolphin
|
4
|
+
module Api
|
5
|
+
module Responses
|
6
|
+
class RequestEE < Base
|
7
|
+
def initialize(data)
|
8
|
+
super(data)
|
9
|
+
end
|
10
|
+
|
11
|
+
def id
|
12
|
+
@data["id"]
|
13
|
+
end
|
14
|
+
|
15
|
+
def date_ordered
|
16
|
+
Time.parse(@data["dateOrdered"])
|
17
|
+
end
|
18
|
+
|
19
|
+
def certificate
|
20
|
+
@data["certificate"]
|
21
|
+
end
|
22
|
+
|
23
|
+
def pkcs7
|
24
|
+
@data["pkcs7"]
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -1,37 +1,37 @@
|
|
1
|
-
module Xolphin
|
2
|
-
module Api
|
3
|
-
module Responses
|
4
|
-
class RequestValidation < Base
|
5
|
-
def initialize(data)
|
6
|
-
super(data)
|
7
|
-
end
|
8
|
-
|
9
|
-
def status
|
10
|
-
@data["status"]
|
11
|
-
end
|
12
|
-
|
13
|
-
def status_detail
|
14
|
-
@data["statusDetail"]
|
15
|
-
end
|
16
|
-
|
17
|
-
def status_message
|
18
|
-
@data["statusMessage"]
|
19
|
-
end
|
20
|
-
|
21
|
-
def domains
|
22
|
-
@domains ||= begin
|
23
|
-
domains = []
|
24
|
-
|
25
|
-
if @data["domains"]
|
26
|
-
@data["domains"].each do |domain|
|
27
|
-
domains << RequestValidationDomain.new(domain)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
domains
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
1
|
+
module Xolphin
|
2
|
+
module Api
|
3
|
+
module Responses
|
4
|
+
class RequestValidation < Base
|
5
|
+
def initialize(data)
|
6
|
+
super(data)
|
7
|
+
end
|
8
|
+
|
9
|
+
def status
|
10
|
+
@data["status"]
|
11
|
+
end
|
12
|
+
|
13
|
+
def status_detail
|
14
|
+
@data["statusDetail"]
|
15
|
+
end
|
16
|
+
|
17
|
+
def status_message
|
18
|
+
@data["statusMessage"]
|
19
|
+
end
|
20
|
+
|
21
|
+
def domains
|
22
|
+
@domains ||= begin
|
23
|
+
domains = []
|
24
|
+
|
25
|
+
if @data["domains"]
|
26
|
+
@data["domains"].each do |domain|
|
27
|
+
domains << RequestValidationDomain.new(domain)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
domains
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|