░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/gems/stringify_ids/lib
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: stringify_ids.rb
# frozen_string_literal: true # # Copyright (C) 2016 - 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 StringifyIds def self.recursively_stringify_ids(value, opts = {}) case value when Hash stringify_ids(value, opts) value.each_value { |v| recursively_stringify_ids(v, opts) if v.is_a?(Hash) || v.is_a?(Array) } when Array value.each { |v| recursively_stringify_ids(v, opts) if v.is_a?(Hash) || v.is_a?(Array) } end value end def self.stringify_ids(value, opts = {}) return unless value.is_a?(Hash) value.each_key do |key| next unless key.is_a?(String) || key.is_a?(Symbol) if /(^|_)id$/i.match?(key) # id, foo_id, etc. value[key] = stringify_id(value[key], opts) elsif key =~ /(^|_)ids$/i && value[key].is_a?(Array) # ids, foo_ids, etc. value[key].map! { |id| stringify_id(id, opts) } end end end def self.stringify_id(id, opts = {}) if opts[:reverse] id.is_a?(String) ? id.to_i : id else id.is_a?(Integer) ? id.to_s : id end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 stringify_ids.rb
RB
1.7 KB
2023-09-24 03:36
EDIT