forked from OpenNeo/impress
104 lines
2.7 KiB
Ruby
104 lines
2.7 KiB
Ruby
class OutfitsController < ApplicationController
|
|
before_filter :find_authorized_outfit, :only => [:update, :destroy]
|
|
|
|
def create
|
|
@outfit = Outfit.build_for_user(current_user, params[:outfit])
|
|
if @outfit.save
|
|
render :json => @outfit
|
|
else
|
|
render_outfit_errors
|
|
end
|
|
end
|
|
|
|
def index
|
|
if user_signed_in?
|
|
@outfits = current_user.outfits.
|
|
includes(:item_outfit_relationships, {:pet_state => :pet_type}).
|
|
wardrobe_order
|
|
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
|
|
end
|
|
|
|
def destroy
|
|
@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 }
|
|
end
|
|
end
|
|
|
|
def new
|
|
unless localized_fragment_exist?(:action_suffix => 'start_from_scratch_form_content')
|
|
@colors = Color.alphabetical
|
|
@species = Species.alphabetical
|
|
end
|
|
|
|
unless localized_fragment_exist?('outfits#new newest_items')
|
|
@newest_items = Item.newest.select([:id, :name, :thumbnail_url]).
|
|
includes(:translations).limit(9)
|
|
end
|
|
|
|
unless localized_fragment_exist?('outfits#new latest_contribution')
|
|
@latest_contribution = Contribution.recent.first
|
|
Contribution.preload_contributeds_and_parents([@latest_contribution])
|
|
end
|
|
end
|
|
|
|
def show
|
|
@outfit = Outfit.find(params[:id])
|
|
respond_to do |format|
|
|
format.html { render }
|
|
format.json { render :json => @outfit }
|
|
end
|
|
end
|
|
|
|
def start
|
|
# 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]
|
|
|
|
if @species && @color
|
|
redirect_to wardrobe_path(:species => @species.id, :color => @color.id)
|
|
else
|
|
not_found('species/color')
|
|
end
|
|
end
|
|
|
|
def update
|
|
if @outfit.update_attributes(params[:outfit])
|
|
render :json => @outfit
|
|
else
|
|
render_outfit_errors
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def find_authorized_outfit
|
|
raise ActiveRecord::RecordNotFound unless user_signed_in?
|
|
@outfit = current_user.outfits.find(params[:id])
|
|
end
|
|
|
|
def render_outfit_errors
|
|
render :json => {:errors => @outfit.errors,
|
|
:full_error_messages => @outfit.errors.full_messages},
|
|
:status => :bad_request
|
|
end
|
|
end
|
|
|