2010-10-10 19:18:42 -07:00
|
|
|
class OutfitsController < ApplicationController
|
2010-11-13 14:26:14 -08:00
|
|
|
before_filter :find_authorized_outfit, :only => [:update, :destroy]
|
2011-03-23 15:23:01 -07:00
|
|
|
|
2010-11-10 13:59:54 -08:00
|
|
|
def create
|
2011-02-10 14:50:47 -08:00
|
|
|
@outfit = Outfit.build_for_user(current_user, params[:outfit])
|
|
|
|
if @outfit.save
|
2012-07-17 09:15:04 -07:00
|
|
|
render :json => @outfit
|
2010-11-10 13:59:54 -08:00
|
|
|
else
|
2011-02-10 14:50:47 -08:00
|
|
|
render_outfit_errors
|
2010-11-10 13:59:54 -08:00
|
|
|
end
|
|
|
|
end
|
2011-03-23 15:23:01 -07:00
|
|
|
|
|
|
|
def index
|
|
|
|
if user_signed_in?
|
2012-08-09 15:32:33 -07:00
|
|
|
@outfits = current_user.outfits.
|
|
|
|
includes(:item_outfit_relationships, {:pet_state => :pet_type}).
|
|
|
|
wardrobe_order
|
2011-03-23 15:23:01 -07:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { render }
|
|
|
|
format.json { render :json => @outfits }
|
|
|
|
end
|
|
|
|
else
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to login_path(:return_to => request.fullpath) }
|
|
|
|
format.json { render :json => [] }
|
|
|
|
end
|
|
|
|
end
|
2010-11-11 10:43:22 -08:00
|
|
|
end
|
2011-03-23 15:23:01 -07:00
|
|
|
|
2010-11-11 10:43:22 -08:00
|
|
|
def destroy
|
2013-01-03 17:32:17 -08:00
|
|
|
@outfit.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html {
|
|
|
|
flash[:success] = t('outfits.destroy.success',
|
|
|
|
:outfit_name => @outfit.name)
|
|
|
|
redirect_to current_user_outfits_path
|
|
|
|
}
|
|
|
|
format.json { render :json => true }
|
2010-11-24 17:51:01 -08:00
|
|
|
end
|
2010-11-11 10:43:22 -08:00
|
|
|
end
|
2011-03-23 15:23:01 -07:00
|
|
|
|
2010-11-05 15:45:05 -07:00
|
|
|
def new
|
2015-07-14 21:09:17 -07:00
|
|
|
unless localized_fragment_exist?("outfits#new neopia_online start_from_scratch_form pranks_funny=#{Color.pranks_funny?}") && localized_fragment_exist?("outfits#new neopia_offline start_from_scratch_form pranks_funny=#{Color.pranks_funny?}")
|
2014-03-27 20:44:18 -07:00
|
|
|
@colors = Color.funny.alphabetical
|
2013-01-21 12:55:48 -08:00
|
|
|
@species = Species.alphabetical
|
2010-12-11 06:37:39 -08:00
|
|
|
end
|
2012-08-01 10:34:54 -07:00
|
|
|
|
2012-12-29 22:46:36 -08:00
|
|
|
unless localized_fragment_exist?('outfits#new newest_items')
|
2013-12-26 20:36:48 -08:00
|
|
|
newest_items = Item.newest.select([:id, :updated_at, :thumbnail_url, :rarity_index]).
|
2013-12-14 15:19:27 -08:00
|
|
|
includes(:translations).limit(18)
|
|
|
|
@newest_modeled_items, @newest_unmodeled_items =
|
|
|
|
newest_items.partition(&:predicted_fully_modeled?)
|
|
|
|
|
|
|
|
@newest_unmodeled_items_predicted_missing_species_by_color = {}
|
|
|
|
@newest_unmodeled_items_predicted_modeled_ratio = {}
|
|
|
|
@newest_unmodeled_items.each do |item|
|
2014-01-01 07:15:58 -08:00
|
|
|
h = item.predicted_missing_nonstandard_body_ids_by_species_by_color(
|
2013-12-14 15:19:27 -08:00
|
|
|
Color.includes(:translations).select([:id]),
|
|
|
|
Species.includes(:translations).select([:id]))
|
2014-01-01 07:15:58 -08:00
|
|
|
standard_body_ids_by_species = item.
|
|
|
|
predicted_missing_standard_body_ids_by_species(
|
|
|
|
Species.select([:id]).includes(:translations))
|
|
|
|
if standard_body_ids_by_species.present?
|
|
|
|
h[:standard] = standard_body_ids_by_species
|
|
|
|
end
|
2013-12-14 15:19:27 -08:00
|
|
|
@newest_unmodeled_items_predicted_missing_species_by_color[item] = h
|
|
|
|
@newest_unmodeled_items_predicted_modeled_ratio[item] = item.predicted_modeled_ratio
|
|
|
|
end
|
|
|
|
|
|
|
|
@species_count = Species.count
|
2012-08-09 19:35:30 -07:00
|
|
|
end
|
|
|
|
|
2012-12-29 22:46:36 -08:00
|
|
|
unless localized_fragment_exist?('outfits#new latest_contribution')
|
2012-08-09 19:59:35 -07:00
|
|
|
@latest_contribution = Contribution.recent.first
|
|
|
|
Contribution.preload_contributeds_and_parents([@latest_contribution])
|
|
|
|
end
|
2014-01-17 09:12:56 -08:00
|
|
|
|
|
|
|
@neopets_usernames = user_signed_in? ? current_user.neopets_usernames : []
|
2014-09-11 16:09:00 -07:00
|
|
|
|
2014-09-11 16:12:07 -07:00
|
|
|
@campaign = Campaign.current rescue nil
|
2010-11-05 15:45:05 -07:00
|
|
|
end
|
2011-03-23 15:23:01 -07:00
|
|
|
|
2010-11-12 17:58:28 -08:00
|
|
|
def show
|
2010-11-13 14:26:14 -08:00
|
|
|
@outfit = Outfit.find(params[:id])
|
2014-09-11 18:10:48 -07:00
|
|
|
@campaign = Campaign.current rescue nil
|
2010-11-13 14:26:14 -08:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { render }
|
|
|
|
format.json { render :json => @outfit }
|
|
|
|
end
|
2010-11-12 17:58:28 -08:00
|
|
|
end
|
2012-06-05 09:44:11 -07:00
|
|
|
|
|
|
|
def start
|
2013-01-21 14:01:41 -08:00
|
|
|
# Start URLs are always in English, so let's make sure we search in
|
|
|
|
# English.
|
|
|
|
I18n.locale = I18n.default_locale
|
|
|
|
|
|
|
|
@species = Species.find_by_name params[:species_name]
|
|
|
|
@color = Color.find_by_name params[:color_name]
|
2013-01-21 12:55:48 -08:00
|
|
|
|
2012-06-05 09:44:11 -07:00
|
|
|
if @species && @color
|
|
|
|
redirect_to wardrobe_path(:species => @species.id, :color => @color.id)
|
|
|
|
else
|
|
|
|
not_found('species/color')
|
|
|
|
end
|
|
|
|
end
|
2011-03-23 15:23:01 -07:00
|
|
|
|
2010-11-11 10:43:22 -08:00
|
|
|
def update
|
2010-11-24 17:51:01 -08:00
|
|
|
if @outfit.update_attributes(params[:outfit])
|
2012-07-26 20:47:22 -07:00
|
|
|
render :json => @outfit
|
2010-11-11 10:43:22 -08:00
|
|
|
else
|
2010-11-24 17:51:01 -08:00
|
|
|
render_outfit_errors
|
2010-11-11 10:43:22 -08:00
|
|
|
end
|
|
|
|
end
|
2011-03-23 15:23:01 -07:00
|
|
|
|
2010-11-24 17:51:01 -08:00
|
|
|
private
|
2011-03-23 15:23:01 -07:00
|
|
|
|
2010-11-13 14:26:14 -08:00
|
|
|
def find_authorized_outfit
|
2010-11-12 17:58:28 -08:00
|
|
|
raise ActiveRecord::RecordNotFound unless user_signed_in?
|
|
|
|
@outfit = current_user.outfits.find(params[:id])
|
|
|
|
end
|
2011-03-23 15:23:01 -07:00
|
|
|
|
2010-11-24 17:51:01 -08:00
|
|
|
def render_outfit_errors
|
2013-01-04 18:08:41 -08:00
|
|
|
render :json => {:errors => @outfit.errors,
|
|
|
|
:full_error_messages => @outfit.errors.full_messages},
|
|
|
|
:status => :bad_request
|
2010-11-24 17:51:01 -08:00
|
|
|
end
|
2010-10-10 19:18:42 -07:00
|
|
|
end
|
2011-03-23 15:23:01 -07:00
|
|
|
|