da_funk 3.17.0 → 3.18.0

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: 8c82dec00d1972662fd08cf16e11940ee65d47483256abfff5eb06230d48f28d
4
- data.tar.gz: 5e23db4a7d7b2d6a13d5bb2289d224cf8a60422f8c782bc5f2df465b4f7a7277
3
+ metadata.gz: ceca3b8c7dbab19c356f90ae7f5f7dd9b2e6a3e5a29b5b535c614f334462292c
4
+ data.tar.gz: 21967381e026160e693bfaf3eabcbd03873dfb857e55a8e3a00a93efcdda2338
5
5
  SHA512:
6
- metadata.gz: cc24e1168ae6c73d50777fc196d370570da0de84f897d6a209f17b17165233a6d596571c3d45e960abd44f5e591a2ea541f4977845ea5109910f0be1ff93b641
7
- data.tar.gz: 64463d88a2d9d64ff1dfb8a367c3c10296dee9f28ee799773c093e072a9d7dec55e7869e55fba6a106d3eafc3bcf45d95b0be2294457c46731a27573326b3a93
6
+ metadata.gz: 201cc983eef4738eeeb3c27421bc1667020111a5f5ef1c2352798558c0cf14962e6c736d897435b4000cf7163d4a2320b261785f24b2da8b03256045b24c305b
7
+ data.tar.gz: 48503f11d53841c2d46cf95e08141bc20d10267fec052eaf6f1ba022b2eabd8e6d131d535ea066e915e0bfbf484c66f3ae5d4a5c58d1f697fb68ba65f94481aa
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- da_funk (3.17.0)
4
+ da_funk (3.18.0)
5
5
  archive-zip (~> 0.5)
6
6
  bundler
7
7
  cloudwalk_handshake
data/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # DaFunk
2
2
 
3
+ ### 3.18.0 - 2020-04-03
4
+
5
+ - Added enable_txt_ui parameter on the following methods
6
+ - DaFunk::ParamsDat#download;
7
+ - DaFunk::ParamsDat#update_apps;
8
+ - DaFunk::ParamsDat#update_app;
9
+ - DaFunk::ParamsDat#update_file;
10
+ - DaFunk::Helper#attach_options;
11
+ - DaFunk::Helper#check_download_error;
12
+
3
13
  ### 3.17.0 - 2020-02-10
4
14
 
5
15
  - Added support to infinitepay endpoints config on config.dat file;
@@ -14,11 +14,11 @@ module DaFunk
14
14
  string
15
15
  end
16
16
 
17
- def attach_options
17
+ def attach_options(enable_txt_ui = true)
18
18
  if DaFunk::PaymentChannel.client == Context::CommunicationChannel
19
- {:print_last => true}
19
+ {:print_last => true, :enable_txt_ui => enable_txt_ui}
20
20
  else
21
- {:print_last => false}
21
+ {:print_last => false, :enable_txt_ui => enable_txt_ui}
22
22
  end
23
23
  end
24
24
 
@@ -35,55 +35,63 @@ module DaFunk
35
35
 
36
36
  def attach(options = attach_options)
37
37
  if Device::Network.configured?
38
- print_attach(:attach_connecting, options)
38
+ print_attach(:attach_connecting, options) if options[:enable_txt_ui]
39
39
  unless Device::Network.connected?
40
40
  if Device::Network.attach(options) == Device::Network::SUCCESS
41
41
  Device::Setting.network_configured = 1
42
- print_attach(:attach_connected, options)
42
+ print_attach(:attach_connected, options) if options[:enable_txt_ui]
43
43
  else
44
44
  Device::Setting.network_configured = 0 if DaFunk::ParamsDat.file["connection_management"] == "0"
45
- print_attach(:attach_fail, options.merge(:args => [Device::Network.code.to_s]))
46
- getc(10000)
45
+ if options[:enable_txt_ui]
46
+ print_attach(:attach_fail, options.merge(:args => [Device::Network.code.to_s]))
47
+ getc(10000)
48
+ end
47
49
  return false
48
50
  end
49
51
  else
50
- print_attach(:attach_already_connected, options)
52
+ print_attach(:attach_already_connected, options) if options[:enable_txt_ui]
51
53
  end
52
54
  true
53
55
  else
54
- print_attach(:attach_device_not_configured, options)
55
- getc(2000)
56
+ if options[:enable_txt_ui]
57
+ print_attach(:attach_device_not_configured, options)
58
+ getc(2000)
59
+ end
56
60
  false
57
61
  end
58
62
  end
59
63
 
60
- def check_download_error(ret)
64
+ def check_download_error(ret, enable_txt_ui = true)
61
65
  value = true
66
+ ui = {}
67
+
62
68
  case ret
63
69
  when DaFunk::Transaction::Download::SERIAL_NUMBER_NOT_FOUND
64
- I18n.pt(:download_serial_number_not_found, :args => [ret])
70
+ ui[:i18n] = :download_serial_number_not_found
65
71
  value = false
66
72
  when DaFunk::Transaction::Download::FILE_NOT_FOUND
67
- I18n.pt(:download_file_not_found, :args => [ret])
73
+ ui[:i18n] = :download_file_not_found
68
74
  value = false
69
75
  when DaFunk::Transaction::Download::FILE_NOT_CHANGE
70
- I18n.pt(:download_file_is_the_same, :args => [ret])
76
+ ui[:i18n] = :download_file_is_the_same
71
77
  when DaFunk::Transaction::Download::SUCCESS
