com.commercetools.rmf.validators.DatetimeRule.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ctp-validators Show documentation
Show all versions of ctp-validators Show documentation
RAML API client code generators based on the REST Modeling Framework. https://github.com/vrapio/rest-modeling-framework
package com.commercetools.rmf.validators
import io.vrap.rmf.raml.model.types.*
import org.eclipse.emf.common.util.Diagnostic
import java.util.*
@ValidatorSet
class DatetimeRule(severity: RuleSeverity, options: List? = null) : TypesRule(severity, options) {
private val exclude: List =
(options?.filter { ruleOption -> ruleOption.type.lowercase(Locale.getDefault()) == RuleOptionType.EXCLUDE.toString() }?.map { ruleOption -> ruleOption.value }?.plus("") ?: defaultExcludes)
override fun caseObjectType(type: ObjectType): List {
val validationResults: MutableList = ArrayList()
type.properties.filter { property -> property.type.isDateTime() }.forEach { property ->
if (exclude.contains(property.name).not()) {
if (property.name.endsWith("At").not() && property.name.endsWith("From").not() && property.name.endsWith("To").not() && property.name.endsWith("Until").not()) {
validationResults.add(error(type, "Property \"{0}\" of type \"{1}\" must end with \"At\", \"From\", \"To\" or \"Until\"", property.name, type.name))
}
if (property.name.endsWith("From") && type.properties.none { p -> p.name.endsWith("To") || p.name.endsWith("Until") }) {
validationResults.add(error(type, "Property \"{0}\" of type \"{1}\" indicates a range, property ending with \"To\" or \"Until\" is missing", property.name, type.name))
}
if (property.name.endsWith("To") && type.properties.none { p -> p.name.endsWith("From") }) {
validationResults.add(error(type, "Property \"{0}\" of type \"{1}\" indicates a range, property ending with \"From\" is missing", property.name, type.name))
}
if (property.name.endsWith("Until") && type.properties.none { p -> p.name.endsWith("From") }) {
validationResults.add(error(type, "Property \"{0}\" of type \"{1}\" indicates a range, property ending with \"From\" is missing", property.name, type.name))
}
}
}
return validationResults
}
private fun AnyType.isDateTime(): Boolean {
return when(this) {
is DateTimeType -> true
is TimeOnlyType -> true
is DateOnlyType -> true
is DateTimeOnlyType -> true
else -> false
}
}
companion object : ValidatorFactory {
private val defaultExcludes by lazy { listOf("") }
@JvmStatic
override fun create(options: List?): DatetimeRule {
return DatetimeRule(RuleSeverity.ERROR, options)
}
@JvmStatic
override fun create(severity: RuleSeverity, options: List?): DatetimeRule {
return DatetimeRule(severity, options)
}
}
}