rs4 0.2.8 → 0.2.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22cb71a5eaa8f0c8719e5865fd5ac49b47777e482bd992c51fbd54032be650eb
4
- data.tar.gz: 44d751a6a1eb28e598113b6056964a0204bfd7dc7822378210372e3c89450805
3
+ metadata.gz: 6fa3c04182d961b4c035c1f3213a7ed322a3abd4aec556b7119b83c3923aeb01
4
+ data.tar.gz: 388fd56f7db479ff756e300c2ea218fb5907149bd8bb1068987c133cecebe3fc
5
5
  SHA512:
6
- metadata.gz: 58ba86bdae0ee04e01a4f5633237442e208f32b000719e6717bd4d6aa4055d40da0885f6a49ab836f98209cbbcc6a8da849eddcf7445118a7037b0334fc07291
7
- data.tar.gz: 6d8a3142513f6a52d80483186fdcd0cfbcce7f85a09d8290846baacc1ca8d6f0e95249d02da88e66927b49334650ff5953000f9de0ac261b8293c343b6000510
6
+ metadata.gz: 8f417eaea3643412f69e5db3c53db79a3fdffe31853e7972b2e815b88f3aeaa4efa627a9b1a2038ef24161922a031c7556a85a72a9ad318feae4a37e58adddaf
7
+ data.tar.gz: 4516755f9e181ad50e4ec59fbce933ab5f8a9dda58ac4349158f09a9c854c1580cd57b3fcd87edadd4fb7606516549c09ab81d74e0f22296142a4b94b6446cdb
@@ -86,7 +86,7 @@ module RS4
86
86
  def get_archive_document(document_guid)
87
87
  return unless document_guid.present?
88
88
 
89
- path = "archived_documents_by_original_guid/#{document_guid}"
89
+ path = "/public/v1/archived_documents_by_original_guid/#{document_guid}"
90
90
 
91
91
  response = RS4.configuration.request_handler.execute(path, :get)
92
92
 
@@ -100,7 +100,37 @@ module RS4
100
100
  def get_document(document_guid)
101
101
  return unless document_guid.present?
102
102
 
103
- path = "documents/#{document_guid}"
103
+ path = "/public/v1/documents/#{document_guid}"
104
+
105
+ response = RS4.configuration.request_handler.execute(path, :get)
106
+
107
+ unless response.is_a?(RS4::Error) || response.nil? # .class == Net::HTTPOK
108
+ raw_document = response.dig(:document) # JSON.parse(response.body, symbolize_names: true)
109
+
110
+ # Document.new(raw_document[:document])
111
+ Document.new(raw_document) if raw_document
112
+ end
113
+ end
114
+
115
+ def post_force_complete(document_guid)
116
+ return unless document_guid.present?
117
+
118
+ path = "/v1/documents/#{document_guid}/force_complete"
119
+
120
+ response = RS4.configuration.request_handler.execute(path, :post)
121
+
122
+ unless response.is_a?(RS4::Error) || response.nil? # .class == Net::HTTPOK
123
+ raw_document = response.dig(:document) # JSON.parse(response.body, symbolize_names: true)
124
+
125
+ # Document.new(raw_document[:document])
126
+ Document.new(raw_document) if raw_document
127
+ end
128
+ end
129
+
130
+ def get_force_complete(document_guid)
131
+ return unless document_guid.present?
132
+
133
+ path = "/v1/documents/#{document_guid}/force_complete"
104
134
 
105
135
  response = RS4.configuration.request_handler.execute(path, :get)
106
136
 
@@ -113,7 +143,7 @@ module RS4
113
143
  end
114
144
 
115
145
  def get_documents
116
- path = 'documents'
146
+ path = '/public/v1/documents'
117
147
  response = RS4.configuration.request_handler.execute(path, :get)
118
148
 
119
149
  unless response.is_a?(RS4::Error) || response.nil?
@@ -12,7 +12,9 @@ module RS4
12
12
  return RS4::ConfigurationError.new(RS4.configuration.errors, 'Invalid Configuration')
13
13
  end
14
14
 
15
- url = URI(RS4.configuration.api_host + '/public/v1/' + path)
15
+ url = URI(RS4.configuration.api_host + path)
16
+
17
+ Rails.logger.info("#{RS4.configuration.api_host}#{path}")
16
18
 
17
19
  http = Net::HTTP.new(url.host, url.port)
18
20
  http.use_ssl = true
@@ -46,7 +46,7 @@ module RS4
46
46
  def get_reusable_template(template_guid)
47
47
  return unless template_guid
48
48
 
49
- path = "reusable_templates/#{template_guid}"
49
+ path = "/public/v1/reusable_templates/#{template_guid}"
50
50
 
51
51
  response = RS4.configuration.request_handler.execute(path, :get)
52
52
 
@@ -60,7 +60,7 @@ module RS4
60
60
  end
61
61
 
62
62
  def get_reusable_templates(options = {})
63
- base_path = 'reusable_templates'
63
+ base_path = '/public/v1/reusable_templates'
64
64
 
65
65
  query = CGI.unescape(options.to_query)
66
66
 
@@ -69,8 +69,44 @@ module RS4
69
69
  RS4.configuration.request_handler.execute(path, :get)
70
70
  end
71
71
 
72
+ def prepare_document(template_guid, options = {})
73
+ path = "/public/v1/reusable_templates/#{template_guid}/prepare_document"
74
+
75
+ body = options
76
+
77
+ response = RS4.configuration.request_handler.execute(path, :post, body)
78
+
79
+ Rails.logger.info("RS4::ReusableTemplate::embed_document:: #{response.inspect}")
80
+
81
+ unless response.is_a?(RS4::Error) || response.nil?
82
+ # parsed_response = JSON.parse(response.read_body, symbolize_names: true)
83
+
84
+ document_hash = response.dig(:document)
85
+
86
+ return RS4::Document.new(document_hash)
87
+ end
88
+ end
89
+
90
+ def embed_document(template_guid, options = {})
91
+ path = "/public/v1/reusable_templates/#{template_guid}/embed_document"
92
+
93
+ body = options
94
+
95
+ response = RS4.configuration.request_handler.execute(path, :post, body)
96
+
97
+ Rails.logger.info("RS4::ReusableTemplate::embed_document:: #{response.inspect}")
98
+
99
+ unless response.is_a?(RS4::Error) || response.nil?
100
+ # parsed_response = JSON.parse(response.read_body, symbolize_names: true)
101
+
102
+ document_hash = response.dig(:document)
103
+
104
+ return RS4::Document.new(document_hash)
105
+ end
106
+ end
107
+
72
108
  def send_document(template_guid, options = {})
73
- path = "reusable_templates/#{template_guid}/send_document"
109
+ path = "/public/v1/reusable_templates/#{template_guid}/send_document"
74
110
 
75
111
  body = options
76
112
 
@@ -1,3 +1,3 @@
1
1
  module RS4
2
- VERSION = '0.2.8'.freeze
2
+ VERSION = '0.2.13'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rs4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.2.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - donny
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-09 00:00:00.000000000 Z
11
+ date: 2020-07-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Provides ruby access to CRUD operations for RightSignature documents
14
14
  and reusable templates