Commit Graph

321 Commits (master)

Author SHA1 Message Date
Johan Ouwerkerk d00111edc9 chore: fix typo in debug logging statement 2021-05-03 04:03:24 +00:00
Johan Ouwerkerk 75a167665b refactor: switch to page navigation from C++
Rework QML to use the ViewModel classes and use the C++ flow classes to
drive QML page navigation.
2021-05-03 04:03:24 +00:00
Johan Ouwerkerk ea19844300 refactor: proxy commandline arguments
Add a 'proxy' to forward external API calls into the main application
control flow. Right now it only supports forwarding commandline
arguments, but this construct is already useful as a starting point for
future D-Bus API support.
2021-05-03 04:03:24 +00:00
Johan Ouwerkerk 7274dc4f25 refactor: introduce "view models"
This change prepares Keysmith for moving logic away from QML to C++

 - Added view model classes for each defined Navigation::Page instance
 - Added 'flows' to provide a C++ equivalent for control flow logic
   which currently still resides in QML

The purpose the view model classes is to provide data (properties) and
actions (methods to invoke) to the QML page UI. These are relatively
thin wrappers to expose the C++ state (Store) and logic (flows) as an
easy to use API for the QML UI.
2021-05-03 04:03:24 +00:00
Johan Ouwerkerk bdcdb85bb6 refactor: introduce store for application state
The 'Store' is a convenient wrapper for injecting a dependency on the
entire application state (root) so it can be re-used by independent
flows of C++ logic. It will be used both to provide data to the view
models for the QML UI, and as a way to record results of actions
dispatched from the UI.

With this change the following (additional) state is defined:

 - OverviewState, which will be used to track state that determines how
   the AccountsOverview QML UI should render and what features are
   enabled/disabled in it. This state may be manipulated as a a
   side-effect of various interactios with arbitrary pages.
 - FlowState, which will be used to track state about which control/
   logic flows have completed and whether or not something is currently
   running. This is will be used to avoid distracting the user from an
   active UX flow with random unrelated prompts.
2021-05-03 04:03:24 +00:00
Johan Ouwerkerk 131e59aa3a refactor: move property assignments to main.qml
Ensure that all logic for property assignment is concentrated in
main.qml in preparation for the introduction of view model classes.
2021-05-03 04:03:24 +00:00
Johan Ouwerkerk 12e060923e refactor: UI (page) navigation from C++ code
An app::Navigation class is introduced with an API very similar to the
Kirigami.PageRouter in QML. This new class is responsible for pusing
populated view model classes from C++ into QML ownership and triggering
appropriate navigation events. On the QML side a signal handler
forwards these calls to the Kirigami.PageRouter to perform the actual
navigation in the UI.

This construct paves the way for moving state transition and related
logic out of QML and towards C++, since this logic is currently mostly
concerned with page navigation in Keysmith. Ultimately that transition
should make the QML (page) views more easily re-usable.
2021-05-03 04:03:24 +00:00
Johan Ouwerkerk 571afeacdf refactor: port navigation to Kirigami.PageRouter
Replace existing manual manipulation of the application page stack with
a more declarative setup using Kirigami.PageRouter. This change does
not yet address the control flow: pages are not yet properly decoupled.
2021-05-03 04:03:24 +00:00
Carl Schwan 224d5d13d4 Add bucktracker url 2021-05-02 16:28:57 +00:00
l10n daemon script cd66dfe68b SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2021-04-23 01:20:22 +00:00
l10n daemon script 07d74b94a8 GIT_SILENT made messages (after extraction) 2021-04-23 00:21:55 +00:00
l10n daemon script 52bdf6ef8d SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2021-03-14 06:52:43 +01:00
l10n daemon script e15a458da6 GIT_SILENT made messages (after extraction) 2021-03-14 03:13:46 +01:00
Johan Ouwerkerk 94b724a259 fix: handle spaces in Android environment script
Previously the script would break if run from "/path to directory"
as opposed to "/path/to/directory". As it happens this was not an
issue on Binary Factory, but it is on build.kde.org because that one
does use directory names containing spaces.
2021-03-05 20:08:13 +01:00
Devin Lin e3564e3bd7 Add placeholder message when accounts list is empty 2021-03-05 18:23:15 +00:00
Devin Lin dcfa16025e Improve password form look 2021-02-28 18:38:02 +00:00
Johan Ouwerkerk 653e0b4b44 chore: code fixups suggested by static analysis 2021-02-06 18:13:08 +01:00
Johan Ouwerkerk 82ebbdf4f9 hack: bypass password challenge verification
Needed to support automatic migration of old Keysmith storage format.

This is unfortunate, but we have users and we cannot simply break
backwards compatibility with the old storage format (yet).
2021-02-02 18:41:45 +01:00
l10n daemon script 464e001caf SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2021-01-25 06:42:54 +01:00
l10n daemon script 55f731ead3 SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2021-01-23 06:47:43 +01:00
l10n daemon script f28eff3ac7 GIT_SILENT made messages (after extraction) 2021-01-23 02:53:44 +01:00
Bhushan Shah 12375e997a chore: disable the NewDeleteLeaks clang analyzer check
This seems to provide a false positives with the QTimer::singleShot,
this would fix the CI.
2021-01-21 12:29:21 +05:30
Johan Ouwerkerk ad4308793b fix: show an appropriate error when a provided password fails its challenge
With this change the user now gets appropriate error feedback when trying to unlock their accounts using an incorrect password.

