rs4 0.2.2 → 0.2.3
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 +4 -4
- data/lib/rs4/document.rb +16 -1
- data/lib/rs4/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4064ed9919a67b9d7b02c1b00452f2ba0ff1323ba8953a4a9826cfd000714dcc
|
|
4
|
+
data.tar.gz: 6907a7d5bad42fac43c1d9b372936cfe44c6d1ec8f2257573d3ed159e04908ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43d0f4b4ee7df70868c5c413967eeeca8047cf992fbebcc8fd286ad2c93f0590dec64df01b561927f4a7e2d7a682ecf515659a89c42cd207ed3f40f3e1c03950
|
|
7
|
+
data.tar.gz: a195784b8fb5f06e368fc8f89339d6b89fc282e95deaee5a126f2e42bca5157661f9e80398a291a301979a3ace429da7ce19d17ccb2e18020518da12b81acb53
|
data/lib/rs4/document.rb
CHANGED
|
@@ -9,6 +9,7 @@ module RS4
|
|
|
9
9
|
EXECUTED_STATE = :executed
|
|
10
10
|
|
|
11
11
|
attr_accessor :id
|
|
12
|
+
attr_accessor :original_guid
|
|
12
13
|
attr_accessor :current_signer_id
|
|
13
14
|
attr_accessor :name
|
|
14
15
|
attr_accessor :filename
|
|
@@ -82,8 +83,22 @@ module RS4
|
|
|
82
83
|
end
|
|
83
84
|
|
|
84
85
|
class << self
|
|
86
|
+
def get_archive_document(document_guid)
|
|
87
|
+
return unless document_guid.present?
|
|
88
|
+
|
|
89
|
+
path = "archived_documents_by_original_guid/#{document_guid}"
|
|
90
|
+
|
|
91
|
+
response = RS4.configuration.request_handler.execute(path, :get)
|
|
92
|
+
|
|
93
|
+
unless response.class == RS4::RequestError || response.nil?
|
|
94
|
+
archived_document = response.dig(:archived_document)
|
|
95
|
+
|
|
96
|
+
Document.new(archived_document) if archived_document
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
85
100
|
def get_document(document_guid)
|
|
86
|
-
return unless document_guid
|
|
101
|
+
return unless document_guid.present?
|
|
87
102
|
|
|
88
103
|
path = "documents/#{document_guid}"
|
|
89
104
|
|
data/lib/rs4/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- donny
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-06-
|
|
11
|
+
date: 2020-06-26 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
|