37 lines
797 B
Go
Raw Normal View History

2017-10-07 21:24:09 +00:00
package admin
import (
"net/http"
"sort"
"github.com/aerogo/aero"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2017-10-07 21:24:09 +00:00
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// PurchaseHistory ...
2019-06-01 04:55:49 +00:00
func PurchaseHistory(ctx aero.Context) error {
2017-10-07 21:24:09 +00:00
user := utils.GetUser(ctx)
if user == nil {
2018-07-07 03:42:00 +00:00
return ctx.Error(http.StatusUnauthorized, "Not logged in")
2017-10-07 21:24:09 +00:00
}
if user.Role != "admin" {
2018-07-07 03:42:00 +00:00
return ctx.Error(http.StatusUnauthorized, "Not authorized")
2017-10-07 21:24:09 +00:00
}
purchases, err := arn.AllPurchases()
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.GlobalPurchaseHistory(purchases))
}