188 lines
6.5 KiB
Ruby
188 lines
6.5 KiB
Ruby
class Projects::BuildListsController < Projects::BaseController
|
|
include FileStoreHelper
|
|
include BuildListsHelper
|
|
|
|
NESTED_ACTIONS = [:index, :new, :create, :list]
|
|
|
|
before_action :authenticate_user!
|
|
skip_before_action :authenticate_user!, only: [:show, :index, :log] if APP_CONFIG['anonymous_access']
|
|
|
|
before_action :load_build_list, except: NESTED_ACTIONS
|
|
|
|
before_action :create_from_build_list, only: :new
|
|
|
|
def index
|
|
authorize :build_list
|
|
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, params[:filter] || {})
|
|
params[:page] = params[:page].to_i == 0 ? nil : params[:page]
|
|
params[:per_page] = if BuildList::Filter::PER_PAGE.include? params[:per_page].to_i
|
|
params[:per_page].to_i
|
|
else
|
|
BuildList::Filter::PER_PAGE.first
|
|
end
|
|
@bls_count = @filter.find.count
|
|
@bls = @filter.find.recent.paginate(page: params[:page], per_page: params[:per_page])
|
|
@build_lists = BuildList.where(id: @bls.pluck(:id)).recent
|
|
.includes(:save_to_platform,
|
|
:save_to_repository,
|
|
:build_for_platform,
|
|
:user,
|
|
:source_packages,
|
|
project: :project_statistics)
|
|
|
|
@build_server_status = AbfWorkerStatusPresenter.new.projects_status
|
|
end
|
|
end
|
|
end
|
|
|
|
def new
|
|
authorize @build_list = @project.build_lists.build
|
|
if params[:show] == 'inline' && params[:build_list_id].present?
|
|
render json: new_build_list_data(@build_list, @project, params), layout: false
|
|
else
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def create
|
|
notices, errors = [], []
|
|
|
|
@repository = Repository.find build_list_params[:save_to_repository_id]
|
|
@platform = @repository.platform
|
|
|
|
build_lists = []
|
|
build_for_platforms = Platform.joins(:repositories).where(repositories: { id: build_list_params[:include_repos] }).uniq
|
|
Arch.where(id: params[:arches]).each do |arch|
|
|
build_for_platforms.find_each do |build_for_platform|
|
|
@build_list = @project.build_lists.build(build_list_params)
|
|
@build_list.save_to_platform = @platform
|
|
@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 }
|
|
authorize @build_list
|
|
if @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.name_with_owner)
|
|
end
|
|
end
|
|
|
|
def show
|
|
@item_groups = @build_list.items.group_by_level
|
|
end
|
|
|
|
def publish
|
|
@build_list.publisher = current_user
|
|
do_and_back(:publish, 'publish_')
|
|
end
|
|
|
|
def dependent_projects
|
|
if request.post?
|
|
prs = params[:build_list]
|
|
if prs.present? && prs[:projects].present? && prs[:arches].present?
|
|
project_ids = prs[:projects].select{ |k, v| v == '1' }.keys
|
|
arch_ids = prs[:arches]. select{ |k, v| v == '1' }.keys
|
|
|
|
BuildLists::DependentPackagesJob.perform_async(
|
|
@build_list.id,
|
|
current_user.id,
|
|
project_ids,
|
|
arch_ids,
|
|
{
|
|
auto_publish_status: prs[:auto_publish_status],
|
|
auto_create_container: prs[:auto_create_container],
|
|
include_testing_subrepository: prs[:include_testing_subrepository],
|
|
use_cached_chroot: prs[:use_cached_chroot],
|
|
use_extra_tests: prs[:use_extra_tests]
|
|
}
|
|
)
|
|
flash[:notice] = t('flash.build_list.dependent_projects_job_added_to_queue')
|
|
redirect_to build_list_path(@build_list)
|
|
end
|
|
end
|
|
end
|
|
|
|
def publish_into_testing
|
|
@build_list.publisher = current_user
|
|
do_and_back(:publish_into_testing, 'publish_')
|
|
end
|
|
|
|
def rerun_tests
|
|
@build_list.builder = nil
|
|
@build_list.save
|
|
do_and_back(:rerun_tests, 'rerun_tests_')
|
|
end
|
|
|
|
def reject_publish
|
|
@build_list.publisher = current_user
|
|
do_and_back(:reject_publish, 'reject_publish_')
|
|
end
|
|
|
|
def create_container
|
|
do_and_back(:publish_container, 'create_container_')
|
|
end
|
|
|
|
def cancel
|
|
do_and_back(:cancel, nil, 'will_be_canceled', 'cancel_fail')
|
|
end
|
|
|
|
def log
|
|
render json: {
|
|
log: @build_list.log,
|
|
building: @build_list.build_started?
|
|
}
|
|
end
|
|
|
|
protected
|
|
|
|
def build_list_params
|
|
subject_params(BuildList)
|
|
end
|
|
|
|
# Private: before_action hook which loads BuidList.
|
|
def load_build_list
|
|
authorize @build_list =
|
|
if @project
|
|
@project.build_lists
|
|
else
|
|
BuildList
|
|
end.find(params[:id])
|
|
end
|
|
|
|
def do_and_back(action, prefix, success = 'success', fail = 'fail')
|
|
result = @build_list.send("can_#{action}?") && @build_list.send(action)
|
|
message = result ? success : fail
|
|
flash[result ? :notice : :error] = t("layout.build_lists.#{prefix}#{message}")
|
|
redirect_to :back
|
|
end
|
|
|
|
def create_from_build_list
|
|
return if params[:build_list_id].blank?
|
|
build_list = @project.build_lists.find(params[:build_list_id])
|
|
params[:build_list] = build_list.attributes
|
|
params[:arches] = [build_list.arch_id]
|
|
[:owner_filter, :status_filter].each { |t| params[t] = 'true' if %w(true undefined).exclude? params[t] }
|
|
end
|
|
end
|