Module: Sidekiq::WebHelpers

Defined in:
lib/sidekiq/web/helpers.rb

Overview

This is not a public API

Constant Summary collapse

SAFE_QPARAMS =
%w[page direction]
RETRY_JOB_KEYS =
Set.new(%w[
  queue class args retry_count retried_at failed_at
  jid error_message error_class backtrace
  error_backtrace enqueued_at retry wrapped
  created_at tags display_class
])

Instance Method Summary collapse

Instance Method Details

#add_to_headObject

This view helper provide ability display you html code in to head of page. Example:

<% add_to_head do %>
  <link rel="stylesheet" .../>
  <meta .../>
<% end %>


64
65
66
67
# File 'lib/sidekiq/web/helpers.rb', line 64

def add_to_head
  @head_html ||= []
  @head_html << yield.dup if block_given?
end

#available_localesObject



44
45
46
# File 'lib/sidekiq/web/helpers.rb', line 44

def available_locales
  @available_locales ||= locale_files.map { |path| File.basename(path, ".yml") }.uniq
end

#busy_weights(capsule_weights) ⇒ Object



164
165
166
167
168
169
170
# File 'lib/sidekiq/web/helpers.rb', line 164

def busy_weights(capsule_weights)
  # backwards compat with 7.0.0, remove in 7.1
  cw = [capsule_weights].flatten
  cw.map { |hash|
    hash.map { |name, weight| (weight > 0) ? +name << ": " << weight.to_s : name }.join(", ")
  }.join("; ")
end

#clear_cachesObject



32
33
34
35
36
# File 'lib/sidekiq/web/helpers.rb', line 32

def clear_caches
  @strings = nil
  @locale_files = nil
  @available_locales = nil
end

#csrf_tagObject



244
245
246
# File 'lib/sidekiq/web/helpers.rb', line 244

def csrf_tag
  "<input type='hidden' name='authenticity_token' value='#{env[:csrf_token]}'/>"
end

#current_pathObject



190
191
192
# File 'lib/sidekiq/web/helpers.rb', line 190

