pampa_workers 1.1.19 → 1.1.23

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
  SHA1:
3
- metadata.gz: b16e97373ce0f6873ec1331e1e73cb2c4e2a98ed
4
- data.tar.gz: 2d13698cae5f30d03aa94843688334b157e8ace5
3
+ metadata.gz: 792c65381ee18835a70c8aa9ffb134da1f1cb243
4
+ data.tar.gz: 98fba23a0168ac6a4c6d0eae2223900bda942029
5
5
  SHA512:
6
- metadata.gz: 4217ed2ed13427af1f12282826ea7bfeaefc5d3cc4f03e7381020d97445cbdc828fde4c5fa74f41feae4c8f9daff8b3dd3053fac869ea66cab617810c3b38c56
7
- data.tar.gz: a0dd3edbbec3e593ad7f4570dcc053ad683c6b361262e2a1fa90ffba77dcb7b1e866f21d354305b953992a3f1ea772a92dec976aa341d79351ccc5caf65838c1
6
+ metadata.gz: e0e082359657d6c9bea3f6a5ba3969876993d9fc42019ae4e447ff02c162b352b28753809ae042877bc3181ced0c0fcf9d7a8ef1910b99630d1fb9c68890a178
7
+ data.tar.gz: 04deced7c89baa16df07d6f1f4c291a1e157cefe6288e24284e33e97d1a593635bfa68659ce44b48719c6358893c9f143bad9543b211f4306d144056cc8eefde
data/lib/client.rb CHANGED
@@ -98,12 +98,16 @@ module BlackStack
98
98
  # get signature
99
99
  # more info: https://github.com/wildbit/postmark-gem/wiki/Senders
100
100
  #
101
- # this first strategy is not scalable if we handle a large list of signatures.
102
- #sign = client_postmark.signatures.select { |sign| sign[:domain]==domain }.first
101
+ # TODO: this first strategy is not scalable if we handle a large list of signatures.
102
+ # sign = client_postmark.signatures.select { |sign| sign[:domain]==domain }.first
103
103
  #
104
104
  # this other approach is a bit more scalable, but anyway we need to call the API
105
105
  # with filering by the domain.
106
106
  #
107
+ #
108
+ # TODO: this code is a replication from the filter ?memeber/filter_update_reseller_signature
109
+ # Refer this issue for more information: https://github.com/leandrosardi/blackstack/issues/95
110
+ #
107
111
  pagesize = 30 # TODO: increase this value to 300 for optimization
108
112
  i = 0
109
113
  j = 1
@@ -189,7 +193,7 @@ module BlackStack
189
193
  def resellerSignatureName
190
194
  # configuracion de cuenta reseller
191
195
  if self.resellerSignatureEnabled?
192
- return self.from_email_for_ssm.to_s
196
+ return self.from_name_for_ssm.to_s
193
197
  else
194
198
  return NOTIFICATIONS[:from_name]
195
199
  end
data/lib/division.rb CHANGED
@@ -11,6 +11,7 @@ module BlackStack
11
11
  :db_user=>self.db_user,
12
12
  :db_password=>self.db_password,
13
13
  :db_name=>self.db_name,
14
+ :app_url=>self.app_url,
14
15
  :home=>true,
15
16
  :available=>true
16
17
  ).first
data/lib/mybotprocess.rb CHANGED
@@ -69,7 +69,7 @@ module BlackStack
69
69
  end
70
70
 
71
71
  return lnuser
72
- end # getLnUser()
72
+ end # getLnUserByUsername()
73
73
 
74
74
  # returns a hash with the parameters of a lnuser
75
75
  # raises an exception if it could not get a lnuser, or if ocurrs any other problem
@@ -377,7 +377,7 @@ puts ""
377
377
  return ret
378
378
  =end
379
379
  end # isLnUserAvailable
380
-
380
+
381
381
  end # class MyBotProcess
382
382
 
383
383
  end # module BlackStack
@@ -61,31 +61,28 @@ module BlackStack
61
61
  self.ws_url = parsed['ws_url']
62
62
  self.ws_port = parsed['ws_port']
63
63
  self.logger.logf "done (#{self.division_name})"
64
-
64
+
65
65
  #
66
- self.logger.logs "Notify division... "
67
- if self.division_name.to_s.size == 0
68
- self.logger.logf "no division assigned"
69
- else
70
- self.notify # notifico a la division
71
- self.logger.done
72
-
73
- #
74
- self.logger.logs "Spawn child process... "
75
- # lanzo el proceso
76
- if self.assigned_process.to_s.size > 0
77
- command = "ruby #{self.assigned_process} name=#{self.worker_name} division=#{self.division_name}"
78
- pid = Process.spawn(command)
79
- logger.logf "done (pid=#{pid.to_s})"
80
-
81
- logger.log("Wait to child process to finish.")
82
- Process.wait(pid)
66
+ self.logger.logs "Spawn child process... "
67
+ # lanzo el proceso
68
+ if self.assigned_process.to_s.size > 0
69
+ command = "ruby #{self.assigned_process} name=#{self.worker_name} division=#{self.division_name}"
70
+ pid = Process.spawn(command)
71
+ logger.logf "done (pid=#{pid.to_s})"
72
+
73
+ logger.log("Wait to child process to finish.")
74
+ Process.wait(pid)
75
+ else #if self.assigned_process.to_s.size == 0
76
+ self.logger.logf "no process assigned"
77
+ self.logger.logs "Notify division... "
78
+ if self.division_name.to_s.size == 0
79
+ self.logger.logf "no division assigned"
83
80
  else
84
- if self.assigned_process.to_s.size == 0
85
- self.logger.logf "no process assigned"
86
- end
87
- end # if self.assigned_process.to_s.size > 0
88
- end # if self.division_name.to_s.size == 0
81
+ self.notify # notifico a la division
82
+ self.logger.done
83
+ end # if self.division_name.to_s.size == 0
84
+ end # if self.assigned_process.to_s.size > 0
85
+
89
86
  end # if (parsed['status'] != "success") <-- #{BlackStack::Pampa::api_url}/api1.3/pampa/get.json
90
87
  end # if (parsed['status'] != "success") <-- #{BlackStack::Pampa::api_url}/api1.3/pampa/hello.json
91
88
 
@@ -7,6 +7,7 @@ module BlackStack
7
7
  attr_accessor :worker
8
8
 
9
9
  # update worker configuration in the division
10
+ # TODO: deprecated
10
11
  def updateWorker()
11
12
  # creo un remote worker que manejare en este proceso remote
12
13
  self.worker = BlackStack::RemoteWorker.new
data/lib/pampa_workers.rb CHANGED
@@ -48,14 +48,14 @@ module BlackStack
48
48
  end
49
49
 
50
50
  #
51
- def self.set_timeout(t)
51
+ def self.set_timeout(n)
52
52
  @@timeout = n
53
53
  end
54
54
 
55
55
  # Api-key of the client who will be the owner of a process.
56
56
  @@api_key = nil
57
57
 
58
- def self.api_key()
58
+ def self.api_key()
59
59
  @@api_key
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pampa_workers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.19
4
+ version: 1.1.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leandro Daniel Sardi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-10 00:00:00.000000000 Z
11
+ date: 2021-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: websocket