5f01a8ccc5
- Adds an InvalidConfiguration value for internal errors SEE #1136
94 lines
3.2 KiB
C++
94 lines
3.2 KiB
C++
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
*
|
|
* Copyright 2019, Adriaan de Groot <groot@kde.org>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#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 )
|
|
{
|
|
}
|
|
|
|
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;
|
|
|
|
Calamares::GlobalStorage* gs = Calamares::JobQueue::instance()->globalStorage();
|
|
|
|
QString targetDir = QStringLiteral( "/var/log/installer/" );
|
|
QString targetFile = QStringLiteral( "oem-id" );
|
|
QString rootMount = gs->value( "rootMountPoint" ).toString();
|
|
|
|
// Don't bother translating internal errors
|
|
if ( rootMount.isEmpty() && Calamares::Settings::instance()->doChroot() )
|
|
return Calamares::JobResult::internalError(
|
|
"OEM Batch Identifier",
|
|
"No rootMountPoint is set, but a chroot is required. "
|
|
"Is there a module before oemid that sets up the partitions?",
|
|
Calamares::JobResult::InvalidConfiguration );
|
|
return writeId( Calamares::Settings::instance()->doChroot() ? rootMount + targetDir : targetDir, targetFile, m_batchIdentifier );
|
|
}
|