diff options
author | Alex Burka <durka42+github@gmail.com> | 2019-09-14 03:48:18 -0400 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-09-14 13:18:18 +0530 |
commit | 367e55de3cfb0821898c41413ecdb6d284763081 (patch) | |
tree | 24505bb2ebc58e20c279f1da200531953b7c1ca5 /app/src/main/java/com | |
parent | 7062156b1a0f108a146c043ebd483261b79677ec (diff) |
add save-and-copy button (#537)
Diffstat (limited to 'app/src/main/java/com')
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt b/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt index 7364cf35..70e10561 100644 --- a/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt +++ b/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt @@ -168,6 +168,7 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound { R.id.share_password_as_plaintext -> shareAsPlaintext() R.id.edit_password -> editPassword() R.id.crypto_confirm_add -> encrypt() + R.id.crypto_confirm_add_and_copy -> encrypt(true) R.id.crypto_cancel_add -> { if (passwordEntry?.hotpIsIncremented() == false) { setResult(RESULT_CANCELED) @@ -408,7 +409,7 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound { /** * Encrypts the password and the extra content */ - private fun encrypt() { + private fun encrypt(copy: Boolean = false) { // if HOTP was incremented, we leave fields as is; they have already been set if (intent.getStringExtra("OPERATION") != "INCREMENT") { editName = crypto_password_file_edit.text.toString().trim() @@ -426,6 +427,10 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound { return } + if (copy) { + copyPasswordToClipBoard() + } + val data = Intent() data.action = OpenPgpApi.ACTION_ENCRYPT @@ -635,10 +640,17 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound { } private fun copyPasswordToClipBoard() { - if (findViewById<TextView>(R.id.crypto_password_show) == null) - return + var pass = passwordEntry?.password + + if (findViewById<TextView>(R.id.crypto_password_show) == null) { + if (editPass == null) { + return + } else { + pass = editPass + } + } - val clip = ClipData.newPlainText("pgp_handler_result_pm", passwordEntry?.password) + val clip = ClipData.newPlainText("pgp_handler_result_pm", pass) clipboard.setPrimaryClip(clip) var clearAfter = 45 @@ -738,12 +750,12 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound { } val container = findViewById<LinearLayout>(R.id.crypto_container_decrypt) - container.visibility = View.VISIBLE + container?.visibility = View.VISIBLE val extraText = findViewById<TextView>(R.id.crypto_extra_show) - if (extraText.text.isNotEmpty()) - findViewById<View>(R.id.crypto_extra_show_layout).visibility = View.VISIBLE + if (extraText?.text?.isNotEmpty() ?: false) + findViewById<View>(R.id.crypto_extra_show_layout)?.visibility = View.VISIBLE if (showTime == 0) { // treat 0 as forever, and the user must exit and/or clear clipboard on their own |