2011-04-11 09:35:08 +01:00
|
|
|
class ProductsController < ApplicationController
|
2011-04-22 15:22:44 +01:00
|
|
|
before_filter :authenticate_user!, :except => [:product_status]
|
2011-04-28 11:23:52 +01:00
|
|
|
before_filter :find_product, :only => [:show, :edit, :update, :build, :product_status, :destroy]
|
2011-04-28 11:26:10 +01:00
|
|
|
before_filter :find_platform, :except => [:product_status, :build]
|
2011-04-11 09:35:08 +01:00
|
|
|
|
2011-04-22 15:22:44 +01:00
|
|
|
def product_status
|
|
|
|
@product.build_status = params[:status] == "0" ? Product::BUILD_COMPLETED : Product::BUILD_FAILED
|
2011-04-11 09:35:08 +01:00
|
|
|
@product.save!
|
|
|
|
|
|
|
|
render :nothing => true, :status => 200
|
|
|
|
end
|
|
|
|
|
2011-04-11 17:55:52 +01:00
|
|
|
def new
|
|
|
|
@product = @platform.products.new
|
|
|
|
@product.ks = DEFAULT_KS
|
|
|
|
@product.menu = DEFAULT_MENU
|
|
|
|
@product.counter = DEFAULT_COUNTER
|
|
|
|
@product.build = DEFAULT_BUILD
|
|
|
|
end
|
|
|
|
|
2011-04-14 18:04:32 +01:00
|
|
|
def clone
|
|
|
|
@template = @platform.products.find(params[:id])
|
|
|
|
@product = @platform.products.new
|
|
|
|
@product.clone_from!(@template)
|
|
|
|
|
|
|
|
render :template => "products/new"
|
|
|
|
end
|
|
|
|
|
2011-04-15 10:23:12 +01:00
|
|
|
def build
|
|
|
|
flash[:notice] = t('flash.product.build_started')
|
2011-04-22 15:27:02 +01:00
|
|
|
ProductBuilder.create_product @product.id, '/var/rosa', @product.ks, @product.menu, @product.build, @product.counter, []
|
2011-04-15 10:23:12 +01:00
|
|
|
redirect_to :action => :show
|
|
|
|
end
|
|
|
|
|
2011-04-14 08:23:08 +01:00
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
2011-04-11 17:55:52 +01:00
|
|
|
def create
|
|
|
|
@product = @platform.products.new params[:product]
|
|
|
|
if @product.save
|
2011-04-14 08:23:08 +01:00
|
|
|
flash[:notice] = t('flash.product.saved')
|
2011-04-11 17:55:52 +01:00
|
|
|
redirect_to @platform
|
|
|
|
else
|
2011-04-14 08:23:08 +01:00
|
|
|
flash[:error] = t('flash.product.save_error')
|
2011-04-11 17:55:52 +01:00
|
|
|
render :action => :new
|
|
|
|
end
|
|
|
|
end
|
2011-04-11 09:35:08 +01:00
|
|
|
|
2011-04-14 20:43:42 +01:00
|
|
|
def update
|
|
|
|
if @product.update_attributes(params[:product])
|
|
|
|
flash[:notice] = t('flash.product.saved')
|
|
|
|
redirect_to @platform
|
|
|
|
else
|
|
|
|
flash[:error] = t('flash.product.save_error')
|
|
|
|
render :action => "edit"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-04-14 08:23:08 +01:00
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
2011-04-28 11:23:52 +01:00
|
|
|
def destroy
|
|
|
|
@product.destroy
|
|
|
|
flash[:notice] = t("flash.product.destroyed")
|
|
|
|
redirect_to @platform
|
|
|
|
end
|
|
|
|
|
2011-04-11 09:35:08 +01:00
|
|
|
protected
|
|
|
|
|
|
|
|
def find_product_by_name
|
|
|
|
@product = Product.find_by_name params[:product_name]
|
|
|
|
end
|
2011-04-11 17:55:52 +01:00
|
|
|
|
2011-04-14 20:43:42 +01:00
|
|
|
def find_product
|
|
|
|
@product = Product.find params[:id]
|
|
|
|
end
|
|
|
|
|
2011-04-11 17:55:52 +01:00
|
|
|
def find_platform
|
|
|
|
@platform = Platform.find params[:platform_id]
|
|
|
|
end
|
2011-04-11 09:35:08 +01:00
|
|
|
end
|