mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
- No UI to access, just append /mailbox to /monitor URL
- Changed API URLs:
- /api/v1/monitor/messages - all
- /api/v1/monitor/messages/{name} - specific
107 lines
3.5 KiB
Go
107 lines
3.5 KiB
Go
package webui
|
|
|
|
import (
|
|
"fmt"
|
|
"html/template"
|
|
"io/ioutil"
|
|
"net/http"
|
|
|
|
"github.com/jhillyerd/inbucket/config"
|
|
"github.com/jhillyerd/inbucket/httpd"
|
|
"github.com/jhillyerd/inbucket/smtpd"
|
|
)
|
|
|
|
// RootIndex serves the Inbucket landing page
|
|
func RootIndex(w http.ResponseWriter, req *http.Request, ctx *httpd.Context) (err error) {
|
|
greeting, err := ioutil.ReadFile(config.GetWebConfig().GreetingFile)
|
|
if err != nil {
|
|
return fmt.Errorf("Failed to load greeting: %v", err)
|
|
}
|
|
// Get flash messages, save session
|
|
errorFlash := ctx.Session.Flashes("errors")
|
|
if err = ctx.Session.Save(req, w); err != nil {
|
|
return err
|
|
}
|
|
// Render template
|
|
return httpd.RenderTemplate("root/index.html", w, map[string]interface{}{
|
|
"ctx": ctx,
|
|
"errorFlash": errorFlash,
|
|
"greeting": template.HTML(string(greeting)),
|
|
})
|
|
}
|
|
|
|
// RootMonitor serves the Inbucket monitor page
|
|
func RootMonitor(w http.ResponseWriter, req *http.Request, ctx *httpd.Context) (err error) {
|
|
if !config.GetWebConfig().MonitorVisible {
|
|
ctx.Session.AddFlash("Monitor is disabled in configuration", "errors")
|
|
_ = ctx.Session.Save(req, w)
|
|
http.Redirect(w, req, httpd.Reverse("RootIndex"), http.StatusSeeOther)
|
|
return nil
|
|
}
|
|
// Get flash messages, save session
|
|
errorFlash := ctx.Session.Flashes("errors")
|
|
if err = ctx.Session.Save(req, w); err != nil {
|
|
return err
|
|
}
|
|
// Render template
|
|
return httpd.RenderTemplate("root/monitor.html", w, map[string]interface{}{
|
|
"ctx": ctx,
|
|
"errorFlash": errorFlash,
|
|
})
|
|
}
|
|
|
|
// RootMonitorMailbox serves the Inbucket monitor page for a particular mailbox
|
|
func RootMonitorMailbox(w http.ResponseWriter, req *http.Request, ctx *httpd.Context) (err error) {
|
|
if !config.GetWebConfig().MonitorVisible {
|
|
ctx.Session.AddFlash("Monitor is disabled in configuration", "errors")
|
|
_ = ctx.Session.Save(req, w)
|
|
http.Redirect(w, req, httpd.Reverse("RootIndex"), http.StatusSeeOther)
|
|
return nil
|
|
}
|
|
name, err := smtpd.ParseMailboxName(ctx.Vars["name"])
|
|
if err != nil {
|
|
ctx.Session.AddFlash(err.Error(), "errors")
|
|
_ = ctx.Session.Save(req, w)
|
|
http.Redirect(w, req, httpd.Reverse("RootIndex"), http.StatusSeeOther)
|
|
return nil
|
|
}
|
|
// Get flash messages, save session
|
|
errorFlash := ctx.Session.Flashes("errors")
|
|
if err = ctx.Session.Save(req, w); err != nil {
|
|
return err
|
|
}
|
|
// Render template
|
|
return httpd.RenderTemplate("root/monitor.html", w, map[string]interface{}{
|
|
"ctx": ctx,
|
|
"errorFlash": errorFlash,
|
|
"name": name,
|
|
})
|
|
}
|
|
|
|
// RootStatus serves the Inbucket status page
|
|
func RootStatus(w http.ResponseWriter, req *http.Request, ctx *httpd.Context) (err error) {
|
|
smtpListener := fmt.Sprintf("%s:%d", config.GetSMTPConfig().IP4address.String(),
|
|
config.GetSMTPConfig().IP4port)
|
|
pop3Listener := fmt.Sprintf("%s:%d", config.GetPOP3Config().IP4address.String(),
|
|
config.GetPOP3Config().IP4port)
|
|
webListener := fmt.Sprintf("%s:%d", config.GetWebConfig().IP4address.String(),
|
|
config.GetWebConfig().IP4port)
|
|
// Get flash messages, save session
|
|
errorFlash := ctx.Session.Flashes("errors")
|
|
if err = ctx.Session.Save(req, w); err != nil {
|
|
return err
|
|
}
|
|
// Render template
|
|
return httpd.RenderTemplate("root/status.html", w, map[string]interface{}{
|
|
"ctx": ctx,
|
|
"errorFlash": errorFlash,
|
|
"version": config.Version,
|
|
"buildDate": config.BuildDate,
|
|
"smtpListener": smtpListener,
|
|
"pop3Listener": pop3Listener,
|
|
"webListener": webListener,
|
|
"smtpConfig": config.GetSMTPConfig(),
|
|
"dataStoreConfig": config.GetDataStoreConfig(),
|
|
})
|
|
}
|