rosa-build/app/controllers/platforms_controller.rb

140 lines
3.9 KiB
Ruby
Raw Normal View History

2011-09-15 18:56:20 +01:00
# coding: UTF-8
2011-03-09 19:27:51 +00:00
class PlatformsController < ApplicationController
before_filter :authenticate_user!, :except => :easy_urpmi
2011-10-31 21:55:56 +00:00
before_filter :find_platform, :only => [:freeze, :unfreeze, :clone, :edit, :destroy]
before_filter :get_paths, :only => [:new, :create, :clone]
load_and_authorize_resource
2011-12-01 09:29:04 +00:00
autocomplete :user, :uname
2011-11-30 14:48:16 +00:00
def build_all
@platform.repositories.each do |repository|
repository.projects.each do |project|
project.delay.build_for(@platform)
2011-11-30 14:48:16 +00:00
end
end
redirect_to(platform_path(@platform), :notice => t("flash.platform.build_all_success"))
end
2011-03-09 19:27:51 +00:00
def index
@platforms = Platform.accessible_by(current_ability).paginate(:page => params[:platform_page])
end
def easy_urpmi
2011-10-31 15:19:55 +00:00
@platforms = Platform.where(:distrib_type => APP_CONFIG['distr_types'].first, :visibility => 'open', :platform_type => 'main')
respond_to do |format|
format.json do
render :json => {
:platforms => @platforms.map do |p|
{:name => p.name,
:architectures => ['i586', 'x86_64'],
:repositories => p.repositories.map(&:name),
:url => "http://#{request.host_with_port}/downloads/#{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
@platform = Platform.new
@admin_uname = current_user.uname
@admin_id = current_user.id
2011-03-09 19:27:51 +00:00
end
2011-10-25 14:07:19 +01:00
def edit
end
2011-03-09 19:27:51 +00:00
def create
2011-10-17 15:27:07 +01:00
@platform = Platform.new params[:platform]
@admin_id = params[:admin_id]
@admin_uname = params[:admin_uname]
@platform.owner = @admin_id.blank? ? get_owner : User.find(@admin_id)
2011-10-17 15:27:07 +01:00
if @platform.save
#@platform.make_admin_relation(params[:admin_id])
2011-10-17 15:27:07 +01:00
flash[:notice] = I18n.t("flash.platform.saved")
redirect_to @platform
else
flash[:error] = I18n.t("flash.platform.saved_error")
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
if request.post?
@cloned = @platform.make_clone(:name => params[:platform]['name'], :description => params[:platform]['description'],
2011-11-03 00:32:01 +00:00
:owner_id => current_user.id, :owner_type => current_user.class.to_s)
if @cloned.persisted?
flash[:notice] = 'Клонирование успешно'
2011-11-03 00:32:01 +00:00
redirect_to @cloned
else
2011-11-03 00:32:01 +00:00
flash[:error] = @cloned.errors.full_messages.join('. ')
end
2011-05-30 10:04:32 +01:00
else
@cloned = Platform.new
@cloned.name = @platform.name + "_clone"
@cloned.description = @platform.description + "_clone"
2011-05-30 10:04:32 +01:00
end
end
2011-03-09 19:27:51 +00:00
def destroy
2011-10-31 21:55:56 +00:00
@platform.destroy if @platform
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
def forbidden
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