1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "LLockScreen.h"
#include "ui_LLockScreen.h"
#include <unistd.h>
#define NUMTRIES 3
#define WAITMINS 1
#define DEBUG 1
LLockScreen::LLockScreen(QWidget *parent) : QWidget(parent), ui(new Ui::LLockScreen()){
ui->setupUi(this);
waittime = new QTimer(this);
waittime->setInterval(WAITMINS*60000); //(too many attempts in short time)
waittime->setSingleShot(true);
refreshtime = new QTimer(this); //timer to update the wait time display
refreshtime->setInterval(6000); //6 seconds (1/10 second)
connect(ui->tool_unlock, SIGNAL(clicked()), this, SLOT(TryUnlock()) );
connect(ui->line_password, SIGNAL(returnPressed()), this, SLOT(TryUnlock()) );
connect(ui->line_password, SIGNAL(textEdited(QString)), this, SIGNAL(InputDetected()) );
connect(ui->line_password, SIGNAL(cursorPositionChanged(int,int)), this, SIGNAL(InputDetected()) );
connect(waittime, SIGNAL(timeout()), this, SLOT(aboutToShow()) );
connect(refreshtime, SIGNAL(timeout()), this, SLOT(UpdateLockInfo()) );
}
LLockScreen::~LLockScreen(){
}
void LLockScreen::LoadSystemDetails(){
//Run every time the screen is initially locked
QString user = QString(getlogin());
ui->label_username->setText( QString(tr("Locked by: %1")).arg(user) );
ui->label_hostname->setText( QHostInfo::localHostName() );
ui->tool_unlock->setIcon( LXDG::findIcon("document-decrypt","") );
attempts = 0;
}
void LLockScreen::aboutToHide(){
//auto-hide timeout - clear display
ui->line_password->clear();
ui->line_password->clearFocus();
if(refreshtime->isActive()){ refreshtime->stop(); }
}
void LLockScreen::aboutToShow(){
if(!waittime->isActive()){
ui->label_info->clear();
this->setEnabled(true);
triesleft = NUMTRIES; //back to initial number of tries
if(refreshtime->isActive()){ refreshtime->stop(); }
}else{
if(!refreshtime->isActive()){ refreshtime->start(); }
}
UpdateLockInfo();
ui->line_password->clear();
ui->line_password->setFocus();
}
// =================
// PRIVATE SLOTS
// =================
void LLockScreen::UpdateLockInfo(){
QString info;
/*if(triesleft>0 && triesleft<NUMTRIES ){
if(triesleft==1){info = tr("1 Attempt Left"); }
else{info = QString(tr("%1 Attempts Left")).arg(QString::number(triesleft)); }
}else*/
if(waittime->isActive()){
info = tr("Too Many Failures")+"\n"+ QString(tr("Wait %1 Minutes")).arg( QString::number(qRound(waittime->remainingTime()/6000.0)/10.0) );
}else if(attempts>0){ info.append("\n"+QString(tr("Failed Attempts: %1")).arg(QString::number(attempts)) ); }
ui->label_info->setText(info);
}
void LLockScreen::TryUnlock(){
attempts++;
this->setEnabled(false);
QString pass = ui->line_password->text();
ui->line_password->clear();
bool ok = (LUtils::runCmd("lumina-checkpass", QStringList() << pass) == 0);
if(ok){
emit ScreenUnlocked();
this->setEnabled(true);
}else{
triesleft--;
if(triesleft>0){
this->setEnabled(true);
}else{
waittime->start();
refreshtime->start();
}
ui->line_password->setFocus();
}
UpdateLockInfo();
}
|