184 lines
7.2 KiB
Ruby
184 lines
7.2 KiB
Ruby
# -*- encoding : utf-8 -*-
|
|
class Projects::BuildListsController < Projects::BaseController
|
|
include FileStoreHelper
|
|
|
|
NESTED_ACTIONS = [:index, :new, :create]
|
|
|
|
before_filter :authenticate_user!
|
|
skip_before_filter :authenticate_user!, :only => [:show, :index, :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
|
|
|
|
before_filter :create_from_build_list, :only => :new
|
|
|
|
def index
|
|
params[:filter].each{|k,v| params[:filter].delete(k) if v.blank? } if params[:filter]
|
|
|
|
respond_to do |format|
|
|
format.html
|
|
format.json do
|
|
@filter = BuildList::Filter.new(@project, current_user, current_ability, params[:filter] || {})
|
|
@bls = @filter.find.recent
|
|
.paginate(
|
|
:page => (params[:page].to_i == 0 ? nil : params[:page]),
|
|
:per_page => BuildList::Filter::PER_PAGE.include?(params[:per_page].to_i) ? params[:per_page].to_i : 25
|
|
)
|
|
@build_lists = BuildList.where(:id => @bls.pluck(:id)).recent
|
|
.includes(
|
|
:save_to_platform,
|
|
:save_to_repository,
|
|
:build_for_platform,
|
|
:user,
|
|
:source_packages,
|
|
:project
|
|
)
|
|
|
|
@build_server_status = AbfWorker::StatusInspector.projects_status
|
|
end
|
|
end
|
|
end
|
|
|
|
def new
|
|
if params[:show] == 'inline' && params[:build_list_id].present?
|
|
render '_new_form', :layout => false, :locals => {:project => @project, :build_list => @build_list}
|
|
else
|
|
render :new
|
|
end
|
|
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)
|
|
|
|
build_lists = []
|
|
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
|
|
build_lists << @build_list
|
|
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
|
|
BuildList.where(:id => build_lists.map(&:id)).update_all(:group_id => build_lists[0].id) if build_lists.size > 1
|
|
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
|
|
|
|
def list
|
|
@build_lists = @project.build_lists
|
|
sort_col = params[:ol_0] || 7
|
|
sort_dir = params[:sSortDir_0] == 'asc' ? 'asc' : 'desc'
|
|
order = "build_lists.updated_at #{sort_dir}"
|
|
|
|
@build_lists = @build_lists.paginate(:page => (params[:iDisplayStart].to_i/params[:iDisplayLength].to_i).to_i + 1, :per_page => params[:iDisplayLength])
|
|
@total_build_lists = @build_lists.count
|
|
@build_lists = @build_lists.where(:user_id => current_user) if params[:owner_filter] == 'true'
|
|
@build_lists = @build_lists.where(:status => [BuildList::BUILD_ERROR, BuildList::FAILED_PUBLISH, BuildList::REJECTED_PUBLISH]) if params[:status_filter] == 'true'
|
|
@build_lists = @build_lists.order(order)
|
|
|
|
render :partial => 'build_lists_ajax', :layout => false
|
|
end
|
|
|
|
|
|
protected
|
|
|
|
def find_build_list
|
|
@build_list = BuildList.find(params[:id])
|
|
end
|
|
|
|
def create_from_build_list
|
|
return if params[:build_list_id].blank?
|
|
build_list = BuildList.find(params[:build_list_id])
|
|
|
|
params[:build_list] ||= {}
|
|
keys = [:save_to_repository_id, :auto_publish, :include_repos,
|
|
:project_version, :update_type, :auto_create_container,
|
|
:extra_repositories, :extra_build_lists, :build_for_platform_id]
|
|
keys.each { |key| params[:build_list][key] = build_list.send(key) }
|
|
params[:arches] = [build_list.arch_id.to_s]
|
|
[:owner_filter, :status_filter].each { |t| params[t] = 'true' if %w(true undefined).exclude? params[t] }
|
|
end
|
|
end
|