mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 05:17:36 +03:00
fix: All past dates and times are crossed out #1710
This commit is contained in:
parent
8e05309021
commit
55206b3dde
8 changed files with 44 additions and 8 deletions
|
@ -154,7 +154,10 @@ class Template : Parcelable {
|
|||
val EXPIRATION_ATTRIBUTE = TemplateAttribute(
|
||||
TemplateField.LABEL_EXPIRATION,
|
||||
TemplateAttributeType.DATETIME,
|
||||
false)
|
||||
false,
|
||||
TemplateAttributeOption().apply {
|
||||
setExpirable(true)
|
||||
})
|
||||
val NOTES_ATTRIBUTE = TemplateAttribute(
|
||||
TemplateField.LABEL_NOTES,
|
||||
TemplateAttributeType.TEXT,
|
||||
|
|
|
@ -152,6 +152,18 @@ class TemplateAttributeOption() : Parcelable {
|
|||
mOptions[DATETIME_FORMAT_ATTR] = DATETIME_FORMAT_VALUE_TIME
|
||||
}
|
||||
|
||||
fun getExpirable(): Boolean {
|
||||
return try {
|
||||
mOptions[DATETIME_EXPIRABLE_ATTR]?.toBoolean() ?: DATETIME_EXPIRABLE_VALUE_DEFAULT
|
||||
} catch (e: Exception) {
|
||||
DATETIME_EXPIRABLE_VALUE_DEFAULT
|
||||
}
|
||||
}
|
||||
|
||||
fun setExpirable(value: Boolean) {
|
||||
mOptions[DATETIME_EXPIRABLE_ATTR] = value.toString().lowercase()
|
||||
}
|
||||
|
||||
fun get(label: String): String? {
|
||||
return mOptions[label]
|
||||
}
|
||||
|
@ -246,6 +258,15 @@ class TemplateAttributeOption() : Parcelable {
|
|||
private const val DATETIME_FORMAT_VALUE_DATE = "date"
|
||||
private const val DATETIME_FORMAT_VALUE_TIME = "time"
|
||||
|
||||
/**
|
||||
* Applicable to type DATETIME
|
||||
* Define if a datetime is expirable
|
||||
* Boolean ("true" or "false")
|
||||
* "false" if not defined
|
||||
*/
|
||||
private const val DATETIME_EXPIRABLE_ATTR = "expirable"
|
||||
private const val DATETIME_EXPIRABLE_VALUE_DEFAULT = false
|
||||
|
||||
private fun removeSpecialChars(string: String): String {
|
||||
return string.filterNot { "{,:}".indexOf(it) > -1 }
|
||||
}
|
||||
|
|
|
@ -216,6 +216,11 @@ class TemplateEngineCompatible(database: DatabaseKDBX): TemplateEngine(database)
|
|||
attribute.options.associatePasswordGenerator()
|
||||
}
|
||||
|
||||
// Add expiration
|
||||
if (attribute.label.equals(TEMPLATE_ATTRIBUTE_EXPIRES, true)) {
|
||||
attribute.options.setExpirable(true)
|
||||
}
|
||||
|
||||
// Add default value
|
||||
if (defaultValues.containsKey(attribute.label)) {
|
||||
attribute.options.default = defaultValues[attribute.label]!!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue