20 lines
407 B
Go
Raw Normal View History

package animelist
import (
"net/http"
"github.com/aerogo/aero"
2019-11-17 07:59:34 +00:00
"github.com/animenotifier/notify.moe/arn"
)
// Redirect to the full URL including the user nick.
2019-06-01 04:55:49 +00:00
func Redirect(ctx aero.Context) error {
2019-11-17 07:59:34 +00:00
user := arn.GetUserFromContext(ctx)
if user == nil {
2018-07-07 03:42:00 +00:00
return ctx.Error(http.StatusUnauthorized, "Not logged in")
}
2019-06-07 01:03:16 +00:00
return ctx.Redirect(http.StatusTemporaryRedirect, "/+"+user.Nick+ctx.Path())
}