/* === This file is part of Calamares - === * * Copyright 2014-2017, Teo Mrnjavac * Copyright 2017-2018, Adriaan de Groot * Copyright 2019, Collabora Ltd * Copyright 2020, Gabriel Craciunescu * * Portions from the Manjaro Installation Framework * by Roland Singer * Copyright (C) 2007 Free Software Foundation, Inc. * * 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 "UsersPage.h" #include "Config.h" #include "ui_page_usersetup.h" #include "GlobalStorage.h" #include "JobQueue.h" #include "Settings.h" #include "utils/CalamaresUtilsGui.h" #include "utils/Logger.h" #include "utils/Retranslator.h" #include "utils/String.h" #include #include #include #include /** @brief How bad is the error for labelError() ? */ enum class Badness { Fatal, Warning }; /** Add an error message and pixmap to a label. */ static inline void labelError( QLabel* pix, QLabel* label, const QString& message, Badness bad ) { label->setText( message ); pix->setPixmap( CalamaresUtils::defaultPixmap( ( bad == Badness::Fatal ) ? CalamaresUtils::StatusError : CalamaresUtils::StatusWarning, CalamaresUtils::Original, label->size() ) ); } /** Clear error, indicate OK on a label. */ static inline void labelOk( QLabel* pix, QLabel* label ) { label->clear(); pix->setPixmap( CalamaresUtils::defaultPixmap( CalamaresUtils::Yes, CalamaresUtils::Original, label->size() ) ); } /** Indicate error, update @p ok based on @p status */ static inline void labelStatus( QLabel* pix, QLabel* label, const QString& value, const QString& status, bool& ok ) { if ( status.isEmpty() ) { if ( value.isEmpty() ) { // This is different from labelOK() because no checkmark is shown label->clear(); pix->clear(); ok = false; } else { labelOk( pix, label ); ok = true; } } else { labelError( pix, label, status, Badness::Fatal ); ok = false; } } UsersPage::UsersPage( Config* config, QWidget* parent ) : QWidget( parent ) , ui( new Ui::Page_UserSetup ) , m_config( config ) , m_readyFullName( false ) , m_readyUsername( false ) , m_readyHostname( false ) , m_readyPassword( false ) , m_readyRootPassword( false ) { ui->setupUi( this ); ui->checkBoxReusePassword->setVisible( m_config->writeRootPassword() ); ui->checkBoxReusePassword->setChecked( m_config->reuseUserPasswordForRoot() ); ui->checkBoxValidatePassword->setVisible( m_config->permitWeakPasswords() ); ui->checkBoxValidatePassword->setChecked( m_config->requireStrongPasswords() ); // Connect signals and slots ui->textBoxUserPassword->setText( config->userPassword() ); connect( ui->textBoxUserPassword, &QLineEdit::textChanged, config, &Config::setUserPassword ); connect( config, &Config::userPasswordChanged, ui->textBoxUserPassword, &QLineEdit::setText ); ui->textBoxUserVerifiedPassword->setText( config->userPasswordSecondary() ); connect( ui->textBoxUserVerifiedPassword, &QLineEdit::textChanged, config, &Config::setUserPasswordSecondary ); connect( config, &Config::userPasswordSecondaryChanged, ui->textBoxUserVerifiedPassword, &QLineEdit::setText ); connect( config, &Config::userPasswordStatusChanged, this, &UsersPage::reportUserPasswordStatus ); ui->textBoxRootPassword->setText( config->rootPassword() ); connect( ui->textBoxRootPassword, &QLineEdit::textChanged, config, &Config::setRootPassword ); connect( config, &Config::rootPasswordChanged, ui->textBoxRootPassword, &QLineEdit::setText ); ui->textBoxVerifiedRootPassword->setText( config->rootPasswordSecondary() ); connect( ui->textBoxVerifiedRootPassword, &QLineEdit::textChanged, config, &Config::setRootPasswordSecondary ); connect( config, &Config::rootPasswordSecondaryChanged, ui->textBoxVerifiedRootPassword, &QLineEdit::setText ); connect( config, &Config::rootPasswordStatusChanged, this, &UsersPage::reportRootPasswordStatus ); connect( ui->checkBoxValidatePassword, &QCheckBox::stateChanged, this, [this]( int checked ) { m_config->setRequireStrongPasswords( checked != Qt::Unchecked ); } ); connect( ui->textBoxFullName, &QLineEdit::textEdited, config, &Config::setFullName ); connect( config, &Config::fullNameChanged, this, &UsersPage::onFullNameTextEdited ); connect( ui->textBoxHostName, &QLineEdit::textEdited, config, &Config::setHostName ); connect( config, &Config::hostNameChanged, ui->textBoxHostName, &QLineEdit::setText ); connect( config, &Config::hostNameStatusChanged, this, &UsersPage::reportHostNameStatus ); connect( ui->textBoxLoginName, &QLineEdit::textEdited, config, &Config::setLoginName ); connect( config, &Config::loginNameChanged, ui->textBoxLoginName, &QLineEdit::setText ); connect( config, &Config::loginNameStatusChanged, this, &UsersPage::reportLoginNameStatus ); connect( ui->checkBoxDoAutoLogin, &QCheckBox::stateChanged, this, [this]( int checked ) { m_config->setAutoLogin( checked != Qt::Unchecked ); } ); connect( config, &Config::autoLoginChanged, ui->checkBoxDoAutoLogin, &QCheckBox::setChecked ); if ( m_config->writeRootPassword() ) { connect( ui->checkBoxReusePassword, &QCheckBox::stateChanged, this, [this]( int checked ) { m_config->setReuseUserPasswordForRoot( checked != Qt::Unchecked ); } ); connect( config, &Config::reuseUserPasswordForRootChanged, ui->checkBoxReusePassword, &QCheckBox::setChecked ); connect( ui->checkBoxReusePassword, &QCheckBox::stateChanged, this, &UsersPage::onReuseUserPasswordChanged ); } if ( m_config->permitWeakPasswords() ) { connect( ui->checkBoxValidatePassword, &QCheckBox::stateChanged, this, [this]( int checked ) { m_config->setRequireStrongPasswords( checked != Qt::Unchecked ); } ); connect( config, &Config::requireStrongPasswordsChanged, ui->checkBoxValidatePassword, &QCheckBox::setChecked ); } CALAMARES_RETRANSLATE_SLOT( &UsersPage::retranslate ) onReuseUserPasswordChanged( m_config->reuseUserPasswordForRoot() ); } UsersPage::~UsersPage() { delete ui; } void UsersPage::retranslate() { ui->retranslateUi( this ); if ( Calamares::Settings::instance()->isSetupMode() ) { ui->textBoxLoginName->setToolTip( tr( "If more than one person will " "use this computer, you can create multiple " "accounts after setup." ) ); } else { ui->textBoxLoginName->setToolTip( tr( "If more than one person will " "use this computer, you can create multiple " "accounts after installation." ) ); } const auto up = m_config->userPasswordStatus(); reportUserPasswordStatus( up.first, up.second ); const auto rp = m_config->rootPasswordStatus(); reportRootPasswordStatus( rp.first, rp.second ); } bool UsersPage::isReady() const { bool readyFields = m_readyFullName && m_readyHostname && m_readyPassword && m_readyUsername; // If we're going to write a root password, we need a valid one (or reuse the user's password) readyFields &= m_config->writeRootPassword() ? ( m_readyRootPassword || ui->checkBoxReusePassword->isChecked() ) : true; return readyFields; } void UsersPage::onActivate() { ui->textBoxFullName->setFocus(); const auto up = m_config->userPasswordStatus(); reportUserPasswordStatus( up.first, up.second ); const auto rp = m_config->rootPasswordStatus(); reportRootPasswordStatus( rp.first, rp.second ); } void UsersPage::onFullNameTextEdited( const QString& fullName ) { labelStatus( ui->labelFullName, ui->labelFullNameError, fullName, QString(), m_readyFullName ); checkReady( isReady() ); } void UsersPage::reportLoginNameStatus( const QString& status ) { labelStatus( ui->labelUsername, ui->labelUsernameError, m_config->loginName(), status, m_readyUsername ); emit checkReady( isReady() ); } void UsersPage::reportHostNameStatus( const QString& status ) { labelStatus( ui->labelHostname, ui->labelHostnameError, m_config->hostName(), status, m_readyHostname ); emit checkReady( isReady() ); } static inline void passwordStatus( QLabel* iconLabel, QLabel* messageLabel, int validity, const QString& message ) { switch ( validity ) { case Config::PasswordValidity::Valid: messageLabel->clear(); iconLabel->setPixmap( CalamaresUtils::defaultPixmap( CalamaresUtils::Yes, CalamaresUtils::Original, messageLabel->size() ) ); break; case Config::PasswordValidity::Weak: messageLabel->setText( message ); iconLabel->setPixmap( CalamaresUtils::defaultPixmap( CalamaresUtils::StatusWarning, CalamaresUtils::Original, messageLabel->size() ) ); break; case Config::PasswordValidity::Invalid: default: messageLabel->setText( message ); iconLabel->setPixmap( CalamaresUtils::defaultPixmap( CalamaresUtils::StatusError, CalamaresUtils::Original, messageLabel->size() ) ); break; } } void UsersPage::reportRootPasswordStatus( int validity, const QString& message ) { passwordStatus( ui->labelRootPassword, ui->labelRootPasswordError, validity, message ); } void UsersPage::reportUserPasswordStatus( int validity, const QString& message ) { passwordStatus( ui->labelUserPassword, ui->labelUserPasswordError, validity, message ); } void UsersPage::onReuseUserPasswordChanged( const int checked ) { /* When "reuse" is checked, hide the fields for explicitly * entering the root password. However, if we're going to * disable the root password anyway, hide them all regardless of * the checkbox -- so when writeRoot is false, visible needs * to be false, to hide them all. * * In principle this is only connected when writeRootPassword is @c true, * but it is **always** called at least once in the constructor * to set up initial visibility. */ const bool visible = m_config->writeRootPassword() ? !checked : false; ui->labelChooseRootPassword->setVisible( visible ); ui->labelRootPassword->setVisible( visible ); ui->labelRootPasswordError->setVisible( visible ); ui->textBoxRootPassword->setVisible( visible ); ui->textBoxVerifiedRootPassword->setVisible( visible ); checkReady( isReady() ); }