summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Poldrack <git@moritz.sh>2022-06-22 12:19:41 +0200
committerRobin Jarry <robin@jarry.cc>2022-06-24 21:44:06 +0200
commit7bdfa928cbab7dbd82c51af43f8ec2b8e090e82a (patch)
tree545cdec602a1445d5b27a80864f1fe4e0207309e
parentb7d8918bbd75502e7144a146dd3400a17a441c36 (diff)
downloadaerc-7bdfa928cbab7dbd82c51af43f8ec2b8e090e82a.zip
pgp: refactor signature validity display
This commit changes the signature validity display to not use valid as the default. Now invalid is the default which can cause fewer issues if an attack vector emerges. Signed-off-by: Moritz Poldrack <git@moritz.sh> Tested-by: Tim Culverhouse <tim@timculverhouse.com>
-rw-r--r--widgets/pgpinfo.go43
1 files changed, 25 insertions, 18 deletions
diff --git a/widgets/pgpinfo.go b/widgets/pgpinfo.go
index 2b21c22..078991c 100644
--- a/widgets/pgpinfo.go
+++ b/widgets/pgpinfo.go
@@ -1,12 +1,14 @@
package widgets
import (
+ "fmt"
"strings"
"unicode/utf8"
"git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~rjarry/aerc/models"
+ "github.com/gdamore/tcell/v2"
)
type PGPInfo struct {
@@ -25,29 +27,34 @@ func (p *PGPInfo) DrawSignature(ctx *ui.Context) {
validStyle := p.uiConfig.GetStyle(config.STYLE_SUCCESS)
defaultStyle := p.uiConfig.GetStyle(config.STYLE_DEFAULT)
+ var icon string
+ var indicatorStyle, textstyle tcell.Style
+ textstyle = defaultStyle
+ var indicatorText, messageText string
// TODO: Nicer prompt for TOFU, fetch from keyserver, etc
- if p.details.SignatureValidity == models.UnknownEntity ||
- p.details.SignedBy == "" {
-
- x := ctx.Printf(0, 0, warningStyle, "%s unknown", p.uiConfig.IconUnknown)
- x += ctx.Printf(x, 0, defaultStyle,
- " Signed with unknown key (%8X); authenticity unknown",
- p.details.SignedByKeyId)
- } else if p.details.SignatureValidity != models.Valid {
- x := ctx.Printf(0, 0, errorStyle, "%s Invalid signature!", p.uiConfig.IconInvalid)
- x += ctx.Printf(x, 0, errorStyle,
- " This message may have been tampered with! (%s)",
- p.details.SignatureError)
- } else {
- icon := p.uiConfig.IconSigned
+ switch p.details.SignatureValidity {
+ case models.UnknownEntity:
+ icon = p.uiConfig.IconUnknown
+ indicatorStyle = warningStyle
+ indicatorText = "Unknown"
+ messageText = fmt.Sprintf("Signed with unknown key (%8X); authenticity unknown", p.details.SignedByKeyId)
+ case models.Valid:
+ icon = p.uiConfig.IconSigned
if p.details.IsEncrypted && p.uiConfig.IconSignedEncrypted != "" {
icon = p.uiConfig.IconSignedEncrypted
}
- x := ctx.Printf(0, 0, validStyle, "%s Authentic ", icon)
- x += ctx.Printf(x, 0, defaultStyle,
- "Signature from %s (%8X)",
- p.details.SignedBy, p.details.SignedByKeyId)
+ indicatorStyle = validStyle
+ indicatorText = "Authentic"
+ messageText = fmt.Sprintf("Signature from %s (%8X)", p.details.SignedBy, p.details.SignedByKeyId)
+ default:
+ icon = p.uiConfig.IconInvalid
+ indicatorStyle = errorStyle
+ indicatorText = "Invalid signature!"
+ messageText = fmt.Sprintf("This message may have been tampered with! (%s)", p.details.SignatureError)
}
+
+ x := ctx.Printf(0, 0, indicatorStyle, "%s %s ", icon, indicatorText)
+ ctx.Printf(x, 0, textstyle, messageText)
}
func (p *PGPInfo) DrawEncryption(ctx *ui.Context, y int) {