2019-07-21 22:01:51 +02:00
|
|
|
package format
|
2019-06-07 21:35:23 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2020-11-10 19:57:09 +01:00
|
|
|
"fmt"
|
|
|
|
"regexp"
|
2019-06-07 21:35:23 +02:00
|
|
|
"strings"
|
2020-07-27 01:48:22 +02:00
|
|
|
"time"
|
2019-06-07 21:35:23 +02:00
|
|
|
"unicode"
|
|
|
|
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/models"
|
2020-11-10 19:57:09 +01:00
|
|
|
"github.com/emersion/go-message/mail"
|
2022-07-27 14:08:03 +02:00
|
|
|
"github.com/mattn/go-runewidth"
|
2019-06-07 21:35:23 +02:00
|
|
|
)
|
|
|
|
|
2020-11-10 19:57:09 +01:00
|
|
|
// AddressForHumans formats the address. If the address's name
|
|
|
|
// contains non-ASCII characters it will be quoted but not encoded.
|
|
|
|
// Meant for display purposes to the humans, not for sending over the wire.
|
|
|
|
func AddressForHumans(a *mail.Address) string {
|
|
|
|
if a.Name != "" {
|
|
|
|
if atom.MatchString(a.Name) {
|
|
|
|
return fmt.Sprintf("%s <%s>", a.Name, a.Address)
|
|
|
|
} else {
|
|
|
|
return fmt.Sprintf("\"%s\" <%s>",
|
|
|
|
strings.ReplaceAll(a.Name, "\"", "'"), a.Address)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return fmt.Sprintf("<%s>", a.Address)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var atom *regexp.Regexp = regexp.MustCompile("^[a-z0-9!#$%7'*+-/=?^_`{}|~ ]+$")
|
|
|
|
|
2020-11-10 20:27:30 +01:00
|
|
|
// FormatAddresses formats a list of addresses into a human readable string
|
2020-11-10 19:57:09 +01:00
|
|
|
func FormatAddresses(l []*mail.Address) string {
|
2020-08-19 12:01:45 +02:00
|
|
|
formatted := make([]string, len(l))
|
|
|
|
for i, a := range l {
|
2020-11-10 19:57:09 +01:00
|
|
|
formatted[i] = AddressForHumans(a)
|
2020-08-19 12:01:45 +02:00
|
|
|
}
|
|
|
|
return strings.Join(formatted, ", ")
|
2019-11-12 12:50:00 +01:00
|
|
|
}
|
|
|
|
|
2022-04-28 22:09:53 +02:00
|
|
|
// CompactPath reduces a directory path into a compact form. The directory
|
|
|
|
// name will be split with the provided separator and each part will be reduced
|
|
|
|
// to the first letter in its name: INBOX/01_WORK/PROJECT will become
|
|
|
|
// I/W/PROJECT.
|
|
|
|
func CompactPath(name string, sep rune) (compact string) {
|
|
|
|
parts := strings.Split(name, string(sep))
|
|
|
|
for i, part := range parts {
|
|
|
|
if i == len(parts)-1 {
|
|
|
|
compact += part
|
|
|
|
} else {
|
|
|
|
if len(part) != 0 {
|
|
|
|
r := part[0]
|
|
|
|
for i := 0; i < len(part)-1; i++ {
|
|
|
|
if unicode.IsLetter(rune(part[i])) {
|
|
|
|
r = part[i]
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compact += fmt.Sprintf("%c%c", r, sep)
|
|
|
|
} else {
|
|
|
|
compact += fmt.Sprintf("%c", sep)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-14 08:42:26 +02:00
|
|
|
type Ctx struct {
|
|
|
|
FromAddress string
|
|
|
|
AccountName string
|
|
|
|
MsgNum int
|
|
|
|
MsgInfo *models.MessageInfo
|
|
|
|
MsgIsMarked bool
|
2021-11-12 18:12:02 +01:00
|
|
|
|
|
|
|
// UI controls for threading
|
|
|
|
ThreadPrefix string
|
|
|
|
ThreadSameSubject bool
|
2020-10-14 08:42:26 +02:00
|
|
|
}
|
|
|
|
|
2021-10-26 17:24:45 +02:00
|
|
|
func ParseMessageFormat(format string, timeFmt string, thisDayTimeFmt string,
|
2021-11-06 17:32:38 +01:00
|
|
|
thisWeekTimeFmt string, thisYearTimeFmt string, ctx Ctx) (
|
2022-07-31 22:16:40 +02:00
|
|
|
string, []interface{}, error,
|
|
|
|
) {
|
2022-09-16 21:41:07 +02:00
|
|
|
if ctx.MsgInfo.Error != nil {
|
|
|
|
return "", nil,
|
|
|
|
errors.New("(unable to fetch header)")
|
|
|
|
}
|
2019-06-07 21:35:23 +02:00
|
|
|
retval := make([]byte, 0, len(format))
|
|
|
|
var args []interface{}
|
|
|
|
|
2020-11-10 20:35:47 +01:00
|
|
|
accountFromAddress, err := mail.ParseAddress(ctx.FromAddress)
|
2020-08-19 12:01:45 +02:00
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
2019-11-12 12:50:00 +01:00
|
|
|
|
2020-10-14 08:42:26 +02:00
|
|
|
envelope := ctx.MsgInfo.Envelope
|
2021-10-28 14:59:54 +02:00
|
|
|
if envelope == nil {
|
|
|
|
return "", nil,
|
|
|
|
errors.New("no envelope available for this message")
|
|
|
|
}
|
2020-10-14 08:42:26 +02:00
|
|
|
|
2019-06-07 21:35:23 +02:00
|
|
|
var c rune
|
|
|
|
for i, ni := 0, 0; i < len(format); {
|
|
|
|
ni = strings.IndexByte(format[i:], '%')
|
|
|
|
if ni < 0 {
|
|
|
|
ni = len(format)
|
|
|
|
retval = append(retval, []byte(format[i:ni])...)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
ni += i + 1
|
|
|
|
// Check for fmt flags
|
|
|
|
if ni == len(format) {
|
|
|
|
goto handle_end_error
|
|
|
|
}
|
|
|
|
c = rune(format[ni])
|
|
|
|
if c == '+' || c == '-' || c == '#' || c == ' ' || c == '0' {
|
|
|
|
ni++
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for precision and width
|
|
|
|
if ni == len(format) {
|
|
|
|
goto handle_end_error
|
|
|
|
}
|
|
|
|
c = rune(format[ni])
|
|
|
|
for unicode.IsDigit(c) {
|
|
|
|
ni++
|
|
|
|
c = rune(format[ni])
|
|
|
|
}
|
|
|
|
if c == '.' {
|
|
|
|
ni++
|
|
|
|
c = rune(format[ni])
|
|
|
|
for unicode.IsDigit(c) {
|
|
|
|
ni++
|
|
|
|
c = rune(format[ni])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = append(retval, []byte(format[i:ni])...)
|
|
|
|
// Get final format verb
|
|
|
|
if ni == len(format) {
|
|
|
|
goto handle_end_error
|
|
|
|
}
|
|
|
|
c = rune(format[ni])
|
|
|
|
switch c {
|
|
|
|
case '%':
|
|
|
|
retval = append(retval, '%')
|
|
|
|
case 'a':
|
2020-10-14 08:42:26 +02:00
|
|
|
if len(envelope.From) == 0 {
|
2019-07-21 22:01:51 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("found no address for sender")
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
2020-10-14 08:42:26 +02:00
|
|
|
addr := envelope.From[0]
|
2019-06-07 21:35:23 +02:00
|
|
|
retval = append(retval, 's')
|
2020-08-19 12:01:45 +02:00
|
|
|
args = append(args, addr.Address)
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'A':
|
2020-11-10 19:57:09 +01:00
|
|
|
var addr *mail.Address
|
2020-10-14 08:42:26 +02:00
|
|
|
if len(envelope.ReplyTo) == 0 {
|
|
|
|
if len(envelope.From) == 0 {
|
2019-06-07 21:35:23 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("found no address for sender or reply-to")
|
|
|
|
} else {
|
2020-10-14 08:42:26 +02:00
|
|
|
addr = envelope.From[0]
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
|
|
|
} else {
|
2020-10-14 08:42:26 +02:00
|
|
|
addr = envelope.ReplyTo[0]
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
|
|
|
retval = append(retval, 's')
|
2020-08-19 12:01:45 +02:00
|
|
|
args = append(args, addr.Address)
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'C':
|
|
|
|
retval = append(retval, 'd')
|
2020-10-14 08:42:26 +02:00
|
|
|
args = append(args, ctx.MsgNum)
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'd':
|
2020-10-14 08:42:26 +02:00
|
|
|
date := envelope.Date
|
2020-07-27 01:48:22 +02:00
|
|
|
if date.IsZero() {
|
2020-10-14 08:42:26 +02:00
|
|
|
date = ctx.MsgInfo.InternalDate
|
2020-07-27 01:48:22 +02:00
|
|
|
}
|
2019-06-07 21:35:23 +02:00
|
|
|
retval = append(retval, 's')
|
2019-07-21 22:01:51 +02:00
|
|
|
args = append(args,
|
2021-10-26 17:24:45 +02:00
|
|
|
dummyIfZeroDate(date.Local(),
|
2021-11-06 17:32:38 +01:00
|
|
|
timeFmt, thisDayTimeFmt,
|
|
|
|
thisWeekTimeFmt, thisYearTimeFmt))
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'D':
|
2020-10-14 08:42:26 +02:00
|
|
|
date := envelope.Date
|
2020-07-27 01:48:22 +02:00
|
|
|
if date.IsZero() {
|
2020-10-14 08:42:26 +02:00
|
|
|
date = ctx.MsgInfo.InternalDate
|
2020-07-27 01:48:22 +02:00
|
|
|
}
|
2019-06-07 21:35:23 +02:00
|
|
|
retval = append(retval, 's')
|
2019-07-21 22:01:51 +02:00
|
|
|
args = append(args,
|
2021-10-26 17:24:45 +02:00
|
|
|
dummyIfZeroDate(date.Local(),
|
2021-11-06 17:32:38 +01:00
|
|
|
timeFmt, thisDayTimeFmt,
|
|
|
|
thisWeekTimeFmt, thisYearTimeFmt))
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'f':
|
2020-10-14 08:42:26 +02:00
|
|
|
if len(envelope.From) == 0 {
|
2019-07-21 22:01:51 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("found no address for sender")
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
2020-11-10 19:57:09 +01:00
|
|
|
addr := AddressForHumans(envelope.From[0])
|
2019-06-07 21:35:23 +02:00
|
|
|
retval = append(retval, 's')
|
|
|
|
args = append(args, addr)
|
|
|
|
case 'F':
|
2020-10-14 08:42:26 +02:00
|
|
|
if len(envelope.From) == 0 {
|
2019-07-21 22:01:51 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("found no address for sender")
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
2020-10-14 08:42:26 +02:00
|
|
|
addr := envelope.From[0]
|
2019-06-07 21:35:23 +02:00
|
|
|
var val string
|
2019-11-12 12:50:00 +01:00
|
|
|
|
2020-10-14 08:42:26 +02:00
|
|
|
if addr.Name == accountFromAddress.Name && len(envelope.To) != 0 {
|
|
|
|
addr = envelope.To[0]
|
2019-11-12 12:50:00 +01:00
|
|
|
}
|
|
|
|
|
2019-07-08 04:43:58 +02:00
|
|
|
if addr.Name != "" {
|
|
|
|
val = addr.Name
|
2019-06-07 21:35:23 +02:00
|
|
|
} else {
|
2020-08-19 12:01:45 +02:00
|
|
|
val = addr.Address
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
|
|
|
retval = append(retval, 's')
|
|
|
|
args = append(args, val)
|
|
|
|
|
2019-12-23 12:51:58 +01:00
|
|
|
case 'g':
|
|
|
|
retval = append(retval, 's')
|
2020-10-14 08:42:26 +02:00
|
|
|
args = append(args, strings.Join(ctx.MsgInfo.Labels, ", "))
|
2019-12-23 12:51:58 +01:00
|
|
|
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'i':
|
|
|
|
retval = append(retval, 's')
|
2020-10-14 08:42:26 +02:00
|
|
|
args = append(args, envelope.MessageId)
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'n':
|
2020-10-14 08:42:26 +02:00
|
|
|
if len(envelope.From) == 0 {
|
2019-07-21 22:01:51 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("found no address for sender")
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
2020-10-14 08:42:26 +02:00
|
|
|
addr := envelope.From[0]
|
2019-06-07 21:35:23 +02:00
|
|
|
var val string
|
2019-07-08 04:43:58 +02:00
|
|
|
if addr.Name != "" {
|
|
|
|
val = addr.Name
|
2019-06-07 21:35:23 +02:00
|
|
|
} else {
|
2020-08-19 12:01:45 +02:00
|
|
|
val = addr.Address
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
|
|
|
retval = append(retval, 's')
|
|
|
|
args = append(args, val)
|
|
|
|
case 'r':
|
2020-10-14 08:42:26 +02:00
|
|
|
addrs := FormatAddresses(envelope.To)
|
2019-06-07 21:35:23 +02:00
|
|
|
retval = append(retval, 's')
|
|
|
|
args = append(args, addrs)
|
|
|
|
case 'R':
|
2020-10-14 08:42:26 +02:00
|
|
|
addrs := FormatAddresses(envelope.Cc)
|
2019-06-07 21:35:23 +02:00
|
|
|
retval = append(retval, 's')
|
|
|
|
args = append(args, addrs)
|
|
|
|
case 's':
|
|
|
|
retval = append(retval, 's')
|
2021-11-12 18:12:02 +01:00
|
|
|
// if we are threaded strip the repeated subjects unless it's the
|
|
|
|
// first on the screen
|
|
|
|
subject := envelope.Subject
|
|
|
|
if ctx.ThreadSameSubject {
|
|
|
|
subject = ""
|
|
|
|
}
|
|
|
|
args = append(args, ctx.ThreadPrefix+subject)
|
2019-07-21 22:01:51 +02:00
|
|
|
case 't':
|
2020-10-14 08:42:26 +02:00
|
|
|
if len(envelope.To) == 0 {
|
2019-07-21 22:01:51 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("found no address for recipient")
|
|
|
|
}
|
2020-10-14 08:42:26 +02:00
|
|
|
addr := envelope.To[0]
|
2019-07-21 22:01:51 +02:00
|
|
|
retval = append(retval, 's')
|
2020-08-19 12:01:45 +02:00
|
|
|
args = append(args, addr.Address)
|
2019-07-21 22:01:51 +02:00
|
|
|
case 'T':
|
|
|
|
retval = append(retval, 's')
|
2020-10-14 08:42:26 +02:00
|
|
|
args = append(args, ctx.AccountName)
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'u':
|
2020-10-14 08:42:26 +02:00
|
|
|
if len(envelope.From) == 0 {
|
2019-07-21 22:01:51 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("found no address for sender")
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
2020-10-14 08:42:26 +02:00
|
|
|
addr := envelope.From[0]
|
2020-08-19 12:01:45 +02:00
|
|
|
mailbox := addr.Address // fallback if there's no @ sign
|
|
|
|
if split := strings.SplitN(addr.Address, "@", 2); len(split) == 2 {
|
|
|
|
mailbox = split[1]
|
|
|
|
}
|
2019-06-07 21:35:23 +02:00
|
|
|
retval = append(retval, 's')
|
2020-08-19 12:01:45 +02:00
|
|
|
args = append(args, mailbox)
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'v':
|
2020-10-14 08:42:26 +02:00
|
|
|
if len(envelope.From) == 0 {
|
2019-07-21 22:01:51 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("found no address for sender")
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
2020-10-14 08:42:26 +02:00
|
|
|
addr := envelope.From[0]
|
2019-06-07 21:35:23 +02:00
|
|
|
// check if message is from current user
|
2019-07-08 04:43:58 +02:00
|
|
|
if addr.Name != "" {
|
2019-06-07 21:35:23 +02:00
|
|
|
retval = append(retval, 's')
|
2019-07-21 22:01:51 +02:00
|
|
|
args = append(args,
|
|
|
|
strings.Split(addr.Name, " ")[0])
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
|
|
|
case 'Z':
|
|
|
|
// calculate all flags
|
2022-07-31 22:16:40 +02:00
|
|
|
readReplyFlag := ""
|
|
|
|
delFlag := ""
|
|
|
|
flaggedFlag := ""
|
|
|
|
markedFlag := ""
|
2019-07-12 17:14:26 +02:00
|
|
|
seen := false
|
|
|
|
recent := false
|
|
|
|
answered := false
|
2020-10-14 08:42:26 +02:00
|
|
|
for _, flag := range ctx.MsgInfo.Flags {
|
2022-07-31 14:32:48 +02:00
|
|
|
switch flag {
|
|
|
|
case models.SeenFlag:
|
2019-07-12 17:14:26 +02:00
|
|
|
seen = true
|
2022-07-31 14:32:48 +02:00
|
|
|
case models.RecentFlag:
|
2019-07-12 17:14:26 +02:00
|
|
|
recent = true
|
2022-07-31 14:32:48 +02:00
|
|
|
case models.AnsweredFlag:
|
2019-07-12 17:14:26 +02:00
|
|
|
answered = true
|
2019-06-14 23:11:17 +02:00
|
|
|
}
|
2019-07-08 04:43:58 +02:00
|
|
|
if flag == models.DeletedFlag {
|
2019-06-07 21:35:23 +02:00
|
|
|
delFlag = "D"
|
|
|
|
// TODO: check if attachments
|
2019-06-14 23:11:17 +02:00
|
|
|
}
|
2019-07-08 04:43:58 +02:00
|
|
|
if flag == models.FlaggedFlag {
|
2019-06-07 21:35:23 +02:00
|
|
|
flaggedFlag = "!"
|
|
|
|
}
|
|
|
|
// TODO: check gpg stuff
|
|
|
|
}
|
2019-07-12 17:14:26 +02:00
|
|
|
if seen {
|
|
|
|
if answered {
|
|
|
|
readReplyFlag = "r" // message has been replied to
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if recent {
|
|
|
|
readReplyFlag = "N" // message is new
|
|
|
|
} else {
|
|
|
|
readReplyFlag = "O" // message is old
|
|
|
|
}
|
|
|
|
}
|
2020-10-14 08:42:26 +02:00
|
|
|
if ctx.MsgIsMarked {
|
2019-12-18 06:34:07 +01:00
|
|
|
markedFlag = "*"
|
|
|
|
}
|
2019-12-22 13:08:23 +01:00
|
|
|
retval = append(retval, '4', 's')
|
2019-12-18 06:34:07 +01:00
|
|
|
args = append(args, readReplyFlag+delFlag+flaggedFlag+markedFlag)
|
2019-06-07 21:35:23 +02:00
|
|
|
|
|
|
|
// Move the below cases to proper alphabetical positions once
|
|
|
|
// implemented
|
|
|
|
case 'l':
|
|
|
|
// TODO: number of lines in the message
|
|
|
|
retval = append(retval, 'd')
|
2020-10-14 08:42:26 +02:00
|
|
|
args = append(args, ctx.MsgInfo.Size)
|
2019-06-07 21:35:23 +02:00
|
|
|
case 'e':
|
|
|
|
// TODO: current message number in thread
|
|
|
|
fallthrough
|
|
|
|
case 'E':
|
|
|
|
// TODO: number of messages in current thread
|
|
|
|
fallthrough
|
|
|
|
case 'H':
|
|
|
|
// TODO: spam attribute(s) of this message
|
|
|
|
fallthrough
|
|
|
|
case 'L':
|
|
|
|
// TODO:
|
|
|
|
fallthrough
|
|
|
|
case 'X':
|
|
|
|
// TODO: number of attachments
|
|
|
|
fallthrough
|
|
|
|
case 'y':
|
|
|
|
// TODO: X-Label field
|
|
|
|
fallthrough
|
|
|
|
case 'Y':
|
|
|
|
// TODO: X-Label field and some other constraints
|
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
// Just ignore it and print as is
|
|
|
|
// so %k in index format becomes %%k to Printf
|
|
|
|
retval = append(retval, '%')
|
|
|
|
retval = append(retval, byte(c))
|
|
|
|
}
|
|
|
|
i = ni + 1
|
|
|
|
}
|
|
|
|
|
2022-07-27 14:08:03 +02:00
|
|
|
const zeroWidthSpace rune = '\u200b'
|
|
|
|
for i, val := range args {
|
|
|
|
if s, ok := val.(string); ok {
|
|
|
|
var out strings.Builder
|
|
|
|
for _, r := range s {
|
|
|
|
w := runewidth.RuneWidth(r)
|
|
|
|
for w > 1 {
|
|
|
|
out.WriteRune(zeroWidthSpace)
|
|
|
|
w -= 1
|
|
|
|
}
|
|
|
|
out.WriteRune(r)
|
|
|
|
}
|
|
|
|
args[i] = out.String()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 21:35:23 +02:00
|
|
|
return string(retval), args, nil
|
|
|
|
|
|
|
|
handle_end_error:
|
2019-07-21 22:01:51 +02:00
|
|
|
return "", nil,
|
|
|
|
errors.New("reached end of string while parsing message format")
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
2020-07-27 01:48:22 +02:00
|
|
|
|
2021-10-26 17:24:45 +02:00
|
|
|
func dummyIfZeroDate(date time.Time, format string, todayFormat string,
|
2022-07-31 22:16:40 +02:00
|
|
|
thisWeekFormat string, thisYearFormat string,
|
|
|
|
) string {
|
2020-07-27 01:48:22 +02:00
|
|
|
if date.IsZero() {
|
|
|
|
return strings.Repeat("?", len(format))
|
|
|
|
}
|
2021-11-06 17:32:38 +01:00
|
|
|
year := date.Year()
|
|
|
|
day := date.YearDay()
|
|
|
|
now := time.Now()
|
|
|
|
thisYear := now.Year()
|
|
|
|
thisDay := now.YearDay()
|
2021-10-26 17:24:45 +02:00
|
|
|
if year == thisYear {
|
2021-11-06 17:32:38 +01:00
|
|
|
if day == thisDay && todayFormat != "" {
|
2021-10-26 17:24:45 +02:00
|
|
|
return date.Format(todayFormat)
|
|
|
|
}
|
2021-11-06 17:32:38 +01:00
|
|
|
if day > thisDay-7 && thisWeekFormat != "" {
|
|
|
|
return date.Format(thisWeekFormat)
|
|
|
|
}
|
2021-10-26 17:24:45 +02:00
|
|
|
if thisYearFormat != "" {
|
|
|
|
return date.Format(thisYearFormat)
|
|
|
|
}
|
|
|
|
}
|
2020-07-27 01:48:22 +02:00
|
|
|
return date.Format(format)
|
|
|
|
}
|