2011-11-26 04:00:31 +00:00
/*
Profile Select Implementation ( Login Screen )
Copyright ( c ) 2011 Mark Watkins < jedimark @ users . sourceforge . net >
License : GPL
*/
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>
2011-10-02 01:29:20 +00:00
# include <QTimer>
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"
ProfileSelect : : ProfileSelect ( QWidget * parent ) :
QDialog ( parent ) ,
ui ( new Ui : : ProfileSelect )
{
ui - > setupUi ( this ) ;
QStringList str ;
2012-01-11 11:25:36 +00:00
model = new QStandardItemModel ( 0 , 0 ) ;
2011-10-01 12:54:20 +00:00
int i = 0 ;
2011-10-01 14:08:43 +00:00
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 " ) ;
2013-10-20 11:00:55 +00:00
for ( QMap < QString , Profile * > : : iterator p = Profiles : : profiles . begin ( ) ; p ! = Profiles : : profiles . end ( ) ; p + + ) {
2011-10-02 01:29:20 +00:00
name = p . key ( ) ;
2013-01-18 20:18:25 +00:00
QStandardItem * item = new QStandardItem ( icon , name ) ;
2011-12-21 14:24:09 +00:00
if ( PREF . contains ( STR_GEN_Profile ) & & ( name = = PREF [ STR_GEN_Profile ] . toString ( ) ) ) {
2011-10-01 14:08:43 +00:00
sel = i ;
}
2011-10-01 12:54:20 +00:00
item - > setData ( p . key ( ) ) ;
item - > setEditable ( false ) ;
2011-10-21 05:50:31 +00:00
// Profile fonts arern't loaded yet.. Using generic font.
2011-10-01 12:54:20 +00:00
item - > setFont ( QFont ( " Sans Serif " , 18 , QFont : : Bold , false ) ) ;
model - > appendRow ( item ) ;
i + + ;
}
ui - > listView - > setModel ( model ) ;
ui - > listView - > setSelectionBehavior ( QAbstractItemView : : SelectRows ) ;
ui - > listView - > setSelectionMode ( QAbstractItemView : : SingleSelection ) ;
2011-10-01 14:08:43 +00:00
if ( sel > = 0 ) ui - > listView - > setCurrentIndex ( model - > item ( sel ) - > index ( ) ) ;
2011-10-01 12:54:20 +00:00
m_tries = 0 ;
2011-10-02 01:29:20 +00:00
2011-11-30 06:01:38 +00:00
/*PREF["SkipLogin"]=false;
2011-10-05 07:41:56 +00:00
if ( ( i = = 1 ) & & PREF [ " SkipLogin " ] . toBool ( ) ) {
2011-10-02 01:29:20 +00:00
if ( ! Profiles : : profiles . contains ( name ) )
2011-12-21 14:24:09 +00:00
PREF [ STR_GEN_Profile ] = name ;
2011-10-02 01:29:20 +00:00
QTimer : : singleShot ( 0 , this , SLOT ( earlyExit ( ) ) ) ;
hide ( ) ;
2011-11-30 06:01:38 +00:00
} */
2011-10-02 03:38:51 +00:00
popupMenu = new QMenu ( this ) ;
2011-12-18 16:39:36 +00:00
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 ( ) ;
2011-12-18 16:39:36 +00:00
popupMenu - > addAction ( tr ( " Delete Profile " ) , this , SLOT ( deleteProfile ( ) ) ) ;
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 ( )
{
QString name = ui - > listView - > currentIndex ( ) . data ( ) . toString ( ) ;
2011-10-02 04:00:42 +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 ( ) ) {
2011-10-02 04:00:42 +00:00
QDialog dialog ( this , Qt : : Dialog ) ;
QLineEdit * e = new QLineEdit ( & dialog ) ;
e - > setEchoMode ( QLineEdit : : Password ) ;
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 ) ;
QVBoxLayout * lay = new QVBoxLayout ( ) ;
dialog . setLayout ( lay ) ;
lay - > addWidget ( e ) ;
int tries = 0 ;
do {
e - > setText ( " " ) ;
if ( dialog . exec ( ) ! = QDialog : : Accepted ) break ;
tries + + ;
2011-12-21 14:24:09 +00:00
if ( profile - > user - > checkPassword ( e - > text ( ) ) ) {
2011-10-02 04:00:42 +00:00
reallyEdit = true ;
break ;
} else {
if ( tries < 3 ) {
2011-12-21 14:24:09 +00:00
QMessageBox : : warning ( this , STR_MESSAGE_ERROR , tr ( " Incorrect Password " ) , QMessageBox : : Ok ) ;
2011-10-02 04:00:42 +00:00
} else {
2011-12-21 14:24:09 +00:00
QMessageBox : : warning ( this , STR_MESSAGE_ERROR , tr ( " You entered the password wrong too many times. " ) , QMessageBox : : Ok ) ;
2011-10-02 04:10:40 +00:00
reject ( ) ;
2011-10-02 04:00:42 +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 ( ) ;
}
2011-10-02 03:38:51 +00:00
//qDebug() << "edit" << name;
}
void ProfileSelect : : deleteProfile ( )
{
QString name = ui - > listView - > currentIndex ( ) . data ( ) . toString ( ) ;
2011-12-18 16:39:36 +00:00
if ( QMessageBox : : question ( this , tr ( " Question " ) , tr ( " Are you sure you want to trash the profile \" %1 \" ? " ) . arg ( name ) , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
2012-01-11 11:25:36 +00:00
if ( QMessageBox : : question ( this , tr ( " Question " ) , tr ( " Double Checking: \n \n Do you really want \" %1 \" profile to be obliterated? " ) . arg ( name ) , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
if ( QMessageBox : : question ( this , tr ( " Question " ) , tr ( " Okay, I am about to totally OBLITERATE the profile \" %1 \" and all it's contained data.. \n \n Don't say you weren't warned. :-p " ) . arg ( name ) , QMessageBox : : Cancel , QMessageBox : : Ok ) = = QMessageBox : : Ok ) {
2011-10-02 03:38:51 +00:00
bool reallydelete = false ;
Profile * profile = Profiles : : profiles [ name ] ;
if ( ! profile ) {
2011-12-22 10:29:12 +00:00
QMessageBox : : warning ( this , tr ( " WTH??? " ) , tr ( " If you can read this you need to delete this profile directory manually (It's under %1) " ) . arg ( GetAppRoot ( ) + " /Profiles/ " + PROFILE . user - > userName ( ) ) , QMessageBox : : Ok ) ;
2011-10-02 03:38:51 +00:00
return ;
}
2011-12-21 14:24:09 +00:00
if ( profile - > user - > hasPassword ( ) ) {
2011-10-02 03:38:51 +00:00
QDialog dialog ( this , Qt : : Dialog ) ;
QLineEdit * e = new QLineEdit ( & dialog ) ;
e - > setEchoMode ( QLineEdit : : Password ) ;
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 03:38:51 +00:00
dialog . setMinimumWidth ( 300 ) ;
QVBoxLayout * lay = new QVBoxLayout ( ) ;
dialog . setLayout ( lay ) ;
lay - > addWidget ( e ) ;
int tries = 0 ;
do {
e - > setText ( " " ) ;
if ( dialog . exec ( ) ! = QDialog : : Accepted ) break ;
tries + + ;
2011-12-21 14:24:09 +00:00
if ( profile - > user - > checkPassword ( e - > text ( ) ) ) {
2011-10-02 03:38:51 +00:00
reallydelete = true ;
break ;
} else {
if ( tries < 3 ) {
2011-12-21 14:24:09 +00:00
QMessageBox : : warning ( this , STR_MESSAGE_ERROR , tr ( " Incorrect Password " ) , QMessageBox : : Ok ) ;
2011-10-02 03:38:51 +00:00
} else {
2011-12-21 14:24:09 +00:00
QMessageBox : : warning ( this , STR_MESSAGE_ERROR , tr ( " Meheh... If your trying to delete because you forgot the password, your going the wrong way about it. Read the docs. \n \n Signed: Nasty Programmer " ) , QMessageBox : : Ok ) ;
2011-10-02 03:38:51 +00:00
}
}
} while ( tries < 3 ) ;
} else reallydelete = true ;
if ( reallydelete ) {
2012-01-11 11:25:36 +00:00
QString path = profile - > Get ( PrefMacro ( STR_GEN_DataFolder ) ) ;
if ( ! path . isEmpty ( ) ) {
if ( ! removeDir ( path ) ) {
QMessageBox : : information ( this , tr ( " Whoops. " ) , tr ( " There was an error deleting the profile directory.. You need to manually remove %1 " ) . arg ( path ) , QMessageBox : : Ok ) ;
}
}
model - > removeRow ( ui - > listView - > currentIndex ( ) . row ( ) ) ;
qDebug ( ) < < " Delete " < < path ;
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 ( ) ;
2012-01-09 03:43:42 +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 )
{
QString name = index . data ( ) . toString ( ) ;
Profile * profile = Profiles : : profiles [ name ] ;
if ( ! profile ) return ;
2011-12-21 14:24:09 +00:00
if ( ! profile - > user - > hasPassword ( ) ) {
2011-10-01 12:54:20 +00:00
m_selectedProfile = name ;
2011-12-21 14:24:09 +00:00
PREF [ STR_GEN_Profile ] = name ;
2011-10-02 04:10:40 +00:00
accept ( ) ;
return ;
2011-10-01 12:54:20 +00:00
} else {
2011-10-02 04:10:40 +00:00
int tries = 0 ;
do {
QDialog dialog ( this , Qt : : Dialog ) ;
QLineEdit * e = new QLineEdit ( & dialog ) ;
e - > setEchoMode ( QLineEdit : : Password ) ;
dialog . connect ( e , SIGNAL ( returnPressed ( ) ) , & dialog , SLOT ( accept ( ) ) ) ;
2011-12-18 16:39:36 +00:00
dialog . setWindowTitle ( tr ( " Enter Password " ) ) ;
2011-10-02 04:10:40 +00:00
QVBoxLayout * lay = new QVBoxLayout ( ) ;
dialog . setLayout ( lay ) ;
lay - > addWidget ( e ) ;
dialog . exec ( ) ;
2011-12-21 14:24:09 +00:00
if ( profile - > user - > checkPassword ( e - > text ( ) ) ) {
2011-10-02 04:10:40 +00:00
m_selectedProfile = name ;
2011-12-21 14:24:09 +00:00
PREF [ STR_GEN_Profile ] = name ;
2011-10-02 04:10:40 +00:00
accept ( ) ;
return ;
}
tries + + ;
if ( tries < 3 ) {
2011-12-21 14:24:09 +00:00
QMessageBox : : warning ( this , STR_MESSAGE_ERROR , tr ( " Incorrect Password " ) , QMessageBox : : Ok ) ;
2011-10-02 04:10:40 +00:00
} else {
2011-12-21 14:24:09 +00:00
QMessageBox : : warning ( this , STR_MESSAGE_ERROR , tr ( " You entered an Incorrect Password too many times. Exiting! " ) , QMessageBox : : Ok ) ;
2011-10-01 12:54:20 +00:00
}
2011-10-02 04:10:40 +00:00
} while ( tries < 3 ) ;
2011-10-01 12:54:20 +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 ) ) ;
}