35 lines
780 B
Go
35 lines
780 B
Go
package shop
|
|
|
|
import (
|
|
"net/http"
|
|
"sort"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// PurchaseHistory ...
|
|
func PurchaseHistory(ctx aero.Context) error {
|
|
user := utils.GetUser(ctx)
|
|
|
|
if user == nil {
|
|
return ctx.Error(http.StatusUnauthorized, "Not logged in")
|
|
}
|
|
|
|
purchases, err := arn.FilterPurchases(func(purchase *arn.Purchase) bool {
|
|
return purchase.UserID == user.ID
|
|
})
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusInternalServerError, "Error fetching shop item data", err)
|
|
}
|
|
|
|
sort.Slice(purchases, func(i, j int) bool {
|
|
return purchases[i].Date > purchases[j].Date
|
|
})
|
|
|
|
return ctx.HTML(components.PurchaseHistory(purchases, user))
|
|
}
|