fix: All past dates and times are crossed out #1710

This commit is contained in:
J-Jamet 2024-11-13 20:54:31 +01:00
parent 8e05309021
commit 55206b3dde
8 changed files with 44 additions and 8 deletions

View file

@ -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,

View file

@ -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 }
}

View file

@ -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]!!