Additionally password entry is temporarily suspended in the UI while key derivation (etc.) is in progress.
This should help convey the idea that "something is happening", or rather avoid the impression that "nothing happens" or "this is broken" when in fact key derivation may simply be slow depending on the machine.
2021-01-20 06:17:48 +00:00
Johan Ouwerkerk cbd069085e fix!: guard against incorrect password inputs using an encrypted challenge
Previously entering an incorrect password would appear to successfully "unlock" accounts, contrary to expectations.
By introducing a challenge object as part of the master key parameters, an incorrect password can now be detected and signalled accordingly.

This fix introduces a backwards incompatible change to the accounts data as stored on disk, meaning old Keysmith accounts configuration will no longer load and must be recreated from scratch.
2021-01-20 06:17:48 +00:00
l10n daemon script 4507c5e0be SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2021-01-11 06:51:54 +01:00
l10n daemon script be4fdbe170 GIT_SILENT made messages (after extraction) 2021-01-11 02:59:24 +01:00
l10n daemon script 873f184b09 SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2021-01-03 06:24:18 +01:00
l10n daemon script 3e82bb6fcb GIT_SILENT made messages (after extraction) 2021-01-03 02:44:05 +01:00
l10n daemon script e87b65173f GIT_SILENT made messages (after extraction) 2020-12-10 02:46:50 +01:00
l10n daemon script 2bd6247099 GIT_SILENT made messages (after extraction) 2020-12-09 02:51:21 +01:00
Johan Ouwerkerk eb39c18fe2 chore: further code cleanups suggested by clazy in the oath module
These cleanups block the invalid password detection/retry UX feature from landing.

See-Also: https://invent.kde.org/utilities/keysmith/-/merge_requests/71
2020-11-23 21:45:30 +01:00
Johan Ouwerkerk 0a74440fe4 fix: oath::Encoder base clase should not be used via pointers and not via value types.
This bug was caught by clazy, and prevents invalid password detection/error UX feature from landing.

See-Also: https://invent.kde.org/utilities/keysmith/-/merge_requests/71
2020-11-23 21:45:30 +01:00
Johan Ouwerkerk c31aa8df52 chore: perform some code cleanups suggested by clazy
These cleanups block the invalid password detection/retry UX feature from landing.

See-Also: https://invent.kde.org/utilities/keysmith/-/merge_requests/71
2020-11-23 21:45:30 +01:00
Johan Ouwerkerk 4ca180abf1 refactor: remove some duplicate mocking code, reuse existing fake random utility instead 2020-11-22 16:17:21 +01:00
Johan Ouwerkerk 369593f33d chore: clean up use of string.h includes. 2020-11-22 16:12:08 +01:00
Johan Ouwerkerk f25ae7ffda chore: update SPDX copyright to include Carl Schwan 2020-11-11 20:28:47 +01:00
Carl Schwan 57f13956b4 padding inline message 2020-11-11 20:15:53 +01:00
Carl Schwan d440689e99 fix: make Kirigami relayout the unlock accounts page with proper word wrapping for the banner text
This is a hack/work-around for a deficiency in Kirigami pending a proper fix upstream.

See-Also: https://invent.kde.org/frameworks/kirigami/-/merge_requests/159
2020-11-11 20:15:53 +01:00
Carl Schwan cda7ace071 Fix layout of UnlockAccounts page on mobile 2020-11-11 20:15:53 +01:00
Carl Schwan 5c5a7e1ca0 fix: make Kirigami relayout the password setup page with proper word wrapping for the banner text
This is a hack/work-around for a deficiency in Kirigami pending a proper fix upstream.

See-Also: https://invent.kde.org/frameworks/kirigami/-/merge_requests/159
2020-11-11 20:15:47 +01:00
Carl Schwan abd2319a34 Better keyboard navigation 2020-11-11 20:09:11 +01:00
Carl Schwan 74ca38d318 Refresh setup password screen 2020-11-11 20:09:11 +01:00
Carl Schwan 33e1be37eb Fix incorrect spacing between forms 2020-11-10 10:19:17 +01:00
Carl Schwan 9865863dbd Fix mobile UI for addAccount page 2020-11-10 10:17:43 +01:00
Johan Ouwerkerk 37820cc27c feat!: bump minimum Qt version to Qt 5.15
Also add invent (Gitlab) CI job for Android.

Issues: #4
2020-11-09 21:36:31 +01:00
Johan Ouwerkerk 8d1a88b8df fix: make sure to display password setup page again when appropriate
The feature to accept accounts from the command line via otpauth:// URI inadvertently broke the initial password setup flow.
With this change password setup and unlocking should now work correctly again in all cases/flows.

Issues: #14
2020-11-09 19:20:08 +01:00
Johan Ouwerkerk 5c6c9020d8 chore: add Nicolás to .gitlab-ci.yml copyright 2020-11-08 08:52:09 +01:00
Nicolás Alvarez befe8a2bb0 ci: Add build dir as an artifact to keep static analysis working
Currently GitLab CI uploads the whole build directory as an artifact,
configured in the shared ci-before.yml in ci-tooling. This is necessary
for the static analysis job to work. However, it's very wasteful for the
majority of repositories that don't use the static analysis job, so we'll
soon remove that from the shared config.

This commit explicitly adds the build dir to the list of artifacts to
ensure that the static analysis job continues to work in Keysmith after
the shared CI config is changed.
2020-11-06 21:34:24 -03:00
Johan Ouwerkerk 642f87896e refactor: let CMake manage the Android version string based on project version 2020-11-04 16:54:29 +01:00
Johan Ouwerkerk d7c8eb4be4 feat: support Qt application version attribute
Automatically pick up on the CMake project version and forward it to the applicationVersion attribute of Qt.
2020-11-04 16:54:29 +01:00