mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
* ui: Refactor routing functions into Router record * ui: Store base URI in AppConfig * ui: Use basePath in Router functions * backend: Add Web.BasePath config option and update routes * Tweaks to get SPA to bootstrap basePath configured * ui: basePath support for apis/serve * ui: basePath support for message monitor * web: Redirect requests to / when basePath configured * doc: add basepath to config.md * Closes #107
77 lines
1.7 KiB
Go
77 lines
1.7 KiB
Go
package stringutil
|
|
|
|
import (
|
|
"crypto/sha1"
|
|
"fmt"
|
|
"io"
|
|
"net/mail"
|
|
"strings"
|
|
)
|
|
|
|
// HashMailboxName accepts a mailbox name and hashes it. filestore uses this as
|
|
// the directory to house the mailbox
|
|
func HashMailboxName(mailbox string) string {
|
|
h := sha1.New()
|
|
if _, err := io.WriteString(h, mailbox); err != nil {
|
|
// This shouldn't ever happen
|
|
return ""
|
|
}
|
|
return fmt.Sprintf("%x", h.Sum(nil))
|
|
}
|
|
|
|
// StringAddress converts an Address to a UTF-8 string.
|
|
func StringAddress(a *mail.Address) string {
|
|
b := &strings.Builder{}
|
|
if a != nil {
|
|
if a.Name != "" {
|
|
b.WriteString(a.Name)
|
|
b.WriteRune(' ')
|
|
}
|
|
if a.Address != "" {
|
|
b.WriteRune('<')
|
|
b.WriteString(a.Address)
|
|
b.WriteRune('>')
|
|
}
|
|
}
|
|
return b.String()
|
|
}
|
|
|
|
// StringAddressList converts a list of addresses to a list of UTF-8 strings.
|
|
func StringAddressList(addrs []*mail.Address) []string {
|
|
s := make([]string, len(addrs))
|
|
for i, a := range addrs {
|
|
s[i] = StringAddress(a)
|
|
}
|
|
return s
|
|
}
|
|
|
|
// SliceContains returns true if s is present in slice.
|
|
func SliceContains(slice []string, s string) bool {
|
|
for _, v := range slice {
|
|
if s == v {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// SliceToLower lowercases the contents of slice of strings.
|
|
func SliceToLower(slice []string) {
|
|
for i, s := range slice {
|
|
slice[i] = strings.ToLower(s)
|
|
}
|
|
}
|
|
|
|
// MakePathPrefixer returns a function that will add the specified prefix (base) to URI strings.
|
|
// The returned prefixer expects all provided paths to start with /.
|
|
func MakePathPrefixer(prefix string) func(string) string {
|
|
prefix = strings.Trim(prefix, "/")
|
|
if prefix != "" {
|
|
prefix = "/" + prefix
|
|
}
|
|
|
|
return func(path string) string {
|
|
return prefix + path
|
|
}
|
|
}
|