aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/base/routes.go18
1 files changed, 11 insertions, 7 deletions
diff --git a/plugins/base/routes.go b/plugins/base/routes.go
index 1ea611d..689fca4 100644
--- a/plugins/base/routes.go
+++ b/plugins/base/routes.go
@@ -653,6 +653,13 @@ func handleEdit(ctx *koushin.Context) error {
return handleCompose(ctx, &msg, &composeOptions{Draft: &sourcePath})
}
+func formOrQueryParam(ctx *koushin.Context, k string) string {
+ if v := ctx.FormValue(k); v != "" {
+ return v
+ }
+ return ctx.QueryParam(k)
+}
+
func handleMove(ctx *koushin.Context) error {
mboxName, err := url.PathUnescape(ctx.Param("mbox"))
if err != nil {
@@ -668,10 +675,7 @@ func handleMove(ctx *koushin.Context) error {
return echo.NewHTTPError(http.StatusBadRequest, err)
}
- to := ctx.FormValue("to")
- if to == "" {
- to = ctx.QueryParam("to")
- }
+ to := formOrQueryParam(ctx, "to")
if to == "" {
return echo.NewHTTPError(http.StatusBadRequest, "missing 'to' form parameter")
}
@@ -696,7 +700,7 @@ func handleMove(ctx *koushin.Context) error {
return err
}
- if path := ctx.QueryParam("next"); path != "" {
+ if path := formOrQueryParam(ctx, "next"); path != "" {
return ctx.Redirect(http.StatusFound, path)
}
return ctx.Redirect(http.StatusFound, fmt.Sprintf("/mailbox/%v", url.PathEscape(to)))
@@ -747,7 +751,7 @@ func handleDelete(ctx *koushin.Context) error {
return err
}
- if path := ctx.QueryParam("next"); path != "" {
+ if path := formOrQueryParam(ctx, "next"); path != "" {
return ctx.Redirect(http.StatusFound, path)
}
return ctx.Redirect(http.StatusFound, fmt.Sprintf("/mailbox/%v", url.PathEscape(mboxName)))
@@ -819,7 +823,7 @@ func handleSetFlags(ctx *koushin.Context) error {
return err
}
- if path := ctx.QueryParam("next"); path != "" {
+ if path := formOrQueryParam(ctx, "next"); path != "" {
return ctx.Redirect(http.StatusFound, path)
}
if len(uids) != 1 || (op == imap.RemoveFlags && len(flags) == 1 && flags[0] == imap.SeenFlag) {