def current_path
  @current_path ||= request.path_info.gsub(/^\//, "")
end

#current_statusObject



194
195
196
# File 'lib/sidekiq/web/helpers.rb', line 194

def current_status
  (workset.size == 0) ? "idle" : "active"
end

#delete_or_add_queue(job, params) ⇒ Object



348
349
350
351
352
353
354
# File 'lib/sidekiq/web/helpers.rb', line 348

def delete_or_add_queue(job, params)
  if params["delete"]
    job.delete
  elsif params["add_to_queue"]
    job.add_to_queue
  end
end

#display_args(args, truncate_after_chars = 2000) ⇒ Object



231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/sidekiq/web/helpers.rb', line 231

def display_args(args, truncate_after_chars = 2000)
  return "Invalid job payload, args is nil" if args.nil?
  return "Invalid job payload, args must be an Array, not #{args.class.name}" unless args.is_a?(Array)

  begin
    args.map { |arg|
      h(truncate(to_display(arg), truncate_after_chars))
    }.join(", ")
  rescue
    "Illegal job arguments: #{h args.inspect}"
  end
end

#display_custom_headObject



69
70
71
# File 'lib/sidekiq/web/helpers.rb', line 69

def display_custom_head
  @head_html.join if defined?(@head_html)
end

#display_tags(job, within = nil) ⇒ Object

within is used by Sidekiq Pro



115
116
117
118
119
# File 'lib/sidekiq/web/helpers.rb', line 115

def display_tags(job, within = nil)
  job.tags.map { |tag|
    "<span class='label label-info jobtag'>#{::Rack::Utils.escape_html(tag)}</span>"
  }.join(" ")
end

#environment_title_prefixObject



320
321
322
323
324
# File 'lib/sidekiq/web/helpers.rb', line 320

def environment_title_prefix
  environment = Sidekiq.default_configuration[:environment] || ENV["APP_ENV"] || ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development"

  "[#{environment.upcase}] " unless environment == "production"
end

#filteringObject

This is a hook for a Sidekiq Pro feature. Please don’t touch.



53
54
# File 'lib/sidekiq/web/helpers.rb', line 53

def filtering(*)
end

#find_locale_files(lang) ⇒ Object



48
49
50
# File 'lib/sidekiq/web/helpers.rb', line 48

def find_locale_files(lang)
  locale_files.select { |file| file =~ /\/#{lang}\.yml$/ }
end

#format_memory(rss_kb) ⇒ Object



273
274
275
276
277
278
279
280
281
282
283
# File 'lib/sidekiq/web/helpers.rb', line 273

def format_memory(rss_kb)
  return "0" if rss_kb.nil? || rss_kb == 0

  if rss_kb < 100_000
    "#{number_with_delimiter(rss_kb)} KB"
  elsif rss_kb < 10_000_000
    "#{number_with_delimiter((rss_kb / 1024.0).to_i)} MB"
  else
    "#{number_with_delimiter((rss_kb / (1024.0 * 1024.0)).round(1))} GB"
  end
end

#get_localeObject



126
127
128
# File 'lib/sidekiq/web/helpers.rb', line 126

def get_locale
  strings(locale)
end

#h(text) ⇒ Object



300
301
302
303
304
305
306
# File 'lib/sidekiq/web/helpers.rb', line 300

def h(text)
  ::Rack::Utils.escape_html(text)
rescue ArgumentError => e
  raise unless e.message.eql?("invalid byte sequence in UTF-8")
  text.encode!("UTF-16", "UTF-8", invalid: :replace, replace: "").encode!("UTF-8", "UTF-16")
  retry
end

#job_params(job, score) ⇒ Object



203
204
205
# File 'lib/sidekiq/web/helpers.rb', line 203

def job_params(job, score)
  "#{score}-#{job["jid"]}"
end

#localeObject

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” this method will try to best match the available locales to the user’s preferred languages.

Inspiration taken from github.com/iain/http_accept_language/blob/master/lib/http_accept_language/parser.rb



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/sidekiq/web/helpers.rb', line 98

def locale
  @locale ||= begin
    matched_locale = user_preferred_languages.map { |preferred|
      preferred_language = preferred.split("-", 2).first

      lang_group = available_locales.select { |available|
        preferred_language == available.split("-", 2).first
      }

      lang_group.find { |lang| lang == preferred } || lang_group.min_by(&:length)
    }.compact.first

    matched_locale || "en"
  end
end

#locale_filesObject



38
39
40
41
42
# File 'lib/sidekiq/web/helpers.rb', line 38

def locale_files
  @locale_files ||= settings.locales.flat_map { |path|
    Dir["#{path}/*.yml"]
  }
end

#number_with_delimiter(number) ⇒ Object



285
286
287
288
289
290
291
292
293
294
295
296
297
298
# File 'lib/sidekiq/web/helpers.rb', line 285

def number_with_delimiter(number)
  return "" if number.nil?

  begin
    Float(number)
  rescue ArgumentError, TypeError
    return number
  end

  options = {delimiter: ",", separator: "."}
  parts = number.to_s.to_str.split(".")
  parts[0].gsub!(/(\d)(?=(\d\d\d)+(?!\d))/, "\\1#{options[:delimiter]}")
  parts.join(options[:separator])
end

#parse_params(params) ⇒ Object



207
208
209
210
# File 'lib/sidekiq/web/helpers.rb', line 207

def parse_params(params)
  score, jid = params.split("-", 2)
  [score.to_f, jid]
end

#pollable?Boolean

Returns:

  • (Boolean)


334
335
336
# File 'lib/sidekiq/web/helpers.rb', line 334

def pollable?
  !(current_path == "" || current_path.start_with?("metrics"))
end

#processesObject



147
148
149
# File 'lib/sidekiq/web/helpers.rb', line 147

def processes
  @processes ||= Sidekiq::ProcessSet.new
end

#product_versionObject



326
327
328
# File 'lib/sidekiq/web/helpers.rb', line 326

def product_version
  "Sidekiq v#{Sidekiq::VERSION}"
end

#qparams(options) ⇒ Object

Merge options with current params, filter safe params, and stringify to query string



215
216
217
218
219
# File 'lib/sidekiq/web/helpers.rb', line 215

def qparams(options)
  stringified_options = options.transform_keys(&:to_s)

  to_query_string(params.merge(stringified_options))
end

#redirect_with_query(url) ⇒ Object

Any paginated list that performs an action needs to redirect back to the proper page after performing that action.



310
311
312
313
314
315
316
317
318
# File 'lib/sidekiq/web/helpers.rb', line 310

def redirect_with_query(url)
  r = request.referer
  if r && r =~ /\?/
    ref = URI(r)
    redirect("#{url}?#{ref.query}")
  else
    redirect url
  end
end

#redis_infoObject



182
183
184
# File 'lib/sidekiq/web/helpers.rb', line 182

def redis_info
  Sidekiq.default_configuration.redis_info
end

#redis_urlObject



176
177
178
179
180
# File 'lib/sidekiq/web/helpers.rb', line 176

def redis_url
  Sidekiq.redis do |conn|
    conn.config.server_url
  end
end

#relative_time(time) ⇒ Object



198
199
200
201
# File 'lib/sidekiq/web/helpers.rb', line 198

def relative_time(time)
  stamp = time.getutc.iso8601
  %(<time class="ltr" dir="ltr" title="#{stamp}" datetime="#{stamp}">#{time}</time>)
end

#retry_extra_items(retry_job) ⇒ Object



265
266
267
268
269
270
271
# File 'lib/sidekiq/web/helpers.rb', line 265

def retry_extra_items(retry_job)
  @retry_extra_items ||= {}.tap do |extra|
    retry_job.item.each do |key, value|
      extra[key] = value unless RETRY_JOB_KEYS.include?(key)
    end
  end
end

#retry_or_delete_or_kill(job, params) ⇒ Object



338
339
340
341
342
343
344
345
346
# File 'lib/sidekiq/web/helpers.rb', line 338

def retry_or_delete_or_kill(job, params)
  if params["retry"]
    job.retry
  elsif params["delete"]
    job.delete
  elsif params["kill"]
    job.kill
  end
end

#root_pathObject



186
187
188
# File 'lib/sidekiq/web/helpers.rb', line 186

def root_path
  "#{env["SCRIPT_NAME"]}/"
end

#rtl?Boolean

Returns:

  • (Boolean)


77
78
79
# File 'lib/sidekiq/web/helpers.rb', line 77

def rtl?
  text_direction == "rtl"
end

#server_utc_timeObject



330
331
332
# File 'lib/sidekiq/web/helpers.rb', line 330

def server_utc_time
  Time.now.utc.strftime("%H:%M:%S UTC")
end

#singularize(str, count) ⇒ Object



24
25
26
27
28
29
30
# File 'lib/sidekiq/web/helpers.rb', line 24

def singularize(str, count)
  if count == 1 && str.respond_to?(:singularize) # rails
    str.singularize
  else
    str
  end
end

#sort_direction_labelObject



139
140
141
# File 'lib/sidekiq/web/helpers.rb', line 139

def sort_direction_label
  (params[:direction] == "asc") ? "&uarr;" : "&darr;"
end

#sorted_processesObject

Sorts processes by hostname following the natural sort order



152
153
154
155
156
157
158
159
160
161
162
# File 'lib/sidekiq/web/helpers.rb', line 152

def sorted_processes
  @sorted_processes ||= begin
    return processes unless processes.all? { |p| p["hostname"] }

    processes.to_a.sort_by do |process|
      # Kudos to `shurikk` on StackOverflow
      # https://stackoverflow.com/a/15170063/575547
      process["hostname"].split(/(\d+)/).map { |a| /\d+/.match?(a) ? a.to_i : a }
    end
  end
end

#statsObject



172
173
174
# File 'lib/sidekiq/web/helpers.rb', line 172

def stats
  @stats ||= Sidekiq::Stats.new
end

#strings(lang) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/sidekiq/web/helpers.rb', line 11

def strings(lang)
  @strings ||= {}

  # Allow sidekiq-web extensions to add locale paths
  # so extensions can be localized
  @strings[lang] ||= settings.locales.each_with_object({}) do |path, global|
    find_locale_files(lang).each do |file|
      strs = YAML.safe_load(File.read(file))
      global.merge!(strs[lang])
    end
  end
end

#t(msg, options = {}) ⇒ Object



130
131
132
133
134
135
136
137
# File 'lib/sidekiq/web/helpers.rb', line 130

def t(msg, options = {})
  string = get_locale[msg] || strings("en")[msg] || msg
  if options.empty?
    string
  else
    string % options
  end
end

#text_directionObject



73
74
75
# File 'lib/sidekiq/web/helpers.rb', line 73

def text_direction
  get_locale["TextDirection"] || "ltr"
end

#to_display(arg) ⇒ Object



248
249
250
251
252
253
254
255
256
# File 'lib/sidekiq/web/helpers.rb', line 248

def to_display(arg)
  arg.inspect
rescue
  begin
    arg.to_s
  rescue => ex
    "Cannot display argument: [#{ex.class.name}] #{ex.message}"
  end
end

#to_query_string(params) ⇒ Object



221
222
223
224
225
# File 'lib/sidekiq/web/helpers.rb', line 221

def to_query_string(params)
  params.map { |key, value|
    SAFE_QPARAMS.include?(key) ? "#{key}=#{CGI.escape(value.to_s)}" : next
  }.compact.join("&")
end

#truncate(text, truncate_after_chars = 2000) ⇒ Object



227
228
229
# File 'lib/sidekiq/web/helpers.rb', line 227

def truncate(text, truncate_after_chars = 2000)
  (truncate_after_chars && text.size > truncate_after_chars) ? "#{text[0..truncate_after_chars]}..." : text
end

#unfiltered?Boolean

sidekiq/sidekiq#3243

Returns:

  • (Boolean)


122
123
124
# File 'lib/sidekiq/web/helpers.rb', line 122

def unfiltered?
  yield unless env["PATH_INFO"].start_with?("/filter/")
end

#user_preferred_languagesObject



82
83
84
85
86
87
88
89
90
91
92
# File 'lib/sidekiq/web/helpers.rb', line 82

def user_preferred_languages
  languages = env["HTTP_ACCEPT_LANGUAGE"]
  languages.to_s.downcase.gsub(/\s+/, "").split(",").map { |language|
    locale, quality = language.split(";q=", 2)
    locale = nil if locale == "*" # Ignore wildcards
    quality = quality ? quality.to_f : 1.0
    [locale, quality]
  }.sort { |(_, left), (_, right)|
    right <=> left
  }.map(&:first).compact
end

#worksetObject



143
144
145
# File 'lib/sidekiq/web/helpers.rb', line 143

def workset
  @work ||= Sidekiq::WorkSet.new
end