rosa-build/app/controllers/platforms_controller.rb

112 lines
2.9 KiB
Ruby
Raw Normal View History

2011-09-15 18:56:20 +01:00
# coding: UTF-8
2011-03-31 03:00:21 +01:00
2011-03-09 19:27:51 +00:00
class PlatformsController < ApplicationController
before_filter :authenticate_user!
2011-05-30 10:04:32 +01:00
before_filter :find_platform, :only => [:freeze, :unfreeze, :clone]
2011-10-17 15:27:07 +01:00
before_filter :get_paths, :only => [:new, :create]
2011-03-17 14:47:16 +00:00
2011-03-09 19:27:51 +00:00
def index
respond_to do |format|
format.html { @platforms = Platform.paginate(:page => params[:platform_page]) }
format.json do
@platforms = Platform.where(:distrib_type => 'mandriva', :visibility => 'open', :platform_type => 'main')
render :json => {
:platforms => @platforms.map do |p|
{:name => p.name,
:architectures => ['i586', 'x86_64'],
:repositories => p.repositories.map(&:name),
:url => "http://abs.rosalab.ru/downloads/platforms/#{p.name}/repository"}
end
}
end
end
2011-03-09 19:27:51 +00:00
end
def show
@platform = Platform.find params[:id], :include => :repositories
@repositories = @platform.repositories
2011-10-17 15:27:07 +01:00
@members = @platform.members.uniq
2011-03-09 19:27:51 +00:00
end
def new
2011-03-10 13:38:50 +00:00
@platforms = Platform.all
2011-03-09 19:27:51 +00:00
@platform = Platform.new
end
def create
2011-10-17 15:27:07 +01:00
@platform = Platform.new params[:platform]
@platform.owner = get_acter
if @platform.save
flash[:notice] = I18n.t("flash.platform.saved")
redirect_to @platform
else
flash[:error] = I18n.t("flash.platform.saved_error")
@platforms = Platform.all
render :action => :new
end
2011-03-09 19:27:51 +00:00
end
2011-03-17 14:47:16 +00:00
def freeze
@platform.released = true
if @platform.save
flash[:notice] = I18n.t("flash.platform.freezed")
else
flash[:notice] = I18n.t("flash.platform.freeze_error")
end
2011-03-17 14:47:16 +00:00
redirect_to @platform
end
def unfreeze
@platform.released = false
if @platform.save
flash[:notice] = I18n.t("flash.platform.unfreezed")
else
flash[:notice] = I18n.t("flash.platform.unfreeze_error")
end
redirect_to @platform
end
2011-05-30 10:04:32 +01:00
def clone
cloned = @platform.clone(@platform.name + "_clone", @platform.unixname + "_clone")
if cloned
flash[:notice] = 'Клонирование успешно'
redirect_to cloned
else
flash[:notice] = 'Ошибка клонирования'
redirect_to @platform
end
end
2011-03-09 19:27:51 +00:00
def destroy
Platform.destroy params[:id]
2011-03-31 03:00:21 +01:00
flash[:notice] = t("flash.platform.destroyed")
2011-03-09 19:27:51 +00:00
redirect_to root_path
end
2011-03-17 14:47:16 +00:00
protected
2011-10-17 15:27:07 +01:00
def get_paths
if params[:user_id]
@user = User.find params[:user_id]
@platforms_path = user_platforms_path @user
@new_platform_path = new_user_platform_path @user
elsif params[:group_id]
@group = Group.find params[:group_id]
@platforms_path = group_platforms_path @group
@new_platform_path = new_group_platform_path @group
else
@platforms_path = platforms_path
@new_platform_path = new_platform_path
end
end
2011-03-17 14:47:16 +00:00
def find_platform
@platform = Platform.find params[:id]
end
2011-03-09 19:27:51 +00:00
end