Class: Digidoc::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/digidoc/client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(endpoint_url = TestEndpointUrl) ⇒ Client

Returns a new instance of Client.



30
31
32
33
34
# File 'lib/digidoc/client.rb', line 30

def initialize(endpoint_url = TestEndpointUrl)
  self.endpoint_url = endpoint_url || TestEndpointUrl
  self.respond_with_nested_struct = true
  self.embedded_datafiles = []
end

Instance Attribute Details

#embedded_datafilesObject

Returns the value of attribute embedded_datafiles.



28
29
30
# File 'lib/digidoc/client.rb', line 28

def embedded_datafiles
  @embedded_datafiles
end

#endpoint_urlObject

Returns the value of attribute endpoint_url.



28
29
30
# File 'lib/digidoc/client.rb', line 28

def endpoint_url
  @endpoint_url
end

#respond_with_nested_structObject

Returns the value of attribute respond_with_nested_struct.



28
29
30
# File 'lib/digidoc/client.rb', line 28

def respond_with_nested_struct
  @respond_with_nested_struct
end

#session_codeObject

Returns the value of attribute session_code.



28
29
30
# File 'lib/digidoc/client.rb', line 28

def session_code
  @session_code
end

Instance Method Details

#add_datafile(file, *args) ⇒ Object

Add datafile to DigiDoc container



277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
# File 'lib/digidoc/client.rb', line 277

def add_datafile(file, *args)
  options = args.last || {}

  session_code = options.delete(:session_code) || self.session_code
  filename = options.delete(:filename) || File.basename(file.path)
  mime_type = options[:mime_type] || calc_mime_type(file)
  use_hashcode = false #options.key?(:use_hashcode) || true
  filename = filename.gsub('/', '-')

  response = savon_client.call('AddDataFile') do |locals|
    file_content = Base64.encode64(file.read)
    # Upload file to webservice
    if use_hashcode
      # Calculate sha1 from file
      datafile = datafile(filename, mime_type, file.size, file_content, embedded_datafiles.size)
      self.embedded_datafiles << datafile
      hex_sha1 = Digest::SHA1.hexdigest(datafile)
      digest_value = Base64.encode64(hex_sha1.lines.to_a.pack('H*'))
      locals.message 'Sesscode' => session_code, 'FileName' => filename, 'MimeType' => mime_type, 'ContentType' => 'HASHCODE',
        'Size' => file.size, 'DigestType' => 'sha1', 'DigestValue' => digest_value
    else
      locals.message'Sesscode' => session_code, 'FileName' => filename, 'MimeType' => mime_type, 'ContentType' => 'EMBEDDED_BASE64', 'Size' => file.size, 'Content' => file_content
    end
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:add_data_file_response]
  respond_with_hash_or_nested(result)
end

#authenticate(*args) ⇒ Object

Authentication message



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/digidoc/client.rb', line 37

def authenticate(*args)
  options = args.last || {}

  phone = options.delete(:phone)
  personal_code = options.delete(:personal_code)
  country_code = options.delete(:country_code) || 'EE'
  language = options.delete(:language) || 'EST'
  service_name = options.delete(:service_name) || 'Testimine'
  message_to_display = options.delete(:message_to_display) || 'Tuvastamine'
  messaging_mode =  options.delete(:messaging_mode) || 'asynchClientServer'
  async_configuration = options.delete(:async_configuration) || 0
  return_cert_data = options.key?(:return_cert_data) ? options.delete(:return_cer_data) : true
  return_revocation_data = options.key?(:return_revocation_data) ? options.delete(:return_revocation_data) : true

  # SP challenge token
  sp_challenge = generate_sp_challenge
  phone = ensure_area_code(phone)
  self.session_code = nil

  # Make webservice call
  response = savon_client.call('MobileAuthenticate') do |locals|
    locals.message 'CountryCode' => country_code, 'PhoneNo' => phone, 'Language' => language, 'ServiceName' => service_name,
      'MessageToDisplay' => message_to_display, 'SPChallenge' => sp_challenge, 'MessagingMode' => messaging_mode,
      'AsyncConfiguration' => async_configuration, 'ReturnCertData' => return_cert_data,
      'ReturnRevocationData' => return_revocation_data, 'IdCode' => personal_code
  end

  if soap_fault?(response)
    result = response.to_hash[:fault]
  else
    result = response.to_hash[:mobile_authenticate_response]
    self.session_code = result[:sesscode]
  end
  respond_with_hash_or_nested(result)
