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