sidekiq 3.4.1 → 7.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Changes.md +1118 -4
- data/LICENSE.txt +9 -0
- data/README.md +55 -47
- data/bin/multi_queue_bench +271 -0
- data/bin/sidekiq +26 -3
- data/bin/sidekiqload +247 -0
- data/bin/sidekiqmon +11 -0
- data/lib/generators/sidekiq/job_generator.rb +57 -0
- data/lib/generators/sidekiq/templates/{worker.rb.erb → job.rb.erb} +2 -2
- data/lib/generators/sidekiq/templates/job_spec.rb.erb +6 -0
- data/lib/generators/sidekiq/templates/job_test.rb.erb +8 -0
- data/lib/sidekiq/api.rb +714 -312
- data/lib/sidekiq/capsule.rb +130 -0
- data/lib/sidekiq/cli.rb +275 -241
- data/lib/sidekiq/client.rb +141 -110
- data/lib/sidekiq/component.rb +68 -0
- data/lib/sidekiq/config.rb +291 -0
- data/lib/sidekiq/deploy.rb +62 -0
- data/lib/sidekiq/embedded.rb +61 -0
- data/lib/sidekiq/fetch.rb +53 -121
- data/lib/sidekiq/iterable_job.rb +53 -0
- data/lib/sidekiq/job/interrupt_handler.rb +22 -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 +231 -0
- data/lib/sidekiq/job.rb +385 -0
- data/lib/sidekiq/job_logger.rb +64 -0
- data/lib/sidekiq/job_retry.rb +305 -0
- data/lib/sidekiq/job_util.rb +107 -0
- data/lib/sidekiq/launcher.rb +241 -66
- data/lib/sidekiq/logger.rb +131 -0
- data/lib/sidekiq/manager.rb +91 -192
- data/lib/sidekiq/metrics/query.rb +156 -0
- data/lib/sidekiq/metrics/shared.rb +95 -0
- data/lib/sidekiq/metrics/tracking.rb +140 -0
- data/lib/sidekiq/middleware/chain.rb +114 -56
- data/lib/sidekiq/middleware/current_attributes.rb +111 -0
- data/lib/sidekiq/middleware/i18n.rb +8 -7
- data/lib/sidekiq/middleware/modules.rb +21 -0
- data/lib/sidekiq/monitor.rb +146 -0
- data/lib/sidekiq/paginator.rb +29 -16
- data/lib/sidekiq/processor.rb +248 -112
- data/lib/sidekiq/rails.rb +61 -27
- data/lib/sidekiq/redis_client_adapter.rb +114 -0
- data/lib/sidekiq/redis_connection.rb +68 -48
- data/lib/sidekiq/ring_buffer.rb +29 -0
- data/lib/sidekiq/scheduled.rb +173 -52
- data/lib/sidekiq/sd_notify.rb +149 -0
- data/lib/sidekiq/systemd.rb +24 -0
- data/lib/sidekiq/testing/inline.rb +7 -5
- data/lib/sidekiq/testing.rb +206 -65
- data/lib/sidekiq/transaction_aware_client.rb +51 -0
- data/lib/sidekiq/version.rb +4 -1
- data/lib/sidekiq/web/action.rb +99 -0
- data/lib/sidekiq/web/application.rb +479 -0
- data/lib/sidekiq/web/csrf_protection.rb +183 -0
- data/lib/sidekiq/web/helpers.rb +415 -0
- data/lib/sidekiq/web/router.rb +104 -0
- data/lib/sidekiq/web.rb +158 -200
- data/lib/sidekiq/worker_compatibility_alias.rb +13 -0
- data/lib/sidekiq.rb +100 -132
- data/sidekiq.gemspec +27 -23
- data/web/assets/images/apple-touch-icon.png +0 -0
- data/web/assets/images/favicon.ico +0 -0
- data/web/assets/javascripts/application.js +177 -72
- data/web/assets/javascripts/base-charts.js +106 -0
- data/web/assets/javascripts/chart.min.js +13 -0
- data/web/assets/javascripts/chartjs-plugin-annotation.min.js +7 -0
- data/web/assets/javascripts/dashboard-charts.js +192 -0
- data/web/assets/javascripts/dashboard.js +37 -286
- data/web/assets/javascripts/metrics.js +298 -0
- data/web/assets/stylesheets/application-dark.css +147 -0
- data/web/assets/stylesheets/application-rtl.css +163 -0
- data/web/assets/stylesheets/application.css +228 -247
- data/web/assets/stylesheets/bootstrap-rtl.min.css +9 -0
- data/web/assets/stylesheets/bootstrap.css +4 -8
- data/web/locales/ar.yml +87 -0
- data/web/locales/cs.yml +62 -52
- data/web/locales/da.yml +60 -53
- data/web/locales/de.yml +65 -53
- data/web/locales/el.yml +43 -24
- data/web/locales/en.yml +86 -61
- data/web/locales/es.yml +70 -53
- data/web/locales/fa.yml +80 -0
- data/web/locales/fr.yml +86 -56
- data/web/locales/gd.yml +99 -0
- data/web/locales/he.yml +80 -0
- data/web/locales/hi.yml +59 -59
- data/web/locales/it.yml +53 -53
- data/web/locales/ja.yml +78 -56
- data/web/locales/ko.yml +52 -52
- data/web/locales/lt.yml +83 -0
- data/web/locales/{no.yml → nb.yml} +62 -54
- data/web/locales/nl.yml +52 -52
- data/web/locales/pl.yml +45 -45
- data/web/locales/pt-br.yml +83 -55
- data/web/locales/pt.yml +51 -51
- data/web/locales/ru.yml +68 -60
- data/web/locales/sv.yml +53 -53
- data/web/locales/ta.yml +60 -60
- data/web/locales/tr.yml +101 -0
- data/web/locales/uk.yml +77 -0
- data/web/locales/ur.yml +80 -0
- data/web/locales/vi.yml +83 -0
- data/web/locales/zh-cn.yml +43 -16
- data/web/locales/zh-tw.yml +42 -8
- data/web/views/_footer.erb +22 -9
- data/web/views/_job_info.erb +27 -6
- data/web/views/_metrics_period_select.erb +12 -0
- data/web/views/_nav.erb +8 -22
- data/web/views/_paging.erb +3 -1
- data/web/views/_poll_link.erb +4 -0
- data/web/views/_summary.erb +7 -7
- data/web/views/busy.erb +91 -31
- data/web/views/dashboard.erb +52 -22
- data/web/views/dead.erb +5 -4
- data/web/views/filtering.erb +7 -0
- data/web/views/layout.erb +19 -7
- data/web/views/metrics.erb +91 -0
- data/web/views/metrics_for_job.erb +59 -0
- data/web/views/morgue.erb +26 -20
- data/web/views/queue.erb +36 -25
- data/web/views/queues.erb +24 -7
- data/web/views/retries.erb +29 -21
- data/web/views/retry.erb +6 -5
- data/web/views/scheduled.erb +20 -17
- data/web/views/scheduled_job_info.erb +2 -1
- metadata +101 -232
- data/.gitignore +0 -12
- data/.travis.yml +0 -16
- data/3.0-Upgrade.md +0 -70
- data/COMM-LICENSE +0 -85
- data/Contributing.md +0 -32
- data/Gemfile +0 -22
- data/LICENSE +0 -9
- data/Pro-2.0-Upgrade.md +0 -138
- data/Pro-Changes.md +0 -412
- data/Rakefile +0 -9
- data/bin/sidekiqctl +0 -93
- data/lib/generators/sidekiq/templates/worker_spec.rb.erb +0 -6
- data/lib/generators/sidekiq/templates/worker_test.rb.erb +0 -8
- data/lib/generators/sidekiq/worker_generator.rb +0 -49
- data/lib/sidekiq/actor.rb +0 -39
- data/lib/sidekiq/core_ext.rb +0 -105
- data/lib/sidekiq/exception_handler.rb +0 -30
- data/lib/sidekiq/extensions/action_mailer.rb +0 -56
- data/lib/sidekiq/extensions/active_record.rb +0 -39
- data/lib/sidekiq/extensions/class_methods.rb +0 -39
- data/lib/sidekiq/extensions/generic_proxy.rb +0 -24
- data/lib/sidekiq/logging.rb +0 -104
- data/lib/sidekiq/middleware/server/active_record.rb +0 -13
- data/lib/sidekiq/middleware/server/logging.rb +0 -35
- data/lib/sidekiq/middleware/server/retry_jobs.rb +0 -206
- data/lib/sidekiq/util.rb +0 -55
- data/lib/sidekiq/web_helpers.rb +0 -234
- data/lib/sidekiq/worker.rb +0 -89
- data/test/config.yml +0 -9
- data/test/env_based_config.yml +0 -11
- data/test/fake_env.rb +0 -0
- data/test/fixtures/en.yml +0 -2
- data/test/helper.rb +0 -39
- data/test/test_api.rb +0 -494
- data/test/test_cli.rb +0 -365
- data/test/test_client.rb +0 -269
- data/test/test_exception_handler.rb +0 -55
- data/test/test_extensions.rb +0 -120
- data/test/test_fetch.rb +0 -104
- data/test/test_logging.rb +0 -34
- data/test/test_manager.rb +0 -164
- data/test/test_middleware.rb +0 -159
- data/test/test_processor.rb +0 -166
- data/test/test_redis_connection.rb +0 -127
- data/test/test_retry.rb +0 -373
- data/test/test_scheduled.rb +0 -120
- data/test/test_scheduling.rb +0 -71
- data/test/test_sidekiq.rb +0 -69
- data/test/test_testing.rb +0 -82
- data/test/test_testing_fake.rb +0 -271
- data/test/test_testing_inline.rb +0 -93
- data/test/test_web.rb +0 -594
- data/test/test_web_helpers.rb +0 -52
- data/test/test_worker_generator.rb +0 -17
- data/web/assets/images/bootstrap/glyphicons-halflings-white.png +0 -0
- data/web/assets/images/bootstrap/glyphicons-halflings.png +0 -0
- data/web/assets/images/status/active.png +0 -0
- data/web/assets/images/status/idle.png +0 -0
- data/web/assets/javascripts/locales/README.md +0 -27
- data/web/assets/javascripts/locales/jquery.timeago.ar.js +0 -96
- data/web/assets/javascripts/locales/jquery.timeago.bg.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.bs.js +0 -49
- data/web/assets/javascripts/locales/jquery.timeago.ca.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.cs.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.cy.js +0 -20
- data/web/assets/javascripts/locales/jquery.timeago.da.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.de.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.el.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.en-short.js +0 -20
- data/web/assets/javascripts/locales/jquery.timeago.en.js +0 -20
- data/web/assets/javascripts/locales/jquery.timeago.es.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.et.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.fa.js +0 -22
- data/web/assets/javascripts/locales/jquery.timeago.fi.js +0 -28
- data/web/assets/javascripts/locales/jquery.timeago.fr-short.js +0 -16
- data/web/assets/javascripts/locales/jquery.timeago.fr.js +0 -17
- data/web/assets/javascripts/locales/jquery.timeago.he.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.hr.js +0 -49
- data/web/assets/javascripts/locales/jquery.timeago.hu.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.hy.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.id.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.it.js +0 -16
- data/web/assets/javascripts/locales/jquery.timeago.ja.js +0 -19
- data/web/assets/javascripts/locales/jquery.timeago.ko.js +0 -17
- data/web/assets/javascripts/locales/jquery.timeago.lt.js +0 -20
- data/web/assets/javascripts/locales/jquery.timeago.mk.js +0 -20
- data/web/assets/javascripts/locales/jquery.timeago.nl.js +0 -20
- data/web/assets/javascripts/locales/jquery.timeago.no.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.pl.js +0 -31
- data/web/assets/javascripts/locales/jquery.timeago.pt-br.js +0 -16
- data/web/assets/javascripts/locales/jquery.timeago.pt.js +0 -16
- data/web/assets/javascripts/locales/jquery.timeago.ro.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.rs.js +0 -49
- data/web/assets/javascripts/locales/jquery.timeago.ru.js +0 -34
- data/web/assets/javascripts/locales/jquery.timeago.sk.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.sl.js +0 -44
- data/web/assets/javascripts/locales/jquery.timeago.sv.js +0 -18
- data/web/assets/javascripts/locales/jquery.timeago.th.js +0 -20
- data/web/assets/javascripts/locales/jquery.timeago.tr.js +0 -16
- data/web/assets/javascripts/locales/jquery.timeago.uk.js +0 -34
- data/web/assets/javascripts/locales/jquery.timeago.uz.js +0 -19
- data/web/assets/javascripts/locales/jquery.timeago.zh-cn.js +0 -20
- data/web/assets/javascripts/locales/jquery.timeago.zh-tw.js +0 -20
- data/web/views/_poll.erb +0 -10
- /data/web/assets/images/{status-sd8051fd480.png → status.png} +0 -0
@@ -0,0 +1,183 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# this file originally based on authenticity_token.rb from the sinatra/rack-protection project
|
4
|
+
#
|
5
|
+
# The MIT License (MIT)
|
6
|
+
#
|
7
|
+
# Copyright (c) 2011-2017 Konstantin Haase
|
8
|
+
# Copyright (c) 2015-2017 Zachary Scott
|
9
|
+
#
|
10
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
11
|
+
# a copy of this software and associated documentation files (the
|
12
|
+
# 'Software'), to deal in the Software without restriction, including
|
13
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
14
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
15
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
16
|
+
# the following conditions:
|
17
|
+
#
|
18
|
+
# The above copyright notice and this permission notice shall be
|
19
|
+
# included in all copies or substantial portions of the Software.
|
20
|
+
#
|
21
|
+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
22
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
23
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
24
|
+
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
25
|
+
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
26
|
+
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
27
|
+
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28
|
+
|
29
|
+
require "securerandom"
|
30
|
+
require "rack/request"
|
31
|
+
|
32
|
+
module Sidekiq
|
33
|
+
class Web
|
34
|
+
class CsrfProtection
|
35
|
+
def initialize(app, options = nil)
|
36
|
+
@app = app
|
37
|
+
end
|
38
|
+
|
39
|
+
def call(env)
|
40
|
+
accept?(env) ? admit(env) : deny(env)
|
41
|
+
end
|
42
|
+
|
43
|
+
private
|
44
|
+
|
45
|
+
def admit(env)
|
46
|
+
# On each successful request, we create a fresh masked token
|
47
|
+
# which will be used in any forms rendered for this request.
|
48
|
+
s = session(env)
|
49
|
+
s[:csrf] ||= SecureRandom.base64(TOKEN_LENGTH)
|
50
|
+
env[:csrf_token] = mask_token(s[:csrf])
|
51
|
+
@app.call(env)
|
52
|
+
end
|
53
|
+
|
54
|
+
def safe?(env)
|
55
|
+
%w[GET HEAD OPTIONS TRACE].include? env["REQUEST_METHOD"]
|
56
|
+
end
|
57
|
+
|
58
|
+
def logger(env)
|
59
|
+
@logger ||= env["rack.logger"] || ::Logger.new(env["rack.errors"])
|
60
|
+
end
|
61
|
+
|
62
|
+
def deny(env)
|
63
|
+
logger(env).warn "attack prevented by #{self.class}"
|
64
|
+
[403, {Rack::CONTENT_TYPE => "text/plain"}, ["Forbidden"]]
|
65
|
+
end
|
66
|
+
|
67
|
+
def session(env)
|
68
|
+
env["rack.session"] || fail(<<~EOM)
|
69
|
+
Sidekiq::Web needs a valid Rack session for CSRF protection. If this is a Rails app,
|
70
|
+
make sure you mount Sidekiq::Web *inside* your application routes:
|
71
|
+
|
72
|
+
|
73
|
+
Rails.application.routes.draw do
|
74
|
+
mount Sidekiq::Web => "/sidekiq"
|
75
|
+
....
|
76
|
+
end
|
77
|
+
|
78
|
+
|
79
|
+
If this is a Rails app in API mode, you need to enable sessions.
|
80
|
+
|
81
|
+
https://guides.rubyonrails.org/api_app.html#using-session-middlewares
|
82
|
+
|
83
|
+
If this is a bare Rack app, use a session middleware before Sidekiq::Web:
|
84
|
+
|
85
|
+
# first, use IRB to create a shared secret key for sessions and commit it
|
86
|
+
require 'securerandom'; File.open(".session.key", "w") {|f| f.write(SecureRandom.hex(32)) }
|
87
|
+
|
88
|
+
# now use the secret with a session cookie middleware
|
89
|
+
use Rack::Session::Cookie, secret: File.read(".session.key"), same_site: true, max_age: 86400
|
90
|
+
run Sidekiq::Web
|
91
|
+
|
92
|
+
EOM
|
93
|
+
end
|
94
|
+
|
95
|
+
def accept?(env)
|
96
|
+
return true if safe?(env)
|
97
|
+
|
98
|
+
giventoken = ::Rack::Request.new(env).params["authenticity_token"]
|
99
|
+
valid_token?(env, giventoken)
|
100
|
+
end
|
101
|
+
|
102
|
+
TOKEN_LENGTH = 32
|
103
|
+
|
104
|
+
# Checks that the token given to us as a parameter matches
|
105
|
+
# the token stored in the session.
|
106
|
+
def valid_token?(env, giventoken)
|
107
|
+
return false if giventoken.nil? || giventoken.empty?
|
108
|
+
|
109
|
+
begin
|
110
|
+
token = decode_token(giventoken)
|
111
|
+
rescue ArgumentError # client input is invalid
|
112
|
+
return false
|
113
|
+
end
|
114
|
+
|
115
|
+
sess = session(env)
|
116
|
+
localtoken = sess[:csrf]
|
117
|
+
|
118
|
+
# Checks that Rack::Session::Cookie actually contains the csrf token
|
119
|
+
return false if localtoken.nil?
|
120
|
+
|
121
|
+
# Rotate the session token after every use
|
122
|
+
sess[:csrf] = SecureRandom.base64(TOKEN_LENGTH)
|
123
|
+
|
124
|
+
# See if it's actually a masked token or not. We should be able
|
125
|
+
# to handle any unmasked tokens that we've issued without error.
|
126
|
+
|
127
|
+
if unmasked_token?(token)
|
128
|
+
compare_with_real_token token, localtoken
|
129
|
+
elsif masked_token?(token)
|
130
|
+
unmasked = unmask_token(token)
|
131
|
+
compare_with_real_token unmasked, localtoken
|
132
|
+
else
|
133
|
+
false # Token is malformed
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
# Creates a masked version of the authenticity token that varies
|
138
|
+
# on each request. The masking is used to mitigate SSL attacks
|
139
|
+
# like BREACH.
|
140
|
+
def mask_token(token)
|
141
|
+
token = decode_token(token)
|
142
|
+
one_time_pad = SecureRandom.random_bytes(token.length)
|
143
|
+
encrypted_token = xor_byte_strings(one_time_pad, token)
|
144
|
+
masked_token = one_time_pad + encrypted_token
|
145
|
+
encode_token(masked_token)
|
146
|
+
end
|
147
|
+
|
148
|
+
# Essentially the inverse of +mask_token+.
|
149
|
+
def unmask_token(masked_token)
|
150
|
+
# Split the token into the one-time pad and the encrypted
|
151
|
+
# value and decrypt it
|
152
|
+
token_length = masked_token.length / 2
|
153
|
+
one_time_pad = masked_token[0...token_length]
|
154
|
+
encrypted_token = masked_token[token_length..]
|
155
|
+
xor_byte_strings(one_time_pad, encrypted_token)
|
156
|
+
end
|
157
|
+
|
158
|
+
def unmasked_token?(token)
|
159
|
+
token.length == TOKEN_LENGTH
|
160
|
+
end
|
161
|
+
|
162
|
+
def masked_token?(token)
|
163
|
+
token.length == TOKEN_LENGTH * 2
|
164
|
+
end
|
165
|
+
|
166
|
+
def compare_with_real_token(token, local)
|
167
|
+
::Rack::Utils.secure_compare(token.to_s, decode_token(local).to_s)
|
168
|
+
end
|
169
|
+
|
170
|
+
def encode_token(token)
|
171
|
+
[token].pack("m0").tr("+/", "-_")
|
172
|
+
end
|
173
|
+
|
174
|
+
def decode_token(token)
|
175
|
+
token.tr("-_", "+/").unpack1("m0")
|
176
|
+
end
|
177
|
+
|
178
|
+
def xor_byte_strings(s1, s2)
|
179
|
+
s1.bytes.zip(s2.bytes).map { |(c1, c2)| c1 ^ c2 }.pack("c*")
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
@@ -0,0 +1,415 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "uri"
|
4
|
+
require "set"
|
5
|
+
require "yaml"
|
6
|
+
require "cgi"
|
7
|
+
|
8
|
+
module Sidekiq
|
9
|
+
# These methods are available to pages within the Web UI and UI extensions.
|
10
|
+
# They are not public APIs for applications to use.
|
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
|
+
|
54
|
+
def strings(lang)
|
55
|
+
@strings ||= {}
|
56
|
+
|
57
|
+
# Allow sidekiq-web extensions to add locale paths
|
58
|
+
# so extensions can be localized
|
59
|
+
@strings[lang] ||= settings.locales.each_with_object({}) do |path, global|
|
60
|
+
find_locale_files(lang).each do |file|
|
61
|
+
strs = YAML.safe_load(File.read(file))
|
62
|
+
global.merge!(strs[lang])
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def to_json(x)
|
68
|
+
Sidekiq.dump_json(x)
|
69
|
+
end
|
70
|
+
|
71
|
+
def singularize(str, count)
|
72
|
+
if count == 1 && str.respond_to?(:singularize) # rails
|
73
|
+
str.singularize
|
74
|
+
else
|
75
|
+
str
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
def clear_caches
|
80
|
+
@strings = nil
|
81
|
+
@locale_files = nil
|
82
|
+
@available_locales = nil
|
83
|
+
end
|
84
|
+
|
85
|
+
def locale_files
|
86
|
+
@locale_files ||= settings.locales.flat_map { |path|
|
87
|
+
Dir["#{path}/*.yml"]
|
88
|
+
}
|
89
|
+
end
|
90
|
+
|
91
|
+
def available_locales
|
92
|
+
@available_locales ||= Set.new(locale_files.map { |path| File.basename(path, ".yml") })
|
93
|
+
end
|
94
|
+
|
95
|
+
def find_locale_files(lang)
|
96
|
+
locale_files.select { |file| file =~ /\/#{lang}\.yml$/ }
|
97
|
+
end
|
98
|
+
|
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(" ")
|
122
|
+
end
|
123
|
+
|
124
|
+
# This view helper provide ability display you html code in
|
125
|
+
# to head of page. Example:
|
126
|
+
#
|
127
|
+
# <% add_to_head do %>
|
128
|
+
# <link rel="stylesheet" .../>
|
129
|
+
# <meta .../>
|
130
|
+
# <% end %>
|
131
|
+
#
|
132
|
+
def add_to_head
|
133
|
+
@head_html ||= []
|
134
|
+
@head_html << yield.dup if block_given?
|
135
|
+
end
|
136
|
+
|
137
|
+
def display_custom_head
|
138
|
+
@head_html.join if defined?(@head_html)
|
139
|
+
end
|
140
|
+
|
141
|
+
def text_direction
|
142
|
+
get_locale["TextDirection"] || "ltr"
|
143
|
+
end
|
144
|
+
|
145
|
+
def rtl?
|
146
|
+
text_direction == "rtl"
|
147
|
+
end
|
148
|
+
|
149
|
+
# See https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
|
150
|
+
def user_preferred_languages
|
151
|
+
languages = env["HTTP_ACCEPT_LANGUAGE"]
|
152
|
+
languages.to_s.downcase.gsub(/\s+/, "").split(",").map { |language|
|
153
|
+
locale, quality = language.split(";q=", 2)
|
154
|
+
locale = nil if locale == "*" # Ignore wildcards
|
155
|
+
quality = quality ? quality.to_f : 1.0
|
156
|
+
[locale, quality]
|
157
|
+
}.sort { |(_, left), (_, right)|
|
158
|
+
right <=> left
|
159
|
+
}.map(&:first).compact
|
160
|
+
end
|
161
|
+
|
162
|
+
# Given an Accept-Language header like "fr-FR,fr;q=0.8,en-US;q=0.6,en;q=0.4,ru;q=0.2"
|
163
|
+
# this method will try to best match the available locales to the user's preferred languages.
|
164
|
+
#
|
165
|
+
# Inspiration taken from https://github.com/iain/http_accept_language/blob/master/lib/http_accept_language/parser.rb
|
166
|
+
def locale
|
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
|
171
|
+
matched_locale = user_preferred_languages.map { |preferred|
|
172
|
+
preferred_language = preferred.split("-", 2).first
|
173
|
+
|
174
|
+
lang_group = available_locales.select { |available|
|
175
|
+
preferred_language == available.split("-", 2).first
|
176
|
+
}
|
177
|
+
|
178
|
+
lang_group.find { |lang| lang == preferred } || lang_group.min_by(&:length)
|
179
|
+
}.compact.first
|
180
|
+
|
181
|
+
matched_locale || "en"
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
# sidekiq/sidekiq#3243
|
186
|
+
def unfiltered?
|
187
|
+
yield unless env["PATH_INFO"].start_with?("/filter/")
|
188
|
+
end
|
189
|
+
|
190
|
+
def get_locale
|
191
|
+
strings(locale)
|
192
|
+
end
|
193
|
+
|
194
|
+
def t(msg, options = {})
|
195
|
+
string = get_locale[msg] || strings("en")[msg] || msg
|
196
|
+
if options.empty?
|
197
|
+
string
|
198
|
+
else
|
199
|
+
string % options
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
203
|
+
def sort_direction_label
|
204
|
+
(params[:direction] == "asc") ? "↑" : "↓"
|
205
|
+
end
|
206
|
+
|
207
|
+
def workset
|
208
|
+
@work ||= Sidekiq::WorkSet.new
|
209
|
+
end
|
210
|
+
|
211
|
+
def processes
|
212
|
+
@processes ||= Sidekiq::ProcessSet.new
|
213
|
+
end
|
214
|
+
|
215
|
+
# Sorts processes by hostname following the natural sort order
|
216
|
+
def sorted_processes
|
217
|
+
@sorted_processes ||= begin
|
218
|
+
return processes unless processes.all? { |p| p["hostname"] }
|
219
|
+
|
220
|
+
processes.to_a.sort_by do |process|
|
221
|
+
# Kudos to `shurikk` on StackOverflow
|
222
|
+
# https://stackoverflow.com/a/15170063/575547
|
223
|
+
process["hostname"].split(/(\d+)/).map { |a| /\d+/.match?(a) ? a.to_i : a }
|
224
|
+
end
|
225
|
+
end
|
226
|
+
end
|
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
|
+
|
236
|
+
def stats
|
237
|
+
@stats ||= Sidekiq::Stats.new
|
238
|
+
end
|
239
|
+
|
240
|
+
def redis_url
|
241
|
+
Sidekiq.redis do |conn|
|
242
|
+
conn.config.server_url
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
def redis_info
|
247
|
+
Sidekiq.default_configuration.redis_info
|
248
|
+
end
|
249
|
+
|
250
|
+
def root_path
|
251
|
+
"#{env["SCRIPT_NAME"]}/"
|
252
|
+
end
|
253
|
+
|
254
|
+
def current_path
|
255
|
+
@current_path ||= request.path_info.gsub(/^\//, "")
|
256
|
+
end
|
257
|
+
|
258
|
+
def current_status
|
259
|
+
(workset.size == 0) ? "idle" : "active"
|
260
|
+
end
|
261
|
+
|
262
|
+
def relative_time(time)
|
263
|
+
stamp = time.getutc.iso8601
|
264
|
+
%(<time class="ltr" dir="ltr" title="#{stamp}" datetime="#{stamp}">#{time}</time>)
|
265
|
+
end
|
266
|
+
|
267
|
+
def job_params(job, score)
|
268
|
+
"#{score}-#{job["jid"]}"
|
269
|
+
end
|
270
|
+
|
271
|
+
def parse_params(params)
|
272
|
+
score, jid = params.split("-", 2)
|
273
|
+
[score.to_f, jid]
|
274
|
+
end
|
275
|
+
|
276
|
+
SAFE_QPARAMS = %w[page direction]
|
277
|
+
|
278
|
+
# Merge options with current params, filter safe params, and stringify to query string
|
279
|
+
def qparams(options)
|
280
|
+
stringified_options = options.transform_keys(&:to_s)
|
281
|
+
|
282
|
+
to_query_string(params.merge(stringified_options))
|
283
|
+
end
|
284
|
+
|
285
|
+
def to_query_string(params)
|
286
|
+
params.map { |key, value|
|
287
|
+
SAFE_QPARAMS.include?(key) ? "#{key}=#{CGI.escape(value.to_s)}" : next
|
288
|
+
}.compact.join("&")
|
289
|
+
end
|
290
|
+
|
291
|
+
def truncate(text, truncate_after_chars = 2000)
|
292
|
+
(truncate_after_chars && text.size > truncate_after_chars) ? "#{text[0..truncate_after_chars]}..." : text
|
293
|
+
end
|
294
|
+
|
295
|
+
def display_args(args, truncate_after_chars = 2000)
|
296
|
+
return "Invalid job payload, args is nil" if args.nil?
|
297
|
+
return "Invalid job payload, args must be an Array, not #{args.class.name}" unless args.is_a?(Array)
|
298
|
+
|
299
|
+
begin
|
300
|
+
args.map { |arg|
|
301
|
+
h(truncate(to_display(arg), truncate_after_chars))
|
302
|
+
}.join(", ")
|
303
|
+
rescue
|
304
|
+
"Illegal job arguments: #{h args.inspect}"
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
def csrf_tag
|
309
|
+
"<input type='hidden' name='authenticity_token' value='#{env[:csrf_token]}'/>"
|
310
|
+
end
|
311
|
+
|
312
|
+
def csp_nonce
|
313
|
+
env[:csp_nonce]
|
314
|
+
end
|
315
|
+
|
316
|
+
def to_display(arg)
|
317
|
+
arg.inspect
|
318
|
+
rescue
|
319
|
+
begin
|
320
|
+
arg.to_s
|
321
|
+
rescue => ex
|
322
|
+
"Cannot display argument: [#{ex.class.name}] #{ex.message}"
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
RETRY_JOB_KEYS = Set.new(%w[
|
327
|
+
queue class args retry_count retried_at failed_at
|
328
|
+
jid error_message error_class backtrace
|
329
|
+
error_backtrace enqueued_at retry wrapped
|
330
|
+
created_at tags display_class
|
331
|
+
])
|
332
|
+
|
333
|
+
def retry_extra_items(retry_job)
|
334
|
+
@retry_extra_items ||= {}.tap do |extra|
|
335
|
+
retry_job.item.each do |key, value|
|
336
|
+
extra[key] = value unless RETRY_JOB_KEYS.include?(key)
|
337
|
+
end
|
338
|
+
end
|
339
|
+
end
|
340
|
+
|
341
|
+
def format_memory(rss_kb)
|
342
|
+
return "0" if rss_kb.nil? || rss_kb == 0
|
343
|
+
|
344
|
+
if rss_kb < 100_000
|
345
|
+
"#{number_with_delimiter(rss_kb)} KB"
|
346
|
+
elsif rss_kb < 10_000_000
|
347
|
+
"#{number_with_delimiter((rss_kb / 1024.0).to_i)} MB"
|
348
|
+
else
|
349
|
+
"#{number_with_delimiter((rss_kb / (1024.0 * 1024.0)), precision: 1)} GB"
|
350
|
+
end
|
351
|
+
end
|
352
|
+
|
353
|
+
def number_with_delimiter(number, options = {})
|
354
|
+
precision = options[:precision] || 0
|
355
|
+
%(<span data-nwp="#{precision}">#{number.round(precision)}</span>)
|
356
|
+
end
|
357
|
+
|
358
|
+
def h(text)
|
359
|
+
::Rack::Utils.escape_html(text.to_s)
|
360
|
+
rescue ArgumentError => e
|
361
|
+
raise unless e.message.eql?("invalid byte sequence in UTF-8")
|
362
|
+
text.encode!("UTF-16", "UTF-8", invalid: :replace, replace: "").encode!("UTF-8", "UTF-16")
|
363
|
+
retry
|
364
|
+
end
|
365
|
+
|
366
|
+
# Any paginated list that performs an action needs to redirect
|
367
|
+
# back to the proper page after performing that action.
|
368
|
+
def redirect_with_query(url)
|
369
|
+
r = request.referer
|
370
|
+
if r && r =~ /\?/
|
371
|
+
ref = URI(r)
|
372
|
+
redirect("#{url}?#{ref.query}")
|
373
|
+
else
|
374
|
+
redirect url
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
def environment_title_prefix
|
379
|
+
environment = Sidekiq.default_configuration[:environment] || ENV["APP_ENV"] || ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development"
|
380
|
+
|
381
|
+
"[#{environment.upcase}] " unless environment == "production"
|
382
|
+
end
|
383
|
+
|
384
|
+
def product_version
|
385
|
+
"Sidekiq v#{Sidekiq::VERSION}"
|
386
|
+
end
|
387
|
+
|
388
|
+
def server_utc_time
|
389
|
+
Time.now.utc.strftime("%H:%M:%S UTC")
|
390
|
+
end
|
391
|
+
|
392
|
+
def pollable?
|
393
|
+
# there's no point to refreshing the metrics pages every N seconds
|
394
|
+
!(current_path == "" || current_path.index("metrics"))
|
395
|
+
end
|
396
|
+
|
397
|
+
def retry_or_delete_or_kill(job, params)
|
398
|
+
if params["retry"]
|
399
|
+
job.retry
|
400
|
+
elsif params["delete"]
|
401
|
+
job.delete
|
402
|
+
elsif params["kill"]
|
403
|
+
job.kill
|
404
|
+
end
|
405
|
+
end
|
406
|
+
|
407
|
+
def delete_or_add_queue(job, params)
|
408
|
+
if params["delete"]
|
409
|
+
job.delete
|
410
|
+
elsif params["add_to_queue"]
|
411
|
+
job.add_to_queue
|
412
|
+
end
|
413
|
+
end
|
414
|
+
end
|
415
|
+
end
|
@@ -0,0 +1,104 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "rack"
|
4
|
+
|
5
|
+
module Sidekiq
|
6
|
+
module WebRouter
|
7
|
+
GET = "GET"
|
8
|
+
DELETE = "DELETE"
|
9
|
+
POST = "POST"
|
10
|
+
PUT = "PUT"
|
11
|
+
PATCH = "PATCH"
|
12
|
+
HEAD = "HEAD"
|
13
|
+
|
14
|
+
ROUTE_PARAMS = "rack.route_params"
|
15
|
+
REQUEST_METHOD = "REQUEST_METHOD"
|
16
|
+
PATH_INFO = "PATH_INFO"
|
17
|
+
|
18
|
+
def head(path, &block)
|
19
|
+
route(HEAD, path, &block)
|
20
|
+
end
|
21
|
+
|
22
|
+
def get(path, &block)
|
23
|
+
route(GET, path, &block)
|
24
|
+
end
|
25
|
+
|
26
|
+
def post(path, &block)
|
27
|
+
route(POST, path, &block)
|
28
|
+
end
|
29
|
+
|
30
|
+
def put(path, &block)
|
31
|
+
route(PUT, path, &block)
|
32
|
+
end
|
33
|
+
|
34
|
+
def patch(path, &block)
|
35
|
+
route(PATCH, path, &block)
|
36
|
+
end
|
37
|
+
|
38
|
+
def delete(path, &block)
|
39
|
+
route(DELETE, path, &block)
|
40
|
+
end
|
41
|
+
|
42
|
+
def route(method, path, &block)
|
43
|
+
@routes ||= {GET => [], POST => [], PUT => [], PATCH => [], DELETE => [], HEAD => []}
|
44
|
+
|
45
|
+
@routes[method] << WebRoute.new(method, path, block)
|
46
|
+
end
|
47
|
+
|
48
|
+
def match(env)
|
49
|
+
request_method = env[REQUEST_METHOD]
|
50
|
+
path_info = ::Rack::Utils.unescape env[PATH_INFO]
|
51
|
+
|
52
|
+
# There are servers which send an empty string when requesting the root.
|
53
|
+
# These servers should be ashamed of themselves.
|
54
|
+
path_info = "/" if path_info == ""
|
55
|
+
|
56
|
+
@routes[request_method].each do |route|
|
57
|
+
params = route.match(request_method, path_info)
|
58
|
+
if params
|
59
|
+
env[ROUTE_PARAMS] = params
|
60
|
+
|
61
|
+
return WebAction.new(env, route.block)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
nil
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
class WebRoute
|
70
|
+
attr_accessor :request_method, :pattern, :block, :name
|
71
|
+
|
72
|
+
NAMED_SEGMENTS_PATTERN = /\/([^\/]*):([^.:$\/]+)/
|
73
|
+
|
74
|
+
def initialize(request_method, pattern, block)
|
75
|
+
@request_method = request_method
|
76
|
+
@pattern = pattern
|
77
|
+
@block = block
|
78
|
+
end
|
79
|
+
|
80
|
+
def matcher
|
81
|
+
@matcher ||= compile
|
82
|
+
end
|
83
|
+
|
84
|
+
def compile
|
85
|
+
if pattern.match?(NAMED_SEGMENTS_PATTERN)
|
86
|
+
p = pattern.gsub(NAMED_SEGMENTS_PATTERN, '/\1(?<\2>[^$/]+)')
|
87
|
+
|
88
|
+
Regexp.new("\\A#{p}\\Z")
|
89
|
+
else
|
90
|
+
pattern
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
def match(request_method, path)
|
95
|
+
case matcher
|
96
|
+
when String
|
97
|
+
{} if path == matcher
|
98
|
+
else
|
99
|
+
path_match = path.match(matcher)
|
100
|
+
path_match&.named_captures&.transform_keys(&:to_sym)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|