Emi Matchu
d82c7f817a
Hmm, I think I made a mistake on `modeling_snapshot.rb:69`: I'm assigning the *entire* `item.swf_assets` relation to *just* the assets for the new model of it, which breaks all the other connections. First, I'm disabling modeling. Then, I'll restore a backup. Then, I'll write tests for that case, and fix it up!
56 lines
1.4 KiB
Ruby
56 lines
1.4 KiB
Ruby
class Pet < ApplicationRecord
|
|
belongs_to :pet_type
|
|
|
|
attr_reader :items, :pet_state, :alt_style
|
|
|
|
def load!(timeout: nil)
|
|
raise ModelingDisabled unless Rails.configuration.modeling_enabled
|
|
|
|
viewer_data_hash = Neopets::CustomPets.fetch_viewer_data(name, timeout:)
|
|
use_modeling_snapshot(ModelingSnapshot.new(viewer_data_hash))
|
|
end
|
|
|
|
def use_modeling_snapshot(snapshot)
|
|
self.pet_type = snapshot.pet_type
|
|
@pet_state = snapshot.pet_state
|
|
@alt_style = snapshot.alt_style
|
|
@items = snapshot.items
|
|
end
|
|
|
|
def wardrobe_query
|
|
{
|
|
name: self.name,
|
|
color: self.pet_type.color_id,
|
|
species: self.pet_type.species_id,
|
|
pose: self.pet_state.pose,
|
|
state: self.pet_state.id,
|
|
objects: self.items.map(&:id),
|
|
style: self.alt_style ? self.alt_style.id : nil,
|
|
}.to_query
|
|
end
|
|
|
|
def contributables
|
|
contributables = [pet_type, @pet_state, @alt_style].filter(&:present?)
|
|
items.each do |item|
|
|
contributables << item
|
|
contributables += item.pending_swf_assets
|
|
end
|
|
contributables
|
|
end
|
|
|
|
before_validation do
|
|
pet_type.save!
|
|
@pet_state.save! if @pet_state
|
|
@alt_style.save! if @alt_style
|
|
(@items || []).each(&:save!)
|
|
end
|
|
|
|
def self.load(name, **options)
|
|
pet = Pet.find_or_initialize_by(name: name)
|
|
pet.load!(**options)
|
|
pet
|
|
end
|
|
|
|
class UnexpectedDataFormat < RuntimeError;end
|
|
class ModelingDisabled < RuntimeError;end
|
|
end
|