alps/server.go

262 lines
5.7 KiB
Go
Raw Normal View History

2019-12-02 14:31:00 +00:00
package koushin
import (
2019-12-02 16:24:19 +00:00
"fmt"
2019-12-03 12:07:25 +00:00
"io/ioutil"
"mime"
2019-12-02 14:31:00 +00:00
"net/http"
2019-12-02 16:24:19 +00:00
"net/url"
2019-12-03 12:07:25 +00:00
"strings"
2019-12-02 16:24:19 +00:00
"time"
2019-12-02 14:31:00 +00:00
2019-12-02 16:24:19 +00:00
imapclient "github.com/emersion/go-imap/client"
2019-12-03 10:12:26 +00:00
"github.com/labstack/echo/v4"
2019-12-02 14:31:00 +00:00
)
2019-12-02 16:24:19 +00:00
const cookieName = "koushin_session"
type Server struct {
imap struct {
2019-12-03 10:12:26 +00:00
host string
tls bool
2019-12-02 16:24:19 +00:00
insecure bool
pool *ConnPool
}
}
func NewServer(imapURL string) (*Server, error) {
u, err := url.Parse(imapURL)
if err != nil {
2019-12-03 13:48:11 +00:00
return nil, fmt.Errorf("failed to parse IMAP server URL: %v", err)
2019-12-02 16:24:19 +00:00
}
s := &Server{}
s.imap.host = u.Host
switch u.Scheme {
case "imap":
// This space is intentionally left blank
case "imaps":
s.imap.tls = true
case "imap+insecure":
s.imap.insecure = true
default:
return nil, fmt.Errorf("unrecognized IMAP URL scheme: %s", u.Scheme)
}
s.imap.pool = NewConnPool()
2019-12-02 14:31:00 +00:00
2019-12-02 16:24:19 +00:00
return s, nil
}
type context struct {
echo.Context
server *Server
2019-12-03 10:12:26 +00:00
conn *imapclient.Client
2019-12-02 16:24:19 +00:00
}
var aLongTimeAgo = time.Unix(233431200, 0)
func (c *context) setToken(token string) {
cookie := http.Cookie{
2019-12-03 10:12:26 +00:00
Name: cookieName,
Value: token,
2019-12-02 16:24:19 +00:00
HttpOnly: true,
// TODO: domain, secure
}
if token == "" {
cookie.Expires = aLongTimeAgo // unset the cookie
}
c.SetCookie(&cookie)
}
func handleLogin(ectx echo.Context) error {
ctx := ectx.(*context)
username := ctx.FormValue("username")
password := ctx.FormValue("password")
if username != "" && password != "" {
conn, err := ctx.server.connectIMAP()
if err != nil {
return err
}
if err := conn.Login(username, password); err != nil {
conn.Logout()
return ctx.Render(http.StatusOK, "login.html", nil)
}
token, err := ctx.server.imap.pool.Put(conn)
if err != nil {
2019-12-03 13:48:11 +00:00
return fmt.Errorf("failed to put connection in pool: %v", err)
2019-12-02 16:24:19 +00:00
}
ctx.setToken(token)
2019-12-02 17:21:45 +00:00
return ctx.Redirect(http.StatusFound, "/mailbox/INBOX")
2019-12-02 16:24:19 +00:00
}
return ctx.Render(http.StatusOK, "login.html", nil)
}
2019-12-03 12:07:25 +00:00
func handleGetPart(ctx *context, raw bool) error {
mboxName := ctx.Param("mbox")
uid, err := parseUid(ctx.Param("uid"))
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err)
}
partPathString := ctx.QueryParam("part")
partPath, err := parsePartPath(partPathString)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err)
}
msg, part, err := getMessagePart(ctx.conn, mboxName, uid, partPath)
if err != nil {
return err
}
mimeType, _, err := part.Header.ContentType()
if err != nil {
2019-12-03 13:48:11 +00:00
return fmt.Errorf("failed to parse part Content-Type: %v", err)
2019-12-03 12:07:25 +00:00
}
if len(partPath) == 0 {
mimeType = "message/rfc822"
}
if raw {
disp, dispParams, _ := part.Header.ContentDisposition()
filename := dispParams["filename"]
if !strings.EqualFold(mimeType, "text/plain") || strings.EqualFold(disp, "attachment") {
dispParams := make(map[string]string)
if filename != "" {
dispParams["filename"] = filename
}
disp := mime.FormatMediaType("attachment", dispParams)
ctx.Response().Header().Set("Content-Disposition", disp)
}
return ctx.Stream(http.StatusOK, mimeType, part.Body)
}
var body string
if strings.HasPrefix(strings.ToLower(mimeType), "text/") {
b, err := ioutil.ReadAll(part.Body)
if err != nil {
2019-12-03 13:48:11 +00:00
return fmt.Errorf("failed to read part body: %v", err)
2019-12-03 12:07:25 +00:00
}
body = string(b)
}
return ctx.Render(http.StatusOK, "message.html", map[string]interface{}{
"Mailbox": ctx.conn.Mailbox(),
"Message": msg,
"Body": body,
"PartPath": partPathString,
})
}
2019-12-03 13:33:20 +00:00
func handleCompose(ectx echo.Context) error {
ctx := ectx.(*context)
return ctx.Render(http.StatusOK, "compose.html", nil)
}
2019-12-02 16:24:19 +00:00
func New(imapURL string) *echo.Echo {
e := echo.New()
s, err := NewServer(imapURL)
if err != nil {
e.Logger.Fatal(err)
}
2019-12-03 12:17:51 +00:00
e.HTTPErrorHandler = func(err error, c echo.Context) {
code := http.StatusInternalServerError
if he, ok := err.(*echo.HTTPError); ok {
code = he.Code
} else {
c.Logger().Error(err)
}
// TODO: hide internal errors
c.String(code, err.Error())
}
2019-12-02 16:24:19 +00:00
e.Use(func(next echo.HandlerFunc) echo.HandlerFunc {
return func(ectx echo.Context) error {
ctx := &context{Context: ectx, server: s}
cookie, err := ctx.Cookie(cookieName)
if err == http.ErrNoCookie {
2019-12-02 16:31:34 +00:00
// Require auth for all pages except /login
if ctx.Path() == "/login" {
return next(ctx)
} else {
return ctx.Redirect(http.StatusFound, "/login")
}
2019-12-02 16:24:19 +00:00
} else if err != nil {
return err
}
ctx.conn, err = ctx.server.imap.pool.Get(cookie.Value)
if err == ErrSessionExpired {
ctx.setToken("")
return ctx.Redirect(http.StatusFound, "/login")
} else if err != nil {
return err
}
return next(ctx)
}
})
2019-12-02 14:31:00 +00:00
e.Renderer, err = loadTemplates()
if err != nil {
e.Logger.Fatal("Failed to load templates:", err)
}
2019-12-02 17:21:45 +00:00
e.GET("/mailbox/:mbox", func(ectx echo.Context) error {
2019-12-02 16:24:19 +00:00
ctx := ectx.(*context)
2019-12-02 16:31:34 +00:00
mailboxes, err := listMailboxes(ctx.conn)
if err != nil {
2019-12-02 16:31:34 +00:00
return err
2019-12-02 16:24:19 +00:00
}
2019-12-02 17:21:45 +00:00
msgs, err := listMessages(ctx.conn, ctx.Param("mbox"))
if err != nil {
return err
}
return ctx.Render(http.StatusOK, "mailbox.html", map[string]interface{}{
2019-12-03 10:12:26 +00:00
"Mailbox": ctx.conn.Mailbox(),
2019-12-02 16:31:34 +00:00
"Mailboxes": mailboxes,
2019-12-03 10:12:26 +00:00
"Messages": msgs,
2019-12-02 16:31:34 +00:00
})
2019-12-02 14:31:00 +00:00
})
2019-12-02 18:53:09 +00:00
e.GET("/message/:mbox/:uid", func(ectx echo.Context) error {
ctx := ectx.(*context)
2019-12-03 12:07:25 +00:00
return handleGetPart(ctx, false)
})
e.GET("/message/:mbox/:uid/raw", func(ectx echo.Context) error {
ctx := ectx.(*context)
return handleGetPart(ctx, true)
2019-12-02 18:53:09 +00:00
})
2019-12-02 16:24:19 +00:00
e.GET("/login", handleLogin)
e.POST("/login", handleLogin)
2019-12-03 12:24:46 +00:00
e.GET("/logout", func(ectx echo.Context) error {
ctx := ectx.(*context)
if err := ctx.conn.Logout(); err != nil {
2019-12-03 13:48:11 +00:00
return fmt.Errorf("failed to logout: %v", err)
2019-12-03 12:24:46 +00:00
}
ctx.setToken("")
return ctx.Redirect(http.StatusFound, "/login")
})
2019-12-03 13:33:20 +00:00
e.GET("/compose", handleCompose)
e.POST("/compose", handleCompose)
2019-12-02 14:31:00 +00:00
e.Static("/assets", "public/assets")
return e
}