[oemid] Write batch-identifier into standard file location

This commit is contained in:
Adriaan de Groot 2019-04-29 11:22:53 -04:00
parent 2b12bd82e4
commit 127c425a9a
2 changed files with 60 additions and 1 deletions

View File

@ -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 );
}

View File

@ -25,6 +25,7 @@
class IDJob : public Calamares::Job
{
Q_OBJECT
public:
explicit IDJob( const QString& id, QObject* parent = nullptr );
@ -32,6 +33,8 @@ public:
virtual Calamares::JobResult exec() override;
private:
Calamares::JobResult writeId( const QString&, const QString&, const QString& );
QString m_batchIdentifier;
} ;