sidekiq 6.5.12 → 7.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changes.md +303 -20
- data/README.md +43 -35
- data/bin/multi_queue_bench +271 -0
- data/bin/sidekiq +3 -8
- data/bin/sidekiqload +204 -118
- data/bin/sidekiqmon +3 -0
- data/lib/active_job/queue_adapters/sidekiq_adapter.rb +88 -0
- data/lib/generators/sidekiq/job_generator.rb +2 -0
- data/lib/sidekiq/api.rb +196 -138
- data/lib/sidekiq/capsule.rb +132 -0
- data/lib/sidekiq/cli.rb +60 -75
- data/lib/sidekiq/client.rb +87 -38
- data/lib/sidekiq/component.rb +4 -1
- data/lib/sidekiq/config.rb +305 -0
- data/lib/sidekiq/deploy.rb +64 -0
- data/lib/sidekiq/embedded.rb +63 -0
- data/lib/sidekiq/fetch.rb +11 -14
- data/lib/sidekiq/iterable_job.rb +55 -0
- data/lib/sidekiq/job/interrupt_handler.rb +24 -0
- data/lib/sidekiq/job/iterable/active_record_enumerator.rb +53 -0
- data/lib/sidekiq/job/iterable/csv_enumerator.rb +47 -0
- data/lib/sidekiq/job/iterable/enumerators.rb +135 -0
- data/lib/sidekiq/job/iterable.rb +294 -0
- data/lib/sidekiq/job.rb +382 -10
- data/lib/sidekiq/job_logger.rb +23 -12
- data/lib/sidekiq/job_retry.rb +42 -19
- data/lib/sidekiq/job_util.rb +53 -15
- data/lib/sidekiq/launcher.rb +71 -65
- data/lib/sidekiq/logger.rb +2 -27
- data/lib/sidekiq/manager.rb +9 -11
- data/lib/sidekiq/metrics/query.rb +9 -4
- data/lib/sidekiq/metrics/shared.rb +21 -9
- data/lib/sidekiq/metrics/tracking.rb +40 -26
- data/lib/sidekiq/middleware/chain.rb +19 -18
- data/lib/sidekiq/middleware/current_attributes.rb +70 -20
- data/lib/sidekiq/middleware/modules.rb +2 -0
- data/lib/sidekiq/monitor.rb +18 -4
- data/lib/sidekiq/paginator.rb +2 -2
- data/lib/sidekiq/processor.rb +62 -57
- data/lib/sidekiq/rails.rb +21 -10
- data/lib/sidekiq/redis_client_adapter.rb +31 -71
- data/lib/sidekiq/redis_connection.rb +44 -115
- data/lib/sidekiq/ring_buffer.rb +2 -0
- data/lib/sidekiq/scheduled.rb +22 -23
- data/lib/sidekiq/systemd.rb +2 -0
- data/lib/sidekiq/testing.rb +37 -46
- data/lib/sidekiq/transaction_aware_client.rb +11 -5
- data/lib/sidekiq/version.rb +6 -1
- data/lib/sidekiq/web/action.rb +15 -5
- data/lib/sidekiq/web/application.rb +89 -17
- data/lib/sidekiq/web/csrf_protection.rb +10 -7
- data/lib/sidekiq/web/helpers.rb +102 -42
- data/lib/sidekiq/web/router.rb +5 -2
- data/lib/sidekiq/web.rb +65 -17
- data/lib/sidekiq/worker_compatibility_alias.rb +13 -0
- data/lib/sidekiq.rb +78 -274
- data/sidekiq.gemspec +12 -10
- data/web/assets/javascripts/application.js +44 -0
- data/web/assets/javascripts/base-charts.js +106 -0
- data/web/assets/javascripts/dashboard-charts.js +192 -0
- data/web/assets/javascripts/dashboard.js +11 -233
- data/web/assets/javascripts/metrics.js +151 -115
- data/web/assets/stylesheets/application-dark.css +4 -0
- data/web/assets/stylesheets/application-rtl.css +10 -89
- data/web/assets/stylesheets/application.css +53 -298
- data/web/locales/ar.yml +70 -70
- data/web/locales/cs.yml +62 -62
- data/web/locales/da.yml +60 -53
- data/web/locales/de.yml +65 -65
- data/web/locales/el.yml +2 -7
- data/web/locales/en.yml +78 -71
- data/web/locales/es.yml +68 -68
- data/web/locales/fa.yml +65 -65
- data/web/locales/fr.yml +80 -67
- data/web/locales/gd.yml +98 -0
- data/web/locales/he.yml +65 -64
- data/web/locales/hi.yml +59 -59
- data/web/locales/it.yml +53 -53
- data/web/locales/ja.yml +67 -70
- data/web/locales/ko.yml +52 -52
- data/web/locales/lt.yml +66 -66
- data/web/locales/nb.yml +61 -61
- data/web/locales/nl.yml +52 -52
- data/web/locales/pl.yml +45 -45
- data/web/locales/pt-br.yml +78 -69
- data/web/locales/pt.yml +51 -51
- data/web/locales/ru.yml +67 -66
- data/web/locales/sv.yml +53 -53
- data/web/locales/ta.yml +60 -60
- data/web/locales/tr.yml +100 -0
- data/web/locales/uk.yml +85 -61
- data/web/locales/ur.yml +64 -64
- data/web/locales/vi.yml +67 -67
- data/web/locales/zh-cn.yml +20 -19
- data/web/locales/zh-tw.yml +10 -2
- data/web/views/_footer.erb +17 -2
- data/web/views/_job_info.erb +18 -2
- data/web/views/_metrics_period_select.erb +12 -0
- data/web/views/_paging.erb +2 -0
- data/web/views/_poll_link.erb +1 -1
- data/web/views/_summary.erb +7 -7
- data/web/views/busy.erb +46 -35
- data/web/views/dashboard.erb +28 -7
- data/web/views/filtering.erb +7 -0
- data/web/views/layout.erb +6 -6
- data/web/views/metrics.erb +48 -26
- data/web/views/metrics_for_job.erb +43 -71
- data/web/views/morgue.erb +5 -9
- data/web/views/queue.erb +10 -14
- data/web/views/queues.erb +9 -3
- data/web/views/retries.erb +5 -9
- data/web/views/scheduled.erb +12 -13
- metadata +53 -39
- data/lib/sidekiq/delay.rb +0 -43
- data/lib/sidekiq/extensions/action_mailer.rb +0 -48
- data/lib/sidekiq/extensions/active_record.rb +0 -43
- data/lib/sidekiq/extensions/class_methods.rb +0 -43
- data/lib/sidekiq/extensions/generic_proxy.rb +0 -33
- data/lib/sidekiq/metrics/deploy.rb +0 -47
- data/lib/sidekiq/worker.rb +0 -370
- data/web/assets/javascripts/graph.js +0 -16
- /data/{LICENSE → LICENSE.txt} +0 -0
@@ -5,11 +5,18 @@ require "sidekiq/client"
|
|
5
5
|
|
6
6
|
module Sidekiq
|
7
7
|
class TransactionAwareClient
|
8
|
-
def initialize(
|
9
|
-
@redis_client = Client.new(
|
8
|
+
def initialize(pool: nil, config: nil)
|
9
|
+
@redis_client = Client.new(pool: pool, config: config)
|
10
|
+
end
|
11
|
+
|
12
|
+
def batching?
|
13
|
+
Thread.current[:sidekiq_batch]
|
10
14
|
end
|
11
15
|
|
12
16
|
def push(item)
|
17
|
+
# 6160 we can't support both Sidekiq::Batch and transactions.
|
18
|
+
return @redis_client.push(item) if batching?
|
19
|
+
|
13
20
|
# pre-allocate the JID so we can return it immediately and
|
14
21
|
# save it to the database as part of the transaction.
|
15
22
|
item["jid"] ||= SecureRandom.hex(12)
|
@@ -34,11 +41,10 @@ module Sidekiq
|
|
34
41
|
begin
|
35
42
|
require "after_commit_everywhere"
|
36
43
|
rescue LoadError
|
37
|
-
|
38
|
-
raise
|
44
|
+
raise %q(You need to add `gem "after_commit_everywhere"` to your Gemfile to use Sidekiq's transactional client)
|
39
45
|
end
|
40
46
|
|
41
|
-
default_job_options["client_class"] = Sidekiq::TransactionAwareClient
|
47
|
+
Sidekiq.default_job_options["client_class"] = Sidekiq::TransactionAwareClient
|
42
48
|
Sidekiq::JobUtil::TRANSIENT_ATTRIBUTES << "client_class"
|
43
49
|
true
|
44
50
|
end
|
data/lib/sidekiq/version.rb
CHANGED
data/lib/sidekiq/web/action.rb
CHANGED
@@ -15,11 +15,16 @@ module Sidekiq
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def halt(res)
|
18
|
-
throw :halt, [res, {
|
18
|
+
throw :halt, [res, {Rack::CONTENT_TYPE => "text/plain"}, [res.to_s]]
|
19
19
|
end
|
20
20
|
|
21
21
|
def redirect(location)
|
22
|
-
throw :halt, [302, {
|
22
|
+
throw :halt, [302, {Web::LOCATION => "#{request.base_url}#{location}"}, []]
|
23
|
+
end
|
24
|
+
|
25
|
+
def reload_page
|
26
|
+
current_location = request.referer.gsub(request.base_url, "")
|
27
|
+
redirect current_location
|
23
28
|
end
|
24
29
|
|
25
30
|
def params
|
@@ -42,8 +47,13 @@ module Sidekiq
|
|
42
47
|
def erb(content, options = {})
|
43
48
|
if content.is_a? Symbol
|
44
49
|
unless respond_to?(:"_erb_#{content}")
|
45
|
-
|
46
|
-
|
50
|
+
views = options[:views] || Web.settings.views
|
51
|
+
filename = "#{views}/#{content}.erb"
|
52
|
+
src = ERB.new(File.read(filename)).src
|
53
|
+
|
54
|
+
# Need to use lineno less by 1 because erb generates a
|
55
|
+
# comment before the source code.
|
56
|
+
WebAction.class_eval <<-RUBY, filename, -1 # standard:disable Style/EvalWithLocation
|
47
57
|
def _erb_#{content}
|
48
58
|
#{src}
|
49
59
|
end
|
@@ -68,7 +78,7 @@ module Sidekiq
|
|
68
78
|
end
|
69
79
|
|
70
80
|
def json(payload)
|
71
|
-
[200, {
|
81
|
+
[200, {Rack::CONTENT_TYPE => "application/json", Rack::CACHE_CONTROL => "private, no-store"}, [Sidekiq.dump_json(payload)]]
|
72
82
|
end
|
73
83
|
|
74
84
|
def initialize(env, block)
|
@@ -5,7 +5,7 @@ module Sidekiq
|
|
5
5
|
extend WebRouter
|
6
6
|
|
7
7
|
REDIS_KEYS = %w[redis_version uptime_in_days connected_clients used_memory_human used_memory_peak_human]
|
8
|
-
|
8
|
+
CSP_HEADER_TEMPLATE = [
|
9
9
|
"default-src 'self' https: http:",
|
10
10
|
"child-src 'self'",
|
11
11
|
"connect-src 'self' https: http: wss: ws:",
|
@@ -15,11 +15,17 @@ module Sidekiq
|
|
15
15
|
"manifest-src 'self'",
|
16
16
|
"media-src 'self'",
|
17
17
|
"object-src 'none'",
|
18
|
-
"script-src 'self'
|
19
|
-
"style-src 'self' https: http: 'unsafe-inline'",
|
18
|
+
"script-src 'self' 'nonce-!placeholder!'",
|
19
|
+
"style-src 'self' https: http: 'unsafe-inline'", # TODO Nonce in 8.0
|
20
20
|
"worker-src 'self'",
|
21
21
|
"base-uri 'self'"
|
22
22
|
].join("; ").freeze
|
23
|
+
METRICS_PERIODS = {
|
24
|
+
"1h" => 60,
|
25
|
+
"2h" => 120,
|
26
|
+
"4h" => 240,
|
27
|
+
"8h" => 480
|
28
|
+
}
|
23
29
|
|
24
30
|
def initialize(klass)
|
25
31
|
@klass = klass
|
@@ -43,9 +49,9 @@ module Sidekiq
|
|
43
49
|
|
44
50
|
head "/" do
|
45
51
|
# HEAD / is the cheapest heartbeat possible,
|
46
|
-
# it hits Redis to ensure connectivity
|
47
|
-
|
48
|
-
""
|
52
|
+
# it hits Redis to ensure connectivity and returns
|
53
|
+
# the size of the default queue
|
54
|
+
Sidekiq.redis { |c| c.llen("queue:default") }.to_s
|
49
55
|
end
|
50
56
|
|
51
57
|
get "/" do
|
@@ -62,14 +68,20 @@ module Sidekiq
|
|
62
68
|
|
63
69
|
get "/metrics" do
|
64
70
|
q = Sidekiq::Metrics::Query.new
|
65
|
-
@
|
71
|
+
@period = h((params[:period] || "")[0..1])
|
72
|
+
@periods = METRICS_PERIODS
|
73
|
+
minutes = @periods.fetch(@period, @periods.values.first)
|
74
|
+
@query_result = q.top_jobs(minutes: minutes)
|
66
75
|
erb(:metrics)
|
67
76
|
end
|
68
77
|
|
69
78
|
get "/metrics/:name" do
|
70
79
|
@name = route_params[:name]
|
80
|
+
@period = h((params[:period] || "")[0..1])
|
71
81
|
q = Sidekiq::Metrics::Query.new
|
72
|
-
@
|
82
|
+
@periods = METRICS_PERIODS
|
83
|
+
minutes = @periods.fetch(@period, @periods.values.first)
|
84
|
+
@query_result = q.for_job(@name, minutes: minutes)
|
73
85
|
erb(:metrics_for_job)
|
74
86
|
end
|
75
87
|
|
@@ -82,11 +94,14 @@ module Sidekiq
|
|
82
94
|
|
83
95
|
post "/busy" do
|
84
96
|
if params["identity"]
|
85
|
-
|
86
|
-
|
87
|
-
|
97
|
+
pro = Sidekiq::ProcessSet[params["identity"]]
|
98
|
+
|
99
|
+
pro.quiet! if params["quiet"]
|
100
|
+
pro.stop! if params["stop"]
|
88
101
|
else
|
89
102
|
processes.each do |pro|
|
103
|
+
next if pro.embedded?
|
104
|
+
|
90
105
|
pro.quiet! if params["quiet"]
|
91
106
|
pro.stop! if params["stop"]
|
92
107
|
end
|
@@ -310,12 +325,64 @@ module Sidekiq
|
|
310
325
|
end
|
311
326
|
|
312
327
|
get "/stats/queues" do
|
313
|
-
json Sidekiq::Stats
|
328
|
+
json Sidekiq::Stats.new.queues
|
329
|
+
end
|
330
|
+
|
331
|
+
########
|
332
|
+
# Filtering
|
333
|
+
|
334
|
+
route :get, :post, "/filter/metrics" do
|
335
|
+
x = params[:substr]
|
336
|
+
return redirect "#{root_path}metrics" unless x && x != ""
|
337
|
+
|
338
|
+
q = Sidekiq::Metrics::Query.new
|
339
|
+
@period = h((params[:period] || "")[0..1])
|
340
|
+
@periods = METRICS_PERIODS
|
341
|
+
minutes = @periods.fetch(@period, @periods.values.first)
|
342
|
+
@query_result = q.top_jobs(minutes: minutes, class_filter: Regexp.new(Regexp.escape(x), Regexp::IGNORECASE))
|
343
|
+
|
344
|
+
erb :metrics
|
345
|
+
end
|
346
|
+
|
347
|
+
route :get, :post, "/filter/retries" do
|
348
|
+
x = params[:substr]
|
349
|
+
return redirect "#{root_path}retries" unless x && x != ""
|
350
|
+
|
351
|
+
@retries = search(Sidekiq::RetrySet.new, params[:substr])
|
352
|
+
erb :retries
|
353
|
+
end
|
354
|
+
|
355
|
+
route :get, :post, "/filter/scheduled" do
|
356
|
+
x = params[:substr]
|
357
|
+
return redirect "#{root_path}scheduled" unless x && x != ""
|
358
|
+
|
359
|
+
@scheduled = search(Sidekiq::ScheduledSet.new, params[:substr])
|
360
|
+
erb :scheduled
|
361
|
+
end
|
362
|
+
|
363
|
+
route :get, :post, "/filter/dead" do
|
364
|
+
x = params[:substr]
|
365
|
+
return redirect "#{root_path}morgue" unless x && x != ""
|
366
|
+
|
367
|
+
@dead = search(Sidekiq::DeadSet.new, params[:substr])
|
368
|
+
erb :morgue
|
369
|
+
end
|
370
|
+
|
371
|
+
post "/change_locale" do
|
372
|
+
locale = params["locale"]
|
373
|
+
|
374
|
+
match = available_locales.find { |available|
|
375
|
+
locale == available
|
376
|
+
}
|
377
|
+
|
378
|
+
session[:locale] = match if match
|
379
|
+
|
380
|
+
reload_page
|
314
381
|
end
|
315
382
|
|
316
383
|
def call(env)
|
317
384
|
action = self.class.match(env)
|
318
|
-
return [404, {
|
385
|
+
return [404, {Rack::CONTENT_TYPE => "text/plain", Web::X_CASCADE => "pass"}, ["Not Found"]] unless action
|
319
386
|
|
320
387
|
app = @klass
|
321
388
|
resp = catch(:halt) do
|
@@ -332,16 +399,21 @@ module Sidekiq
|
|
332
399
|
else
|
333
400
|
# rendered content goes here
|
334
401
|
headers = {
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
402
|
+
Rack::CONTENT_TYPE => "text/html",
|
403
|
+
Rack::CACHE_CONTROL => "private, no-store",
|
404
|
+
Web::CONTENT_LANGUAGE => action.locale,
|
405
|
+
Web::CONTENT_SECURITY_POLICY => process_csp(env, CSP_HEADER_TEMPLATE),
|
406
|
+
Web::X_CONTENT_TYPE_OPTIONS => "nosniff"
|
339
407
|
}
|
340
408
|
# we'll let Rack calculate Content-Length for us.
|
341
409
|
[200, headers, [resp]]
|
342
410
|
end
|
343
411
|
end
|
344
412
|
|
413
|
+
def process_csp(env, input)
|
414
|
+
input.gsub("!placeholder!", env[:csp_nonce])
|
415
|
+
end
|
416
|
+
|
345
417
|
def self.helpers(mod = nil, &block)
|
346
418
|
if block
|
347
419
|
WebAction.class_eval(&block)
|
@@ -27,7 +27,6 @@
|
|
27
27
|
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28
28
|
|
29
29
|
require "securerandom"
|
30
|
-
require "base64"
|
31
30
|
require "rack/request"
|
32
31
|
|
33
32
|
module Sidekiq
|
@@ -57,12 +56,12 @@ module Sidekiq
|
|
57
56
|
end
|
58
57
|
|
59
58
|
def logger(env)
|
60
|
-
@logger ||=
|
59
|
+
@logger ||= env["rack.logger"] || ::Logger.new(env["rack.errors"])
|
61
60
|
end
|
62
61
|
|
63
62
|
def deny(env)
|
64
63
|
logger(env).warn "attack prevented by #{self.class}"
|
65
|
-
[403, {
|
64
|
+
[403, {Rack::CONTENT_TYPE => "text/plain"}, ["Forbidden"]]
|
66
65
|
end
|
67
66
|
|
68
67
|
def session(env)
|
@@ -116,7 +115,7 @@ module Sidekiq
|
|
116
115
|
sess = session(env)
|
117
116
|
localtoken = sess[:csrf]
|
118
117
|
|
119
|
-
# Checks that Rack::Session::Cookie
|
118
|
+
# Checks that Rack::Session::Cookie actually contains the csrf token
|
120
119
|
return false if localtoken.nil?
|
121
120
|
|
122
121
|
# Rotate the session token after every use
|
@@ -143,7 +142,7 @@ module Sidekiq
|
|
143
142
|
one_time_pad = SecureRandom.random_bytes(token.length)
|
144
143
|
encrypted_token = xor_byte_strings(one_time_pad, token)
|
145
144
|
masked_token = one_time_pad + encrypted_token
|
146
|
-
|
145
|
+
encode_token(masked_token)
|
147
146
|
end
|
148
147
|
|
149
148
|
# Essentially the inverse of +mask_token+.
|
@@ -152,7 +151,7 @@ module Sidekiq
|
|
152
151
|
# value and decrypt it
|
153
152
|
token_length = masked_token.length / 2
|
154
153
|
one_time_pad = masked_token[0...token_length]
|
155
|
-
encrypted_token = masked_token[token_length
|
154
|
+
encrypted_token = masked_token[token_length..]
|
156
155
|
xor_byte_strings(one_time_pad, encrypted_token)
|
157
156
|
end
|
158
157
|
|
@@ -168,8 +167,12 @@ module Sidekiq
|
|
168
167
|
::Rack::Utils.secure_compare(token.to_s, decode_token(local).to_s)
|
169
168
|
end
|
170
169
|
|
170
|
+
def encode_token(token)
|
171
|
+
[token].pack("m0").tr("+/", "-_")
|
172
|
+
end
|
173
|
+
|
171
174
|
def decode_token(token)
|
172
|
-
|
175
|
+
token.tr("-_", "+/").unpack1("m0")
|
173
176
|
end
|
174
177
|
|
175
178
|
def xor_byte_strings(s1, s2)
|
data/lib/sidekiq/web/helpers.rb
CHANGED
@@ -6,8 +6,51 @@ require "yaml"
|
|
6
6
|
require "cgi"
|
7
7
|
|
8
8
|
module Sidekiq
|
9
|
-
#
|
9
|
+
# These methods are available to pages within the Web UI and UI extensions.
|
10
|
+
# They are not public APIs for applications to use.
|
10
11
|
module WebHelpers
|
12
|
+
def style_tag(location, **kwargs)
|
13
|
+
global = location.match?(/:\/\//)
|
14
|
+
location = root_path + location if !global && !location.start_with?(root_path)
|
15
|
+
attrs = {
|
16
|
+
type: "text/css",
|
17
|
+
media: "screen",
|
18
|
+
rel: "stylesheet",
|
19
|
+
nonce: csp_nonce,
|
20
|
+
href: location
|
21
|
+
}
|
22
|
+
html_tag(:link, attrs.merge(kwargs))
|
23
|
+
end
|
24
|
+
|
25
|
+
def script_tag(location, **kwargs)
|
26
|
+
global = location.match?(/:\/\//)
|
27
|
+
location = root_path + location if !global && !location.start_with?(root_path)
|
28
|
+
attrs = {
|
29
|
+
type: "text/javascript",
|
30
|
+
nonce: csp_nonce,
|
31
|
+
src: location
|
32
|
+
}
|
33
|
+
html_tag(:script, attrs.merge(kwargs)) {}
|
34
|
+
end
|
35
|
+
|
36
|
+
# NB: keys and values are not escaped; do not allow user input
|
37
|
+
# in the attributes
|
38
|
+
private def html_tag(tagname, attrs)
|
39
|
+
s = +"<#{tagname}"
|
40
|
+
attrs.each_pair do |k, v|
|
41
|
+
next unless v
|
42
|
+
s << " #{k}=\"#{v}\""
|
43
|
+
end
|
44
|
+
if block_given?
|
45
|
+
s << ">"
|
46
|
+
yield s
|
47
|
+
s << "</#{tagname}>"
|
48
|
+
else
|
49
|
+
s << " />"
|
50
|
+
end
|
51
|
+
s
|
52
|
+
end
|
53
|
+
|
11
54
|
def strings(lang)
|
12
55
|
@strings ||= {}
|
13
56
|
|
@@ -15,12 +58,16 @@ module Sidekiq
|
|
15
58
|
# so extensions can be localized
|
16
59
|
@strings[lang] ||= settings.locales.each_with_object({}) do |path, global|
|
17
60
|
find_locale_files(lang).each do |file|
|
18
|
-
strs = YAML.safe_load(File.
|
61
|
+
strs = YAML.safe_load(File.read(file))
|
19
62
|
global.merge!(strs[lang])
|
20
63
|
end
|
21
64
|
end
|
22
65
|
end
|
23
66
|
|
67
|
+
def to_json(x)
|
68
|
+
Sidekiq.dump_json(x)
|
69
|
+
end
|
70
|
+
|
24
71
|
def singularize(str, count)
|
25
72
|
if count == 1 && str.respond_to?(:singularize) # rails
|
26
73
|
str.singularize
|
@@ -42,15 +89,36 @@ module Sidekiq
|
|
42
89
|
end
|
43
90
|
|
44
91
|
def available_locales
|
45
|
-
@available_locales ||= locale_files.map { |path| File.basename(path, ".yml") }
|
92
|
+
@available_locales ||= Set.new(locale_files.map { |path| File.basename(path, ".yml") })
|
46
93
|
end
|
47
94
|
|
48
95
|
def find_locale_files(lang)
|
49
96
|
locale_files.select { |file| file =~ /\/#{lang}\.yml$/ }
|
50
97
|
end
|
51
98
|
|
52
|
-
|
53
|
-
|
99
|
+
def search(jobset, substr)
|
100
|
+
resultset = jobset.scan(substr).to_a
|
101
|
+
@current_page = 1
|
102
|
+
@count = @total_size = resultset.size
|
103
|
+
resultset
|
104
|
+
end
|
105
|
+
|
106
|
+
def filtering(which)
|
107
|
+
erb(:filtering, locals: {which: which})
|
108
|
+
end
|
109
|
+
|
110
|
+
def filter_link(jid, within = "retries")
|
111
|
+
if within.nil?
|
112
|
+
::Rack::Utils.escape_html(jid)
|
113
|
+
else
|
114
|
+
"<a href='#{root_path}filter/#{within}?substr=#{jid}'>#{::Rack::Utils.escape_html(jid)}</a>"
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
def display_tags(job, within = "retries")
|
119
|
+
job.tags.map { |tag|
|
120
|
+
"<span class='label label-info jobtag'>#{filter_link(tag, within)}</span>"
|
121
|
+
}.join(" ")
|
54
122
|
end
|
55
123
|
|
56
124
|
# This view helper provide ability display you html code in
|
@@ -96,7 +164,10 @@ module Sidekiq
|
|
96
164
|
#
|
97
165
|
# Inspiration taken from https://github.com/iain/http_accept_language/blob/master/lib/http_accept_language/parser.rb
|
98
166
|
def locale
|
99
|
-
|
167
|
+
# session[:locale] is set via the locale selector from the footer
|
168
|
+
@locale ||= if (l = session&.fetch(:locale, nil)) && available_locales.include?(l)
|
169
|
+
l
|
170
|
+
else
|
100
171
|
matched_locale = user_preferred_languages.map { |preferred|
|
101
172
|
preferred_language = preferred.split("-", 2).first
|
102
173
|
|
@@ -111,14 +182,7 @@ module Sidekiq
|
|
111
182
|
end
|
112
183
|
end
|
113
184
|
|
114
|
-
#
|
115
|
-
def display_tags(job, within = nil)
|
116
|
-
job.tags.map { |tag|
|
117
|
-
"<span class='label label-info jobtag'>#{::Rack::Utils.escape_html(tag)}</span>"
|
118
|
-
}.join(" ")
|
119
|
-
end
|
120
|
-
|
121
|
-
# mperham/sidekiq#3243
|
185
|
+
# sidekiq/sidekiq#3243
|
122
186
|
def unfiltered?
|
123
187
|
yield unless env["PATH_INFO"].start_with?("/filter/")
|
124
188
|
end
|
@@ -161,22 +225,26 @@ module Sidekiq
|
|
161
225
|
end
|
162
226
|
end
|
163
227
|
|
228
|
+
def busy_weights(capsule_weights)
|
229
|
+
# backwards compat with 7.0.0, remove in 7.1
|
230
|
+
cw = [capsule_weights].flatten
|
231
|
+
cw.map { |hash|
|
232
|
+
hash.map { |name, weight| (weight > 0) ? +name << ": " << weight.to_s : name }.join(", ")
|
233
|
+
}.join("; ")
|
234
|
+
end
|
235
|
+
|
164
236
|
def stats
|
165
237
|
@stats ||= Sidekiq::Stats.new
|
166
238
|
end
|
167
239
|
|
168
|
-
def
|
240
|
+
def redis_url
|
169
241
|
Sidekiq.redis do |conn|
|
170
|
-
conn.
|
242
|
+
conn.config.server_url
|
171
243
|
end
|
172
244
|
end
|
173
245
|
|
174
|
-
def namespace
|
175
|
-
@ns ||= Sidekiq.redis { |conn| conn.respond_to?(:namespace) ? conn.namespace : nil }
|
176
|
-
end
|
177
|
-
|
178
246
|
def redis_info
|
179
|
-
Sidekiq.redis_info
|
247
|
+
Sidekiq.default_configuration.redis_info
|
180
248
|
end
|
181
249
|
|
182
250
|
def root_path
|
@@ -241,6 +309,10 @@ module Sidekiq
|
|
241
309
|
"<input type='hidden' name='authenticity_token' value='#{env[:csrf_token]}'/>"
|
242
310
|
end
|
243
311
|
|
312
|
+
def csp_nonce
|
313
|
+
env[:csp_nonce]
|
314
|
+
end
|
315
|
+
|
244
316
|
def to_display(arg)
|
245
317
|
arg.inspect
|
246
318
|
rescue
|
@@ -274,27 +346,17 @@ module Sidekiq
|
|
274
346
|
elsif rss_kb < 10_000_000
|
275
347
|
"#{number_with_delimiter((rss_kb / 1024.0).to_i)} MB"
|
276
348
|
else
|
277
|
-
"#{number_with_delimiter((rss_kb / (1024.0 * 1024.0))
|
349
|
+
"#{number_with_delimiter((rss_kb / (1024.0 * 1024.0)), precision: 1)} GB"
|
278
350
|
end
|
279
351
|
end
|
280
352
|
|
281
|
-
def number_with_delimiter(number)
|
282
|
-
|
283
|
-
|
284
|
-
begin
|
285
|
-
Float(number)
|
286
|
-
rescue ArgumentError, TypeError
|
287
|
-
return number
|
288
|
-
end
|
289
|
-
|
290
|
-
options = {delimiter: ",", separator: "."}
|
291
|
-
parts = number.to_s.to_str.split(".")
|
292
|
-
parts[0].gsub!(/(\d)(?=(\d\d\d)+(?!\d))/, "\\1#{options[:delimiter]}")
|
293
|
-
parts.join(options[:separator])
|
353
|
+
def number_with_delimiter(number, options = {})
|
354
|
+
precision = options[:precision] || 0
|
355
|
+
%(<span data-nwp="#{precision}">#{number.round(precision)}</span>)
|
294
356
|
end
|
295
357
|
|
296
358
|
def h(text)
|
297
|
-
::Rack::Utils.escape_html(text)
|
359
|
+
::Rack::Utils.escape_html(text.to_s)
|
298
360
|
rescue ArgumentError => e
|
299
361
|
raise unless e.message.eql?("invalid byte sequence in UTF-8")
|
300
362
|
text.encode!("UTF-16", "UTF-8", invalid: :replace, replace: "").encode!("UTF-8", "UTF-16")
|
@@ -314,7 +376,7 @@ module Sidekiq
|
|
314
376
|
end
|
315
377
|
|
316
378
|
def environment_title_prefix
|
317
|
-
environment = Sidekiq[:environment] || ENV["APP_ENV"] || ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development"
|
379
|
+
environment = Sidekiq.default_configuration[:environment] || ENV["APP_ENV"] || ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development"
|
318
380
|
|
319
381
|
"[#{environment.upcase}] " unless environment == "production"
|
320
382
|
end
|
@@ -327,11 +389,9 @@ module Sidekiq
|
|
327
389
|
Time.now.utc.strftime("%H:%M:%S UTC")
|
328
390
|
end
|
329
391
|
|
330
|
-
def
|
331
|
-
|
332
|
-
|
333
|
-
"#{redis_connection}#{namespace_suffix}"
|
334
|
-
end
|
392
|
+
def pollable?
|
393
|
+
# there's no point to refreshing the metrics pages every N seconds
|
394
|
+
!(current_path == "" || current_path.index("metrics"))
|
335
395
|
end
|
336
396
|
|
337
397
|
def retry_or_delete_or_kill(job, params)
|
data/lib/sidekiq/web/router.rb
CHANGED
@@ -39,10 +39,13 @@ module Sidekiq
|
|
39
39
|
route(DELETE, path, &block)
|
40
40
|
end
|
41
41
|
|
42
|
-
def route(
|
42
|
+
def route(*methods, path, &block)
|
43
43
|
@routes ||= {GET => [], POST => [], PUT => [], PATCH => [], DELETE => [], HEAD => []}
|
44
44
|
|
45
|
-
|
45
|
+
methods.each do |method|
|
46
|
+
method = method.to_s.upcase
|
47
|
+
@routes[method] << WebRoute.new(method, path, block)
|
48
|
+
end
|
46
49
|
end
|
47
50
|
|
48
51
|
def match(env)
|