72
- I18n.pt(:download_success, :args => [ret])
78
+ ui[:i18n] = :download_success
73
79
  when DaFunk::Transaction::Download::COMMUNICATION_ERROR
74
- I18n.pt(:download_communication_failure, :args => [ret])
80
+ ui[:i18n] = :download_communication_failure
75
81
  value = false
76
82
  when DaFunk::Transaction::Download::MAPREDUCE_RESPONSE_ERROR
77
- I18n.pt(:download_encoding_error, :args => [ret])
83
+ ui[:i18n] = :download_encoding_error
78
84
  value = false
79
85
  when DaFunk::Transaction::Download::IO_ERROR
80
- I18n.pt(:download_io_error, :args => [ret])
86
+ ui[:i18n] = :download_io_error
81
87
  value = false
82
88
  else
83
- I18n.pt(:download_communication_failure, :args => [ret])
89
+ ui[:i18n] = :download_communication_failure
84
90
  value = false
85
91
  end
86
92
 
93
+ I18n.pt(ui[:i18n], :args => [ret]) if enable_txt_ui
94
+
87
95
  value
88
96
  end
89
97
 
@@ -104,15 +104,17 @@ module DaFunk
104
104
  nil
105
105
  end
106
106
 
107
- def self.download
108
- if attach
107
+ def self.download(enable_txt_ui = true)
108
+ if attach(attach_options(enable_txt_ui))
109
109
  parse
110
110
  ret = try(3) do |attempt|
111
- Device::Display.clear
112
- I18n.pt(:downloading_content, :args => ["PARAMS", 1, 1])
111
+ if enable_txt_ui
112
+ Device::Display.clear
113
+ I18n.pt(:downloading_content, :args => ["PARAMS", 1, 1])
114
+ end
113
115
  getc(100)
114
116
  ret = DaFunk::Transaction::Download.request_param_file(FILE_NAME)
115
- unless check_download_error(ret)
117
+ unless check_download_error(ret, enable_txt_ui)
116
118
  getc(2000)
117
119
  false
118
120
  else
@@ -124,21 +126,21 @@ module DaFunk
124
126
  end
125
127
  end
126
128
 
127
- def self.update_apps(force_params = false, force_crc = false, force = false)
128
- self.download if force_params || ! self.valid
129
+ def self.update_apps(force_params = false, force_crc = false, force = false, enable_txt_ui = true)
130
+ self.download(enable_txt_ui) if force_params || ! self.valid
129
131
  main_updated = nil
130
132
  if self.valid
131
133
  apps_to_update = self.outdated_apps(force_crc, force)
132
134
  size_apps = apps_to_update.size
133
135
  apps_to_update.each_with_index do |app, index|
134
- ret = self.update_app(app, index+1, size_apps, force_crc || force)
136
+ ret = self.update_app(app, index+1, size_apps, force_crc || force, enable_txt_ui)
135
137
  main_updated ||= (ret && app.main_application?)
136
138
  end
137
139
 
138
140
  files_to_update = self.outdated_files(force_crc, force)
139
141
  size_files = files_to_update.size
140
142
  files_to_update.each_with_index do |file_, index|
141
- self.update_file(file_, index+1, size_files, force_crc || force)
143
+ self.update_file(file_, index+1, size_files, force_crc || force, enable_txt_ui)
142
144
  end
143
145
  end
144
146
  ensure
@@ -179,26 +181,30 @@ module DaFunk
179
181
  File.file?(path) && ! keep
180
182
  end
181
183
 
182
- def self.update_app(application, index = 1, all = 1, force = false)
183
- if attach && application
184
+ def self.update_app(application, index = 1, all = 1, force = false, enable_txt_ui = true)
185
+ if attach(attach_options(enable_txt_ui)) && application
184
186
  try(3) do |attempt|
185
- Device::Display.clear
186
- I18n.pt(:downloading_content, :args => [I18n.t(:apps), index, all])
187
+ if enable_txt_ui
188
+ Device::Display.clear
189
+ I18n.pt(:downloading_content, :args => [I18n.t(:apps), index, all])
190
+ end
187
191
  getc(100)
188
- ret = check_download_error(application.download(force))
192
+ ret = check_download_error(application.download(force), enable_txt_ui)
189
193
  getc(1000)
190
194
  ret
191
195
  end
192
196
  end
193
197
  end
194
198
 
195
- def self.update_file(file_parameter, index = 1, all = 1, force = false)
196
- if attach && file_parameter
199
+ def self.update_file(file_parameter, index = 1, all = 1, force = false, enable_txt_ui = true)
200
+ if attach(attach_options(enable_txt_ui)) && file_parameter
197
201
  try(3) do |attempt|
198
- Device::Display.clear
199
- I18n.pt(:downloading_content, :args => [I18n.t(:files), index, all])
202
+ if enable_txt_ui
203
+ Device::Display.clear
204
+ I18n.pt(:downloading_content, :args => [I18n.t(:files), index, all])
205
+ end
200
206
  getc(100)
201
- ret = check_download_error(file_parameter.download(force))
207
+ ret = check_download_error(file_parameter.download(force), enable_txt_ui)
202
208
  file_parameter.unzip if ret
203
209
  getc(1000)
204
210
  ret
@@ -1,4 +1,4 @@
1
1
  module DaFunk
2
- VERSION="3.17.0"
2
+ VERSION="3.18.0"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: da_funk
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.17.0
4
+ version: 3.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Scalone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-10 00:00:00.000000000 Z
11
+ date: 2020-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake