Maintenance: Rubocop enforces %r{} regular expression style
This commit is contained in:
parent
be115dbb5c
commit
041bf51b52
173 changed files with 644 additions and 641 deletions
|
@ -273,6 +273,9 @@ Style/StringConcatenation:
|
|||
Exclude:
|
||||
- "config/routes/**/*"
|
||||
|
||||
Style/RegexpLiteral:
|
||||
EnforcedStyle: percent_r
|
||||
|
||||
# RSpec tests
|
||||
Style/NumericPredicate:
|
||||
Description: >-
|
||||
|
|
|
@ -82,11 +82,11 @@ module ApplicationController::HandlesErrors
|
|||
error: e.message
|
||||
}
|
||||
|
||||
if e.message =~ /Validation failed: (.+?)(,|$)/i
|
||||
if e.message =~ %r{Validation failed: (.+?)(,|$)}i
|
||||
data[:error_human] = $1
|
||||
elsif e.message.match?(/(already exists|duplicate key|duplicate entry)/i)
|
||||
elsif e.message.match?(%r{(already exists|duplicate key|duplicate entry)}i)
|
||||
data[:error_human] = 'Object already exists!'
|
||||
elsif e.message =~ /null value in column "(.+?)" violates not-null constraint/i || e.message =~ /Field '(.+?)' doesn't have a default value/i
|
||||
elsif e.message =~ %r{null value in column "(.+?)" violates not-null constraint}i || e.message =~ %r{Field '(.+?)' doesn't have a default value}i
|
||||
data[:error_human] = "Attribute '#{$1}' required!"
|
||||
elsif e.message == 'Exceptions::Forbidden'
|
||||
data[:error] = 'Not authorized'
|
||||
|
|
|
@ -224,7 +224,7 @@ class ChannelsEmailController < ApplicationController
|
|||
|
||||
Channel.where(area: 'Email::Notification').each do |channel|
|
||||
active = false
|
||||
if adapter.match?(/^#{channel.options[:outbound][:adapter]}$/i)
|
||||
if adapter.match?(%r{^#{channel.options[:outbound][:adapter]}$}i)
|
||||
active = true
|
||||
channel.options = {
|
||||
outbound: {
|
||||
|
|
|
@ -37,7 +37,7 @@ module CreatesTicketArticles
|
|||
clean_params.delete(:sender)
|
||||
clean_params.delete(:origin_by_id)
|
||||
type = Ticket::Article::Type.lookup(id: clean_params[:type_id])
|
||||
if !type.name.match?(/^(note|web)$/)
|
||||
if !type.name.match?(%r{^(note|web)$})
|
||||
clean_params[:type_id] = Ticket::Article::Type.lookup(name: 'note').id
|
||||
end
|
||||
clean_params.delete(:type)
|
||||
|
@ -91,12 +91,12 @@ module CreatesTicketArticles
|
|||
preferences_keys.each do |key|
|
||||
next if !attachment[key]
|
||||
|
||||
store_key = key.tr('-', '_').camelize.gsub(/(.+)([A-Z])/, '\1_\2').tr('_', '-')
|
||||
store_key = key.tr('-', '_').camelize.gsub(%r{(.+)([A-Z])}, '\1_\2').tr('_', '-')
|
||||
preferences[store_key] = attachment[key]
|
||||
end
|
||||
|
||||
begin
|
||||
base64_data = attachment[:data].gsub(/[\r\n]/, '')
|
||||
base64_data = attachment[:data].gsub(%r{[\r\n]}, '')
|
||||
attachment_data = Base64.strict_decode64(base64_data)
|
||||
rescue ArgumentError
|
||||
raise Exceptions::UnprocessableEntity, "Invalid base64 for attachment with index '#{index}'"
|
||||
|
|
|
@ -124,7 +124,7 @@ curl http://localhost/api/v1/getting_started -v -u #{login}:#{password}
|
|||
end
|
||||
|
||||
# validate image
|
||||
if params[:logo] && params[:logo] =~ /^data:image/i
|
||||
if params[:logo] && params[:logo] =~ %r{^data:image}i
|
||||
file = StaticAssets.data_url_attributes(params[:logo])
|
||||
if !file[:content] || !file[:mime_type]
|
||||
messages[:logo] = 'Unable to process image upload.'
|
||||
|
@ -150,7 +150,7 @@ curl http://localhost/api/v1/getting_started -v -u #{login}:#{password}
|
|||
end
|
||||
|
||||
# save image
|
||||
if params[:logo] && params[:logo] =~ /^data:image/i
|
||||
if params[:logo] && params[:logo] =~ %r{^data:image}i
|
||||
|
||||
# data:image/png;base64
|
||||
file = StaticAssets.data_url_attributes(params[:logo])
|
||||
|
@ -159,7 +159,7 @@ curl http://localhost/api/v1/getting_started -v -u #{login}:#{password}
|
|||
StaticAssets.store_raw(file[:content], file[:mime_type])
|
||||
end
|
||||
|
||||
if params[:logo_resize] && params[:logo_resize] =~ /^data:image/i
|
||||
if params[:logo_resize] && params[:logo_resize] =~ %r{^data:image}i
|
||||
|
||||
# data:image/png;base64
|
||||
file = StaticAssets.data_url_attributes(params[:logo_resize])
|
||||
|
|
|
@ -23,10 +23,10 @@ class ImportOtrsController < ApplicationController
|
|||
}
|
||||
|
||||
response = UserAgent.request(params[:url])
|
||||
if !response.success? && response.code.to_s !~ /^40.$/
|
||||
if !response.success? && response.code.to_s !~ %r{^40.$}
|
||||
message_human = ''
|
||||
translation_map.each do |key, message|
|
||||
if response.error.to_s.match?(/#{Regexp.escape(key)}/i)
|
||||
if response.error.to_s.match?(%r{#{Regexp.escape(key)}}i)
|
||||
message_human = message
|
||||
end
|
||||
end
|
||||
|
@ -86,7 +86,7 @@ class ImportOtrsController < ApplicationController
|
|||
message_human: migrator_response['Error']
|
||||
}
|
||||
end
|
||||
elsif response.body.match?(/(otrs\sag|otrs\.com|otrs\.org)/i)
|
||||
elsif response.body.match?(%r{(otrs\sag|otrs\.com|otrs\.org)}i)
|
||||
result = {
|
||||
result: 'invalid',
|
||||
message_human: 'Host found, but no OTRS migrator is installed!'
|
||||
|
|
|
@ -27,7 +27,7 @@ class ImportZendeskController < ApplicationController
|
|||
if !response.success?
|
||||
message_human = ''
|
||||
translation_map.each do |key, message|
|
||||
if response.error.to_s.match?(/#{Regexp.escape(key)}/i)
|
||||
if response.error.to_s.match?(%r{#{Regexp.escape(key)}}i)
|
||||
message_human = message
|
||||
end
|
||||
end
|
||||
|
@ -40,7 +40,7 @@ class ImportZendeskController < ApplicationController
|
|||
end
|
||||
|
||||
# since 2016-10-15 a redirect to a marketing page has been implemented
|
||||
if !response.body.match?(/#{params[:url]}/)
|
||||
if !response.body.match?(%r{#{params[:url]}})
|
||||
render json: {
|
||||
result: 'invalid',
|
||||
message_human: 'Hostname not found!',
|
||||
|
|
|
@ -61,7 +61,7 @@ UserAgent: #{request.env['HTTP_USER_AGENT'] || '-'}
|
|||
internal: false,
|
||||
)
|
||||
end
|
||||
if (!auto_close && params[:state].match(/#{state_recovery_match}/i)) || !params[:state].match(/#{state_recovery_match}/i)
|
||||
if (!auto_close && params[:state].match(%r{#{state_recovery_match}}i)) || !params[:state].match(%r{#{state_recovery_match}}i)
|
||||
render json: {
|
||||
result: 'ticket already open, added note',
|
||||
ticket_ids: ticket_ids_found,
|
||||
|
@ -71,7 +71,7 @@ UserAgent: #{request.env['HTTP_USER_AGENT'] || '-'}
|
|||
end
|
||||
|
||||
# check if service is recovered
|
||||
if auto_close && params[:state].present? && params[:state].match(/#{state_recovery_match}/i)
|
||||
if auto_close && params[:state].present? && params[:state].match(%r{#{state_recovery_match}}i)
|
||||
if ticket_ids_found.blank?
|
||||
render json: {
|
||||
result: 'no open tickets found, ignore action',
|
||||
|
|
|
@ -42,7 +42,7 @@ class Integration::SMIMEController < ApplicationController
|
|||
string = params[:file].read.force_encoding('utf-8')
|
||||
end
|
||||
|
||||
items = string.scan(/.+?-+END(?: TRUSTED)? CERTIFICATE-+/mi).each_with_object([]) do |cert, result|
|
||||
items = string.scan(%r{.+?-+END(?: TRUSTED)? CERTIFICATE-+}mi).each_with_object([]) do |cert, result|
|
||||
result << SMIMECertificate.create!(public_key: cert)
|
||||
end
|
||||
|
||||
|
|
|
@ -308,7 +308,7 @@ curl http://localhost/api/v1/monitoring/amount_check?token=XXX&periode=1h
|
|||
raise Exceptions::UnprocessableEntity, 'periode is missing!' if params[:periode].blank?
|
||||
|
||||
scale = params[:periode][-1, 1]
|
||||
raise Exceptions::UnprocessableEntity, 'periode need to have s, m, h or d as last!' if !scale.match?(/^(s|m|h|d)$/)
|
||||
raise Exceptions::UnprocessableEntity, 'periode need to have s, m, h or d as last!' if !scale.match?(%r{^(s|m|h|d)$})
|
||||
|
||||
periode = params[:periode][0, params[:periode].length - 1]
|
||||
raise Exceptions::UnprocessableEntity, 'periode need to be an integer!' if periode.to_i.zero?
|
||||
|
|
|
@ -76,7 +76,7 @@ class ObjectManagerAttributesController < ApplicationController
|
|||
@permitted_params ||= begin
|
||||
permitted = params.permit!.to_h
|
||||
|
||||
if permitted[:data_type].match?(/^(boolean)$/) && permitted[:data_option][:options]
|
||||
if permitted[:data_type].match?(%r{^(boolean)$}) && permitted[:data_option][:options]
|
||||
# rubocop:disable Lint/BooleanSymbol
|
||||
if permitted[:data_option][:options][:false]
|
||||
permitted[:data_option][:options][false] = permitted[:data_option][:options].delete(:false)
|
||||
|
@ -98,7 +98,7 @@ class ObjectManagerAttributesController < ApplicationController
|
|||
if permitted[:data_option]
|
||||
|
||||
if !permitted[:data_option].key?(:default)
|
||||
permitted[:data_option][:default] = if permitted[:data_type].match?(/^(input|select|tree_select)$/)
|
||||
permitted[:data_option][:default] = if permitted[:data_type].match?(%r{^(input|select|tree_select)$})
|
||||
''
|
||||
end
|
||||
end
|
||||
|
|
|
@ -43,7 +43,7 @@ class SettingsController < ApplicationController
|
|||
end
|
||||
|
||||
# validate image
|
||||
if !clean_params[:logo].match?(/^data:image/i)
|
||||
if !clean_params[:logo].match?(%r{^data:image}i)
|
||||
render json: {
|
||||
result: 'invalid',
|
||||
message: 'Invalid payload, need data:image in logo param',
|
||||
|
@ -66,7 +66,7 @@ class SettingsController < ApplicationController
|
|||
|
||||
# store resized image 1:1
|
||||
setting = Setting.lookup(name: 'product_logo')
|
||||
if params[:logo_resize] && params[:logo_resize] =~ /^data:image/i
|
||||
if params[:logo_resize] && params[:logo_resize] =~ %r{^data:image}i
|
||||
|
||||
# data:image/png;base64
|
||||
file = StaticAssets.data_url_attributes(params[:logo_resize])
|
||||
|
|
|
@ -96,7 +96,7 @@ class TicketsController < ApplicationController
|
|||
end
|
||||
|
||||
# try to create customer if needed
|
||||
if clean_params[:customer_id].present? && clean_params[:customer_id] =~ /^guess:(.+?)$/
|
||||
if clean_params[:customer_id].present? && clean_params[:customer_id] =~ %r{^guess:(.+?)$}
|
||||
email_address = $1
|
||||
email_address_validation = EmailAddressValidation.new(email_address)
|
||||
if !email_address_validation.valid_format?
|
||||
|
|
|
@ -27,7 +27,7 @@ module KnowledgeBaseRichTextHelper
|
|||
end
|
||||
|
||||
def prepare_rich_text_videos(input)
|
||||
input.gsub(/\((\s*)widget:(\s*)video\W([\s\S])+?\)/) do |match|
|
||||
input.gsub(%r{\((\s*)widget:(\s*)video\W([\s\S])+?\)}) do |match|
|
||||
settings = match
|
||||
.slice(1...-1)
|
||||
.split(',')
|
||||
|
|
|
@ -15,7 +15,7 @@ class CommunicateFacebookJob < ApplicationJob
|
|||
log_error(article, "Can't find ticket.preferences for Ticket.find(#{article.ticket_id})") if !ticket.preferences
|
||||
log_error(article, "Can't find ticket.preferences['channel_id'] for Ticket.find(#{article.ticket_id})") if !ticket.preferences['channel_id']
|
||||
channel = Channel.lookup(id: ticket.preferences['channel_id'])
|
||||
log_error(article, "Channel.find(#{channel.id}) isn't a twitter channel!") if !channel.options[:adapter].match?(/\Afacebook/i)
|
||||
log_error(article, "Channel.find(#{channel.id}) isn't a twitter channel!") if !channel.options[:adapter].match?(%r{\Afacebook}i)
|
||||
|
||||
# check source object id
|
||||
if !ticket.preferences['channel_fb_object_id']
|
||||
|
|
|
@ -31,7 +31,7 @@ class CommunicateTelegramJob < ApplicationJob
|
|||
result = api.sendMessage(chat_id, article.body)
|
||||
me = api.getMe()
|
||||
article.attachments.each do |file|
|
||||
parts = file.filename.split(/^(.*)(\..+?)$/)
|
||||
parts = file.filename.split(%r{^(.*)(\..+?)$})
|
||||
t = Tempfile.new([parts[1], parts[2]])
|
||||
t.binmode
|
||||
t.write(file.content)
|
||||
|
|
|
@ -30,7 +30,7 @@ class CommunicateTwitterJob < ApplicationJob
|
|||
end
|
||||
|
||||
log_error(article, "No such channel id #{ticket.preferences['channel_id']}") if !channel
|
||||
log_error(article, "Channel.find(#{channel.id}) isn't a twitter channel!") if !channel.options[:adapter].try(:match?, /\Atwitter/i)
|
||||
log_error(article, "Channel.find(#{channel.id}) isn't a twitter channel!") if !channel.options[:adapter].try(:match?, %r{\Atwitter}i)
|
||||
|
||||
begin
|
||||
tweet = channel.deliver(
|
||||
|
|
|
@ -81,12 +81,12 @@ get assets and record_ids of selector
|
|||
attribute_ref_class = ::User
|
||||
item_ids = []
|
||||
Array(content['recipient']).each do |identifier|
|
||||
next if identifier !~ /\Auserid_(\d+)\z/
|
||||
next if identifier !~ %r{\Auserid_(\d+)\z}
|
||||
|
||||
item_ids.push($1)
|
||||
end
|
||||
else
|
||||
reflection = attribute[1].sub(/_id$/, '')
|
||||
reflection = attribute[1].sub(%r{_id$}, '')
|
||||
next if !models[attribute_class]
|
||||
next if !models[attribute_class][:reflections]
|
||||
next if !models[attribute_class][:reflections][reflection]
|
||||
|
|
|
@ -110,10 +110,10 @@ add avatar by url
|
|||
content = data[:url].read
|
||||
filename = data[:url].path
|
||||
mime_type = 'image'
|
||||
if filename.match?(/\.png/i)
|
||||
if filename.match?(%r{\.png}i)
|
||||
mime_type = 'image/png'
|
||||
end
|
||||
if filename.match?(/\.(jpg|jpeg)/i)
|
||||
if filename.match?(%r{\.(jpg|jpeg)}i)
|
||||
mime_type = 'image/jpeg'
|
||||
end
|
||||
data[:resize] ||= {}
|
||||
|
@ -132,7 +132,7 @@ add avatar by url
|
|||
# twitter workaround to get bigger avatar images
|
||||
# see also https://dev.twitter.com/overview/general/user-profile-images-and-banners
|
||||
if url.match?(%r{//pbs.twimg.com/}i)
|
||||
url.sub!(/normal\.(png|jpg|gif)$/, 'bigger.\1')
|
||||
url.sub!(%r{normal\.(png|jpg|gif)$}, 'bigger.\1')
|
||||
end
|
||||
|
||||
# fetch image
|
||||
|
@ -151,10 +151,10 @@ add avatar by url
|
|||
end
|
||||
logger.info "Fetchd image '#{url}', http code: #{response.code}"
|
||||
mime_type = 'image'
|
||||
if url.match?(/\.png/i)
|
||||
if url.match?(%r{\.png}i)
|
||||
mime_type = 'image/png'
|
||||
end
|
||||
if url.match?(/\.(jpg|jpeg)/i)
|
||||
if url.match?(%r{\.(jpg|jpeg)}i)
|
||||
mime_type = 'image/jpeg'
|
||||
end
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ returns calendar object
|
|||
def self.init_setup(ip = nil)
|
||||
|
||||
# ignore client ip if not public ip
|
||||
if ip && ip =~ /^(::1|127\.|10\.|172\.1[6-9]\.|172\.2[0-9]\.|172\.3[0-1]\.|192\.168\.)/
|
||||
if ip && ip =~ %r{^(::1|127\.|10\.|172\.1[6-9]\.|172\.2[0-9]\.|172\.3[0-1]\.|192\.168\.)}
|
||||
ip = nil
|
||||
end
|
||||
|
||||
|
@ -214,7 +214,7 @@ returns
|
|||
end
|
||||
|
||||
def self.fetch_parse(location)
|
||||
if location.match?(/^http/i)
|
||||
if location.match?(%r{^http}i)
|
||||
result = UserAgent.get(location)
|
||||
if !result.success?
|
||||
raise result.error
|
||||
|
@ -262,7 +262,7 @@ returns
|
|||
comment = comment.to_utf8(fallback: :read_as_sanitized_binary)
|
||||
|
||||
# ignore daylight saving time entries
|
||||
return if comment.match?(/(daylight saving|sommerzeit|summertime)/i)
|
||||
return if comment.match?(%r{(daylight saving|sommerzeit|summertime)}i)
|
||||
|
||||
[day, comment]
|
||||
end
|
||||
|
|
|
@ -226,7 +226,7 @@ example
|
|||
headers = self.class.extract_rfc822_headers(message_meta)
|
||||
subject = headers['Subject']
|
||||
next if !subject
|
||||
next if !subject.match?(/#{verify_string}/)
|
||||
next if !subject.match?(%r{#{verify_string}})
|
||||
|
||||
Rails.logger.info " - verify email #{verify_string} found"
|
||||
timeout(600) do
|
||||
|
@ -406,7 +406,7 @@ returns
|
|||
array = string
|
||||
.gsub("\r\n\t", ' ') # Some servers (e.g. microsoft365) may put attribute value on a separate line and tab it
|
||||
.lines(chomp: true)
|
||||
.map { |line| line.split(/:\s*/, 2).map(&:strip) }
|
||||
.map { |line| line.split(%r{:\s*}, 2).map(&:strip) }
|
||||
|
||||
array.each { |elem| elem.append(nil) if elem.one? }
|
||||
|
||||
|
|
|
@ -91,7 +91,7 @@ returns
|
|||
next if !mail
|
||||
|
||||
# check how many content messages we have, for notice used
|
||||
if !mail.match?(/(X-Zammad-Ignore: true|X-Zammad-Verify: true)/)
|
||||
if !mail.match?(%r{(X-Zammad-Ignore: true|X-Zammad-Verify: true)})
|
||||
content_messages += 1
|
||||
break if content_max_check < content_messages
|
||||
end
|
||||
|
@ -117,7 +117,7 @@ returns
|
|||
next if !mail
|
||||
|
||||
# check if verify message exists
|
||||
next if !mail.match?(/#{verify_string}/)
|
||||
next if !mail.match?(%r{#{verify_string}})
|
||||
|
||||
Rails.logger.info " - verify email #{verify_string} found"
|
||||
m.delete
|
||||
|
@ -149,7 +149,7 @@ returns
|
|||
next if !mail
|
||||
|
||||
# ignore verify messages
|
||||
if mail.match?(/(X-Zammad-Ignore: true|X-Zammad-Verify: true)/) && mail =~ /X-Zammad-Verify-Time:\s(.+?)\s/
|
||||
if mail.match?(%r{(X-Zammad-Ignore: true|X-Zammad-Verify: true)}) && mail =~ %r{X-Zammad-Verify-Time:\s(.+?)\s}
|
||||
begin
|
||||
verify_time = Time.zone.parse($1)
|
||||
if verify_time > Time.zone.now - 30.minutes
|
||||
|
|
|
@ -36,7 +36,7 @@ class Channel::Driver::Smtp
|
|||
if !options.key?(:domain)
|
||||
# set fqdn, if local fqdn - use domain of sender
|
||||
fqdn = Setting.get('fqdn')
|
||||
if fqdn =~ /(localhost|\.local^|\.loc^)/i && (attr['from'] || attr[:from])
|
||||
if fqdn =~ %r{(localhost|\.local^|\.loc^)}i && (attr['from'] || attr[:from])
|
||||
domain = Mail::Address.new(attr['from'] || attr[:from]).domain
|
||||
if domain
|
||||
fqdn = domain
|
||||
|
|
|
@ -157,7 +157,7 @@ returns
|
|||
=end
|
||||
|
||||
def self.recipient_line(realname, email)
|
||||
return "#{realname} <#{email}>" if realname.match?(/^[A-z]+$/i)
|
||||
return "#{realname} <#{email}>" if realname.match?(%r{^[A-z]+$}i)
|
||||
|
||||
"\"#{realname.gsub('"', '\"')}\" <#{email}>"
|
||||
end
|
||||
|
@ -175,7 +175,7 @@ Check if string is a complete html document. If not, add head and css styles.
|
|||
# apply mail client fixes
|
||||
html = Channel::EmailBuild.html_mail_client_fixes(html)
|
||||
|
||||
return html if html.match?(/<html>/i)
|
||||
return html if html.match?(%r{<html>}i)
|
||||
|
||||
html_email_body = File.read(Rails.root.join('app/views/mailer/application_wrapper.html.erb').to_s)
|
||||
|
||||
|
@ -198,7 +198,7 @@ Add/change markup to display html in any mail client nice.
|
|||
|
||||
# https://github.com/martini/zammad/issues/165
|
||||
new_html = html.gsub('<blockquote type="cite">', '<blockquote type="cite" style="border-left: 2px solid blue; margin: 0 0 16px; padding: 8px 12px 8px 12px;">')
|
||||
new_html.gsub!(/<p>/mxi, '<p style="margin: 0;">')
|
||||
new_html.gsub!(%r{<p>}mxi, '<p style="margin: 0;">')
|
||||
new_html.gsub!(%r{</?hr>}mxi, '<hr style="margin-top: 6px; margin-bottom: 6px; border: 0; border-top: 1px solid #dfdfdf;">')
|
||||
new_html
|
||||
end
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
class Channel::EmailParser
|
||||
PROZESS_TIME_MAX = 180
|
||||
EMAIL_REGEX = /.+@.+/.freeze
|
||||
EMAIL_REGEX = %r{.+@.+}.freeze
|
||||
RECIPIENT_FIELDS = %w[to cc delivered-to x-original-to envelope-to].freeze
|
||||
SENDER_FIELDS = %w[from reply-to return-path sender].freeze
|
||||
EXCESSIVE_LINKS_MSG = 'This message cannot be displayed because it contains over 5,000 links. Download the raw message below and open it via an Email client if you still wish to view it.'.freeze
|
||||
|
@ -351,7 +351,7 @@ returns
|
|||
# skip check attributes if it is tags
|
||||
return true if header_name == 'x-zammad-ticket-tags'
|
||||
|
||||
if header_name =~ /^x-zammad-(.+?)-(followup-|)(.*)$/i
|
||||
if header_name =~ %r{^x-zammad-(.+?)-(followup-|)(.*)$}i
|
||||
class_name = $1
|
||||
attribute = $3
|
||||
end
|
||||
|
@ -401,7 +401,7 @@ returns
|
|||
data[:from_local] = mail_address.local
|
||||
data[:from_domain] = mail_address.domain
|
||||
data[:from_display_name] = mail_address.display_name || mail_address.comments&.first
|
||||
elsif from =~ /^(.+?)<((.+?)@(.+?))>/
|
||||
elsif from =~ %r{^(.+?)<((.+?)@(.+?))>}
|
||||
data[:from_email] = $2
|
||||
data[:from_local] = $3
|
||||
data[:from_domain] = $4
|
||||
|
@ -419,7 +419,7 @@ returns
|
|||
.to_s
|
||||
.delete('"')
|
||||
.strip
|
||||
.gsub(/(^'|'$)/, '')
|
||||
.gsub(%r{(^'|'$)}, '')
|
||||
|
||||
data
|
||||
end
|
||||
|
@ -539,7 +539,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
part.body = force_japanese_encoding part.body.encoded.unpack1('M')
|
||||
end
|
||||
|
||||
ISO2022JP_REGEXP = /=\?ISO-2022-JP\?B\?(.+?)\?=/.freeze
|
||||
ISO2022JP_REGEXP = %r{=\?ISO-2022-JP\?B\?(.+?)\?=}.freeze
|
||||
|
||||
# https://github.com/zammad/zammad/issues/3115
|
||||
def header_field_unpack_japanese(field)
|
||||
|
@ -630,7 +630,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
return body_text if !options[:strict_html]
|
||||
|
||||
# Issue #2390 - emails with >5k HTML links should be rejected
|
||||
return EXCESSIVE_LINKS_MSG if body_text.scan(/<a[[:space:]]/i).count >= 5_000
|
||||
return EXCESSIVE_LINKS_MSG if body_text.scan(%r{<a[[:space:]]}i).count >= 5_000
|
||||
|
||||
body_text.html2html_strict
|
||||
end
|
||||
|
@ -717,7 +717,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
rescue
|
||||
begin
|
||||
case file.header[:content_disposition].to_s
|
||||
when /(filename|name)(\*{0,1})="(.+?)"/i, /(filename|name)(\*{0,1})='(.+?)'/i, /(filename|name)(\*{0,1})=(.+?);/i
|
||||
when %r{(filename|name)(\*{0,1})="(.+?)"}i, %r{(filename|name)(\*{0,1})='(.+?)'}i, %r{(filename|name)(\*{0,1})=(.+?);}i
|
||||
filename = $3
|
||||
end
|
||||
rescue
|
||||
|
@ -727,7 +727,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
|
||||
begin
|
||||
case file.header[:content_disposition].to_s
|
||||
when /(filename|name)(\*{0,1})="(.+?)"/i, /(filename|name)(\*{0,1})='(.+?)'/i, /(filename|name)(\*{0,1})=(.+?);/i
|
||||
when %r{(filename|name)(\*{0,1})="(.+?)"}i, %r{(filename|name)(\*{0,1})='(.+?)'}i, %r{(filename|name)(\*{0,1})=(.+?);}i
|
||||
filename = $3
|
||||
end
|
||||
rescue
|
||||
|
@ -737,7 +737,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
# as fallback, use raw values
|
||||
if filename.blank?
|
||||
case headers_store['Content-Disposition'].to_s
|
||||
when /(filename|name)(\*{0,1})="(.+?)"/i, /(filename|name)(\*{0,1})='(.+?)'/i, /(filename|name)(\*{0,1})=(.+?);/i
|
||||
when %r{(filename|name)(\*{0,1})="(.+?)"}i, %r{(filename|name)(\*{0,1})='(.+?)'}i, %r{(filename|name)(\*{0,1})=(.+?);}i
|
||||
filename = $3
|
||||
end
|
||||
end
|
||||
|
@ -767,7 +767,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
# e. g. Content-Type: video/quicktime; name="Video.MOV";
|
||||
if filename.blank?
|
||||
['(filename|name)(\*{0,1})="(.+?)"(;|$)', '(filename|name)(\*{0,1})=\'(.+?)\'(;|$)', '(filename|name)(\*{0,1})=(.+?)(;|$)'].each do |regexp|
|
||||
if headers_store['Content-Type'] =~ /#{regexp}/i
|
||||
if headers_store['Content-Type'] =~ %r{#{regexp}}i
|
||||
filename = $3
|
||||
break
|
||||
end
|
||||
|
@ -785,7 +785,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
end
|
||||
|
||||
# generate file name based on content-id with file extention
|
||||
if filename.blank? && headers_store['Content-ID'].present? && headers_store['Content-ID'] =~ /(.+?\..{2,6})@.+?/i
|
||||
if filename.blank? && headers_store['Content-ID'].present? && headers_store['Content-ID'] =~ %r{(.+?\..{2,6})@.+?}i
|
||||
filename = $1
|
||||
end
|
||||
|
||||
|
@ -802,7 +802,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
'image/gif': %w[gif image],
|
||||
}
|
||||
map.each do |type, ext|
|
||||
next if !content_type.match?(/^#{Regexp.quote(type)}/i)
|
||||
next if !content_type.match?(%r{^#{Regexp.quote(type)}}i)
|
||||
|
||||
filename = if headers_store['Content-Description'].present?
|
||||
"#{headers_store['Content-Description']}.#{ext[0]}".to_s.force_encoding('utf-8')
|
||||
|
@ -814,7 +814,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
end
|
||||
|
||||
# generate file name based on content-id without file extention
|
||||
if filename.blank? && headers_store['Content-ID'].present? && headers_store['Content-ID'] =~ /(.+?)@.+?/i
|
||||
if filename.blank? && headers_store['Content-ID'].present? && headers_store['Content-ID'] =~ %r{(.+?)@.+?}i
|
||||
filename = $1
|
||||
end
|
||||
|
||||
|
@ -826,7 +826,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
# create uniq filename
|
||||
local_filename = ''
|
||||
local_extention = ''
|
||||
if filename =~ /^(.*?)\.(.+?)$/
|
||||
if filename =~ %r{^(.*?)\.(.+?)$}
|
||||
local_filename = $1
|
||||
local_extention = $2
|
||||
end
|
||||
|
@ -925,7 +925,7 @@ process unprocessable_mails (tmp/unprocessable_mail/*.eml) again
|
|||
|
||||
reply.merge(
|
||||
to: parsed_incoming_mail[:from_email],
|
||||
body: reply[:body].gsub(/\n/, "\r\n"),
|
||||
body: reply[:body].gsub(%r{\n}, "\r\n"),
|
||||
content_type: 'text/plain',
|
||||
References: parsed_incoming_mail[:message_id],
|
||||
'In-Reply-To': parsed_incoming_mail[:message_id],
|
||||
|
@ -978,7 +978,7 @@ module Mail
|
|||
end
|
||||
return value if value.blank?
|
||||
|
||||
value.sub(/^.+?:(\s|)/, '')
|
||||
value.sub(%r{^.+?:(\s|)}, '')
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -15,17 +15,17 @@ module Channel::Filter::AutoResponseCheck
|
|||
mail[ :'x-zammad-article-preferences' ]['is-auto-response'] = true
|
||||
|
||||
# do not send an auto response if one of the following headers exists
|
||||
return if mail[ :'list-unsubscribe' ] && mail[ :'list-unsubscribe' ] =~ /.../
|
||||
return if mail[ :'x-loop' ] && mail[ :'x-loop' ] =~ /(yes|true)/i
|
||||
return if mail[ :precedence ] && mail[ :precedence ] =~ /(bulk|list|junk)/i
|
||||
return if mail[ :'auto-submitted' ] && mail[ :'auto-submitted' ] =~ /auto-(generated|replied)/i
|
||||
return if mail[ :'x-auto-response-suppress' ] && mail[ :'x-auto-response-suppress' ] =~ /all/i
|
||||
return if mail[ :'list-unsubscribe' ] && mail[ :'list-unsubscribe' ] =~ %r{...}
|
||||
return if mail[ :'x-loop' ] && mail[ :'x-loop' ] =~ %r{(yes|true)}i
|
||||
return if mail[ :precedence ] && mail[ :precedence ] =~ %r{(bulk|list|junk)}i
|
||||
return if mail[ :'auto-submitted' ] && mail[ :'auto-submitted' ] =~ %r{auto-(generated|replied)}i
|
||||
return if mail[ :'x-auto-response-suppress' ] && mail[ :'x-auto-response-suppress' ] =~ %r{all}i
|
||||
|
||||
# do not send an auto response if sender is system itself
|
||||
message_id = mail[ :message_id ]
|
||||
if message_id
|
||||
fqdn = Setting.get('fqdn')
|
||||
return if message_id.match?(/@#{Regexp.quote(fqdn)}/i)
|
||||
return if message_id.match?(%r{@#{Regexp.quote(fqdn)}}i)
|
||||
end
|
||||
|
||||
mail[ :'x-zammad-send-auto-response' ] = true
|
||||
|
|
|
@ -53,7 +53,7 @@ module Channel::Filter::BounceDeliveryPermanentFailed
|
|||
# get recipient bounce mail, mark this user to not sent notifications anymore
|
||||
final_recipient = mail[:mail_instance].final_recipient
|
||||
if final_recipient.present?
|
||||
final_recipient.sub!(/rfc822;\s{0,10}/, '')
|
||||
final_recipient.sub!(%r{rfc822;\s{0,10}}, '')
|
||||
if final_recipient.present?
|
||||
recipients.push final_recipient.downcase
|
||||
end
|
||||
|
|
|
@ -72,7 +72,7 @@ module Channel::Filter::FollowUpCheck
|
|||
references += mail[:'in-reply-to']
|
||||
end
|
||||
if references != ''
|
||||
message_ids = references.split(/\s+/)
|
||||
message_ids = references.split(%r{\s+})
|
||||
message_ids.each do |message_id|
|
||||
message_id_md5 = Digest::MD5.hexdigest(message_id)
|
||||
article = Ticket::Article.where(message_id_md5: message_id_md5).order('created_at DESC, id DESC').limit(1).first
|
||||
|
@ -86,7 +86,7 @@ module Channel::Filter::FollowUpCheck
|
|||
|
||||
# remove leading "..:\s" and "..[\d+]:\s" e. g. "Re: " or "Re[5]: "
|
||||
subject_to_check = mail[:subject]
|
||||
subject_to_check.gsub!(/^(..(\[\d+\])?:\s+)+/, '')
|
||||
subject_to_check.gsub!(%r{^(..(\[\d+\])?:\s+)+}, '')
|
||||
|
||||
# if subject is different, it's no followup
|
||||
next if subject_to_check != article_first.subject
|
||||
|
@ -119,7 +119,7 @@ module Channel::Filter::FollowUpCheck
|
|||
def self.follow_up_by_md5(mail)
|
||||
return if mail[:'x-zammad-ticket-id']
|
||||
|
||||
mail_references(mail).split(/\s+/).each do |message_id|
|
||||
mail_references(mail).split(%r{\s+}).each do |message_id|
|
||||
article = message_id_article(message_id)
|
||||
next if article.blank?
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module Channel::Filter::FollowUpPossibleCheck
|
|||
|
||||
ticket = Ticket.lookup(id: ticket_id)
|
||||
return true if !ticket
|
||||
return true if !ticket.state.state_type.name.match?(/^(closed|merged|removed)/i)
|
||||
return true if !ticket.state.state_type.name.match?(%r{^(closed|merged|removed)}i)
|
||||
|
||||
# in case of closed tickets, remove follow-up information
|
||||
case ticket.group.follow_up_possible
|
||||
|
|
|
@ -123,10 +123,10 @@ module Channel::Filter::IdentifySender
|
|||
recipients.each do |recipient|
|
||||
address = nil
|
||||
display_name = nil
|
||||
if recipient =~ /.*<(.+?)>/
|
||||
if recipient =~ %r{.*<(.+?)>}
|
||||
address = $1
|
||||
end
|
||||
if recipient =~ /^(.+?)<(.+?)>/
|
||||
if recipient =~ %r{^(.+?)<(.+?)>}
|
||||
display_name = $1
|
||||
end
|
||||
|
||||
|
@ -162,7 +162,7 @@ module Channel::Filter::IdentifySender
|
|||
end
|
||||
|
||||
def self.populate_attributes!(attrs, **extras)
|
||||
if attrs[:email].match?(/\S\s+\S/) || attrs[:email].match?(/^<|>$/)
|
||||
if attrs[:email].match?(%r{\S\s+\S}) || attrs[:email].match?(%r{^<|>$})
|
||||
attrs[:preferences] = { mail_delivery_failed: true,
|
||||
mail_delivery_failed_reason: 'invalid email',
|
||||
mail_delivery_failed_data: Time.zone.now }
|
||||
|
@ -187,7 +187,7 @@ module Channel::Filter::IdentifySender
|
|||
.delete('"')
|
||||
.delete_prefix("'")
|
||||
.delete_suffix("'")
|
||||
.gsub(/.+?\s\(.+?\)$/, '')
|
||||
.gsub(%r{.+?\s\(.+?\)$}, '')
|
||||
end
|
||||
|
||||
def self.sanitize_email(string)
|
||||
|
@ -197,10 +197,10 @@ module Channel::Filter::IdentifySender
|
|||
.strip
|
||||
.delete('"')
|
||||
.delete("'")
|
||||
.delete(' ') # see https://github.com/zammad/zammad/issues/2254
|
||||
.sub(/^<|>$/, '') # see https://github.com/zammad/zammad/issues/2254
|
||||
.sub(/\A'(.*)'\z/, '\1') # see https://github.com/zammad/zammad/issues/2154
|
||||
.gsub(/\s/, '') # see https://github.com/zammad/zammad/issues/2198
|
||||
.delete(' ') # see https://github.com/zammad/zammad/issues/2254
|
||||
.sub(%r{^<|>$}, '') # see https://github.com/zammad/zammad/issues/2254
|
||||
.sub(%r{\A'(.*)'\z}, '\1') # see https://github.com/zammad/zammad/issues/2154
|
||||
.gsub(%r{\s}, '') # see https://github.com/zammad/zammad/issues/2198
|
||||
.delete_suffix('.')
|
||||
end
|
||||
|
||||
|
|
|
@ -2,20 +2,20 @@ module Channel::Filter::Match::EmailRegex
|
|||
|
||||
def self.match(value:, match_rule:, check_mode: false)
|
||||
regexp = false
|
||||
if match_rule =~ /^(regex:)(.+?)$/
|
||||
if match_rule =~ %r{^(regex:)(.+?)$}
|
||||
regexp = true
|
||||
match_rule = $2
|
||||
end
|
||||
|
||||
if regexp == false
|
||||
match_rule_quoted = Regexp.quote(match_rule).gsub(/\\\*/, '.*')
|
||||
return true if value.match?(/#{match_rule_quoted}/i)
|
||||
match_rule_quoted = Regexp.quote(match_rule).gsub(%r{\\\*}, '.*')
|
||||
return true if value.match?(%r{#{match_rule_quoted}}i)
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
begin
|
||||
return true if value.match?(/#{match_rule}/i)
|
||||
return true if value.match?(%r{#{match_rule}}i)
|
||||
|
||||
return false
|
||||
rescue => e
|
||||
|
|
|
@ -47,26 +47,26 @@ class Channel::Filter::MonitoringBase
|
|||
return if result['host'].blank?
|
||||
|
||||
# icinga - get state by body - new templates
|
||||
if result['state'].blank? && mail[:body] =~ /.+?\sis\s(.+?)!/
|
||||
if result['state'].blank? && mail[:body] =~ %r{.+?\sis\s(.+?)!}
|
||||
result['state'] = $1
|
||||
end
|
||||
|
||||
# icinga - get state by subject - new templates "state:" is not in body anymore
|
||||
# Subject: [PROBLEM] Ping IPv4 on host1234.dc.example.com is WARNING!
|
||||
# Subject: [PROBLEM] Host host1234.dc.example.com is DOWN!
|
||||
if result['state'].blank? && mail[:subject] =~ /(on|Host)\s.+?\sis\s(.+?)!/
|
||||
if result['state'].blank? && mail[:subject] =~ %r{(on|Host)\s.+?\sis\s(.+?)!}
|
||||
result['state'] = $2
|
||||
end
|
||||
|
||||
# monit - get missing attributes from body
|
||||
if result['service'].blank? && mail[:body] =~ /\sService\s(.+?)\s/
|
||||
if result['service'].blank? && mail[:body] =~ %r{\sService\s(.+?)\s}
|
||||
result['service'] = $1
|
||||
end
|
||||
|
||||
# possible event types https://mmonit.com/monit/documentation/#Setting-an-event-filter
|
||||
if result['state'].blank?
|
||||
result['state'] = case mail[:body]
|
||||
when /\s(done|recovery|succeeded|bytes\sok|packets\sok)\s/, /(instance\schanged\snot|Link\sup|Exists|Saturation\sok|Speed\sok)/
|
||||
when %r{\s(done|recovery|succeeded|bytes\sok|packets\sok)\s}, %r{(instance\schanged\snot|Link\sup|Exists|Saturation\sok|Speed\sok)}
|
||||
'OK'
|
||||
else
|
||||
'CRITICAL'
|
||||
|
@ -89,7 +89,7 @@ class Channel::Filter::MonitoringBase
|
|||
mail[ :'x-zammad-ticket-id' ] = ticket.id
|
||||
|
||||
# check if service is recovered
|
||||
if auto_close && result['state'].present? && result['state'].match(/#{state_recovery_match}/i)
|
||||
if auto_close && result['state'].present? && result['state'].match(%r{#{state_recovery_match}}i)
|
||||
Rails.logger.info "MonitoringBase.#{integration} set autoclose to state_id #{auto_close_state_id}"
|
||||
state = Ticket::State.lookup(id: auto_close_state_id)
|
||||
if state
|
||||
|
@ -112,13 +112,13 @@ class Channel::Filter::MonitoringBase
|
|||
end
|
||||
|
||||
# ignore states
|
||||
if state_ignore_match.present? && result['state'].present? && result['state'].match(/#{state_ignore_match}/i)
|
||||
if state_ignore_match.present? && result['state'].present? && result['state'].match(%r{#{state_ignore_match}}i)
|
||||
mail[ :'x-zammad-ignore' ] = true
|
||||
return true
|
||||
end
|
||||
|
||||
# if now problem exists, just ignore the email
|
||||
if result['state'].present? && result['state'].match(/#{state_recovery_match}/i)
|
||||
if result['state'].present? && result['state'].match(%r{#{state_recovery_match}}i)
|
||||
mail[ :'x-zammad-ignore' ] = true
|
||||
return true
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Channel::Filter::OutOfOfficeCheck
|
|||
|
||||
# check ms out of office characteristics
|
||||
if mail[ :'x-auto-response-suppress' ]
|
||||
return if !mail[ :'x-auto-response-suppress' ].match?(/all/i)
|
||||
return if !mail[ :'x-auto-response-suppress' ].match?(%r{all}i)
|
||||
return if !mail[ :'x-ms-exchange-inbox-rules-loop' ]
|
||||
|
||||
mail[ :'x-zammad-out-of-office' ] = true
|
||||
|
@ -18,17 +18,17 @@ module Channel::Filter::OutOfOfficeCheck
|
|||
if mail[ :'auto-submitted' ]
|
||||
|
||||
# check zimbra out of office characteristics
|
||||
if mail[ :'auto-submitted' ].match?(/vacation/i)
|
||||
if mail[ :'auto-submitted' ].match?(%r{vacation}i)
|
||||
mail[ :'x-zammad-out-of-office' ] = true
|
||||
end
|
||||
|
||||
# check cloud out of office characteristics
|
||||
if mail[ :'auto-submitted' ].match?(/auto-replied;\sowner-email=/i)
|
||||
if mail[ :'auto-submitted' ].match?(%r{auto-replied;\sowner-email=}i)
|
||||
mail[ :'x-zammad-out-of-office' ] = true
|
||||
end
|
||||
|
||||
# gmail check out of office characteristics
|
||||
if mail[ :'auto-submitted' ] =~ /auto-replied/i && mail[ :subject ] =~ /vacation/i
|
||||
if mail[ :'auto-submitted' ] =~ %r{auto-replied}i && mail[ :subject ] =~ %r{vacation}i
|
||||
mail[ :'x-zammad-out-of-office' ] = true
|
||||
end
|
||||
|
||||
|
|
|
@ -9,10 +9,10 @@ module Channel::Filter::OwnNotificationLoopDetection
|
|||
|
||||
recedence = mail[:precedence]
|
||||
return if !recedence
|
||||
return if !recedence.match?(/bulk/i)
|
||||
return if !recedence.match?(%r{bulk}i)
|
||||
|
||||
fqdn = Setting.get('fqdn')
|
||||
return if !message_id.match?(/@#{Regexp.quote(fqdn)}>/i)
|
||||
return if !message_id.match?(%r{@#{Regexp.quote(fqdn)}>}i)
|
||||
|
||||
mail[ :'x-zammad-ignore' ] = true
|
||||
Rails.logger.info "Detected own sent notification mail and dropped it to prevent loops (message_id: #{message_id}, from: #{mail[:from]}, to: #{mail[:to]})"
|
||||
|
|
|
@ -44,7 +44,7 @@ returns:
|
|||
|
||||
# check if we can find the service now relation
|
||||
source_id = nil
|
||||
if subject =~ /\s(INC\d+)\s/
|
||||
if subject =~ %r{\s(INC\d+)\s}
|
||||
source_id = $1
|
||||
end
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module Channel::Filter::Trusted
|
|||
# check if trust x-headers
|
||||
if !trusted(channel)
|
||||
mail.each_key do |key|
|
||||
next if !key.match?(/^x-zammad/i)
|
||||
next if !key.match?(%r{^x-zammad}i)
|
||||
|
||||
mail.delete(key)
|
||||
end
|
||||
|
@ -17,7 +17,7 @@ module Channel::Filter::Trusted
|
|||
|
||||
# verify values
|
||||
mail.each do |key, value|
|
||||
next if !key.match?(/^x-zammad/i)
|
||||
next if !key.match?(%r{^x-zammad}i)
|
||||
|
||||
# no assoc exists, remove header
|
||||
next if Channel::EmailParser.check_attributes_by_x_headers(key, value)
|
||||
|
|
|
@ -611,7 +611,7 @@ check if ip address is blocked for chat
|
|||
ips = block_ip.split(';')
|
||||
ips.each do |local_ip|
|
||||
return true if ip == local_ip.strip
|
||||
return true if ip.match?(/#{local_ip.strip.gsub(/\*/, '.+?')}/)
|
||||
return true if ip.match?(%r{#{local_ip.strip.gsub(%r{\*}, '.+?')}})
|
||||
end
|
||||
false
|
||||
end
|
||||
|
|
|
@ -37,7 +37,7 @@ returns
|
|||
if options[:only_attached_attachments] == true && is_html_content == true
|
||||
|
||||
content_id = new_attachment.preferences['Content-ID'] || new_attachment.preferences['content_id']
|
||||
next if content_id.present? && body.present? && body.match?(/#{Regexp.quote(content_id)}/i)
|
||||
next if content_id.present? && body.present? && body.match?(%r{#{Regexp.quote(content_id)}}i)
|
||||
end
|
||||
|
||||
# only_inline_attachments mode is used when quoting HTML mail with #{article.body_as_html}
|
||||
|
@ -46,11 +46,11 @@ returns
|
|||
next if body.blank?
|
||||
|
||||
content_disposition = new_attachment.preferences['Content-Disposition'] || new_attachment.preferences['content_disposition']
|
||||
next if content_disposition.present? && content_disposition !~ /inline/
|
||||
next if content_disposition.present? && content_disposition !~ %r{inline}
|
||||
|
||||
content_id = new_attachment.preferences['Content-ID'] || new_attachment.preferences['content_id']
|
||||
next if content_id.blank?
|
||||
next if !body.match?(/#{Regexp.quote(content_id)}/i)
|
||||
next if !body.match?(%r{#{Regexp.quote(content_id)}}i)
|
||||
end
|
||||
|
||||
already_added = false
|
||||
|
|
|
@ -12,7 +12,7 @@ module ChecksClientNotification
|
|||
|
||||
def notify_clients_data(event)
|
||||
class_name = self.class.name
|
||||
class_name.gsub!(/::/, '')
|
||||
class_name.gsub!(%r{::}, '')
|
||||
|
||||
{
|
||||
message: {
|
||||
|
|
|
@ -58,7 +58,7 @@ Checks if file is used inline
|
|||
|
||||
node.remove
|
||||
when 'div'
|
||||
node.children.to_a.select { |t| t.text.match?(/\A([\n\r]+)\z/) }.each(&:remove)
|
||||
node.children.to_a.select { |t| t.text.match?(%r{\A([\n\r]+)\z}) }.each(&:remove)
|
||||
|
||||
node.remove if node.children.none? && node.classes.none?
|
||||
end
|
||||
|
@ -138,7 +138,7 @@ Checks if file is used inline
|
|||
next if node.name != 'img'
|
||||
next if !node['src']&.start_with?('cid:')
|
||||
|
||||
cid = node['src'].sub(/^cid:/, '')
|
||||
cid = node['src'].sub(%r{^cid:}, '')
|
||||
lookup_cids = [cid, "<#{cid}>"]
|
||||
|
||||
attachment = attachments.find do |file|
|
||||
|
@ -164,7 +164,7 @@ Checks if file is used inline
|
|||
next if node.name != 'img'
|
||||
next if !node['src']&.start_with? 'cid:'
|
||||
|
||||
cid = node['src'].sub(/^cid:/, '')
|
||||
cid = node['src'].sub(%r{^cid:}, '')
|
||||
inline_cids << cid
|
||||
end
|
||||
|
||||
|
|
|
@ -226,19 +226,19 @@ returns
|
|||
# see specs for example
|
||||
return [] if !text.is_a?(String)
|
||||
|
||||
text.scan(/([\d\s\-(|)]{6,26})/).map do |match|
|
||||
text.scan(%r{([\d\s\-(|)]{6,26})}).map do |match|
|
||||
normalize_number(match[0])
|
||||
end
|
||||
end
|
||||
|
||||
def self.normalize_number(number)
|
||||
number = number.gsub(/[\s-]/, '')
|
||||
number.gsub!(/^(00)?(\+?\d\d)\(0?(\d*)\)/, '\\1\\2\\3')
|
||||
number.gsub!(/\D/, '')
|
||||
number = number.gsub(%r{[\s-]}, '')
|
||||
number.gsub!(%r{^(00)?(\+?\d\d)\(0?(\d*)\)}, '\\1\\2\\3')
|
||||
number.gsub!(%r{\D}, '')
|
||||
case number
|
||||
when /^00/
|
||||
when %r{^00}
|
||||
number[2..]
|
||||
when /^0/
|
||||
when %r{^0}
|
||||
DEFAULT_COUNTRY_ID + number[1..]
|
||||
else
|
||||
number
|
||||
|
|
|
@ -97,8 +97,8 @@ class Cti::Driver::Base
|
|||
|
||||
if routing_table.present?
|
||||
routing_table.each do |row|
|
||||
dest = row[:dest].gsub(/\*/, '.+?')
|
||||
next if !to.match?(/^#{dest}$/)
|
||||
dest = row[:dest].gsub(%r{\*}, '.+?')
|
||||
next if !to.match?(%r{^#{dest}$})
|
||||
|
||||
return {
|
||||
action: 'set_caller_id',
|
||||
|
|
|
@ -6,7 +6,7 @@ module Cti
|
|||
|
||||
store :preferences, accessors: %i[from_pretty to_pretty]
|
||||
|
||||
validates :state, format: { with: /\A(newCall|answer|hangup)\z/, message: 'newCall|answer|hangup is allowed' }
|
||||
validates :state, format: { with: %r{\A(newCall|answer|hangup)\z}, message: 'newCall|answer|hangup is allowed' }
|
||||
|
||||
before_create :set_pretty
|
||||
before_update :set_pretty
|
||||
|
@ -506,7 +506,7 @@ optional you can put the max oldest chat entries as argument
|
|||
|
||||
def set_pretty
|
||||
%i[from to].each do |field|
|
||||
parsed = TelephoneNumber.parse(send(field)&.sub(/^\+?/, '+'))
|
||||
parsed = TelephoneNumber.parse(send(field)&.sub(%r{^\+?}, '+'))
|
||||
preferences[:"#{field}_pretty"] = parsed.send(parsed.valid? ? :international_number : :original_number)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -264,7 +264,7 @@ job.run(true)
|
|||
def match_minutes(minutes)
|
||||
return 0 if minutes < 10
|
||||
|
||||
"#{minutes.to_s.gsub(/(\d)\d/, '\\1')}0".to_i
|
||||
"#{minutes.to_s.gsub(%r{(\d)\d}, '\\1')}0".to_i
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -569,22 +569,22 @@ to send no browser reload event, pass false
|
|||
|
||||
data_type = nil
|
||||
case attribute.data_type
|
||||
when /^input|select|tree_select|richtext|textarea|checkbox$/
|
||||
when %r{^input|select|tree_select|richtext|textarea|checkbox$}
|
||||
data_type = :string
|
||||
when /^integer|user_autocompletion$/
|
||||
when %r{^integer|user_autocompletion$}
|
||||
data_type = :integer
|
||||
when /^boolean|active$/
|
||||
when %r{^boolean|active$}
|
||||
data_type = :boolean
|
||||
when /^datetime$/
|
||||
when %r{^datetime$}
|
||||
data_type = :datetime
|
||||
when /^date$/
|
||||
when %r{^date$}
|
||||
data_type = :date
|
||||
end
|
||||
|
||||
# change field
|
||||
if model.column_names.include?(attribute.name)
|
||||
case attribute.data_type
|
||||
when /^input|select|tree_select|richtext|textarea|checkbox$/
|
||||
when %r{^input|select|tree_select|richtext|textarea|checkbox$}
|
||||
ActiveRecord::Migration.change_column(
|
||||
model.table_name,
|
||||
attribute.name,
|
||||
|
@ -592,7 +592,7 @@ to send no browser reload event, pass false
|
|||
limit: attribute.data_option[:maxlength],
|
||||
null: true
|
||||
)
|
||||
when /^integer|user_autocompletion|datetime|date$/, /^boolean|active$/
|
||||
when %r{^integer|user_autocompletion|datetime|date$}, %r{^boolean|active$}
|
||||
ActiveRecord::Migration.change_column(
|
||||
model.table_name,
|
||||
attribute.name,
|
||||
|
@ -616,7 +616,7 @@ to send no browser reload event, pass false
|
|||
|
||||
# create field
|
||||
case attribute.data_type
|
||||
when /^input|select|tree_select|richtext|textarea|checkbox$/
|
||||
when %r{^input|select|tree_select|richtext|textarea|checkbox$}
|
||||
ActiveRecord::Migration.add_column(
|
||||
model.table_name,
|
||||
attribute.name,
|
||||
|
@ -624,7 +624,7 @@ to send no browser reload event, pass false
|
|||
limit: attribute.data_option[:maxlength],
|
||||
null: true
|
||||
)
|
||||
when /^integer|user_autocompletion$/, /^boolean|active$/, /^datetime|date$/
|
||||
when %r{^integer|user_autocompletion$}, %r{^boolean|active$}, %r{^datetime|date$}
|
||||
ActiveRecord::Migration.add_column(
|
||||
model.table_name,
|
||||
attribute.name,
|
||||
|
@ -780,22 +780,22 @@ is certain attribute used by triggers, overviews or schedulers
|
|||
def check_name
|
||||
return if !name
|
||||
|
||||
if name.match?(/.+?_(id|ids)$/i)
|
||||
if name.match?(%r{.+?_(id|ids)$}i)
|
||||
errors.add(:name, "can't get used because *_id and *_ids are not allowed")
|
||||
end
|
||||
if name.match?(/\s/)
|
||||
if name.match?(%r{\s})
|
||||
errors.add(:name, 'spaces are not allowed')
|
||||
end
|
||||
if !name.match?(/^[a-z0-9_]+$/)
|
||||
if !name.match?(%r{^[a-z0-9_]+$})
|
||||
errors.add(:name, 'Only letters from a-z because numbers from 0-9 and _ are allowed')
|
||||
end
|
||||
if !name.match?(/[a-z]/)
|
||||
if !name.match?(%r{[a-z]})
|
||||
errors.add(:name, 'At least one letters is needed')
|
||||
end
|
||||
|
||||
# do not allow model method names as attributes
|
||||
reserved_words = %w[destroy true false integer select drop create alter index table varchar blob date datetime timestamp url icon initials avatar permission validate subscribe unsubscribe translate search _type _doc _id id]
|
||||
if name.match?(/^(#{reserved_words.join('|')})$/)
|
||||
if name.match?(%r{^(#{reserved_words.join('|')})$})
|
||||
errors.add(:name, "#{name} is a reserved word! (1)")
|
||||
end
|
||||
|
||||
|
@ -833,7 +833,7 @@ is certain attribute used by triggers, overviews or schedulers
|
|||
local_data_option[:null] = true if local_data_option[:null].nil?
|
||||
|
||||
case data_type
|
||||
when /^((tree_)?select|checkbox)$/
|
||||
when %r{^((tree_)?select|checkbox)$}
|
||||
local_data_option[:nulloption] = true if local_data_option[:nulloption].nil?
|
||||
local_data_option[:maxlength] ||= 255
|
||||
end
|
||||
|
@ -882,17 +882,17 @@ is certain attribute used by triggers, overviews or schedulers
|
|||
when 'input'
|
||||
[{ failed: %w[text password tel fax email url].exclude?(local_data_option[:type]),
|
||||
message: 'must have one of text/password/tel/fax/email/url for :type' },
|
||||
{ failed: !local_data_option[:maxlength].to_s.match?(/^\d+$/),
|
||||
{ failed: !local_data_option[:maxlength].to_s.match?(%r{^\d+$}),
|
||||
message: 'must have integer for :maxlength' }]
|
||||
when 'richtext'
|
||||
[{ failed: !local_data_option[:maxlength].to_s.match?(/^\d+$/),
|
||||
[{ failed: !local_data_option[:maxlength].to_s.match?(%r{^\d+$}),
|
||||
message: 'must have integer for :maxlength' }]
|
||||
when 'integer'
|
||||
[{ failed: !local_data_option[:min].to_s.match?(/^\d+$/),
|
||||
[{ failed: !local_data_option[:min].to_s.match?(%r{^\d+$}),
|
||||
message: 'must have integer for :min' },
|
||||
{ failed: !local_data_option[:max].to_s.match?(/^\d+$/),
|
||||
{ failed: !local_data_option[:max].to_s.match?(%r{^\d+$}),
|
||||
message: 'must have integer for :max' }]
|
||||
when /^((tree_)?select|checkbox)$/
|
||||
when %r{^((tree_)?select|checkbox)$}
|
||||
[{ failed: !local_data_option.key?(:default),
|
||||
message: 'must have value for :default' },
|
||||
{ failed: local_data_option[:options].nil? && local_data_option[:relation].nil?,
|
||||
|
|
|
@ -38,8 +38,8 @@ class Organization < ApplicationModel
|
|||
def domain_cleanup
|
||||
return true if domain.blank?
|
||||
|
||||
domain.gsub!(/@/, '')
|
||||
domain.gsub!(/\s*/, '')
|
||||
domain.gsub!(%r{@}, '')
|
||||
domain.gsub!(%r{\s*}, '')
|
||||
domain.strip!
|
||||
domain.downcase!
|
||||
true
|
||||
|
|
|
@ -98,7 +98,7 @@ class Overview < ApplicationModel
|
|||
def link_name(name)
|
||||
local_link = name.downcase
|
||||
local_link = local_link.parameterize(separator: '_')
|
||||
local_link.gsub!(/\s/, '_')
|
||||
local_link.gsub!(%r{\s}, '_')
|
||||
local_link.squeeze!('_')
|
||||
local_link = CGI.escape(local_link)
|
||||
if local_link.blank?
|
||||
|
|
|
@ -64,7 +64,7 @@ install all packages located under auto_install/*.zpm
|
|||
|
||||
data = []
|
||||
Dir.foreach(path) do |entry|
|
||||
if entry.include?('.zpm') && entry !~ /^\./
|
||||
if entry.include?('.zpm') && entry !~ %r{^\.}
|
||||
data.push entry
|
||||
end
|
||||
end
|
||||
|
@ -133,7 +133,7 @@ execute migration down + unlink files
|
|||
Dir.glob("#{package_base_dir}/**/*") do |entry|
|
||||
entry = entry.sub('//', '/')
|
||||
file = entry
|
||||
file = file.sub(/#{package_base_dir}/, '')
|
||||
file = file.sub(%r{#{package_base_dir}}, '')
|
||||
dest = "#{@@root}/#{file}"
|
||||
|
||||
if File.symlink?(dest.to_s)
|
||||
|
@ -166,7 +166,7 @@ link files + execute migration up
|
|||
Dir.glob("#{package_base_dir}/**/*") do |entry|
|
||||
entry = entry.sub('//', '/')
|
||||
file = entry
|
||||
file = file.sub(/#{package_base_dir}/, '')
|
||||
file = file.sub(%r{#{package_base_dir}}, '')
|
||||
file = file.sub(%r{^/}, '')
|
||||
|
||||
# ignore files
|
||||
|
|
|
@ -41,7 +41,7 @@ class Package::Migration < ApplicationModel
|
|||
|
||||
version = nil
|
||||
name = nil
|
||||
if migration =~ /^(.+?)_(.*)\.rb$/
|
||||
if migration =~ %r{^(.+?)_(.*)\.rb$}
|
||||
version = $1
|
||||
name = $2
|
||||
end
|
||||
|
|
|
@ -12,7 +12,7 @@ class PostmasterFilter < ApplicationModel
|
|||
raise Exceptions::UnprocessableEntity, 'Min. one match rule needed!' if match.blank?
|
||||
|
||||
match.each_value do |meta|
|
||||
raise Exceptions::UnprocessableEntity, 'operator invalid, ony "contains" and "contains not" is supported' if meta['operator'].blank? || meta['operator'] !~ /^(contains|contains not)$/
|
||||
raise Exceptions::UnprocessableEntity, 'operator invalid, ony "contains" and "contains not" is supported' if meta['operator'].blank? || meta['operator'] !~ %r{^(contains|contains not)$}
|
||||
raise Exceptions::UnprocessableEntity, 'value invalid/empty' if meta['value'].blank?
|
||||
|
||||
begin
|
||||
|
|
|
@ -120,7 +120,7 @@ reload config settings
|
|||
@@current[key] = value
|
||||
next
|
||||
end
|
||||
@@current[key] = value.gsub(/\#\{config\.(.+?)\}/) do
|
||||
@@current[key] = value.gsub(%r{\#\{config\.(.+?)\}}) do
|
||||
@@raw[$1].to_s
|
||||
end
|
||||
end
|
||||
|
|
|
@ -4,7 +4,7 @@ class SMIMECertificate < ApplicationModel
|
|||
validates :fingerprint, uniqueness: true
|
||||
|
||||
def self.parse(raw)
|
||||
OpenSSL::X509::Certificate.new(raw.gsub(/(?:TRUSTED\s)?(CERTIFICATE---)/, '\1'))
|
||||
OpenSSL::X509::Certificate.new(raw.gsub(%r{(?:TRUSTED\s)?(CERTIFICATE---)}, '\1'))
|
||||
end
|
||||
|
||||
# Search for the certificate of the given sender email address
|
||||
|
@ -94,7 +94,7 @@ class SMIMECertificate < ApplicationModel
|
|||
|
||||
def email_addresses_from_subject_alt_name(subject_alt_name)
|
||||
# ["IP Address:192.168.7.23", "IP Address:192.168.7.42", "email:jd@example.com", "email:John.Doe@example.com", "dirName:dir_sect"]
|
||||
entries = subject_alt_name.value.split(/,\s?/)
|
||||
entries = subject_alt_name.value.split(%r{,\s?})
|
||||
|
||||
entries.each_with_object([]) do |entry, result|
|
||||
# ["email:jd@example.com", "email:John.Doe@example.com"]
|
||||
|
|
|
@ -114,9 +114,9 @@ push text_modules to online
|
|||
|
||||
def validate_content
|
||||
return true if content.blank?
|
||||
return true if content.match?(/<.+?>/)
|
||||
return true if content.match?(%r{<.+?>})
|
||||
|
||||
content.gsub!(/(\r\n|\n\r|\r)/, "\n")
|
||||
content.gsub!(%r{(\r\n|\n\r|\r)}, "\n")
|
||||
self.content = content.text2html
|
||||
true
|
||||
end
|
||||
|
|
|
@ -627,7 +627,7 @@ condition example
|
|||
|
||||
selector = selector_raw.stringify_keys
|
||||
raise "Invalid selector, operator missing #{selector.inspect}" if !selector['operator']
|
||||
raise "Invalid selector, operator #{selector['operator']} is invalid #{selector.inspect}" if !selector['operator'].match?(/^(is|is\snot|contains|contains\s(not|all|one|all\snot|one\snot)|(after|before)\s\(absolute\)|(within\snext|within\slast|after|before|till|from)\s\(relative\))|(is\sin\sworking\stime|is\snot\sin\sworking\stime)$/)
|
||||
raise "Invalid selector, operator #{selector['operator']} is invalid #{selector.inspect}" if !selector['operator'].match?(%r{^(is|is\snot|contains|contains\s(not|all|one|all\snot|one\snot)|(after|before)\s\(absolute\)|(within\snext|within\slast|after|before|till|from)\s\(relative\))|(is\sin\sworking\stime|is\snot\sin\sworking\stime)$})
|
||||
|
||||
# validate value / allow blank but only if pre_condition exists and is not specific
|
||||
if !selector.key?('value') ||
|
||||
|
@ -639,7 +639,7 @@ condition example
|
|||
end
|
||||
|
||||
# validate pre_condition values
|
||||
return nil if selector['pre_condition'] && selector['pre_condition'] !~ /^(not_set|current_user\.|specific)/
|
||||
return nil if selector['pre_condition'] && selector['pre_condition'] !~ %r{^(not_set|current_user\.|specific)}
|
||||
|
||||
# get attributes
|
||||
attributes = attribute.split('.')
|
||||
|
@ -699,7 +699,7 @@ condition example
|
|||
|
||||
if selector['operator'] == 'is'
|
||||
if selector['pre_condition'] == 'not_set'
|
||||
if attributes[1].match?(/^(created_by|updated_by|owner|customer|user)_id/)
|
||||
if attributes[1].match?(%r{^(created_by|updated_by|owner|customer|user)_id})
|
||||
query += "(#{attribute} IS NULL OR #{attribute} IN (?))"
|
||||
bind_params.push 1
|
||||
else
|
||||
|
@ -744,7 +744,7 @@ condition example
|
|||
end
|
||||
elsif selector['operator'] == 'is not'
|
||||
if selector['pre_condition'] == 'not_set'
|
||||
if attributes[1].match?(/^(created_by|updated_by|owner|customer|user)_id/)
|
||||
if attributes[1].match?(%r{^(created_by|updated_by|owner|customer|user)_id})
|
||||
query += "(#{attribute} IS NOT NULL AND #{attribute} NOT IN (?))"
|
||||
bind_params.push 1
|
||||
else
|
||||
|
@ -1444,7 +1444,7 @@ result
|
|||
def check_title
|
||||
return true if !title
|
||||
|
||||
title.gsub!(/\s|\t|\r/, ' ')
|
||||
title.gsub!(%r{\s|\t|\r}, ' ')
|
||||
true
|
||||
end
|
||||
|
||||
|
@ -1476,7 +1476,7 @@ result
|
|||
current_state_type = Ticket::StateType.lookup(id: current_state.state_type_id)
|
||||
|
||||
# in case, set pending_time to nil
|
||||
return true if current_state_type.name.match?(/^pending/i)
|
||||
return true if current_state_type.name.match?(%r{^pending}i)
|
||||
|
||||
self.pending_time = nil
|
||||
true
|
||||
|
@ -1561,7 +1561,7 @@ result
|
|||
User.group_access(group_id, 'full').sort_by(&:login).each do |user|
|
||||
recipients_raw.push(user.email)
|
||||
end
|
||||
when /\Auserid_(\d+)\z/
|
||||
when %r{\Auserid_(\d+)\z}
|
||||
user = User.lookup(id: $1)
|
||||
if !user
|
||||
logger.warn "Can't find configured Trigger Email recipient User with ID '#{$1}'"
|
||||
|
@ -1592,7 +1592,7 @@ result
|
|||
end
|
||||
rescue
|
||||
if recipient_email.present?
|
||||
if recipient_email !~ /^(.+?)<(.+?)@(.+?)>$/
|
||||
if recipient_email !~ %r{^(.+?)<(.+?)@(.+?)>$}
|
||||
next # no usable format found
|
||||
end
|
||||
|
||||
|
@ -1609,15 +1609,15 @@ result
|
|||
# do not sent notifications to this recipients
|
||||
send_no_auto_response_reg_exp = Setting.get('send_no_auto_response_reg_exp')
|
||||
begin
|
||||
next if recipient_email.match?(/#{send_no_auto_response_reg_exp}/i)
|
||||
next if recipient_email.match?(%r{#{send_no_auto_response_reg_exp}}i)
|
||||
rescue => e
|
||||
logger.error "Invalid regex '#{send_no_auto_response_reg_exp}' in setting send_no_auto_response_reg_exp"
|
||||
logger.error e
|
||||
next if recipient_email.match?(/(mailer-daemon|postmaster|abuse|root|noreply|noreply.+?|no-reply|no-reply.+?)@.+?/i)
|
||||
next if recipient_email.match?(%r{(mailer-daemon|postmaster|abuse|root|noreply|noreply.+?|no-reply|no-reply.+?)@.+?}i)
|
||||
end
|
||||
|
||||
# check if notification should be send because of customer emails
|
||||
if article.present? && article.preferences.fetch('is-auto-response', false) == true && article.from && article.from =~ /#{Regexp.quote(recipient_email)}/i
|
||||
if article.present? && article.preferences.fetch('is-auto-response', false) == true && article.from && article.from =~ %r{#{Regexp.quote(recipient_email)}}i
|
||||
logger.info "Send no trigger based notification to #{recipient_email} because of auto response tagged incoming email"
|
||||
next
|
||||
end
|
||||
|
@ -1812,7 +1812,7 @@ result
|
|||
owner_id
|
||||
when 'ticket_agents'
|
||||
User.group_access(group_id, 'full').sort_by(&:login)
|
||||
when /\Auserid_(\d+)\z/
|
||||
when %r{\Auserid_(\d+)\z}
|
||||
return $1 if User.exists?($1)
|
||||
|
||||
logger.warn "Can't find configured Trigger SMS recipient User with ID '#{$1}'"
|
||||
|
|
|
@ -85,10 +85,10 @@ returns
|
|||
def self.insert_urls(article)
|
||||
return article if article['attachments'].blank?
|
||||
return article if !article['content_type'].match?(%r{text/html}i)
|
||||
return article if article['body'] !~ /<img/i
|
||||
return article if article['body'] !~ %r{<img}i
|
||||
|
||||
inline_attachments = {}
|
||||
article['body'].gsub!( /(<img[[:space:]](|.+?)src=")cid:(.+?)"(|.+?)>/im ) do |item|
|
||||
article['body'].gsub!( %r{(<img[[:space:]](|.+?)src=")cid:(.+?)"(|.+?)>}im ) do |item|
|
||||
tag_start = $1
|
||||
cid = $3
|
||||
tag_end = $4
|
||||
|
@ -129,7 +129,7 @@ returns
|
|||
|
||||
def attachments_inline
|
||||
inline_attachments = {}
|
||||
body.gsub( /<img[[:space:]](|.+?)src="cid:(.+?)"(|.+?)>/im ) do |_item|
|
||||
body.gsub( %r{<img[[:space:]](|.+?)src="cid:(.+?)"(|.+?)>}im ) do |_item|
|
||||
cid = $2
|
||||
|
||||
# look for attachment
|
||||
|
@ -251,7 +251,7 @@ returns:
|
|||
return true if attribute != :body
|
||||
return false if content_type.blank?
|
||||
|
||||
content_type =~ /html/i
|
||||
content_type =~ %r{html}i
|
||||
end
|
||||
|
||||
=begin
|
||||
|
@ -306,7 +306,7 @@ returns
|
|||
def check_subject
|
||||
return true if subject.blank?
|
||||
|
||||
subject.gsub!(/\s|\t|\r/, ' ')
|
||||
subject.gsub!(%r{\s|\t|\r}, ' ')
|
||||
true
|
||||
end
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ module Ticket::Article::EnqueueCommunicateTelegramJob
|
|||
return true if !type_id
|
||||
|
||||
type = Ticket::Article::Type.lookup(id: type_id)
|
||||
return true if !type.name.match?(/\Atelegram/i)
|
||||
return true if !type.name.match?(%r{\Atelegram}i)
|
||||
|
||||
CommunicateTelegramJob.perform_later(id)
|
||||
end
|
||||
|
|
|
@ -31,7 +31,7 @@ module Ticket::Article::EnqueueCommunicateTwitterJob
|
|||
|
||||
type = Ticket::Article::Type.lookup(id: type_id)
|
||||
return true if type.nil?
|
||||
return true if !type.name.match?(/\Atwitter/i)
|
||||
return true if !type.name.match?(%r{\Atwitter}i)
|
||||
|
||||
raise Exceptions::UnprocessableEntity, 'twitter to: parameter is missing' if to.blank? && type['name'] == 'twitter direct-message'
|
||||
|
||||
|
|
|
@ -40,12 +40,12 @@ module Ticket::Number::Date
|
|||
# probe format
|
||||
# NOTE: we use `(?<=\W|^)` at the start of the regular expressions below
|
||||
# because `\b` fails when ticket_hook begins with a non-word character (like '#')
|
||||
string.scan(/(?<=\W|^)#{Regexp.quote(ticket_hook)}#{Regexp.quote(ticket_hook_divider)}(\d{4,10}#{system_id}\d{2,40})\b/i) do
|
||||
string.scan(%r{(?<=\W|^)#{Regexp.quote(ticket_hook)}#{Regexp.quote(ticket_hook_divider)}(\d{4,10}#{system_id}\d{2,40})\b}i) do
|
||||
ticket = Ticket.find_by(number: $1)
|
||||
break if ticket
|
||||
end
|
||||
if !ticket
|
||||
string.scan(/(?<=\W|^)#{Regexp.quote(ticket_hook)}\s{0,2}(\d{4,10}#{system_id}\d{2,40})\b/i) do
|
||||
string.scan(%r{(?<=\W|^)#{Regexp.quote(ticket_hook)}\s{0,2}(\d{4,10}#{system_id}\d{2,40})\b}i) do
|
||||
ticket = Ticket.find_by(number: $1)
|
||||
break if ticket
|
||||
end
|
||||
|
|
|
@ -38,13 +38,13 @@ module Ticket::Number::Increment
|
|||
# probe format
|
||||
# NOTE: we use `(?<=\W|^)` at the start of the regular expressions below
|
||||
# because `\b` fails when ticket_hook begins with a non-word character (like '#')
|
||||
string.scan(/(?<=\W|^)#{Regexp.quote(ticket_hook)}#{Regexp.quote(ticket_hook_divider)}(#{system_id}\d{2,48})\b/i) do
|
||||
string.scan(%r{(?<=\W|^)#{Regexp.quote(ticket_hook)}#{Regexp.quote(ticket_hook_divider)}(#{system_id}\d{2,48})\b}i) do
|
||||
ticket = Ticket.find_by(number: $1)
|
||||
break if ticket
|
||||
end
|
||||
|
||||
if !ticket
|
||||
string.scan(/(?<=\W|^)#{Regexp.quote(ticket_hook)}\s{0,2}(#{system_id}\d{2,48})\b/i) do
|
||||
string.scan(%r{(?<=\W|^)#{Regexp.quote(ticket_hook)}\s{0,2}(#{system_id}\d{2,48})\b}i) do
|
||||
ticket = Ticket.find_by(number: $1)
|
||||
break if ticket
|
||||
end
|
||||
|
|
|
@ -103,7 +103,7 @@ returns
|
|||
order_by = overview.order[:by]
|
||||
|
||||
# validate direction
|
||||
raise "Invalid order direction '#{direction}'" if direction && direction !~ /^(ASC|DESC)$/i
|
||||
raise "Invalid order direction '#{direction}'" if direction && direction !~ %r{^(ASC|DESC)$}i
|
||||
|
||||
# check if order by exists
|
||||
if !ticket_attributes.key?(order_by)
|
||||
|
|
|
@ -98,7 +98,7 @@ module Ticket::SearchIndex
|
|||
return true if attachment.filename.blank?
|
||||
|
||||
filename_extention = attachment.filename.downcase
|
||||
filename_extention.gsub!(/^.*(\..+?)$/, '\\1')
|
||||
filename_extention.gsub!(%r{^.*(\..+?)$}, '\\1')
|
||||
|
||||
# list ignored file extensions
|
||||
attachments_ignore = Setting.get('es_attachment_ignore') || [ '.png', '.jpg', '.jpeg', '.mpeg', '.mpg', '.mov', '.bin', '.exe' ]
|
||||
|
|
|
@ -57,17 +57,17 @@ returns
|
|||
ticket_subject_size = Setting.get('ticket_subject_size')
|
||||
|
||||
# remove all possible ticket hook formats with []
|
||||
subject = subject.gsub(/\[#{ticket_hook}: #{number}\](\s+?|)/, '')
|
||||
subject = subject.gsub(/\[#{ticket_hook}:#{number}\](\s+?|)/, '')
|
||||
subject = subject.gsub(/\[#{ticket_hook}#{ticket_hook_divider}#{number}\](\s+?|)/, '')
|
||||
subject = subject.gsub(%r{\[#{ticket_hook}: #{number}\](\s+?|)}, '')
|
||||
subject = subject.gsub(%r{\[#{ticket_hook}:#{number}\](\s+?|)}, '')
|
||||
subject = subject.gsub(%r{\[#{ticket_hook}#{ticket_hook_divider}#{number}\](\s+?|)}, '')
|
||||
|
||||
# remove all possible ticket hook formats without []
|
||||
subject = subject.gsub(/#{ticket_hook}: #{number}(\s+?|)/, '')
|
||||
subject = subject.gsub(/#{ticket_hook}:#{number}(\s+?|)/, '')
|
||||
subject = subject.gsub(/#{ticket_hook}#{ticket_hook_divider}#{number}(\s+?|)/, '')
|
||||
subject = subject.gsub(%r{#{ticket_hook}: #{number}(\s+?|)}, '')
|
||||
subject = subject.gsub(%r{#{ticket_hook}:#{number}(\s+?|)}, '')
|
||||
subject = subject.gsub(%r{#{ticket_hook}#{ticket_hook_divider}#{number}(\s+?|)}, '')
|
||||
|
||||
# remove leading "..:\s" and "..[\d+]:\s" e. g. "Re: " or "Re[5]: "
|
||||
subject = subject.gsub(/^(..(\[\d+\])?:\s)+/, '')
|
||||
subject = subject.gsub(%r{^(..(\[\d+\])?:\s)+}, '')
|
||||
|
||||
# resize subject based on config
|
||||
if subject.length > ticket_subject_size.to_i
|
||||
|
|
|
@ -106,7 +106,7 @@ class Transaction::Slack
|
|||
if ticket.pending_time && ticket.pending_time < Time.zone.now
|
||||
color = '#faab00'
|
||||
end
|
||||
elsif ticket_state_type.match?(/^(new|open)$/)
|
||||
elsif ticket_state_type.match?(%r{^(new|open)$})
|
||||
color = '#faab00'
|
||||
elsif ticket_state_type == 'closed'
|
||||
color = '#38ad69'
|
||||
|
|
|
@ -416,7 +416,7 @@ Get source file at https://i18n.zammad.com/api/v1/translations_empty_translation
|
|||
next
|
||||
end
|
||||
raise "Can't import translation, format is missing" if row[2].blank?
|
||||
raise "Can't import translation, format is invalid (#{row[2]})" if !row[2].match?(/^(time|string)$/)
|
||||
raise "Can't import translation, format is invalid (#{row[2]})" if !row[2].match?(%r{^(time|string)$})
|
||||
|
||||
item = {
|
||||
'locale' => locale.locale,
|
||||
|
|
|
@ -841,7 +841,7 @@ try to find correct name
|
|||
end
|
||||
|
||||
# "Firstname Lastname"
|
||||
if string =~ /^(((Dr\.|Prof\.)[[:space:]]|).+?)[[:space:]](.+?)$/i
|
||||
if string =~ %r{^(((Dr\.|Prof\.)[[:space:]]|).+?)[[:space:]](.+?)$}i
|
||||
if $1.present?
|
||||
firstname = $1.strip
|
||||
end
|
||||
|
@ -853,7 +853,7 @@ try to find correct name
|
|||
|
||||
# -no name- "firstname.lastname@example.com"
|
||||
if string.blank? && email.present?
|
||||
scan = email.scan(/^(.+?)\.(.+?)@.+?$/)
|
||||
scan = email.scan(%r{^(.+?)\.(.+?)@.+?$})
|
||||
if scan[0].present?
|
||||
if scan[0][0].present?
|
||||
firstname = scan[0][0].strip
|
||||
|
@ -900,10 +900,10 @@ try to find correct name
|
|||
self.firstname = local_firstname if local_firstname.present?
|
||||
self.lastname = local_lastname if local_lastname.present?
|
||||
|
||||
if firstname.present? && firstname.match(/^[A-z]+$/) && (firstname.downcase == firstname || firstname.upcase == firstname)
|
||||
if firstname.present? && firstname.match(%r{^[A-z]+$}) && (firstname.downcase == firstname || firstname.upcase == firstname)
|
||||
firstname.capitalize!
|
||||
end
|
||||
if lastname.present? && lastname.match(/^[A-z]+$/) && (lastname.downcase == lastname || lastname.upcase == lastname)
|
||||
if lastname.present? && lastname.match(%r{^[A-z]+$}) && (lastname.downcase == lastname || lastname.upcase == lastname)
|
||||
lastname.capitalize!
|
||||
end
|
||||
true
|
||||
|
|
|
@ -19,7 +19,7 @@ ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|||
|
||||
# Rails thinks the singularized version of knowledge_bases is knowledge_basis?!
|
||||
# see: KnowledgeBase.table_name.singularize
|
||||
inflect.singular(/(knowledge_base)s$/i, '\1')
|
||||
inflect.singular(%r{(knowledge_base)s$}i, '\1')
|
||||
inflect.acronym 'SMIME'
|
||||
inflect.acronym 'GitLab'
|
||||
inflect.acronym 'GitHub'
|
||||
|
|
|
@ -2,7 +2,7 @@ Zammad::Application.routes.draw do
|
|||
api_path = Rails.configuration.api_path
|
||||
|
||||
match api_path + '/http_logs', to: 'http_logs#index', via: :get
|
||||
match api_path + '/http_logs/:facility', to: 'http_logs#index', via: :get, constraints: { facility: /.*/ }
|
||||
match api_path + '/http_logs/:facility', to: 'http_logs#index', via: :get, constraints: { facility: %r{.*} }
|
||||
match api_path + '/http_logs', to: 'http_logs#create', via: :post
|
||||
|
||||
end
|
||||
|
|
|
@ -9,7 +9,7 @@ class CalendarSubscriptions
|
|||
default_preferences = Setting.where(area: 'Defaults::CalendarSubscriptions')
|
||||
default_preferences.each do |calendar_subscription|
|
||||
|
||||
next if calendar_subscription.name !~ /\Adefaults_calendar_subscriptions_(.*)\z/
|
||||
next if calendar_subscription.name !~ %r{\Adefaults_calendar_subscriptions_(.*)\z}
|
||||
|
||||
object_name = $1 # rubocop:disable Lint/OutOfRangeRegexpRef
|
||||
@preferences[ object_name ] = calendar_subscription.state_current[:value]
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
class ColorValidator < ActiveModel::EachValidator
|
||||
REGEXP = {
|
||||
RGB: /^rgb\((((((((1?[1-9]?\d)|10\d|(2[0-4]\d)|25[0-5]),\s?)){2}|((((1?[1-9]?\d)|10\d|(2[0-4]\d)|25[0-5])\s)){2})((1?[1-9]?\d)|10\d|(2[0-4]\d)|25[0-5]))|((((([1-9]?\d(\.\d+)?)|100|(\.\d+))%,\s?){2}|((([1-9]?\d(\.\d+)?)|100|(\.\d+))%\s){2})(([1-9]?\d(\.\d+)?)|100|(\.\d+))%))\)$/i,
|
||||
HSL: /^hsl\(((((([12]?[1-9]?\d)|[12]0\d|(3[0-6]\d))(\.\d+)?)|(\.\d+))(deg)?|(0|0?\.\d+)turn|(([0-6](\.\d+)?)|(\.\d+))rad)((,\s?(([1-9]?\d(\.\d+)?)|100|(\.\d+))%){2}|(\s(([1-9]?\d(\.\d+)?)|100|(\.\d+))%){2})\)$/i,
|
||||
HEX: /^#([\da-f]{3}){1,2}$/i
|
||||
RGB: %r{^rgb\((((((((1?[1-9]?\d)|10\d|(2[0-4]\d)|25[0-5]),\s?)){2}|((((1?[1-9]?\d)|10\d|(2[0-4]\d)|25[0-5])\s)){2})((1?[1-9]?\d)|10\d|(2[0-4]\d)|25[0-5]))|((((([1-9]?\d(\.\d+)?)|100|(\.\d+))%,\s?){2}|((([1-9]?\d(\.\d+)?)|100|(\.\d+))%\s){2})(([1-9]?\d(\.\d+)?)|100|(\.\d+))%))\)$}i,
|
||||
HSL: %r{^hsl\(((((([12]?[1-9]?\d)|[12]0\d|(3[0-6]\d))(\.\d+)?)|(\.\d+))(deg)?|(0|0?\.\d+)turn|(([0-6](\.\d+)?)|(\.\d+))rad)((,\s?(([1-9]?\d(\.\d+)?)|100|(\.\d+))%){2}|(\s(([1-9]?\d(\.\d+)?)|100|(\.\d+))%){2})\)$}i,
|
||||
HEX: %r{^#([\da-f]{3}){1,2}$}i
|
||||
}.freeze
|
||||
|
||||
def validate_each(record, attribute, value)
|
||||
|
|
|
@ -13,7 +13,7 @@ module ActiveRecord
|
|||
if column_names.instance_of?(Array)
|
||||
index_columns_new = []
|
||||
column_names.each do |i|
|
||||
if i =~ /^"(name|login|locale|alias)"$/ || i.end_with?('name"')
|
||||
if i =~ %r{^"(name|login|locale|alias)"$} || i.end_with?('name"')
|
||||
index_columns_new.push "LOWER(#{i})"
|
||||
else
|
||||
index_columns_new.push i
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
class Class
|
||||
def to_app_model_url
|
||||
@to_app_model_url ||= begin
|
||||
to_s.gsub(/::/, '_')
|
||||
.gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
|
||||
.gsub(/([a-z\d])([A-Z])/, '\1_\2')
|
||||
to_s.gsub(%r{::}, '_')
|
||||
.gsub(%r{([A-Z]+)([A-Z][a-z])}, '\1_\2')
|
||||
.gsub(%r{([a-z\d])([A-Z])}, '\1_\2')
|
||||
.tr('-', '_')
|
||||
.downcase
|
||||
end
|
||||
end
|
||||
|
||||
def to_app_model
|
||||
@to_app_model ||= to_s.gsub(/::/, '').to_sym
|
||||
@to_app_model ||= to_s.gsub(%r{::}, '').to_sym
|
||||
end
|
||||
end
|
||||
|
|
|
@ -6,8 +6,8 @@ class String
|
|||
|
||||
def strip!
|
||||
begin
|
||||
sub!(/\A[[[:space:]]\u{200B}\u{FEFF}]+/, '')
|
||||
sub!(/[[[:space:]]\u{200B}\u{FEFF}]+\Z/, '')
|
||||
sub!(%r{\A[[[:space:]]\u{200B}\u{FEFF}]+}, '')
|
||||
sub!(%r{[[[:space:]]\u{200B}\u{FEFF}]+\Z}, '')
|
||||
|
||||
# if incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) (Encoding::CompatibilityError), use default
|
||||
rescue Encoding::CompatibilityError
|
||||
|
@ -18,8 +18,8 @@ class String
|
|||
|
||||
def strip
|
||||
begin
|
||||
new_string = sub(/\A[[[:space:]]\u{200B}\u{FEFF}]+/, '')
|
||||
new_string.sub!(/[[[:space:]]\u{200B}\u{FEFF}]+\Z/, '')
|
||||
new_string = sub(%r{\A[[[:space:]]\u{200B}\u{FEFF}]+}, '')
|
||||
new_string.sub!(%r{[[[:space:]]\u{200B}\u{FEFF}]+\Z}, '')
|
||||
|
||||
# if incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) (Encoding::CompatibilityError), use default
|
||||
rescue Encoding::CompatibilityError
|
||||
|
@ -46,7 +46,7 @@ class String
|
|||
|
||||
lines = self
|
||||
lines.split("\n").collect do |line|
|
||||
line.length > options[:line_width] ? line.gsub(/(.{1,#{options[:line_width]}})(\s+|$)/, "\\1\n").strip : line
|
||||
line.length > options[:line_width] ? line.gsub(%r{(.{1,#{options[:line_width]}})(\s+|$)}, "\\1\n").strip : line
|
||||
end * "\n"
|
||||
end
|
||||
|
||||
|
@ -61,9 +61,9 @@ class String
|
|||
|
||||
def to_filename
|
||||
camel_cased_word = dup
|
||||
camel_cased_word.gsub(/::/, '/')
|
||||
.gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
|
||||
.gsub(/([a-z\d])([A-Z])/, '\1_\2')
|
||||
camel_cased_word.gsub(%r{::}, '/')
|
||||
.gsub(%r{([A-Z]+)([A-Z][a-z])}, '\1_\2')
|
||||
.gsub(%r{([a-z\d])([A-Z])}, '\1_\2')
|
||||
.tr('-', '_').downcase
|
||||
end
|
||||
|
||||
|
@ -119,7 +119,7 @@ class String
|
|||
end
|
||||
|
||||
# remove html comments
|
||||
string.gsub!(/<!--.+?-->/m, '')
|
||||
string.gsub!(%r{<!--.+?-->}m, '')
|
||||
|
||||
# find <a href=....> and replace it with [x]
|
||||
link_list = ''
|
||||
|
@ -128,7 +128,7 @@ class String
|
|||
string.gsub!(%r{<a[[:space:]]+(|\S+[[:space:]]+)href=("|')(.+?)("|')([[:space:]]*|[[:space:]]+[^>]*)>(.+?)<[[:space:]]*/a[[:space:]]*>}mxi) do |_placeholder|
|
||||
link = $3
|
||||
text = $6
|
||||
text.gsub!(/<.+?>/, '')
|
||||
text.gsub!(%r{<.+?>}, '')
|
||||
|
||||
link_compare = link.dup
|
||||
if link_compare.present?
|
||||
|
@ -147,18 +147,18 @@ class String
|
|||
|
||||
if link_compare.present? && text_compare.blank?
|
||||
link
|
||||
elsif (link_compare.blank? && text_compare.present?) || (link_compare && link_compare =~ /^mailto/i)
|
||||
elsif (link_compare.blank? && text_compare.present?) || (link_compare && link_compare =~ %r{^mailto}i)
|
||||
text
|
||||
elsif link_compare.present? && text_compare.present? && (link_compare == text_compare || link_compare == "mailto:#{text}".downcase || link_compare == "http://#{text}".downcase)
|
||||
"######LINKEXT:#{link}/TEXT:#{text}######"
|
||||
elsif text !~ /^http/
|
||||
elsif text !~ %r{^http}
|
||||
"#{text} (######LINKRAW:#{link}######)"
|
||||
else
|
||||
"#{link} (######LINKRAW:#{text}######)"
|
||||
end
|
||||
end
|
||||
elsif string.scan(/<a[[:space:]]/i).count < 5_000
|
||||
string.gsub!(/<a[[:space:]].*?href=("|')(.+?)("|').*?>/ix) do
|
||||
elsif string.scan(%r{<a[[:space:]]}i).count < 5_000
|
||||
string.gsub!(%r{<a[[:space:]].*?href=("|')(.+?)("|').*?>}ix) do
|
||||
link = $2
|
||||
counter = counter + 1
|
||||
link_list += "[#{counter}] #{link}\n"
|
||||
|
@ -170,35 +170,35 @@ class String
|
|||
string.gsub!(%r{<style(|[[:space:]].+?)>(.+?)</style>}im, '')
|
||||
|
||||
# remove empty lines
|
||||
string.gsub!(/^[[:space:]]*/m, '')
|
||||
string.gsub!(%r{^[[:space:]]*}m, '')
|
||||
if strict
|
||||
string.gsub!(%r{< [[:space:]]* (/*) [[:space:]]* (b|i|ul|ol|li|u|h1|h2|h3|hr) ([[:space:]]*|[[:space:]]+[^>]*) >}mxi, '######\1\2######')
|
||||
end
|
||||
|
||||
# pre/code handling 1/2
|
||||
string.gsub!(%r{<pre>(.+?)</pre>}m) do |placeholder|
|
||||
placeholder.gsub(/\n/, '###BR###')
|
||||
placeholder.gsub(%r{\n}, '###BR###')
|
||||
end
|
||||
string.gsub!(%r{<code>(.+?)</code>}m) do |placeholder|
|
||||
placeholder.gsub(/\n/, '###BR###')
|
||||
placeholder.gsub(%r{\n}, '###BR###')
|
||||
end
|
||||
|
||||
# insert spaces on [A-z]\n[A-z]
|
||||
string.gsub!(/([A-z])[[:space:]]([A-z])/m, '\1 \2')
|
||||
string.gsub!(%r{([A-z])[[:space:]]([A-z])}m, '\1 \2')
|
||||
|
||||
# remove all new lines
|
||||
string.gsub!(/(\n\r|\r\r\n|\r\n|\n)/, '')
|
||||
string.gsub!(%r{(\n\r|\r\r\n|\r\n|\n)}, '')
|
||||
|
||||
# blockquote handling
|
||||
string.gsub!(%r{<blockquote(| [^>]*)>(.+?)</blockquote>}m) do
|
||||
"\n#{$2.html2text(true).gsub(/^(.*)$/, '> \1')}\n"
|
||||
"\n#{$2.html2text(true).gsub(%r{^(.*)$}, '> \1')}\n"
|
||||
end
|
||||
|
||||
# pre/code handling 2/2
|
||||
string.gsub!(/###BR###/, "\n")
|
||||
string.gsub!(%r{###BR###}, "\n")
|
||||
|
||||
# add counting
|
||||
string.gsub!(/<li(| [^>]*)>/i, "\n* ")
|
||||
string.gsub!(%r{<li(| [^>]*)>}i, "\n* ")
|
||||
|
||||
# add hr
|
||||
string.gsub!(%r{<hr(|/| [^>]*)>}i, "\n___\n")
|
||||
|
@ -214,10 +214,10 @@ class String
|
|||
string.gsub!(%r{</td>}i, ' ')
|
||||
|
||||
# strip all other tags
|
||||
string.gsub!(/<.+?>/, '')
|
||||
string.gsub!(%r{<.+?>}, '')
|
||||
|
||||
# replace multiple spaces with one
|
||||
string.gsub!(/ /, ' ')
|
||||
string.gsub!(%r{ }, ' ')
|
||||
|
||||
# add hyperlinks
|
||||
if strict
|
||||
|
@ -225,11 +225,11 @@ class String
|
|||
pre = $1
|
||||
content = $2
|
||||
post = $5
|
||||
if content.match?(/^www/i)
|
||||
if content.match?(%r{^www}i)
|
||||
content = "http://#{content}"
|
||||
end
|
||||
|
||||
if content =~ /^(http|https|ftp|tel)/i
|
||||
if content =~ %r{^(http|https|ftp|tel)}i
|
||||
"#{pre}######LINKRAW:#{content}#######{post}"
|
||||
else
|
||||
"#{pre}#{content}#{post}"
|
||||
|
@ -250,12 +250,12 @@ class String
|
|||
string.gsub!(' ', ' ')
|
||||
|
||||
# encode html entities like "–"
|
||||
string.gsub!(/(&\#(\d+);?)/x) do
|
||||
string.gsub!(%r{(&\#(\d+);?)}x) do
|
||||
$2.chr
|
||||
end
|
||||
|
||||
# encode html entities like "d;"
|
||||
string.gsub!(/(&\#[xX]([0-9a-fA-F]+);?)/x) do
|
||||
string.gsub!(%r{(&\#[xX]([0-9a-fA-F]+);?)}x) do
|
||||
chr_orig = $1
|
||||
hex = $2.hex
|
||||
if hex
|
||||
|
@ -283,10 +283,10 @@ class String
|
|||
string = string.utf8_encode(fallback: :read_as_sanitized_binary)
|
||||
|
||||
# remove tailing empty spaces
|
||||
string.gsub!(/[[:blank:]]+$/, '')
|
||||
string.gsub!(%r{[[:blank:]]+$}, '')
|
||||
|
||||
# remove double multiple empty lines
|
||||
string.gsub!(/\n\n\n+/, "\n\n")
|
||||
string.gsub!(%r{\n\n\n+}, "\n\n")
|
||||
|
||||
# add extracted links
|
||||
if link_list != ''
|
||||
|
@ -294,7 +294,7 @@ class String
|
|||
end
|
||||
|
||||
# remove double multiple empty lines
|
||||
string.gsub!(/\n\n\n+/, "\n\n")
|
||||
string.gsub!(%r{\n\n\n+}, "\n\n")
|
||||
|
||||
string.strip
|
||||
end
|
||||
|
@ -307,7 +307,7 @@ class String
|
|||
|
||||
def text2html
|
||||
text = CGI.escapeHTML(self)
|
||||
text.gsub!(/\n/, '<br>')
|
||||
text.gsub!(%r{\n}, '<br>')
|
||||
text.chomp
|
||||
end
|
||||
|
||||
|
@ -327,8 +327,8 @@ class String
|
|||
string = html2text.text2html
|
||||
string.signature_identify('text')
|
||||
marker_template = '<span class="js-signatureMarker"></span>'
|
||||
string.sub!(/######SIGNATURE_MARKER######/, marker_template)
|
||||
string.gsub!(/######SIGNATURE_MARKER######/, '')
|
||||
string.sub!(%r{######SIGNATURE_MARKER######}, marker_template)
|
||||
string.gsub!(%r{######SIGNATURE_MARKER######}, '')
|
||||
return string.chomp
|
||||
end
|
||||
string.gsub!(%r{(<p>[[:space:]]*</p>([[:space:]]*)){2,}}im, '<p> </p>\2')
|
||||
|
@ -340,7 +340,7 @@ class String
|
|||
string.gsub!(%r{<p>[[:space:]]*</p>(<br(|/)>[[:space:]]*)+<p>[[:space:]]*</p>}im, '<p> </p><p> </p>')
|
||||
string.gsub!(%r\(<div>[[:space:]]*</div>[[:space:]]*){2,}\im, '<div> </div>')
|
||||
string.gsub!(%r{<div> </div>[[:space:]]*(<div> </div>){1,}}im, '<div> </div>')
|
||||
string.gsub!(/(<br>[[:space:]]*){3,}/im, '<br><br>')
|
||||
string.gsub!(%r{(<br>[[:space:]]*){3,}}im, '<br><br>')
|
||||
string.gsub!(%r\(<br(|/)>[[:space:]]*){3,}\im, '<br/><br/>')
|
||||
string.gsub!(%r{<p>[[:space:]]+</p>}im, '<p> </p>')
|
||||
string.gsub!(%r{\A(<br(|/)>[[:space:]]*)*}i, '')
|
||||
|
@ -350,8 +350,8 @@ class String
|
|||
string.signature_identify('html')
|
||||
|
||||
marker_template = '<span class="js-signatureMarker"></span>'
|
||||
string.sub!(/######SIGNATURE_MARKER######/, marker_template)
|
||||
string.gsub!(/######SIGNATURE_MARKER######/, '')
|
||||
string.sub!(%r{######SIGNATURE_MARKER######}, marker_template)
|
||||
string.gsub!(%r{######SIGNATURE_MARKER######}, '')
|
||||
string.chomp
|
||||
end
|
||||
|
||||
|
@ -371,7 +371,7 @@ class String
|
|||
'<div(|.+?)>[[:space:]]*<br>[[:space:]]*(On|Am|Le|El|Den|Dňa|W dniu|Il|Op|Dne|Dana)[[:space:]].{1,500}<blockquote',
|
||||
]
|
||||
map.each do |regexp|
|
||||
string.sub!(/#{regexp}/m) do |placeholder|
|
||||
string.sub!(%r{#{regexp}}m) do |placeholder|
|
||||
"#{marker}#{placeholder}"
|
||||
end
|
||||
end
|
||||
|
@ -385,7 +385,7 @@ class String
|
|||
end
|
||||
|
||||
# search for signature separator "--\n"
|
||||
string.sub!(/^\s{0,2}--\s{0,2}$/) do |placeholder|
|
||||
string.sub!(%r{^\s{0,2}--\s{0,2}$}) do |placeholder|
|
||||
"#{marker}#{placeholder}"
|
||||
end
|
||||
|
||||
|
@ -442,7 +442,7 @@ class String
|
|||
#map['word-en-de'] = "[^#{marker}].{1,250}\s(wrote|schrieb):"
|
||||
|
||||
map.each_value do |regexp|
|
||||
string.sub!(/#{regexp}/) do |placeholder|
|
||||
string.sub!(%r{#{regexp}}) do |placeholder|
|
||||
"#{marker}#{placeholder}"
|
||||
rescue
|
||||
# regexp was not possible because of some string encoding issue, use next
|
||||
|
|
|
@ -60,7 +60,7 @@ returns
|
|||
def self.parse_email(email)
|
||||
user = nil
|
||||
domain = nil
|
||||
if email =~ /^(.+?)@(.+?)$/
|
||||
if email =~ %r{^(.+?)@(.+?)$}
|
||||
user = $1
|
||||
domain = $2
|
||||
end
|
||||
|
|
|
@ -71,7 +71,7 @@ returns on fail
|
|||
provider_map.each_value do |settings|
|
||||
domains.each do |domain_to_check|
|
||||
|
||||
next if !domain_to_check.match?(/#{settings[:domain]}/i)
|
||||
next if !domain_to_check.match?(%r{#{settings[:domain]}}i)
|
||||
|
||||
# add folder to config if needed
|
||||
if params[:folder].present? && settings[:inbound] && settings[:inbound][:options]
|
||||
|
@ -347,7 +347,7 @@ returns on fail
|
|||
}
|
||||
white_map.each_key do |key|
|
||||
|
||||
next if !e.message.match?(/#{Regexp.escape(key)}/i)
|
||||
next if !e.message.match?(%r{#{Regexp.escape(key)}}i)
|
||||
|
||||
return {
|
||||
result: 'ok',
|
||||
|
@ -372,7 +372,7 @@ returns on fail
|
|||
|
||||
def self.invalid_field(message_backend)
|
||||
invalid_fields.each do |key, fields|
|
||||
return fields if message_backend.match?(/#{Regexp.escape(key)}/i)
|
||||
return fields if message_backend.match?(%r{#{Regexp.escape(key)}}i)
|
||||
end
|
||||
{}
|
||||
end
|
||||
|
@ -397,7 +397,7 @@ returns on fail
|
|||
|
||||
def self.translation(message_backend)
|
||||
translations.each do |key, message_human|
|
||||
return message_human if message_backend.match?(/#{Regexp.escape(key)}/i)
|
||||
return message_human if message_backend.match?(%r{#{Regexp.escape(key)}}i)
|
||||
end
|
||||
nil
|
||||
end
|
||||
|
|
|
@ -62,7 +62,7 @@ satinize html string based on whiltelist
|
|||
# prepare src attribute
|
||||
if node['src']
|
||||
src = cleanup_target(CGI.unescape(node['src']))
|
||||
if src =~ /(javascript|livescript|vbscript):/i || src.downcase.start_with?('http', 'ftp', '//')
|
||||
if src =~ %r{(javascript|livescript|vbscript):}i || src.downcase.start_with?('http', 'ftp', '//')
|
||||
node.remove
|
||||
Loofah::Scrubber::STOP
|
||||
end
|
||||
|
@ -70,7 +70,7 @@ satinize html string based on whiltelist
|
|||
|
||||
# clean class / only use allowed classes
|
||||
if node['class']
|
||||
classes = node['class'].gsub(/\t|\n|\r/, '').split
|
||||
classes = node['class'].gsub(%r{\t|\n|\r}, '').split
|
||||
class_new = ''
|
||||
classes.each do |local_class|
|
||||
next if classes_whitelist.exclude?(local_class.to_s.strip)
|
||||
|
@ -100,13 +100,13 @@ satinize html string based on whiltelist
|
|||
node.delete(key)
|
||||
next if value.blank?
|
||||
|
||||
value += 'px' if !value.match?(/%|px|em/i)
|
||||
value += 'px' if !value.match?(%r{%|px|em}i)
|
||||
node['style'] += "#{key}:#{value}"
|
||||
end
|
||||
|
||||
# clean style / only use allowed style properties
|
||||
if node['style']
|
||||
pears = node['style'].downcase.gsub(/\t|\n|\r/, '').split(';')
|
||||
pears = node['style'].downcase.gsub(%r{\t|\n|\r}, '').split(';')
|
||||
style = ''
|
||||
pears.each do |local_pear|
|
||||
prop = local_pear.split(':')
|
||||
|
@ -115,7 +115,7 @@ satinize html string based on whiltelist
|
|||
key = prop[0].strip
|
||||
next if css_properties_whitelist.exclude?(node.name)
|
||||
next if css_properties_whitelist[node.name].exclude?(key)
|
||||
next if css_values_blacklist[node.name]&.include?(local_pear.gsub(/[[:space:]]/, '').strip)
|
||||
next if css_values_blacklist[node.name]&.include?(local_pear.gsub(%r{[[:space:]]}, '').strip)
|
||||
|
||||
style += "#{local_pear};"
|
||||
end
|
||||
|
@ -130,7 +130,7 @@ satinize html string based on whiltelist
|
|||
next if !node[attribute_name]
|
||||
|
||||
href = cleanup_target(node[attribute_name])
|
||||
next if !href.match?(/(javascript|livescript|vbscript):/i)
|
||||
next if !href.match?(%r{(javascript|livescript|vbscript):}i)
|
||||
|
||||
node.delete(attribute_name)
|
||||
end
|
||||
|
@ -159,8 +159,8 @@ satinize html string based on whiltelist
|
|||
# wrap plain-text URLs in <a> tags
|
||||
if node.is_a?(Nokogiri::XML::Text) && node.content.present? && node.content.include?(':') && node.ancestors.map(&:name).exclude?('a')
|
||||
urls = URI.extract(node.content, LINKABLE_URL_SCHEMES)
|
||||
.map { |u| u.sub(/[,.]$/, '') } # URI::extract captures trailing dots/commas
|
||||
.reject { |u| u.match?(/^[^:]+:$/) } # URI::extract will match, e.g., 'tel:'
|
||||
.map { |u| u.sub(%r{[,.]$}, '') } # URI::extract captures trailing dots/commas
|
||||
.reject { |u| u.match?(%r{^[^:]+:$}) } # URI::extract will match, e.g., 'tel:'
|
||||
|
||||
next if urls.blank?
|
||||
|
||||
|
@ -170,14 +170,14 @@ satinize html string based on whiltelist
|
|||
# prepare links
|
||||
if node['href']
|
||||
href = cleanup_target(node['href'], keep_spaces: true)
|
||||
href_without_spaces = href.gsub(/[[:space:]]/, '')
|
||||
href_without_spaces = href.gsub(%r{[[:space:]]}, '')
|
||||
if external && href_without_spaces.present? && !href_without_spaces.downcase.start_with?('mailto:') && !href_without_spaces.downcase.start_with?('//') && href_without_spaces.downcase !~ %r{^.{1,6}://.+?}
|
||||
node['href'] = "http://#{node['href']}"
|
||||
href = node['href']
|
||||
href_without_spaces = href.gsub(/[[:space:]]/, '')
|
||||
href_without_spaces = href.gsub(%r{[[:space:]]}, '')
|
||||
end
|
||||
|
||||
next if !CGI.unescape(href_without_spaces).utf8_encode(fallback: :read_as_sanitized_binary).gsub(/[[:space:]]/, '').downcase.start_with?('http', 'ftp', '//')
|
||||
next if !CGI.unescape(href_without_spaces).utf8_encode(fallback: :read_as_sanitized_binary).gsub(%r{[[:space:]]}, '').downcase.start_with?('http', 'ftp', '//')
|
||||
|
||||
node.set_attribute('href', href)
|
||||
node.set_attribute('rel', 'nofollow noreferrer noopener')
|
||||
|
@ -219,15 +219,15 @@ cleanup html string:
|
|||
|
||||
def self.cleanup(string, timeout: true)
|
||||
Timeout.timeout(timeout ? PROCESSING_TIMEOUT : nil) do
|
||||
string.gsub!(/<[A-z]:[A-z]>/, '')
|
||||
string.gsub!(%r{<[A-z]:[A-z]>}, '')
|
||||
string.gsub!(%r{</[A-z]:[A-z]>}, '')
|
||||
string.delete!("\t")
|
||||
|
||||
# remove all new lines
|
||||
string.gsub!(/(\n\r|\r\r\n|\r\n|\n)/, "\n")
|
||||
string.gsub!(%r{(\n\r|\r\r\n|\r\n|\n)}, "\n")
|
||||
|
||||
# remove double multiple empty lines
|
||||
string.gsub!(/\n\n\n+/, "\n\n")
|
||||
string.gsub!(%r{\n\n\n+}, "\n\n")
|
||||
|
||||
string = cleanup_structure(string, 'pre')
|
||||
string = cleanup_structure(string)
|
||||
|
@ -302,7 +302,7 @@ cleanup html string:
|
|||
content = node.content
|
||||
if content
|
||||
if content != ' ' && content != "\n"
|
||||
content.gsub!(/[[:space:]]+/, ' ')
|
||||
content.gsub!(%r{[[:space:]]+}, ' ')
|
||||
end
|
||||
if node.previous
|
||||
if node.previous.name == 'div' || node.previous.name == 'p'
|
||||
|
@ -329,11 +329,11 @@ cleanup html string:
|
|||
end
|
||||
url = urls.shift
|
||||
|
||||
if content =~ /^(.*)#{Regexp.quote(url)}(.*)$/mx
|
||||
if content =~ %r{^(.*)#{Regexp.quote(url)}(.*)$}mx
|
||||
pre = $1
|
||||
post = $2
|
||||
|
||||
if url.match?(/^www/i)
|
||||
if url.match?(%r{^www}i)
|
||||
url = "http://#{url}"
|
||||
end
|
||||
|
||||
|
@ -367,11 +367,11 @@ cleanup html string:
|
|||
|
||||
def self.cleanup_target(string, **options)
|
||||
cleaned_string = string.utf8_encode(fallback: :read_as_sanitized_binary)
|
||||
cleaned_string = cleaned_string.gsub(/[[:space:]]/, '') if !options[:keep_spaces]
|
||||
cleaned_string = cleaned_string.gsub(%r{[[:space:]]}, '') if !options[:keep_spaces]
|
||||
cleaned_string = cleaned_string.strip
|
||||
.delete("\t\n\r\u0000")
|
||||
.gsub(%r{/\*.*?\*/}, '')
|
||||
.gsub(/<!--.*?-->/, '')
|
||||
.gsub(%r{<!--.*?-->}, '')
|
||||
|
||||
sanitize_attachment_disposition(cleaned_string)
|
||||
end
|
||||
|
@ -392,8 +392,8 @@ cleanup html string:
|
|||
end
|
||||
|
||||
def self.url_same?(url_new, url_old)
|
||||
url_new = CGI.unescape(url_new.to_s).utf8_encode(fallback: :read_as_sanitized_binary).downcase.delete_suffix('/').gsub(/[[:space:]]|\t|\n|\r/, '').strip
|
||||
url_old = CGI.unescape(url_old.to_s).utf8_encode(fallback: :read_as_sanitized_binary).downcase.delete_suffix('/').gsub(/[[:space:]]|\t|\n|\r/, '').strip
|
||||
url_new = CGI.unescape(url_new.to_s).utf8_encode(fallback: :read_as_sanitized_binary).downcase.delete_suffix('/').gsub(%r{[[:space:]]|\t|\n|\r}, '').strip
|
||||
url_old = CGI.unescape(url_old.to_s).utf8_encode(fallback: :read_as_sanitized_binary).downcase.delete_suffix('/').gsub(%r{[[:space:]]|\t|\n|\r}, '').strip
|
||||
url_new = html_decode(url_new).sub('/?', '?')
|
||||
url_old = html_decode(url_old).sub('/?', '?')
|
||||
return true if url_new == url_old
|
||||
|
@ -460,7 +460,7 @@ satinize style of img tags
|
|||
if node['src']
|
||||
style = 'max-width:100%;'
|
||||
if node['style']
|
||||
pears = node['style'].downcase.gsub(/\t|\n|\r/, '').split(';')
|
||||
pears = node['style'].downcase.gsub(%r{\t|\n|\r}, '').split(';')
|
||||
pears.each do |local_pear|
|
||||
prop = local_pear.split(':')
|
||||
next if !prop[0]
|
||||
|
|
|
@ -124,7 +124,7 @@ or with filter:
|
|||
},
|
||||
)
|
||||
|
||||
raise "Can't fetch objects from #{url}: Unable to parse response from server. Invalid JSON response." if !result.success? && result.error =~ /JSON::ParserError:.+?\s+unexpected\s+token\s+at\s+'<!DOCTYPE\s+html/i
|
||||
raise "Can't fetch objects from #{url}: Unable to parse response from server. Invalid JSON response." if !result.success? && result.error =~ %r{JSON::ParserError:.+?\s+unexpected\s+token\s+at\s+'<!DOCTYPE\s+html}i
|
||||
raise "Can't fetch objects from #{url}: #{result.error}" if !result.success?
|
||||
|
||||
# add link to idoit
|
||||
|
|
|
@ -39,7 +39,7 @@ module Import
|
|||
end
|
||||
|
||||
def module_name
|
||||
name.to_s.sub(/Import::/, '').sub(/Factory/, '')
|
||||
name.to_s.sub(%r{Import::}, '').sub(%r{Factory}, '')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -60,7 +60,7 @@ module Import
|
|||
next if value.nil?
|
||||
|
||||
example = value.to_utf8(fallback: :read_as_sanitized_binary)
|
||||
example.gsub!(/^(.{20,}?).*$/m, '\1...')
|
||||
example.gsub!(%r{^(.{20,}?).*$}m, '\1...')
|
||||
|
||||
@examples[attribute] = "#{attribute} (e. g. #{example})"
|
||||
end
|
||||
|
|
|
@ -92,7 +92,7 @@ module Import
|
|||
mapped.delete(:content_type) if mapped[:content_type].blank?
|
||||
return mapped if !mapped[:content_type]
|
||||
|
||||
mapped[:content_type].sub!(/[;,]\s?.+?$/, '')
|
||||
mapped[:content_type].sub!(%r{[;,]\s?.+?$}, '')
|
||||
mapped
|
||||
end
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ module Import
|
|||
def extract_email(from)
|
||||
Mail::Address.new(from).address
|
||||
rescue
|
||||
return from if from !~ /<\s*([^>]+)/
|
||||
return from if from !~ %r{<\s*([^>]+)}
|
||||
|
||||
$1.strip
|
||||
end
|
||||
|
|
|
@ -14,7 +14,7 @@ module Import
|
|||
end
|
||||
|
||||
def self.convert_name(dynamic_field_name)
|
||||
dynamic_field_name.underscore.sub(/_id(s)?\z/, '_no\1')
|
||||
dynamic_field_name.underscore.sub(%r{_id(s)?\z}, '_no\1')
|
||||
end
|
||||
|
||||
private
|
||||
|
|
|
@ -7,7 +7,7 @@ module Import
|
|||
# "%%Queue1%%5%%Postmaster%%1"
|
||||
from = nil
|
||||
to = nil
|
||||
if data =~ /%%(.+?)%%(.+?)%%(.+?)%%(.+?)$/
|
||||
if data =~ %r{%%(.+?)%%(.+?)%%(.+?)%%(.+?)$}
|
||||
from = $1
|
||||
from_id = $2
|
||||
to = $3
|
||||
|
|
|
@ -7,7 +7,7 @@ module Import
|
|||
# "%%3 normal%%3%%5 very high%%5"
|
||||
from = nil
|
||||
to = nil
|
||||
if data =~ /%%(.+?)%%(.+?)%%(.+?)%%(.+?)$/
|
||||
if data =~ %r{%%(.+?)%%(.+?)%%(.+?)%%(.+?)$}
|
||||
from = $1
|
||||
from_id = $2
|
||||
to = $3
|
||||
|
|
|
@ -7,7 +7,7 @@ module Import
|
|||
# "%%new%%open%%"
|
||||
from = nil
|
||||
to = nil
|
||||
if data =~ /%%(.+?)%%(.+?)%%/
|
||||
if data =~ %r{%%(.+?)%%(.+?)%%}
|
||||
from = $1
|
||||
to = $2
|
||||
state_from = ::Ticket::State.lookup(name: from)
|
||||
|
|
|
@ -161,7 +161,7 @@ module Import
|
|||
result.push 'Admin'
|
||||
end
|
||||
|
||||
return result if !group['Name'].match?(/^(stats|report)/)
|
||||
return result if !group['Name'].match?(%r{^(stats|report)})
|
||||
return result if !( permissions.include?('ro') || permissions.include?('rw') )
|
||||
|
||||
result.push 'Report'
|
||||
|
|
|
@ -189,7 +189,7 @@ class Ldap
|
|||
end
|
||||
|
||||
def parse_host
|
||||
return if @host !~ /\A([^:]+):(.+?)\z/
|
||||
return if @host !~ %r{\A([^:]+):(.+?)\z}
|
||||
|
||||
@host = $1
|
||||
@port = $2.to_i
|
||||
|
|
|
@ -16,7 +16,7 @@ class Ldap
|
|||
#
|
||||
# @return [Boolean]
|
||||
def self.valid?(string)
|
||||
string.match?(/\w{8}-\w{4}-\w{4}-\w{4}-\w+/)
|
||||
string.match?(%r{\w{8}-\w{4}-\w{4}-\w{4}-\w+})
|
||||
end
|
||||
|
||||
# Convers a given GUID string into the HEX equivalent.
|
||||
|
@ -88,7 +88,7 @@ class Ldap
|
|||
string.delete!('-')
|
||||
|
||||
# split every two chars
|
||||
parts = string.scan(/.{1,2}/)
|
||||
parts = string.scan(%r{.{1,2}})
|
||||
|
||||
# re-order according to oracle format index and join
|
||||
oracle_format_indices = [3, 2, 1, 0, 5, 4, 7, 6, 8, 9, 10, 11, 12, 13, 14, 15]
|
||||
|
|
|
@ -30,7 +30,7 @@ module Mixin
|
|||
|
||||
if File.directory?(sub_path)
|
||||
sub_paths.push(sub_path)
|
||||
elsif sub_path =~ /\A(.*)\.rb\z/
|
||||
elsif sub_path =~ %r{\A(.*)\.rb\z}
|
||||
require_path = $1
|
||||
require_dependency(require_path)
|
||||
end
|
||||
|
|
|
@ -30,7 +30,7 @@ returns
|
|||
dir = Rails.root.join('app/models').to_s
|
||||
tables = ActiveRecord::Base.connection.tables
|
||||
Dir.glob("#{dir}/**/*.rb") do |entry|
|
||||
next if entry.match?(/application_model/i)
|
||||
next if entry.match?(%r{application_model}i)
|
||||
next if entry.match?(%r{channel/}i)
|
||||
next if entry.match?(%r{observer/}i)
|
||||
next if entry.match?(%r{store/provider/}i)
|
||||
|
|
|
@ -244,8 +244,8 @@ retunes
|
|||
result.each do |item|
|
||||
next if item['type'] != 'notification'
|
||||
next if item['object'] != 'Ticket'
|
||||
next if !item['value_to'].match?(/#{recipient.email}/i)
|
||||
next if !item['value_to'].match?(/#{type}/i)
|
||||
next if !item['value_to'].match?(%r{#{recipient.email}}i)
|
||||
next if !item['value_to'].match?(%r{#{type}}i)
|
||||
|
||||
count += 1
|
||||
end
|
||||
|
|
|
@ -106,7 +106,7 @@ examples how to use
|
|||
end
|
||||
|
||||
arguments = nil
|
||||
if /\A(?<method_id>[^(]+)\((?<parameter>[^)]+)\)\z/ =~ method
|
||||
if %r{\A(?<method_id>[^(]+)\((?<parameter>[^)]+)\)\z} =~ method
|
||||
|
||||
if parameter != parameter.to_i.to_s
|
||||
value = "\#{#{object_name}.#{object_methods_s} / invalid parameter: #{parameter}}"
|
||||
|
@ -185,7 +185,7 @@ examples how to use
|
|||
end
|
||||
|
||||
def data_key_valid?(key)
|
||||
return false if key =~ /`|\.(|\s*)(save|destroy|delete|remove|drop|update|create|new|all|where|find|raise|dump|rollback|freeze)/i && key !~ /(update|create)d_(at|by)/i
|
||||
return false if key =~ %r{`|\.(|\s*)(save|destroy|delete|remove|drop|update|create|new|all|where|find|raise|dump|rollback|freeze)}i && key !~ %r{(update|create)d_(at|by)}i
|
||||
|
||||
true
|
||||
end
|
||||
|
|
|
@ -17,17 +17,17 @@ examples how to use
|
|||
end
|
||||
|
||||
def to_s
|
||||
@template.gsub(/\#{\s*(.*?)\s*}/m) do
|
||||
@template.gsub(%r{\#{\s*(.*?)\s*}}m) do
|
||||
# some browsers start adding HTML tags
|
||||
# fixes https://github.com/zammad/zammad/issues/385
|
||||
input_template = $1.gsub(/\A<.+?>\s*|\s*<.+?>\z/, '')
|
||||
input_template = $1.gsub(%r{\A<.+?>\s*|\s*<.+?>\z}, '')
|
||||
|
||||
case input_template
|
||||
when /\At\('(.+?)'\)\z/m
|
||||
when %r{\At\('(.+?)'\)\z}m
|
||||
%(<%= t "#{sanitize_text($1)}", #{@escape} %>)
|
||||
when /\At\((.+?)\)\z/m
|
||||
when %r{\At\((.+?)\)\z}m
|
||||
%(<%= t d"#{sanitize_object_name($1)}", #{@escape} %>)
|
||||
when /\Aconfig\.(.+?)\z/m
|
||||
when %r{\Aconfig\.(.+?)\z}m
|
||||
%(<%= c "#{sanitize_object_name($1)}", #{@escape} %>)
|
||||
else
|
||||
%(<%= d "#{sanitize_object_name(input_template)}", #{@escape} %>)
|
||||
|
@ -37,7 +37,7 @@ examples how to use
|
|||
|
||||
def sanitize_text(string)
|
||||
string&.tr("\t\r\n", '')
|
||||
&.gsub(/(?<!\\)(?=")/, '\\')
|
||||
&.gsub(%r{(?<!\\)(?=")}, '\\')
|
||||
end
|
||||
|
||||
def sanitize_object_name(string)
|
||||
|
|
|
@ -44,7 +44,7 @@ module PasswordHash
|
|||
|
||||
def hashed_argon2i?(pw_hash, password)
|
||||
# taken from: https://github.com/technion/ruby-argon2/blob/7e1f4a2634316e370ab84150e4f5fd91d9263713/lib/argon2.rb#L33
|
||||
return false if !pw_hash.match?(/^\$argon2i\$.{,112}/)
|
||||
return false if !pw_hash.match?(%r{^\$argon2i\$.{,112}})
|
||||
|
||||
# Argon2::Password.verify_password verifies argon2i hashes, too
|
||||
verified?(pw_hash, password)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
class PasswordPolicy
|
||||
class Digit < PasswordPolicy::Backend
|
||||
|
||||
NEED_DIGIT_REGEXP = /\d/.freeze
|
||||
NEED_DIGIT_REGEXP = %r{\d}.freeze
|
||||
|
||||
def valid?
|
||||
@password.match? NEED_DIGIT_REGEXP
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
class PasswordPolicy
|
||||
class SpecialCharacter < PasswordPolicy::Backend
|
||||
|
||||
NEED_SPECIAL_CHARACTER_REGEXP = /\W/.freeze
|
||||
NEED_SPECIAL_CHARACTER_REGEXP = %r{\W}.freeze
|
||||
|
||||
def valid?
|
||||
@password.match? NEED_SPECIAL_CHARACTER_REGEXP
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
class PasswordPolicy
|
||||
class UpperAndLowerCaseCharacters < PasswordPolicy::Backend
|
||||
|
||||
UPPER_LOWER_REGEXPS = [/\p{Upper}.*\p{Upper}/, /\p{Lower}.*\p{Lower}/].freeze
|
||||
UPPER_LOWER_REGEXPS = [%r{\p{Upper}.*\p{Upper}}, %r{\p{Lower}.*\p{Lower}}].freeze
|
||||
|
||||
def valid?
|
||||
UPPER_LOWER_REGEXPS.all? { |regexp| @password.match?(regexp) }
|
||||
|
|
|
@ -88,7 +88,7 @@ returns
|
|||
replace = '\d\d:\d\d:\d\dZ$'
|
||||
end
|
||||
|
||||
next if key_as_string.iso8601.sub(/#{replace}/, '') != params[:range_start].iso8601.sub(/#{replace}/, '')
|
||||
next if key_as_string.iso8601.sub(%r{#{replace}}, '') != params[:range_start].iso8601.sub(%r{#{replace}}, '')
|
||||
next if match
|
||||
|
||||
match = true
|
||||
|
|
|
@ -342,7 +342,7 @@ remove whole data from index
|
|||
next if order_by&.at(index).blank?
|
||||
|
||||
# for sorting values use .keyword values (no analyzer is used - plain values)
|
||||
if value !~ /\./ && value !~ /_(time|date|till|id|ids|at)$/
|
||||
if value !~ %r{\.} && value !~ %r{_(time|date|till|id|ids|at)$}
|
||||
value += '.keyword'
|
||||
end
|
||||
result.push(
|
||||
|
@ -511,7 +511,7 @@ example for aggregations within one year
|
|||
|
||||
case data['pre_condition']
|
||||
when 'not_set'
|
||||
data['value'] = if key_tmp.match?(/^(created_by|updated_by|owner|customer|user)_id/)
|
||||
data['value'] = if key_tmp.match?(%r{^(created_by|updated_by|owner|customer|user)_id})
|
||||
1
|
||||
end
|
||||
when 'current_user.id'
|
||||
|
@ -534,12 +534,12 @@ example for aggregations within one year
|
|||
|
||||
if data['value'].is_a?(Array)
|
||||
data['value'].each do |value|
|
||||
next if !value.is_a?(String) || value !~ /[A-z]/
|
||||
next if !value.is_a?(String) || value !~ %r{[A-z]}
|
||||
|
||||
key_tmp += '.keyword'
|
||||
break
|
||||
end
|
||||
elsif data['value'].is_a?(String) && /[A-z]/.match?(data['value'])
|
||||
elsif data['value'].is_a?(String) && %r{[A-z]}.match?(data['value'])
|
||||
key_tmp += '.keyword'
|
||||
end
|
||||
end
|
||||
|
@ -549,14 +549,14 @@ example for aggregations within one year
|
|||
|
||||
if data['value'].is_a?(Array)
|
||||
data['value'].each_with_index do |value, index|
|
||||
next if !value.is_a?(String) || value !~ /[A-z]/
|
||||
next if !value.is_a?(String) || value !~ %r{[A-z]}
|
||||
|
||||
data['value'][index] = "*#{value}*"
|
||||
key_tmp += '.keyword'
|
||||
wildcard_or_term = 'wildcards'
|
||||
break
|
||||
end
|
||||
elsif data['value'].is_a?(String) && /[A-z]/.match?(data['value'])
|
||||
elsif data['value'].is_a?(String) && %r{[A-z]}.match?(data['value'])
|
||||
data['value'] = "*#{data['value']}*"
|
||||
key_tmp += '.keyword'
|
||||
wildcard_or_term = 'wildcard'
|
||||
|
|
|
@ -18,7 +18,7 @@ class Sequencer
|
|||
# model_name
|
||||
# model_name_
|
||||
# model_name
|
||||
without_double_underscores.gsub(/_id(s?)$/, '_no\1')
|
||||
without_double_underscores.gsub(%r{_id(s?)$}, '_no\1')
|
||||
end
|
||||
|
||||
def without_double_underscores
|
||||
|
@ -29,7 +29,7 @@ class Sequencer
|
|||
# model_name
|
||||
# model_name_
|
||||
# model_name
|
||||
only_supported_chars.gsub(/_{2,}/, '_')
|
||||
only_supported_chars.gsub(%r{_{2,}}, '_')
|
||||
end
|
||||
|
||||
def only_supported_chars
|
||||
|
@ -40,7 +40,7 @@ class Sequencer
|
|||
# model__name
|
||||
# model_name_
|
||||
# model_name
|
||||
downcased.split('').map { |char| char.match?(/[a-z0-9_]/) ? char : '_' }.join
|
||||
downcased.split('').map { |char| char.match?(%r{[a-z0-9_]}) ? char : '_' }.join
|
||||
end
|
||||
|
||||
def downcased
|
||||
|
|
|
@ -30,13 +30,13 @@ class Sequencer
|
|||
|
||||
def extract_email(source)
|
||||
# Support format like "Bob Smith (bob@example.com)"
|
||||
if source =~ /\((.+@.+)\)/
|
||||
if source =~ %r{\((.+@.+)\)}
|
||||
source = $1
|
||||
end
|
||||
|
||||
Mail::Address.new(source).address
|
||||
rescue
|
||||
return source if source !~ /<\s*([^>]+)/
|
||||
return source if source !~ %r{<\s*([^>]+)}
|
||||
|
||||
$1.strip
|
||||
end
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue