|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
#include "PackageSelectViewStep.h"
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include "ProcessJob.h"
|
|
|
|
|
#include "JobQueue.h"
|
|
|
|
|
#include "GlobalStorage.h"
|
|
|
|
|
|
|
|
|
|
#include <QVariantMap>
|
|
|
|
|
|
|
|
|
|
PackageSelectViewStep::PackageSelectViewStep( QObject* parent )
|
|
|
|
|
: Calamares::QmlViewStep( parent ), m_packageSelections(QVariantMap())
|
|
|
|
@ -11,7 +13,7 @@ PackageSelectViewStep::~PackageSelectViewStep() {}
|
|
|
|
|
QString
|
|
|
|
|
PackageSelectViewStep::prettyName() const
|
|
|
|
|
{
|
|
|
|
|
return tr( "Package Selection" );
|
|
|
|
|
return tr( "Customize" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PackageSelectViewStep::exists_and_true(const QString& key) const
|
|
|
|
@ -19,51 +21,23 @@ bool PackageSelectViewStep::exists_and_true(const QString& key) const
|
|
|
|
|
return m_packageSelections.contains(key) && m_packageSelections[key].toBool() == true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Calamares::JobList
|
|
|
|
|
PackageSelectViewStep::jobs() const
|
|
|
|
|
{
|
|
|
|
|
// Global commands to be ran across all packages
|
|
|
|
|
QString apt = "/bin/sh -c '/usr/bin/apt-get -y ";
|
|
|
|
|
QString apt_install = apt + "install ";
|
|
|
|
|
bool run_apt_install = false;
|
|
|
|
|
QString apt_remove = apt + "purge ";
|
|
|
|
|
bool run_apt_remove = false;
|
|
|
|
|
QString working_path = "/";
|
|
|
|
|
bool runInChroot = true;
|
|
|
|
|
|
|
|
|
|
QList< Calamares::job_ptr > list;
|
|
|
|
|
|
|
|
|
|
// Third party media etc. drivers
|
|
|
|
|
if (exists_and_true("restrictedExtras")) {
|
|
|
|
|
apt_install += "ubuntu-restricted-extras";
|
|
|
|
|
run_apt_install = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Install packages
|
|
|
|
|
if (run_apt_install) {
|
|
|
|
|
Calamares::Job* job = new Calamares::ProcessJob(apt_install + "", working_path, runInChroot);
|
|
|
|
|
list.append(Calamares::job_ptr(job));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Run an autoremove and clean afterwards
|
|
|
|
|
Calamares::Job* autoremove_job = new Calamares::ProcessJob(apt + "autoremove'", working_path, runInChroot);
|
|
|
|
|
Calamares::Job* clean_job = new Calamares::ProcessJob(apt + "clean'", working_path, runInChroot);
|
|
|
|
|
list.append(Calamares::job_ptr(autoremove_job));
|
|
|
|
|
list.append(Calamares::job_ptr(clean_job));
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
PackageSelectViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
|
|
|
|
PackageSelectViewStep::onActivate()
|
|
|
|
|
{
|
|
|
|
|
Calamares::QmlViewStep::setConfigurationMap( configurationMap );
|
|
|
|
|
setContextProperty("packageSelect", this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
PackageSelectViewStep::onActivate()
|
|
|
|
|
PackageSelectViewStep::onLeave()
|
|
|
|
|
{
|
|
|
|
|
setContextProperty("packageSelect", this);
|
|
|
|
|
Calamares::GlobalStorage* gs = Calamares::JobQueue::instance()->globalStorage();
|
|
|
|
|
QVariantMap config;
|
|
|
|
|
for (auto i = m_packageSelections.begin(); i != m_packageSelections.end(); ++i) {
|
|
|
|
|
if (exists_and_true(i.key())) {
|
|
|
|
|
config.insert(i.key(), i.value());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
gs->insert("packages", config);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PackageSelectViewStep::setPackageSelections(const QVariantMap &value)
|
|
|
|
|