end

#authentication_status(session_code = self.session_code) ⇒ Object

Authentication status



74
75
76
77
78
79
80
81
# File 'lib/digidoc/client.rb', line 74

def authentication_status(session_code = self.session_code)
  response = savon_client.call('GetMobileAuthenticateStatus') do |locals|
    locals.message 'Sesscode' => session_code
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:get_mobile_authenticate_status_response]
  respond_with_hash_or_nested(result)
end

#close_session(session_code = self.session_code) ⇒ Object

Closes current session



266
267
268
269
270
271
272
273
274
# File 'lib/digidoc/client.rb', line 266

def close_session(session_code = self.session_code)
  response = savon_client.call('CloseSession') do |locals|
    locals.message 'Sesscode' => session_code
  end
  self.session_code = nil

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:close_session_response]
  respond_with_hash_or_nested(result)
end

#create_signed_doc(*args) ⇒ Object

Creates DigiDoc container



105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/digidoc/client.rb', line 105

def create_signed_doc(*args)
  options = args.last || {}

  session_code = options.delete(:session_code) || self.session_code
  version = options.delete(:version) || '1.3'

  response = savon_client.call('CreateSignedDoc') do |locals|
    locals.message 'Sesscode' => session_code, 'Format' => 'DIGIDOC-XML', 'Version' => version
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:create_signed_doc_response]
  respond_with_hash_or_nested(result)
end

#finalize_signature(*args) ⇒ Object



142
143
144
145
146
147
148
149
150
151
152
153
154
155
# File 'lib/digidoc/client.rb', line 142

def finalize_signature(*args)
  options = args.last || {}

  session_code = options.delete(:session_code) || self.session_code
  signature = options.delete(:signature)
  signature_id = options.delete(:signature_id)

  response = savon_client.call('FinalizeSignature') do |locals|
    locals.message 'Sesscode' => session_code, 'SignatureValue' => signature, 'SignatureId' => signature_id
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:finalize_signature_response]
  respond_with_hash_or_nested(result)
end

#mobile_sign(*args) ⇒ Object

Sign DigiDoc container



172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/digidoc/client.rb', line 172

def mobile_sign(*args)
  options = args.last || {}

  session_code = options.delete(:session_code) || self.session_code
  phone = options.delete(:phone)
  personal_code = options.delete(:personal_code)
  country_code = options.delete(:country_code) || 'EE'
  country_name = options.delete(:country_name) || 'Eesti'
  language = options.delete(:language) || 'EST'
  service_name = options.delete(:service_name) || 'Testimine'
  message_to_display = options.delete(:message_to_display) || 'Allkirjastamine'
  messaging_mode =  options.delete(:messaging_mode) || 'asynchClientServer'
  async_configuration = options.delete(:async_configuration) || 0
  return_doc_info = options.key?(:return_doc_info) ? options.delete(:return_doc_info) : true
  return_doc_data = options.key?(:return_doc_data) ? options.delete(:return_doc_data) : true
  state_or_province = options.delete(:state_or_province)
  role = options.delete(:role)
  city = options.delete(:city)
  postal_code = options.delete(:postal_code)
  phone = ensure_area_code(phone)

  response = savon_client.call('MobileSign') do |locals|
    locals.message 'Sesscode' => session_code, 'SignersCountry' => country_code, 'CountryName' => country_name,
      'SignerPhoneNo' => phone, 'Language' => language, 'ServiceName' => service_name,
      'AdditionalDataToBeDisplayed' => message_to_display, 'MessagingMode' => messaging_mode,
      'AsyncConfiguration' => async_configuration, 'ReturnDocInfo' => return_doc_info,
      'ReturnDocData' => return_doc_data, 'SignerIDCode' => personal_code, 'Role' => role, 'City' => city,
       'StateOrProvince' => state_or_province, 'PostalCode' => postal_code
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:mobile_sign_response]
  respond_with_hash_or_nested(result)
end

#notary(*args) ⇒ Object



157
158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/digidoc/client.rb', line 157

def notary(*args)
  options = args.last || {}

  session_code = options.delete(:session_code) || self.session_code
  signature_id = options.delete(:signature_id)

  response = savon_client.call('GetNotary') do |locals|
    locals.message 'Sesscode' => session_code, 'SignatureId' => signature_id
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:get_notary_response]
  respond_with_hash_or_nested(result)
