2018-06-14 07:25:54 +00:00
/* Profile Select Implementation (Login Screen)
2014-04-09 21:01:57 +00:00
*
2018-03-28 07:10:52 +00:00
* Copyright ( c ) 2011 - 2018 Mark Watkins < mark @ jedimark . net >
2014-04-09 21:01:57 +00:00
*
* This file is subject to the terms and conditions of the GNU General Public
2018-06-04 20:48:38 +00:00
* License . See the file COPYING in the main directory of the source code
* for more details . */
2011-11-26 04:00:31 +00:00
2011-10-01 12:54:20 +00:00
# include "profileselect.h"
# include <QDebug>
# include <QStringListModel>
# include <QStandardItem>
# include <QDialog>
# include <QLineEdit>
# include <QVBoxLayout>
# include <QCryptographicHash>
# include <QMessageBox>
2014-07-12 10:52:14 +00:00
# include <QHostInfo>
2011-10-02 01:29:20 +00:00
# include <QTimer>
2014-05-26 18:15:51 +00:00
# include <QFontMetrics>
2012-01-11 11:25:36 +00:00
# include <QDir>
2011-10-01 12:54:20 +00:00
# include "ui_profileselect.h"
# include "SleepLib/profiles.h"
# include "newprofile.h"
2013-10-25 10:39:30 +00:00
# include "mainwindow.h"
2011-10-01 12:54:20 +00:00
2018-06-12 12:55:44 +00:00
extern MainWindow * mainwin ;
2011-10-01 12:54:20 +00:00
ProfileSelect : : ProfileSelect ( QWidget * parent ) :
QDialog ( parent ) ,
ui ( new Ui : : ProfileSelect )
{
ui - > setupUi ( this ) ;
QStringList str ;
2014-04-17 05:52:25 +00:00
model = new QStandardItemModel ( 0 , 0 ) ;
2011-10-01 12:54:20 +00:00
2014-04-17 05:52:25 +00:00
int i = 0 ;
int sel = - 1 ;
2011-10-02 01:29:20 +00:00
QString name ;
2013-01-18 20:18:25 +00:00
QIcon icon ( " :/icons/moon.png " ) ;
2014-05-26 18:15:51 +00:00
int w = 0 ;
QFont font ( " Sans Serif " , 18 , QFont : : Bold , false ) ;
ui - > listView - > setFont ( font ) ;
QFontMetrics fm ( font ) ;
2018-04-22 12:06:48 +00:00
QMap < QString , Profile * > : : iterator p ;
for ( p = Profiles : : profiles . begin ( ) ; p ! = Profiles : : profiles . end ( ) ; p + + ) {
2014-04-17 05:52:25 +00:00
name = p . key ( ) ;
2018-04-22 12:06:48 +00:00
if ( AppSetting - > profileName ( ) = = name ) {
2014-04-17 05:52:25 +00:00
sel = i ;
2011-10-01 14:08:43 +00:00
}
2014-04-17 05:52:25 +00:00
2014-07-12 10:52:14 +00:00
QStandardItem * item = new QStandardItem ( name ) ;
item - > setData ( p . key ( ) , Qt : : UserRole + 2 ) ;
2011-10-01 12:54:20 +00:00
item - > setEditable ( false ) ;
2011-10-21 05:50:31 +00:00
2014-07-12 10:52:14 +00:00
if ( ! ( * p ) - > checkLock ( ) . isEmpty ( ) ) {
item - > setForeground ( QBrush ( Qt : : red ) ) ;
item - > setText ( name + " (open) " ) ;
}
QRect rect = fm . boundingRect ( name ) ;
if ( rect . width ( ) > w ) w = rect . width ( ) ;
2011-10-21 05:50:31 +00:00
// Profile fonts arern't loaded yet.. Using generic font.
2014-05-26 18:15:51 +00:00
item - > setFont ( font ) ;
2011-10-01 12:54:20 +00:00
model - > appendRow ( item ) ;
i + + ;
}
2014-05-26 18:15:51 +00:00
w + = 20 ;
ui - > listView - > setMinimumWidth ( w ) ;
2014-04-17 05:52:25 +00:00
2014-05-26 18:15:51 +00:00
proxy = new QSortFilterProxyModel ( this ) ;
proxy - > setSourceModel ( model ) ;
2014-09-01 11:39:38 +00:00
proxy - > setSortCaseSensitivity ( Qt : : CaseInsensitive ) ;
2014-05-26 18:15:51 +00:00
ui - > listView - > setModel ( proxy ) ;
2011-10-01 12:54:20 +00:00
ui - > listView - > setSelectionBehavior ( QAbstractItemView : : SelectRows ) ;
ui - > listView - > setSelectionMode ( QAbstractItemView : : SingleSelection ) ;
2014-05-26 19:29:01 +00:00
if ( sel > = 0 ) { ui - > listView - > setCurrentIndex ( proxy - > index ( sel , 0 ) ) ; } //model->item(sel)->index()); }
2014-04-17 05:52:25 +00:00
2014-09-01 11:39:38 +00:00
proxy - > sort ( 0 , Qt : : AscendingOrder ) ;
2014-04-17 05:52:25 +00:00
m_tries = 0 ;
2011-10-02 01:29:20 +00:00
2014-04-17 05:52:25 +00:00
popupMenu = new QMenu ( this ) ;
popupMenu - > addAction ( tr ( " Open Profile " ) , this , SLOT ( openProfile ( ) ) ) ;
popupMenu - > addAction ( tr ( " Edit Profile " ) , this , SLOT ( editProfile ( ) ) ) ;
2011-10-02 03:38:51 +00:00
popupMenu - > addSeparator ( ) ;
2014-04-17 05:52:25 +00:00
popupMenu - > addAction ( tr ( " Delete Profile " ) , this , SLOT ( deleteProfile ( ) ) ) ;
2013-10-25 10:39:30 +00:00
2019-02-13 18:22:54 +00:00
ui - > labelAppName - > setText ( STR_TR_OSCR ) ;
2016-03-06 02:50:22 +00:00
ui - > labelVersion - > setText ( STR_TR_AppVersion ) ;
2014-04-17 05:52:25 +00:00
// if (GIT_BRANCH!="master")
// ui->labelBuild->setText(GIT_BRANCH);
// else ui->labelBuild->setText(QString());
2013-10-25 10:39:30 +00:00
ui - > labelFolder - > setText ( GetAppRoot ( ) ) ;
2019-02-13 18:22:54 +00:00
ui - > labelFolder - > setToolTip ( " Current OSCR data folder \n " + GetAppRoot ( ) ) ;
2014-05-26 18:15:51 +00:00
ui - > listView - > verticalScrollBar ( ) - > setStyleSheet ( " QScrollBar:vertical {border: 0px solid grey; background: transparent; } "
" QScrollBar::handle:vertical { "
" background: qlineargradient(x1:0, y1:0, x2:1, y2:0, "
" stop: 0 rgb(230, 230, 230), stop: 0.5 rgb(255, 255, 255), stop:1 rgb(230, 230, 230)); "
" min-height: 0px; "
" border: 1px solid gray; "
" border-radius: 5px; "
" } " ) ;
2011-10-01 12:54:20 +00:00
}
ProfileSelect : : ~ ProfileSelect ( )
{
2013-01-18 20:18:25 +00:00
delete model ; // why is this not being cleaned up by Qt?
2011-10-02 03:38:51 +00:00
delete popupMenu ;
2011-10-01 12:54:20 +00:00
delete ui ;
}
2011-10-02 01:29:20 +00:00
void ProfileSelect : : earlyExit ( )
{
accept ( ) ;
}
2011-10-02 03:38:51 +00:00
void ProfileSelect : : editProfile ( )
{
2014-07-12 10:52:14 +00:00
QString name = ui - > listView - > currentIndex ( ) . data ( Qt : : UserRole + 2 ) . toString ( ) ;
2014-04-17 05:52:25 +00:00
Profile * profile = Profiles : : Get ( name ) ;
if ( ! profile ) { return ; }
bool reallyEdit = false ;
2011-12-21 14:24:09 +00:00
if ( profile - > user - > hasPassword ( ) ) {
2014-04-17 05:52:25 +00:00
QDialog dialog ( this , Qt : : Dialog ) ;
QLineEdit * e = new QLineEdit ( & dialog ) ;
2011-10-02 04:00:42 +00:00
e - > setEchoMode ( QLineEdit : : Password ) ;
2014-04-17 05:52:25 +00:00
dialog . connect ( e , SIGNAL ( returnPressed ( ) ) , & dialog , SLOT ( accept ( ) ) ) ;
2011-12-18 16:39:36 +00:00
dialog . setWindowTitle ( tr ( " Enter Password for %1 " ) . arg ( name ) ) ;
2011-10-02 04:00:42 +00:00
dialog . setMinimumWidth ( 300 ) ;
2014-04-17 05:52:25 +00:00
QVBoxLayout * lay = new QVBoxLayout ( ) ;
2011-10-02 04:00:42 +00:00
dialog . setLayout ( lay ) ;
lay - > addWidget ( e ) ;
2014-04-17 05:52:25 +00:00
int tries = 0 ;
2011-10-02 04:00:42 +00:00
do {
e - > setText ( " " ) ;
2014-04-17 05:52:25 +00:00
if ( dialog . exec ( ) ! = QDialog : : Accepted ) { break ; }
2011-10-02 04:00:42 +00:00
tries + + ;
2014-04-17 05:52:25 +00:00
2011-12-21 14:24:09 +00:00
if ( profile - > user - > checkPassword ( e - > text ( ) ) ) {
2014-04-17 05:52:25 +00:00
reallyEdit = true ;
2011-10-02 04:00:42 +00:00
break ;
} else {
2014-04-17 05:52:25 +00:00
if ( tries < 3 ) {
2014-05-17 05:04:40 +00:00
QMessageBox : : warning ( this , STR_MessageBox_Error , tr ( " Incorrect Password " ) , QMessageBox : : Ok ) ;
2011-10-02 04:00:42 +00:00
} else {
2014-05-17 05:04:40 +00:00
QMessageBox : : warning ( this , STR_MessageBox_Error , tr ( " You entered the password wrong too many times. " ) ,
2014-04-17 05:52:25 +00:00
QMessageBox : : Ok ) ;
2011-10-02 04:10:40 +00:00
reject ( ) ;
2011-10-02 04:00:42 +00:00
}
}
2014-04-17 05:52:25 +00:00
} while ( tries < 3 ) ;
} else { reallyEdit = true ; }
2011-10-02 03:38:51 +00:00
2011-10-02 04:00:42 +00:00
if ( reallyEdit ) {
NewProfile newprof ( this ) ;
newprof . edit ( name ) ;
newprof . exec ( ) ;
}
2014-04-17 05:52:25 +00:00
2011-10-02 03:38:51 +00:00
//qDebug() << "edit" << name;
}
void ProfileSelect : : deleteProfile ( )
{
2014-07-12 10:52:14 +00:00
QString name = ui - > listView - > currentIndex ( ) . data ( Qt : : UserRole + 2 ) . toString ( ) ;
2014-04-17 05:52:25 +00:00
2014-05-17 05:04:40 +00:00
QDialog confirmdlg ;
QVBoxLayout layout ( & confirmdlg ) ;
QLabel message ( QString ( " <b> " + STR_MessageBox_Warning + " :</b> " + tr ( " You are about to destroy profile '%1'. " ) + " <br/><br/> " + tr ( " Enter the word DELETE below to confirm. " ) ) . arg ( name ) , & confirmdlg ) ;
layout . insertWidget ( 0 , & message , 1 ) ;
QLineEdit lineedit ( & confirmdlg ) ;
layout . insertWidget ( 1 , & lineedit , 1 ) ;
QHBoxLayout layout2 ;
layout . insertLayout ( 2 , & layout2 , 1 ) ;
QPushButton cancel ( QString ( " &Cancel " ) , & confirmdlg ) ;
QPushButton accept ( QString ( " &Delete Profile " ) , & confirmdlg ) ;
layout2 . addWidget ( & cancel ) ;
layout2 . addStretch ( 1 ) ;
layout2 . addWidget ( & accept ) ;
confirmdlg . connect ( & cancel , SIGNAL ( clicked ( ) ) , & confirmdlg , SLOT ( reject ( ) ) ) ;
confirmdlg . connect ( & accept , SIGNAL ( clicked ( ) ) , & confirmdlg , SLOT ( accept ( ) ) ) ;
confirmdlg . connect ( & lineedit , SIGNAL ( returnPressed ( ) ) , & confirmdlg , SLOT ( accept ( ) ) ) ;
if ( confirmdlg . exec ( ) ! = QDialog : : Accepted )
return ;
if ( lineedit . text ( ) . compare ( " DELETE " ) ! = 0 ) {
QMessageBox : : information ( NULL , tr ( " Sorry " ) , tr ( " You need to enter DELETE in capital letters. " ) , QMessageBox : : Ok ) ;
return ;
}
2014-07-28 13:56:29 +00:00
Profile * profile = Profiles : : profiles [ name ] ;
p_profile = profile ;
2018-04-22 12:06:48 +00:00
// Hmmmmm.....
// if (!profile->Load()) {
// QMessageBox::warning(this, STR_MessageBox_Error,
// QString(tr("Could not open profile.. You will need to delete this profile directory manually")+
// "\n\n"+tr("You will find it under the following location:")+"\n\n%1").arg(QDir::toNativeSeparators(GetAppRoot() + "/Profiles/" + profile->user->userName())), QMessageBox::Ok);
// return;
// }
2014-05-17 05:04:40 +00:00
bool reallydelete = false ;
if ( profile - > user - > hasPassword ( ) ) {
QDialog dialog ( this , Qt : : Dialog ) ;
QLineEdit * e = new QLineEdit ( & dialog ) ;
e - > setEchoMode ( QLineEdit : : Password ) ;
dialog . connect ( e , SIGNAL ( returnPressed ( ) ) , & dialog , SLOT ( accept ( ) ) ) ;
dialog . setWindowTitle ( tr ( " Enter Password for %1 " ) . arg ( name ) ) ;
dialog . setMinimumWidth ( 300 ) ;
QVBoxLayout * lay = new QVBoxLayout ( ) ;
dialog . setLayout ( lay ) ;
lay - > addWidget ( e ) ;
int tries = 0 ;
2014-04-17 05:52:25 +00:00
2014-05-17 05:04:40 +00:00
do {
e - > setText ( " " ) ;
if ( dialog . exec ( ) ! = QDialog : : Accepted ) { break ; }
tries + + ;
if ( profile - > user - > checkPassword ( e - > text ( ) ) ) {
reallydelete = true ;
break ;
} else {
if ( tries < 3 ) {
QMessageBox : : warning ( this , STR_MessageBox_Error , tr ( " You entered an incorrect password " ) , QMessageBox : : Ok ) ;
} else {
QMessageBox : : warning ( this , STR_MessageBox_Error ,
tr ( " If you're trying to delete because you forgot the password, you need to delete it manually. " ) ,
QMessageBox : : Ok ) ;
2011-10-02 03:38:51 +00:00
}
}
2014-05-17 05:04:40 +00:00
} while ( tries < 3 ) ;
} else { reallydelete = true ; }
if ( reallydelete ) {
QString path = profile - > Get ( PrefMacro ( STR_GEN_DataFolder ) ) ;
if ( ! path . isEmpty ( ) ) {
if ( ! removeDir ( path ) ) {
QMessageBox : : information ( this , STR_MessageBox_Error ,
tr ( " There was an error deleting the profile directory, you need to manually remove it. " ) + QString ( " \n \n %1 " ) . arg ( path ) ,
QMessageBox : : Ok ) ;
}
qDebug ( ) < < " Delete " < < path ;
2018-06-14 07:25:54 +00:00
QMessageBox : : information ( this , STR_MessageBox_Information , tr ( " Profile '%1' was succesfully deleted " ) . arg ( name ) , QMessageBox : : Ok ) ;
2011-10-02 03:38:51 +00:00
}
2014-05-17 05:04:40 +00:00
2014-09-30 16:42:11 +00:00
int row = ui - > listView - > currentIndex ( ) . row ( ) ;
proxy - > removeRow ( row ) ;
2014-07-28 13:56:29 +00:00
delete p_profile ;
p_profile = nullptr ;
2011-10-02 03:38:51 +00:00
}
}
2011-12-18 10:53:51 +00:00
//! \fn ProfileSelect::QuickLogin()
//! \brief For programmatically bypassing the login window
2011-11-18 09:18:41 +00:00
void ProfileSelect : : QuickLogin ( )
{
on_listView_activated ( ui - > listView - > currentIndex ( ) ) ;
}
2011-10-02 03:38:51 +00:00
2011-10-01 12:54:20 +00:00
void ProfileSelect : : on_selectButton_clicked ( )
{
on_listView_activated ( ui - > listView - > currentIndex ( ) ) ;
}
2011-10-02 03:38:51 +00:00
void ProfileSelect : : openProfile ( )
{
on_listView_activated ( ui - > listView - > currentIndex ( ) ) ;
}
2011-10-01 12:54:20 +00:00
void ProfileSelect : : on_newProfileButton_clicked ( )
{
NewProfile newprof ( this ) ;
newprof . skipWelcomeScreen ( ) ;
2014-07-02 05:33:27 +00:00
newprof . setWindowTitle ( tr ( " Create new profile " ) ) ;
2014-04-17 05:52:25 +00:00
if ( newprof . exec ( ) = = NewProfile : : Rejected ) {
// reject();
} else { accept ( ) ; }
2011-10-01 12:54:20 +00:00
}
2011-12-18 10:53:51 +00:00
//! \fn ProfileSelect::on_listView_activated(const QModelIndex &index)
//! \brief Process the selected login, requesting passwords if required.
2011-10-01 12:54:20 +00:00
void ProfileSelect : : on_listView_activated ( const QModelIndex & index )
{
2014-07-12 10:52:14 +00:00
QString name = index . data ( Qt : : UserRole + 2 ) . toString ( ) ;
2014-04-17 05:52:25 +00:00
Profile * profile = Profiles : : profiles [ name ] ;
if ( ! profile ) { return ; }
2014-04-25 05:28:10 +00:00
if ( ! profile - > isOpen ( ) ) {
2014-07-28 13:56:29 +00:00
p_profile = profile ;
2014-07-02 03:22:09 +00:00
// Do this in case user renames the directory (otherwise it won't load)
// Essentially makes the folder name the user name, but whatever..
// TODO: Change the profile editor one day to make it rename the actual folder
profile - > p_preferences [ STR_UI_UserName ] = name ;
2014-04-25 05:28:10 +00:00
}
2014-04-17 05:52:25 +00:00
2011-12-21 14:24:09 +00:00
if ( ! profile - > user - > hasPassword ( ) ) {
2014-04-17 05:52:25 +00:00
m_selectedProfile = name ;
2018-04-22 14:22:18 +00:00
AppSetting - > setProfileName ( name ) ;
2011-10-02 04:10:40 +00:00
accept ( ) ;
return ;
2011-10-01 12:54:20 +00:00
} else {
2014-04-17 05:52:25 +00:00
int tries = 0 ;
2011-10-02 04:10:40 +00:00
do {
2014-04-17 05:52:25 +00:00
QDialog dialog ( this , Qt : : Dialog ) ;
QLineEdit * e = new QLineEdit ( & dialog ) ;
2011-10-02 04:10:40 +00:00
e - > setEchoMode ( QLineEdit : : Password ) ;
2014-04-17 05:52:25 +00:00
dialog . connect ( e , SIGNAL ( returnPressed ( ) ) , & dialog , SLOT ( accept ( ) ) ) ;
2011-12-18 16:39:36 +00:00
dialog . setWindowTitle ( tr ( " Enter Password " ) ) ;
2014-04-17 05:52:25 +00:00
QVBoxLayout * lay = new QVBoxLayout ( ) ;
2011-10-02 04:10:40 +00:00
dialog . setLayout ( lay ) ;
lay - > addWidget ( e ) ;
dialog . exec ( ) ;
2014-04-17 05:52:25 +00:00
2011-12-21 14:24:09 +00:00
if ( profile - > user - > checkPassword ( e - > text ( ) ) ) {
2014-04-17 05:52:25 +00:00
m_selectedProfile = name ;
2018-04-22 12:06:48 +00:00
AppSetting - > setProfileName ( name ) ;
2011-10-02 04:10:40 +00:00
accept ( ) ;
return ;
}
2014-04-17 05:52:25 +00:00
2011-10-02 04:10:40 +00:00
tries + + ;
2014-04-17 05:52:25 +00:00
if ( tries < 3 ) {
2014-05-17 05:04:40 +00:00
QMessageBox : : warning ( this , STR_MessageBox_Error , tr ( " Incorrect Password " ) , QMessageBox : : Ok ) ;
2011-10-02 04:10:40 +00:00
} else {
2014-05-17 05:04:40 +00:00
QMessageBox : : warning ( this , STR_MessageBox_Error ,
2014-04-17 05:52:25 +00:00
tr ( " You entered an Incorrect Password too many times. Exiting! " ) , QMessageBox : : Ok ) ;
2011-10-01 12:54:20 +00:00
}
2014-04-17 05:52:25 +00:00
} while ( tries < 3 ) ;
2011-10-01 12:54:20 +00:00
}
2014-04-17 05:52:25 +00:00
2011-10-02 04:10:40 +00:00
reject ( ) ;
return ;
2011-10-01 12:54:20 +00:00
}
2011-10-02 03:38:51 +00:00
void ProfileSelect : : on_listView_customContextMenuRequested ( const QPoint & pos )
{
popupMenu - > popup ( QWidget : : mapToGlobal ( pos ) ) ;
}
2013-10-25 10:39:30 +00:00
void ProfileSelect : : on_pushButton_clicked ( )
{
2018-06-12 12:55:44 +00:00
mainwin - > RestartApplication ( false , " -d " ) ;
2013-10-25 10:39:30 +00:00
}
2014-05-26 18:15:51 +00:00
void ProfileSelect : : on_filter_textChanged ( const QString & arg1 )
{
QRegExp regExp ( " * " + arg1 + " * " , Qt : : CaseInsensitive , QRegExp : : Wildcard ) ;
proxy - > setFilterRegExp ( regExp ) ;
}