rosa-build/app/controllers/products_controller.rb

86 lines
2.2 KiB
Ruby
Raw Normal View History

class ProductsController < ApplicationController
before_filter :authenticate_user!, :except => [:product_begin, :product_end]
before_filter :find_product_by_name, :only => [:product_begin, :product_end]
2011-04-22 13:48:08 +01:00
before_filter :find_product, :only => [:show, :edit, :update, :build]
before_filter :find_platform, :except => [:product_begin, :product_end, :build]
def product_begin
@product.build_status = Product::STATUS::BUILDING
@product.build_path = params[:path]
@product.save!
render :nothing => true, :status => 200
end
def product_end
@product.build_status = ((params[:status] == BuildServer::SUCCESS) ? Product::BUILD_COMPLETED : Product::BUILD_FAILED)
@product.build_path = params[:path]
@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
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 13:48:08 +01:00
ProductBuilder.create_product @product.name, @platform.name, [], [], '', '/var/rosa', []
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-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
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
end