2014-01-05 20:58:25 +00:00
|
|
|
/*
|
2014-07-01 14:37:52 +00:00
|
|
|
* Copyright (c) 2014, Stefan Brand <seiichiro@seiichiro0185.org>
|
2014-01-05 20:58:25 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
2014-02-02 13:43:22 +00:00
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
2014-01-05 20:58:25 +00:00
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this
|
2014-02-02 13:43:22 +00:00
|
|
|
* list of conditions and the following disclaimer in the documentation and/or other
|
2014-01-05 20:58:25 +00:00
|
|
|
* materials provided with the distribution.
|
2014-02-02 13:43:22 +00:00
|
|
|
*
|
|
|
|
* 3. The names of the contributors may not be used to endorse or promote products
|
2014-01-05 20:58:25 +00:00
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
2014-02-02 13:43:22 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
2014-01-05 20:58:25 +00:00
|
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.0
|
|
|
|
import Sailfish.Silica 1.0
|
|
|
|
import "../lib/storage.js" as DB
|
|
|
|
import "../lib/crypto.js" as OTP
|
|
|
|
|
|
|
|
Page {
|
2014-01-08 18:28:06 +00:00
|
|
|
id: mainPage
|
|
|
|
|
2015-12-06 18:37:41 +00:00
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
2014-02-02 13:43:22 +00:00
|
|
|
// This holds the time of the last update of the page as Unix Timestamp (in Milliseconds)
|
2014-01-10 18:57:42 +00:00
|
|
|
property double lastUpdated: 0
|
2019-02-24 15:41:21 +00:00
|
|
|
property double seconds_global: 0
|
2014-01-08 18:28:06 +00:00
|
|
|
|
|
|
|
// Reload the List of OTPs from storage
|
|
|
|
function refreshOTPList() {
|
2014-01-10 18:57:42 +00:00
|
|
|
otpList.visible = false;
|
2014-07-13 10:06:10 +00:00
|
|
|
otpList.model = null; // Hack to prevent unaccessible pulley after List refresh
|
2014-02-09 09:59:50 +00:00
|
|
|
appWin.listModel.clear();
|
2014-01-08 18:28:06 +00:00
|
|
|
DB.getOTP();
|
|
|
|
refreshOTPValues();
|
2014-07-13 10:06:10 +00:00
|
|
|
otpList.model = appWin.listModel; // Hack to prevent unaccessible pulley after List refresh
|
2014-01-10 18:57:42 +00:00
|
|
|
otpList.visible = true;
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate new OTPs for every entry
|
|
|
|
function refreshOTPValues() {
|
2014-02-02 13:43:22 +00:00
|
|
|
// get seconds from current Date
|
|
|
|
var curDate = new Date();
|
2019-02-24 15:41:21 +00:00
|
|
|
seconds_global = curDate.getSeconds() % 30
|
2014-01-08 18:28:06 +00:00
|
|
|
|
2014-02-02 13:43:22 +00:00
|
|
|
// Iterate over all List entries
|
2014-02-09 09:59:50 +00:00
|
|
|
for (var i=0; i<appWin.listModel.count; i++) {
|
2019-02-24 15:41:21 +00:00
|
|
|
if (appWin.listModel.get(i).type === "TOTP" || appWin.listModel.get(i).type === "TOTP_STEAM" ) {
|
2016-07-17 17:35:53 +00:00
|
|
|
// Take derivation into account if set
|
|
|
|
var seconds = (curDate.getSeconds() + appWin.listModel.get(i).diff) % 30;
|
2014-01-12 17:43:17 +00:00
|
|
|
// Only update on full 30 / 60 Seconds or if last run of the Functions is more than 2s in the past (e.g. app was in background)
|
2019-02-24 15:41:21 +00:00
|
|
|
if (appWin.listModel.get(i).otp === "------" || seconds == 0 || (curDate.getTime() - lastUpdated > 2000)) {
|
|
|
|
var curOTP = OTP.calcOTP(appWin.listModel.get(i).secret, appWin.listModel.get(i).type, appWin.listModel.get(i).len, appWin.listModel.get(i).diff, 0);
|
2014-02-09 09:59:50 +00:00
|
|
|
appWin.listModel.setProperty(i, "otp", curOTP);
|
2019-02-24 15:41:21 +00:00
|
|
|
} else if (appWin.coverType === "HOTP" && (curDate.getTime() - lastUpdated > 2000) && appWin.listModel.get(i).fav === 1) {
|
|
|
|
// If we are coming back from the CoverPage update OTP value if current favourite is HOTP
|
|
|
|
appWin.listModel.setProperty(i, "otp", appWin.coverOTP);
|
2014-01-12 17:43:17 +00:00
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-02-02 13:43:22 +00:00
|
|
|
// Set lastUpdate property
|
2014-01-08 18:28:06 +00:00
|
|
|
lastUpdated = curDate.getTime();
|
|
|
|
}
|
|
|
|
|
2019-02-24 15:41:21 +00:00
|
|
|
// Reload OTP List on Return to the Page (to e.g. accomodate changed scd ettings)
|
|
|
|
onStatusChanged: {
|
|
|
|
if (status === PageStatus.Activating) {
|
|
|
|
refreshOTPList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
Timer {
|
2014-01-12 17:43:17 +00:00
|
|
|
interval: 500
|
2014-01-10 18:57:42 +00:00
|
|
|
// Timer only runs when app is acitive and we have entries
|
2014-02-09 09:59:50 +00:00
|
|
|
running: Qt.application.active && appWin.listModel.count
|
2014-01-08 18:28:06 +00:00
|
|
|
repeat: true
|
|
|
|
onTriggered: refreshOTPValues();
|
|
|
|
}
|
|
|
|
|
|
|
|
SilicaFlickable {
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
PullDownMenu {
|
|
|
|
MenuItem {
|
2014-02-09 09:59:50 +00:00
|
|
|
text: qsTr("About")
|
2014-01-08 18:28:06 +00:00
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("About.qml"))
|
|
|
|
}
|
2018-04-02 07:32:11 +00:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Settings")
|
2019-02-24 15:41:21 +00:00
|
|
|
visible: true
|
2018-04-02 07:32:11 +00:00
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("Settings.qml"))
|
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
MenuItem {
|
2014-07-01 14:37:52 +00:00
|
|
|
text: qsTr("Export / Import")
|
2014-02-02 13:43:22 +00:00
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("ExportPage.qml"), {parentPage: mainPage, mode: "export"})
|
|
|
|
}
|
|
|
|
MenuItem {
|
2014-02-09 09:59:50 +00:00
|
|
|
text: qsTr("Add Token")
|
2014-07-01 14:37:52 +00:00
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("ScanOTP.qml"), {parentPage: mainPage})
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
SilicaListView {
|
|
|
|
id: otpList
|
|
|
|
anchors.fill: parent
|
2014-02-09 09:59:50 +00:00
|
|
|
model: appWin.listModel
|
2014-01-08 18:28:06 +00:00
|
|
|
width: parent.width
|
2014-01-05 20:58:25 +00:00
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
ViewPlaceholder {
|
|
|
|
enabled: otpList.count == 0
|
2014-02-09 09:59:50 +00:00
|
|
|
text: qsTr("Nothing here")
|
|
|
|
hintText: qsTr("Pull down to add a OTP")
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-05 20:58:25 +00:00
|
|
|
|
2021-01-04 19:30:05 +00:00
|
|
|
header: Column {
|
2019-02-24 15:41:21 +00:00
|
|
|
width: parent.width
|
2021-01-04 19:30:05 +00:00
|
|
|
height: headerRow.height + searchRow.height
|
|
|
|
Row {
|
|
|
|
id: headerRow
|
2019-02-24 15:41:21 +00:00
|
|
|
height: Theme.itemSizeSmall
|
2021-01-04 19:30:05 +00:00
|
|
|
width: parent.width
|
|
|
|
ProgressBar {
|
|
|
|
id: updateProgress
|
|
|
|
// Hack to get the Progress Bar in roughly the same spot on Light and Dark Ambiances
|
|
|
|
anchors.topMargin: Theme.colorScheme === 0 ? Theme.paddingLarge * 1.1 : Theme.paddingSmall * 0.6
|
|
|
|
height: Theme.itemSizeSmall
|
|
|
|
width: parent.width * 0.65
|
|
|
|
maximumValue: 29
|
|
|
|
value: 29 - seconds_global
|
|
|
|
// Only show when there are enries
|
|
|
|
visible: appWin.listModel.count
|
|
|
|
}
|
|
|
|
PageHeader {
|
|
|
|
id: header
|
|
|
|
anchors.top: parent.top
|
|
|
|
height: Theme.itemSizeSmall
|
|
|
|
width: parent.width * 0.35
|
|
|
|
title: "SailOTP"
|
|
|
|
}
|
2019-02-24 15:41:21 +00:00
|
|
|
}
|
2021-01-04 19:30:05 +00:00
|
|
|
Row {
|
|
|
|
id: searchRow
|
|
|
|
width: parent.width
|
|
|
|
TextField {
|
|
|
|
id: searchField
|
|
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
|
|
width: parent.width - clearIcon.width
|
|
|
|
EnterKey.enabled: false
|
|
|
|
inputMethodHints: Qt.ImhNoPredictiveText // Qt.ImhPreferUppercase | Qt.ImhNoAutoUppercase
|
|
|
|
placeholderText: qsTr("Search")
|
|
|
|
onTextChanged: {
|
|
|
|
for (var i = 0; i < appWin.listModel.count; i++) {
|
|
|
|
appWin.listModel.get(i).itemVisible = appWin.listModel.get(i).title.toString().toLowerCase().indexOf(searchField.text.toLowerCase()) > -1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
IconButton {
|
|
|
|
id: clearIcon
|
|
|
|
icon.source: "image://theme/icon-m-backspace"
|
|
|
|
onClicked: searchField.text = ""
|
|
|
|
enabled: searchField.text.length > 0
|
|
|
|
}
|
2019-02-24 15:41:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
delegate: ListItem {
|
|
|
|
id: otpListItem
|
|
|
|
menu: otpContextMenu
|
2021-01-04 19:30:05 +00:00
|
|
|
contentHeight: visible ? Theme.itemSizeMedium : 0
|
2014-01-10 18:57:42 +00:00
|
|
|
width: parent.width
|
2021-01-04 19:30:05 +00:00
|
|
|
visible: itemVisible
|
2014-01-05 20:58:25 +00:00
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
function remove() {
|
2014-01-10 18:57:42 +00:00
|
|
|
// Show 5s countdown, then delete from DB and List
|
2014-02-09 09:59:50 +00:00
|
|
|
remorseAction(qsTr("Deleting"), function() { DB.removeOTP(title, secret); appWin.listModel.remove(index) })
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-07-01 14:37:52 +00:00
|
|
|
function moveEntry(direction, index) {
|
|
|
|
if (direction) {
|
|
|
|
appWin.listModel.move(index, index-1, 1);
|
|
|
|
} else {
|
|
|
|
appWin.listModel.move(index, index+1, 1);
|
|
|
|
}
|
|
|
|
for (var i=0; i<appWin.listModel.count; i++) {
|
|
|
|
DB.changeOTPSort(appWin.listModel.get(i).title, appWin.listModel.get(i).secret, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-10 18:57:42 +00:00
|
|
|
onClicked: {
|
2019-02-24 15:41:21 +00:00
|
|
|
if (settings.hideTokens) {
|
|
|
|
otpValue.visible = !otpValue.visible
|
|
|
|
} else if (settings.showQrDefaultAction) {
|
|
|
|
pageStack.push(Qt.resolvedUrl("QRPage.qml"), {paramQrsource: otp, paramLabel: title, paramQRId: index});
|
|
|
|
} else {
|
|
|
|
Clipboard.text = otp
|
|
|
|
notify.show(qsTr("Token for ") + title + qsTr(" copied to clipboard"), 3000);
|
|
|
|
}
|
2014-01-10 18:57:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
ListView.onRemove: animateRemoval()
|
|
|
|
Rectangle {
|
2014-01-10 18:57:42 +00:00
|
|
|
id: listRow
|
|
|
|
width: parent.width
|
2014-01-08 18:28:06 +00:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
|
2014-01-10 18:57:42 +00:00
|
|
|
IconButton {
|
|
|
|
icon.source: fav == 1 ? "image://theme/icon-m-favorite-selected" : "image://theme/icon-m-favorite"
|
|
|
|
anchors.left: parent.left
|
|
|
|
onClicked: {
|
|
|
|
if (fav == 0) {
|
|
|
|
DB.setFav(title, secret)
|
2014-02-09 09:59:50 +00:00
|
|
|
appWin.setCover(index)
|
2014-01-12 17:43:17 +00:00
|
|
|
if (type == "HOTP") appWin.coverOTP = otp
|
2014-02-09 09:59:50 +00:00
|
|
|
for (var i=0; i<appWin.listModel.count; i++) {
|
2014-01-10 18:57:42 +00:00
|
|
|
if (i != index) {
|
2014-02-09 09:59:50 +00:00
|
|
|
appWin.listModel.setProperty(i, "fav", 0);
|
2014-01-10 18:57:42 +00:00
|
|
|
} else {
|
2014-02-09 09:59:50 +00:00
|
|
|
appWin.listModel.setProperty(i, "fav", 1);
|
2014-01-10 18:57:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-07-13 10:06:10 +00:00
|
|
|
DB.resetFav(title, secret);
|
|
|
|
appWin.setCover(-1);
|
2014-02-09 09:59:50 +00:00
|
|
|
appWin.listModel.setProperty(index, "fav", 0);
|
2014-01-10 18:57:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
|
|
|
|
Label {
|
2014-01-08 18:28:06 +00:00
|
|
|
id: otpLabel
|
|
|
|
text: model.title
|
|
|
|
color: Theme.secondaryColor
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2014-01-10 18:57:42 +00:00
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
|
2014-01-10 18:57:42 +00:00
|
|
|
Label {
|
2014-01-08 18:28:06 +00:00
|
|
|
id: otpValue
|
|
|
|
text: model.otp
|
|
|
|
color: Theme.highlightColor
|
|
|
|
font.pixelSize: Theme.fontSizeLarge
|
2019-02-24 15:41:21 +00:00
|
|
|
visible: !settings.hideTokens
|
2014-01-10 18:57:42 +00:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 19:30:05 +00:00
|
|
|
// Show an update button on HOTP type tokens
|
2014-01-12 17:43:17 +00:00
|
|
|
IconButton {
|
|
|
|
icon.source: "image://theme/icon-m-refresh"
|
|
|
|
anchors.right: parent.right
|
|
|
|
visible: type == "HOTP" ? true : false
|
|
|
|
onClicked: {
|
2014-02-09 09:59:50 +00:00
|
|
|
appWin.listModel.setProperty(index, "counter", DB.getCounter(title, secret, true));
|
2016-07-17 17:35:53 +00:00
|
|
|
appWin.listModel.setProperty(index, "otp", OTP.calcOTP(secret, "HOTP", len, 0, counter));
|
2014-01-12 17:43:17 +00:00
|
|
|
if (fav == 1) appWin.coverOTP = otp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
Component {
|
|
|
|
id: otpContextMenu
|
|
|
|
ContextMenu {
|
2019-02-24 15:41:21 +00:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Copy to Clipboard")
|
|
|
|
visible: settings.hideTokens || settings.showQrDefaultAction
|
|
|
|
onClicked: {
|
|
|
|
Clipboard.text = otp
|
|
|
|
notify.show(qsTr("Token for ") + title + qsTr(" copied to clipboard"), 3000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Show Token as QR-Code")
|
|
|
|
visible: !settings.showQrDefaultAction
|
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("QRPage.qml"), {paramQrsource: otp, paramLabel: title, paramQRId: index});
|
|
|
|
}
|
2014-07-01 14:37:52 +00:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Move up")
|
|
|
|
visible: index > 0 ? true : false;
|
|
|
|
onClicked: moveEntry(1, index);
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Move down")
|
|
|
|
visible: index < appWin.listModel.count - 1 ? true : false;
|
|
|
|
onClicked: moveEntry(0, index);
|
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
MenuItem {
|
2014-02-09 09:59:50 +00:00
|
|
|
text: qsTr("Edit")
|
2014-01-08 18:28:06 +00:00
|
|
|
onClicked: {
|
2016-07-17 17:35:53 +00:00
|
|
|
pageStack.push(Qt.resolvedUrl("AddOTP.qml"), {parentPage: mainPage, paramLabel: title, paramKey: secret, paramType: type, paramLen: len, paramDiff: diff, paramCounter: DB.getCounter(title, secret, false)})
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
MenuItem {
|
2014-02-09 09:59:50 +00:00
|
|
|
text: qsTr("Delete")
|
2014-01-08 18:28:06 +00:00
|
|
|
onClicked: remove()
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
|
|
|
VerticalScrollDecorator{}
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
2014-02-02 13:43:22 +00:00
|
|
|
// Load list of OTP-Entries
|
2014-01-08 18:28:06 +00:00
|
|
|
refreshOTPList();
|
|
|
|
}
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|