class ProductsController < ApplicationController # GET /products # GET /products.json def index @products = Product.all respond_to do |format| format.html # index.html.erb format.json { render json: @products } end end # GET /products/1 # GET /products/1.json def show @product = Product.find(params[:id]) respond_to do |format| format.html # show.html.erb format.json { render json: @product } end end # GET /products/new # GET /products/new.json def new @product = Product.new @product.category = Category.new @product.colors.build respond_to do |format| format.html # new.html.erb format.json { render json: @product } end end def new_only_name @product = Product.new respond_to do |format| format.html # new.html.erb format.json { render json: @product } end end # GET /products/1/edit def edit @product = Product.find(params[:id]) end # POST /products # POST /products.json def create @product = Product.new(params[:product]) respond_to do |format| if @product.save format.html { redirect_to @product, notice: 'Product was successfully created.' } format.json { render json: @product, status: :created, location: @product } else save_for_dejavu @product, :nested => [:category, :colors], :virtual => :virtual format.html { redirect_to new_product_url } format.json { render json: @product.errors, status: :unprocessable_entity } end end end def create_only_name @product = Product.new(params[:product]) respond_to do |format| if @product.save format.html { redirect_to :back, notice: 'Product was successfully created.' } format.json { render json: @product, status: :created, location: @product } else save_for_dejavu @product, :only => [:name] format.html { redirect_to :back } format.json { render json: @product.errors, status: :unprocessable_entity } end end end # PUT /products/1 # PUT /products/1.json def update @product = Product.find(params[:id]) respond_to do |format| if @product.update_attributes(params[:product]) format.html { redirect_to @product, notice: 'Product was successfully updated.' } format.json { head :ok } else save_for_dejavu @product format.html { redirect_to edit_product_url } format.json { render json: @product.errors, status: :unprocessable_entity } end end end # DELETE /products/1 # DELETE /products/1.json def destroy @product = Product.find(params[:id]) @product.destroy respond_to do |format| format.html { redirect_to products_url } format.json { head :ok } end end end