mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-04 19:45:59 +01:00
Certification toString improvements
- Detect delegations based on depth - Add scope regexes for delegations
This commit is contained in:
parent
d413506c89
commit
7032fe4a97
1 changed files with 6 additions and 4 deletions
|
@ -49,9 +49,11 @@ data class Certification(
|
||||||
this(issuer, target, targetUserId, creationTime, null, true, 120, Depth.limited(0), RegexSet.wildcard())
|
this(issuer, target, targetUserId, creationTime, null, true, 120, Depth.limited(0), RegexSet.wildcard())
|
||||||
|
|
||||||
override fun toString(): String {
|
override fun toString(): String {
|
||||||
return if (userId != null)
|
return if (trustDepth.limit == 0)
|
||||||
"$issuer certifies [$userId] ${target.fingerprint}"
|
"${issuer.fingerprint} certifies binding: $userId <-> ${target.fingerprint} [$trustAmount]"
|
||||||
else
|
else {
|
||||||
"$issuer delegates to ${target.fingerprint}"
|
val scope = if (regexes.regexStrings.isEmpty()) "" else ", scope: $regexes"
|
||||||
|
"${issuer.fingerprint} delegates to ${target.fingerprint} [$trustAmount, depth $trustDepth$scope]"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue