rs4 0.2.7 → 0.2.12

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: 647f43f6fd372991e9ece30989f3562ddb75bebe11f75b57173de79c3a13e2ee
4
- data.tar.gz: e3816cb16b081157cc2fb9cf2581e82054d344c11f9fa5c8e6b39a5ed8864751
3
+ metadata.gz: 7b8d42e70c64586aff80ced6defe30ac79274a75c85bc0e4a2e391df6fd3b0ee
4
+ data.tar.gz: bd7992e4a00688fc5a9d17addecdee20d2e29823319564a5f03bbeda34d62cdb
5
5
  SHA512:
6
- metadata.gz: 971068d9b96fb2ae77ef7967e9b712c6a77fab92f3048b6c85103ab707abc1702ae97b65e56273baef55da88cec0565442f983daffb9d5d40a7923d9d82d629a
7
- data.tar.gz: eaf0881298294fc46467aa6f4c8d0c4c1a8eff65bc4a9465209001dfd07cadde4b7e8c7e681adaf62d73b471f08fccc8ae7c5895d6251765378a62af16f58e09
6
+ metadata.gz: '0370996268e7383cb6eb8a13904c301f71ef3863d0e6f6887265b873685ec1a75be8b0ac96df8a9be85f50f8bcb88e07bbeb1c6fb349c9e31e0d6cda0b18b8bb'
7
+ data.tar.gz: a6ee87f574d66dbef0e10b3b95d988091e7553d096fe0d9e4107c2f0a9c917918b5503692cd9f53a24d4ef274b4dff2ba4a08b980b16c7e3f003caf8216b5dfa
@@ -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?
@@ -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,12 +69,46 @@ module RS4
69
69
  RS4.configuration.request_handler.execute(path, :get)
70
70
  end
71
71
 
72
- def send_document(template_guid, options = {})
73
- path = "reusable_templates/#{template_guid}/send_document"
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"
74
92
 
75
93
  body = options
76
94
 
77
- body[:in_person] = options[:in_person] || true
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
+
108
+ def send_document(template_guid, options = {})
109
+ path = "/public/v1/reusable_templates/#{template_guid}/send_document"
110
+
111
+ body = options
78
112
 
79
113
  response = RS4.configuration.request_handler.execute(path, :post, body)
80
114
 
@@ -1,3 +1,3 @@
1
1
  module RS4
2
- VERSION = '0.2.7'.freeze
2
+ VERSION = '0.2.12'.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.7
4
+ version: 0.2.12
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