154 lines
5.9 KiB
Ruby
154 lines
5.9 KiB
Ruby
# -*- encoding : utf-8 -*-
|
|
class Projects::BuildListsController < Projects::BaseController
|
|
NESTED_ACTIONS = [:search, :index, :new, :create]
|
|
|
|
before_filter :authenticate_user!
|
|
skip_before_filter :authenticate_user!, :only => [:show, :index, :search, :log] if APP_CONFIG['anonymous_access']
|
|
|
|
before_filter :find_build_list, :only => [:show, :publish, :cancel, :update, :log, :create_container]
|
|
|
|
load_and_authorize_resource :project, :only => NESTED_ACTIONS
|
|
load_and_authorize_resource :build_list, :through => :project, :only => NESTED_ACTIONS, :shallow => true
|
|
load_and_authorize_resource :except => NESTED_ACTIONS
|
|
|
|
def search
|
|
new_params = {:filter => {}}
|
|
params[:filter].each do |k,v|
|
|
new_params[:filter][k] = v unless v.empty?
|
|
end
|
|
new_params[:per_page] = params[:per_page] if params[:per_page].present?
|
|
redirect_to @project ? project_build_lists_path(@project, new_params) : build_lists_path(new_params)
|
|
end
|
|
|
|
def index
|
|
params[:filter].each{|k,v| params[:filter].delete(k) if v.blank? } if params[:filter]
|
|
|
|
if request.xhr?
|
|
@filter = BuildList::Filter.new(@project, current_user, current_ability, params[:filter] || {})
|
|
@per_page = BuildList::Filter::PER_PAGE.include?(params[:per_page].to_i) ? params[:per_page].to_i : 25
|
|
@bls = @filter.find.recent
|
|
.paginate(
|
|
:page => (params[:page].to_i == 0 ? nil : params[:page]),
|
|
:per_page => @per_page
|
|
)
|
|
@build_lists = BuildList.where(:id => @bls.pluck(:id))
|
|
.order('build_lists.project_id, build_lists.project_version')
|
|
.recent
|
|
.includes(
|
|
:save_to_platform,
|
|
:save_to_repository,
|
|
:build_for_platform,
|
|
:arch,
|
|
:user,
|
|
:source_packages,
|
|
:project => [:owner]
|
|
)
|
|
|
|
@build_server_status = AbfWorker::StatusInspector.projects_status
|
|
end
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
notices, errors = [], []
|
|
|
|
@repository = Repository.find params[:build_list][:save_to_repository_id]
|
|
@platform = @repository.platform
|
|
|
|
params[:build_list][:save_to_platform_id] = @platform.id
|
|
params[:build_list][:auto_publish] = false unless @repository.publish_without_qa?
|
|
|
|
|
|
build_for_platforms = Repository.select(:platform_id).
|
|
where(:id => params[:build_list][:include_repos]).group(:platform_id).map(&:platform_id)
|
|
|
|
Arch.where(:id => params[:arches]).each do |arch|
|
|
Platform.main.where(:id => build_for_platforms).each do |build_for_platform|
|
|
@build_list = @project.build_lists.build(params[:build_list])
|
|
@build_list.build_for_platform = build_for_platform; @build_list.arch = arch; @build_list.user = current_user
|
|
@build_list.include_repos = @build_list.include_repos.select {|ir| @build_list.build_for_platform.repository_ids.include? ir.to_i}
|
|
@build_list.priority = current_user.build_priority # User builds more priority than mass rebuild with zero priority
|
|
|
|
flash_options = {:project_version => @build_list.project_version, :arch => arch.name, :build_for_platform => build_for_platform.name}
|
|
if authorize!(:create, @build_list) && @build_list.save
|
|
notices << t("flash.build_list.saved", flash_options)
|
|
else
|
|
errors << t("flash.build_list.save_error", flash_options)
|
|
end
|
|
end
|
|
end
|
|
errors << t("flash.build_list.no_arch_or_platform_selected") if errors.blank? and notices.blank?
|
|
if errors.present?
|
|
@build_list ||= BuildList.new
|
|
flash[:error] = errors.join('<br>').html_safe
|
|
render :action => :new
|
|
else
|
|
flash[:notice] = notices.join('<br>').html_safe
|
|
redirect_to project_build_lists_path(@project)
|
|
end
|
|
end
|
|
|
|
def show
|
|
@item_groups = @build_list.items.group_by_level
|
|
end
|
|
|
|
def publish
|
|
@build_list.update_type = params[:build_list][:update_type] if params[:build_list][:update_type].present?
|
|
|
|
if params[:attach_advisory].present? and params[:attach_advisory] != 'no' and !@build_list.advisory
|
|
|
|
unless @build_list.update_type.in? BuildList::RELEASE_UPDATE_TYPES
|
|
redirect_to :back, :notice => t('layout.build_lists.publish_fail') and return
|
|
end
|
|
|
|
if params[:attach_advisory] == 'new'
|
|
# create new advisory
|
|
unless @build_list.associate_and_create_advisory(params[:build_list][:advisory])
|
|
redirect_to :back, :notice => t('layout.build_lists.publish_fail') and return
|
|
end
|
|
else
|
|
# attach existing advisory
|
|
a = Advisory.where(:advisory_id => params[:attach_advisory]).first
|
|
unless (a && a.attach_build_list(@build_list))
|
|
redirect_to :back, :notice => t('layout.build_lists.publish_fail') and return
|
|
end
|
|
end
|
|
end
|
|
|
|
@build_list.publisher = current_user
|
|
message = @build_list.publish ? 'success' : 'fail'
|
|
redirect_to :back, :notice => t("layout.build_lists.publish_#{message}")
|
|
end
|
|
|
|
def reject_publish
|
|
@build_list.publisher = current_user
|
|
message = @build_list.reject_publish ? 'success' : 'fail'
|
|
redirect_to :back, :notice => t("layout.build_lists.reject_publish_#{message}")
|
|
end
|
|
|
|
def create_container
|
|
message = @build_list.publish_container ? 'success' : 'fail'
|
|
redirect_to :back, :notice => t("layout.build_lists.create_container_#{message}")
|
|
end
|
|
|
|
def cancel
|
|
message = @build_list.cancel ? 'will_be_canceled' : 'cancel_fail'
|
|
redirect_to :back, :notice => t("layout.build_lists.#{message}")
|
|
end
|
|
|
|
def log
|
|
render :json => {
|
|
:log => @build_list.log(params[:load_lines]),
|
|
:building => @build_list.build_started?
|
|
}
|
|
end
|
|
|
|
protected
|
|
|
|
def find_build_list
|
|
@build_list = BuildList.find(params[:id])
|
|
end
|
|
end
|