░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/gems/utf8_cleaner/lib
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: utf8_cleaner.rb
# frozen_string_literal: true # # Copyright (C) 2011 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. # module Utf8Cleaner # Basically, this is a last ditch effort, you probably don't want to use it # as part of normal request processing. # It's used for things like filtering out ErrorReport data so that we can # make sure we won't get an invalid utf-8 error trying to save the error # report to the database. def self.strip_invalid_utf8(string) return string if string.nil? string = String.new(string, encoding: Encoding::UTF_8) unless string.encoding == Encoding::UTF_8 string = string.encode("UTF-8", undef: :replace, invalid: :replace, replace: "") # Strip ASCII backspace and delete characters string.tr("\b\x7F", "") end def self.recursively_strip_invalid_utf8!(object, force_utf8 = false) case object when Hash object.each_value { |o| recursively_strip_invalid_utf8!(o, force_utf8) } when Array object.each { |o| recursively_strip_invalid_utf8!(o, force_utf8) } when String if object.encoding == Encoding::ASCII_8BIT && force_utf8 object.force_encoding(Encoding::UTF_8) end unless object.valid_encoding? object.replace(strip_invalid_utf8(object)) end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 utf8_cleaner.rb
RB
1.8 KB
2023-09-24 03:36
EDIT