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:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
* materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. The names of the contributors may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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,
|
|
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.0
|
|
|
|
import Sailfish.Silica 1.0
|
2014-01-08 18:28:06 +00:00
|
|
|
import "../lib/storage.js" as DB // Import the storage library for Config-Access
|
2014-01-05 20:58:25 +00:00
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
// Define Layout of the Add OTP Dialog
|
2014-01-05 20:58:25 +00:00
|
|
|
Dialog {
|
2014-01-08 18:28:06 +00:00
|
|
|
id: addOTP
|
|
|
|
|
2015-12-06 18:37:41 +00:00
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
// We get the Object of the parent page on call to refresh it after adding a new Entry
|
|
|
|
property QtObject parentPage: null
|
|
|
|
|
|
|
|
// If we want to edit a Key we get title and key from the calling page
|
2014-01-12 17:43:17 +00:00
|
|
|
property string paramType: "TOTP"
|
2014-01-08 18:28:06 +00:00
|
|
|
property string paramLabel: ""
|
|
|
|
property string paramKey: ""
|
2014-01-12 17:43:17 +00:00
|
|
|
property int paramCounter: 1 // New Counters start at 1
|
2014-07-01 14:37:52 +00:00
|
|
|
property bool paramNew: false
|
|
|
|
|
|
|
|
function checkQR() {
|
|
|
|
if (paramLabel != "" && paramKey != "" && !paramNew) {
|
|
|
|
return(true);
|
|
|
|
} else {
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
|
|
|
|
SilicaFlickable {
|
|
|
|
id: addOtpList
|
|
|
|
anchors.fill: parent
|
|
|
|
|
2014-07-01 14:37:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
PullDownMenu {
|
|
|
|
visible: checkQR()
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Show QR-Code")
|
|
|
|
onClicked: {
|
2015-12-06 18:37:41 +00:00
|
|
|
if (((paramType == "TOTP" || paramType == "TOTP_STEAM") && (otpLabel.text == "" || otpSecret.text == "")) || (paramType == "HOTP" && (otpLabel.text == "" || otpSecret.text == "" || otpCounter.text <= 0))) {
|
2014-07-01 14:37:52 +00:00
|
|
|
notify.show(qsTr("Can't create QR-Code from incomplete settings!"), 4000);
|
|
|
|
} else {
|
|
|
|
pageStack.push(Qt.resolvedUrl("QRPage.qml"), {paramLabel: otpLabel.text, paramKey: otpSecret.text, paramType: paramType, paramCounter: otpCounter.text});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-08 18:28:06 +00:00
|
|
|
VerticalScrollDecorator {}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
anchors.fill: parent
|
|
|
|
DialogHeader {
|
2014-07-01 14:37:52 +00:00
|
|
|
acceptText: paramNew ? qsTr("Add") : qsTr("Save")
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-12 17:43:17 +00:00
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: typeSel
|
2014-02-09 09:59:50 +00:00
|
|
|
label: qsTr("Type")
|
2014-01-12 17:43:17 +00:00
|
|
|
menu: ContextMenu {
|
2014-02-09 09:59:50 +00:00
|
|
|
MenuItem { text: qsTr("Time-based (TOTP)"); onClicked: { paramType = "TOTP" } }
|
|
|
|
MenuItem { text: qsTr("Counter-based (HOTP)"); onClicked: { paramType = "HOTP" } }
|
2015-12-06 18:37:41 +00:00
|
|
|
MenuItem { text: qsTr("Steam Guard"); onClicked: { paramType = "TOTP_STEAM" } }
|
2014-01-12 17:43:17 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
TextField {
|
|
|
|
id: otpLabel
|
|
|
|
width: parent.width
|
2014-02-09 09:59:50 +00:00
|
|
|
label: qsTr("Title")
|
|
|
|
placeholderText: qsTr("Title for the OTP")
|
2014-01-08 18:28:06 +00:00
|
|
|
text: paramLabel != "" ? paramLabel : ""
|
|
|
|
focus: true
|
|
|
|
horizontalAlignment: TextInput.AlignLeft
|
2014-02-09 09:59:50 +00:00
|
|
|
|
|
|
|
EnterKey.enabled: text.length > 0
|
|
|
|
EnterKey.iconSource: "image://theme/icon-m-enter-next"
|
|
|
|
EnterKey.onClicked: otpSecret.focus = true
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
|
|
|
TextField {
|
|
|
|
id: otpSecret
|
|
|
|
width: parent.width
|
2014-02-09 09:59:50 +00:00
|
|
|
label: qsTr("Secret (at least 16 characters)")
|
2014-01-08 18:28:06 +00:00
|
|
|
text: paramKey != "" ? paramKey : ""
|
2014-02-09 09:59:50 +00:00
|
|
|
placeholderText: qsTr("Secret OTP Key")
|
2014-01-08 18:28:06 +00:00
|
|
|
focus: true
|
|
|
|
horizontalAlignment: TextInput.AlignLeft
|
2014-02-09 09:59:50 +00:00
|
|
|
|
|
|
|
EnterKey.enabled: text.length > 15
|
2015-12-06 18:37:41 +00:00
|
|
|
EnterKey.iconSource: paramType == "HOTP" ? "image://theme/icon-m-enter-next" : "image://theme/icon-m-enter-accept"
|
|
|
|
EnterKey.onClicked: paramType == "HOTP" ? otpCounter.focus = true : addOTP.accept()
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-01-12 17:43:17 +00:00
|
|
|
TextField {
|
|
|
|
id: otpCounter
|
|
|
|
width: parent.width
|
|
|
|
visible: paramType == "HOTP" ? true : false
|
2014-02-09 09:59:50 +00:00
|
|
|
label: qsTr("Next Counter Value")
|
2014-01-12 17:43:17 +00:00
|
|
|
text: paramCounter
|
2014-02-09 09:59:50 +00:00
|
|
|
placeholderText: qsTr("Next Value of the Counter")
|
2014-01-12 17:43:17 +00:00
|
|
|
focus: true
|
|
|
|
horizontalAlignment: TextInput.AlignLeft
|
|
|
|
validator: IntValidator { bottom: 0 }
|
2014-02-09 09:59:50 +00:00
|
|
|
|
|
|
|
EnterKey.iconSource: "image://theme/icon-m-enter-accept"
|
|
|
|
EnterKey.onClicked: addOTP.accept()
|
2014-01-12 17:43:17 +00:00
|
|
|
}
|
|
|
|
Component.onCompleted: { typeSel.currentIndex = paramType == "HOTP" ? 1 : 0 }
|
2014-01-05 20:58:25 +00:00
|
|
|
}
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we can Save
|
2015-12-06 18:37:41 +00:00
|
|
|
canAccept: otpLabel.text.length > 0 && otpSecret.text.length >= 16 && (paramType == "TOTP" || paramType == "TOTP_STEAM" || otpCounter.text.length > 0) ? true : false
|
2014-01-08 18:28:06 +00:00
|
|
|
|
|
|
|
// Save if page is Left with Add
|
|
|
|
onDone: {
|
|
|
|
if (result == DialogResult.Accepted) {
|
2014-07-01 14:37:52 +00:00
|
|
|
// Save the entry to the Config DB
|
|
|
|
if (paramLabel != "" && paramKey != "" && !paramNew) {
|
2014-01-08 18:28:06 +00:00
|
|
|
// Parameters where filled -> Change existing entry
|
2014-01-12 17:43:17 +00:00
|
|
|
DB.changeOTP(otpLabel.text, otpSecret.text, paramType, otpCounter.text, paramLabel, paramKey)
|
2014-01-08 18:28:06 +00:00
|
|
|
} else {
|
|
|
|
// There were no parameters -> Add new entry
|
2014-07-01 14:37:52 +00:00
|
|
|
DB.addOTP(otpLabel.text, otpSecret.text, paramType, otpCounter.text, appWin.listModel.count);
|
2014-01-08 18:28:06 +00:00
|
|
|
}
|
2014-07-13 10:06:10 +00:00
|
|
|
|
|
|
|
// Refresh the main Page
|
2014-01-08 18:28:06 +00:00
|
|
|
parentPage.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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|