/* * Copyright 2016, Luca Giambonini * Copyright 2016, Lisa Vitolo * Copyright 2017, Kyle Robbertze * Copyright 2017, Adriaan de Groot * * Calamares is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Calamares is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Calamares. If not, see . */ #include "NetInstallViewStep.h" #include "JobQueue.h" #include "GlobalStorage.h" #include "utils/Logger.h" #include "NetInstallPage.h" CALAMARES_PLUGIN_FACTORY_DEFINITION( NetInstallViewStepFactory, registerPlugin(); ) NetInstallViewStep::NetInstallViewStep( QObject* parent ) : Calamares::ViewStep( parent ) , m_widget( new NetInstallPage() ) , m_nextEnabled( false ) { emit nextStatusChanged( true ); connect( m_widget, &NetInstallPage::checkReady, this, &NetInstallViewStep::nextIsReady ); } NetInstallViewStep::~NetInstallViewStep() { if ( m_widget && m_widget->parent() == nullptr ) m_widget->deleteLater(); } QString NetInstallViewStep::prettyName() const { return tr( "Package selection" ); } QString NetInstallViewStep::prettyStatus() const { return m_prettyStatus; } QWidget* NetInstallViewStep::widget() { return m_widget; } void NetInstallViewStep::next() { emit done(); } void NetInstallViewStep::back() {} bool NetInstallViewStep::isNextEnabled() const { return m_nextEnabled; } bool NetInstallViewStep::isBackEnabled() const { return true; } bool NetInstallViewStep::isAtBeginning() const { return true; } bool NetInstallViewStep::isAtEnd() const { return true; } QList< Calamares::job_ptr > NetInstallViewStep::jobs() const { return m_jobs; } void NetInstallViewStep::onActivate() { m_widget->onActivate(); } void NetInstallViewStep::onLeave() { cDebug() << "Leaving netinstall, adding packages to be installed" << "to global storage"; QList packages = m_widget->selectedPackages(); QVariantList installPackages; QVariantList tryInstallPackages; QVariantList packageOperations; cDebug() << "Processing" << packages.length() << "packages from netinstall."; for ( auto package : packages ) { QVariant details( package.packageName ); // If it's a package with a pre- or post-script, replace // with the more complicated datastructure. if ( !package.preScript.isEmpty() || !package.postScript.isEmpty() ) { QMap sdetails; sdetails.insert( "pre-script", package.preScript ); sdetails.insert( "package", package.packageName ); sdetails.insert( "post-script", package.postScript ); details = sdetails; } if ( package.isCritical ) installPackages.append( details ); else tryInstallPackages.append( details ); } if ( !installPackages.empty() ) { QMap op; op.insert( "install", QVariant( installPackages ) ); packageOperations.append( op ); cDebug() << " .." << installPackages.length() << "critical packages."; } if ( !tryInstallPackages.empty() ) { QMap op; op.insert( "try_install", QVariant( tryInstallPackages ) ); packageOperations.append( op ); cDebug() << " .." << tryInstallPackages.length() << "non-critical packages."; } if ( !packageOperations.isEmpty() ) { Calamares::GlobalStorage* gs = Calamares::JobQueue::instance()->globalStorage(); gs->insert( "packageOperations", QVariant( packageOperations ) ); } } void NetInstallViewStep::setConfigurationMap( const QVariantMap& configurationMap ) { m_widget->setRequired( configurationMap.contains( "required" ) && configurationMap.value( "required" ).type() == QVariant::Bool && configurationMap.value( "required" ).toBool() ); if ( configurationMap.contains( "groupsUrl" ) && configurationMap.value( "groupsUrl" ).type() == QVariant::String ) { Calamares::JobQueue::instance()->globalStorage()->insert( "groupsUrl", configurationMap.value( "groupsUrl" ).toString() ); m_widget->loadGroupList(); } } void NetInstallViewStep::nextIsReady( bool b ) { m_nextEnabled = b; emit nextStatusChanged( b ); }