2010-10-07 07:46:23 -07:00
|
|
|
class Pet < ActiveRecord::Base
|
|
|
|
GATEWAY_URL = 'http://www.neopets.com/amfphp/gateway.php'
|
|
|
|
AMF_SERVICE_NAME = 'CustomPetService'
|
|
|
|
PET_VIEWER_METHOD = 'getViewerData'
|
|
|
|
PET_NOT_FOUND_REMOTE_ERROR = 'PHP: Unable to retrieve records from the database.'
|
2010-10-10 11:33:54 -07:00
|
|
|
WARDROBE_PATH = '/wardrobe'
|
2010-10-07 07:46:23 -07:00
|
|
|
|
|
|
|
belongs_to :pet_type
|
|
|
|
|
2010-10-10 11:33:54 -07:00
|
|
|
attr_reader :items, :pet_state
|
2010-11-06 15:08:42 -07:00
|
|
|
attr_accessor :contributor
|
2010-10-07 07:46:23 -07:00
|
|
|
|
2010-11-27 15:41:06 -08:00
|
|
|
scope :with_pet_type_color_ids, lambda { |color_ids|
|
|
|
|
joins(:pet_type).where(PetType.arel_table[:id].in(color_ids))
|
|
|
|
}
|
|
|
|
|
2010-10-07 07:46:23 -07:00
|
|
|
def load!
|
|
|
|
require 'ostruct'
|
|
|
|
begin
|
|
|
|
envelope = Pet.amf_service.fetch(PET_VIEWER_METHOD, name, nil)
|
|
|
|
rescue RocketAMF::RemoteGateway::AMFError => e
|
|
|
|
if e.message == PET_NOT_FOUND_REMOTE_ERROR
|
|
|
|
raise PetNotFound, "Pet #{name.inspect} does not exist"
|
|
|
|
end
|
2011-02-19 19:49:13 -08:00
|
|
|
raise DownloadError, e.message
|
|
|
|
rescue RocketAMF::RemoteGateway::ConnectionError => e
|
|
|
|
raise DownloadError, e.message
|
2010-10-07 07:46:23 -07:00
|
|
|
end
|
|
|
|
contents = OpenStruct.new(envelope.messages[0].data.body)
|
|
|
|
pet_data = OpenStruct.new(contents.custom_pet)
|
|
|
|
self.pet_type = PetType.find_or_initialize_by_species_id_and_color_id(
|
|
|
|
pet_data.species_id.to_i,
|
|
|
|
pet_data.color_id.to_i
|
|
|
|
)
|
|
|
|
self.pet_type.body_id = pet_data.body_id
|
2010-10-08 07:53:28 -07:00
|
|
|
self.pet_type.origin_pet = self
|
2010-10-09 09:40:55 -07:00
|
|
|
biology = pet_data.biology_by_zone
|
|
|
|
biology[0] = nil # remove effects if present
|
|
|
|
@pet_state = self.pet_type.add_pet_state_from_biology! biology
|
2010-10-07 07:46:23 -07:00
|
|
|
@items = Item.collection_from_pet_type_and_registries(self.pet_type,
|
|
|
|
contents.object_info_registry, contents.object_asset_registry)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2010-10-10 19:18:42 -07:00
|
|
|
def wardrobe_query
|
|
|
|
{
|
|
|
|
:name => self.name,
|
|
|
|
:color => self.pet_type.color.id,
|
|
|
|
:species => self.pet_type.species.id,
|
|
|
|
:state => self.pet_state.id,
|
|
|
|
:objects => self.items.map(&:id)
|
|
|
|
}.to_query
|
2010-10-10 11:33:54 -07:00
|
|
|
end
|
|
|
|
|
2010-11-06 16:07:15 -07:00
|
|
|
def contributables
|
|
|
|
contributables = [pet_type, @pet_state]
|
|
|
|
items.each do |item|
|
|
|
|
contributables << item
|
|
|
|
contributables += item.pending_swf_assets
|
|
|
|
end
|
|
|
|
contributables
|
|
|
|
end
|
|
|
|
|
2010-11-06 15:08:42 -07:00
|
|
|
before_validation do
|
2010-11-06 16:07:15 -07:00
|
|
|
pet_type.save!
|
2011-02-22 14:54:20 -08:00
|
|
|
@pet_state.save!
|
2010-11-06 16:07:15 -07:00
|
|
|
items.each do |item|
|
|
|
|
item.handle_assets!
|
|
|
|
item.save!
|
2010-11-06 15:08:42 -07:00
|
|
|
end
|
|
|
|
end
|
2010-10-09 07:53:58 -07:00
|
|
|
|
2010-10-07 07:46:23 -07:00
|
|
|
def self.load(name)
|
|
|
|
pet = Pet.find_or_initialize_by_name(name)
|
|
|
|
pet.load!
|
|
|
|
pet
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def self.amf_service
|
|
|
|
@amf_service ||= gateway.service AMF_SERVICE_NAME
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.gateway
|
|
|
|
unless @gateway
|
|
|
|
require 'rocketamf/remote_gateway'
|
|
|
|
@gateway = RocketAMF::RemoteGateway.new(GATEWAY_URL)
|
|
|
|
end
|
|
|
|
@gateway
|
|
|
|
end
|
|
|
|
|
|
|
|
class PetNotFound < Exception;end
|
2011-02-19 19:49:13 -08:00
|
|
|
class DownloadError < Exception;end
|
2010-10-07 07:46:23 -07:00
|
|
|
end
|