|
|
|
@ -18,8 +18,15 @@
|
|
|
|
|
|
|
|
|
|
#include "IDJob.h"
|
|
|
|
|
|
|
|
|
|
#include "GlobalStorage.h"
|
|
|
|
|
#include "JobQueue.h"
|
|
|
|
|
#include "Settings.h"
|
|
|
|
|
|
|
|
|
|
#include "utils/Logger.h"
|
|
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
|
|
|
|
|
IDJob::IDJob(const QString& id, QObject* parent)
|
|
|
|
|
: Job( parent )
|
|
|
|
|
, m_batchIdentifier( id )
|
|
|
|
@ -31,8 +38,57 @@ QString IDJob::prettyName() const
|
|
|
|
|
return tr( "OEM Batch Identifier" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Calamares::JobResult IDJob::writeId( const QString& dirs, const QString& filename, const QString& contents )
|
|
|
|
|
{
|
|
|
|
|
if ( !QDir().mkpath( dirs ) )
|
|
|
|
|
{
|
|
|
|
|
cError() << "Could not create directories" << dirs;
|
|
|
|
|
return Calamares::JobResult::error(
|
|
|
|
|
tr( "OEM Batch Identifier" ),
|
|
|
|
|
tr( "Could not create directories <code>%1</code>." ).arg( dirs ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFile output( QDir( dirs ).filePath( filename ) );
|
|
|
|
|
if ( output.exists() )
|
|
|
|
|
cWarning() << "Existing OEM Batch ID" << output.fileName() << "overwritten.";
|
|
|
|
|
|
|
|
|
|
if ( !output.open( QIODevice::WriteOnly ) )
|
|
|
|
|
{
|
|
|
|
|
cError() << "Could not write to" << output.fileName();
|
|
|
|
|
return Calamares::JobResult::error(
|
|
|
|
|
tr( "OEM Batch Identifier" ),
|
|
|
|
|
tr( "Could not open file <code>%1</code>." ).arg( output.fileName() ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( output.write( contents.toUtf8() ) < 0 )
|
|
|
|
|
{
|
|
|
|
|
cError() << "Write error on" << output.fileName();
|
|
|
|
|
return Calamares::JobResult::error(
|
|
|
|
|
tr( "OEM Batch Identifier" ),
|
|
|
|
|
tr( "Could not write to file <code>%1</code>." ).arg( output.fileName() ) );
|
|
|
|
|
}
|
|
|
|
|
output.write( "\n" ); // Ignore error on this one
|
|
|
|
|
|
|
|
|
|
return Calamares::JobResult::ok();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Calamares::JobResult IDJob::exec()
|
|
|
|
|
{
|
|
|
|
|
cDebug() << "Setting OEM Batch ID to" << m_batchIdentifier;
|
|
|
|
|
return Calamares::JobResult::ok();
|
|
|
|
|
|
|
|
|
|
Calamares::GlobalStorage* gs = Calamares::JobQueue::instance()->globalStorage();
|
|
|
|
|
|
|
|
|
|
QString targetDir = QStringLiteral( "/var/log/installer/" );
|
|
|
|
|
QString targetFile = QStringLiteral( "oem-id" );
|
|
|
|
|
QString rootMount = gs->value( "rootMountPoint" ).toString();
|
|
|
|
|
|
|
|
|
|
static const char noRoot[] = "No rootMountPoint is set.";
|
|
|
|
|
static const char yesRoot[] = "rootMountPoint is set:";
|
|
|
|
|
|
|
|
|
|
QString targetPath;
|
|
|
|
|
|
|
|
|
|
if ( rootMount.isEmpty() && Calamares::Settings::instance()->doChroot() )
|
|
|
|
|
cWarning() << Logger::SubEntry << noRoot;
|
|
|
|
|
|
|
|
|
|
return writeId( Calamares::Settings::instance()->doChroot() ? rootMount + targetDir : targetDir, targetFile, m_batchIdentifier );
|
|
|
|
|
}
|
|
|
|
|