end

#prepare_signature(*args) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/digidoc/client.rb', line 119

def prepare_signature(*args)
  options = args.last || {}

  session_code = options.delete(:session_code) || self.session_code
  signers_certificate = options.delete(:signers_certificate)
  signers_token_id = options.delete(:signers_token_id)
  signing_profile = options.delete(:signing_profile)
  country_name = options.delete(:country_name) || 'Eesti'
  state_or_province = options.delete(:state_or_province)
  role = options.delete(:role)
  city = options.delete(:city)
  postal_code = options.delete(:postal_code)

  response = savon_client.call('PrepareSignature') do |locals|
    locals.message 'Sesscode' => session_code, 'SignersCertificate' => signers_certificate,
      'SignersTokenId' => signers_token_id, 'Role' => role, 'City' => city,
      'State' => state_or_province, 'PostalCode' => postal_code, 'Country' => country_name, 'SigningProfile' => signing_profile
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:prepare_signature_response]
  respond_with_hash_or_nested(result)
end

#save_signed_doc(*args, &block) ⇒ Object

Get DigiDoc container



236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/digidoc/client.rb', line 236

def save_signed_doc(*args, &block)
  options = args.last || {}
  session_code = options.delete(:session_code) || self.session_code

  response = savon_client.call('GetSignedDoc') do |locals|
    locals.message 'Sesscode' => session_code
  end

  if soap_fault?(response)
    result = respond_with_hash_or_nested(response.to_hash[:fault])
  else
    escaped = Crack::XML.parse(response.http.body).to_hash['SOAP_ENV:Envelope']['SOAP_ENV:Body']['dig:GetSignedDocResponse']['SignedDocData']
    # TODO: is escaping needed? - it removes original escaped & form XML
    digidoc_container = escaped#CGI.unescapeHTML(escaped)

    if embedded_datafiles.present?
      xmldata = Nokogiri::XML(digidoc_container)
      xmldata.root.elements.each { |el| el.replace(embedded_datafiles.shift) if el.name == 'DataFile' }
      digidoc_container = xmldata.to_xml
    end

    if block_given?
      yield digidoc_container
    else
      digidoc_container
    end
  end
end

#sign_status(*args) ⇒ Object

Get session status info.



207
208
209
210
211
212
213
214
215
216
217
218
219
220
# File 'lib/digidoc/client.rb', line 207

def sign_status(*args)
  options = args.last || {}

  session_code = options.delete(:session_code) || self.session_code
  return_doc_info = options.key?(:return_doc_info) ? options.delete(:return_doc_info) : false
  wait_signature = options.key?(:wait_signature) ? options.delete(:wait_signature) : false

  response = savon_client.call('GetStatusInfo') do |locals|
    locals.message 'Sesscode' => session_code, 'ReturnDocInfo' => return_doc_info, 'WaitSignature' => wait_signature
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:get_status_info_response]
  respond_with_hash_or_nested(result)
end

#signed_doc_info(*args) ⇒ Object

Get DigiDoc container status



223
224
225
226
227
228
229
230
231
232
233
# File 'lib/digidoc/client.rb', line 223

def signed_doc_info(*args)
  options = args.last || {}
  session_code = options.delete(:session_code) || self.session_code

  response = savon_client.call('GetSignedDocInfo') do |locals|
    locals.message 'Sesscode' => session_code
  end

  result = soap_fault?(response) ? response.to_hash[:fault] : response.to_hash[:get_signed_doc_info_response]
  respond_with_hash_or_nested(result)
end

#start_session(*args) ⇒ Object

Starts and holds session



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/digidoc/client.rb', line 84

def start_session(*args)
  self.session_code = nil
  self.embedded_datafiles = []
  options = args.last || {}
  signed_doc_file = options.delete(:signed_doc_file)
  signed_doc_xml = signed_doc_file.read if signed_doc_file

  response = savon_client.call('StartSession') do |locals|
    locals.message 'bHoldSession' => true, 'SigDocXML' => signed_doc_xml
  end

  if soap_fault?(response)
    result = response.to_hash[:fault]
  else
    result = response.to_hash[:start_session_response]
    self.session_code = result[:sesscode]
  end
  respond_with_hash_or_nested(result)
end