alps/plugins/base/plugin.go

44 lines
977 B
Go
Raw Normal View History

package koushinbase
import (
"git.sr.ht/~emersion/koushin"
"github.com/labstack/echo/v4"
)
const messagesPerPage = 50
func init() {
p := koushin.GoPlugin{Name: "base"}
2019-12-17 10:28:47 +00:00
p.TemplateFuncs(templateFuncs)
p.GET("/mailbox/:mbox", handleGetMailbox)
p.POST("/mailbox/:mbox", handleGetMailbox)
p.GET("/message/:mbox/:uid", func(ectx echo.Context) error {
ctx := ectx.(*koushin.Context)
return handleGetPart(ctx, false)
})
p.GET("/message/:mbox/:uid/raw", func(ectx echo.Context) error {
ctx := ectx.(*koushin.Context)
return handleGetPart(ctx, true)
})
p.GET("/login", handleLogin)
p.POST("/login", handleLogin)
p.GET("/logout", handleLogout)
p.GET("/compose", handleCompose)
p.POST("/compose", handleCompose)
p.GET("/message/:mbox/:uid/reply", handleCompose)
p.POST("/message/:mbox/:uid/reply", handleCompose)
p.POST("/message/:mbox/:uid/move", handleMove)
p.POST("/message/:mbox/:uid/delete", handleDelete)
koushin.RegisterPlugin(p.Plugin())
}