31 lines
626 B
Go
Raw Normal View History

2017-10-04 06:12:12 +00:00
package inventory
import (
"net/http"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2017-10-04 06:12:12 +00:00
"github.com/animenotifier/notify.moe/components"
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/utils"
)
// Get inventory page.
2019-06-01 04:55:49 +00:00
func Get(ctx aero.Context) error {
2017-10-04 06:12:12 +00:00
user := utils.GetUser(ctx)
2017-10-05 07:39:37 +00:00
viewUser := user
2017-10-04 06:12:12 +00:00
if user == nil {
2018-07-07 03:42:00 +00:00
return ctx.Error(http.StatusUnauthorized, "Not logged in")
2017-10-04 06:12:12 +00:00
}
2017-10-05 07:39:37 +00:00
inventory, err := arn.GetInventory(viewUser.ID)
2017-10-04 06:12:12 +00:00
if err != nil {
return ctx.Error(http.StatusInternalServerError, "Error fetching inventory data", err)
}
2017-10-05 08:26:07 +00:00
return ctx.HTML(components.Inventory(inventory, viewUser, user))
2017-10-04 06:12:12 +00:00
}