forked from casdoor/casdoor
208 lines
5.6 KiB
Go
208 lines
5.6 KiB
Go
// Copyright 2025 The Casdoor Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package object
|
|
|
|
import (
|
|
"fmt"
|
|
"slices"
|
|
|
|
"github.com/casdoor/casdoor/util"
|
|
"github.com/xorm-io/core"
|
|
)
|
|
|
|
type Order struct {
|
|
Owner string `xorm:"varchar(100) notnull pk" json:"owner"`
|
|
Name string `xorm:"varchar(100) notnull pk" json:"name"`
|
|
CreatedTime string `xorm:"varchar(100)" json:"createdTime"`
|
|
UpdateTime string `xorm:"varchar(100)" json:"updateTime"`
|
|
DisplayName string `xorm:"varchar(100)" json:"displayName"`
|
|
|
|
// Product Info
|
|
Products []string `xorm:"varchar(1000)" json:"products"` // Support for multiple products per order. Using varchar(1000) for simple JSON array storage; can be refactored to separate table if needed
|
|
ProductInfos []ProductInfo `xorm:"mediumtext" json:"productInfos"`
|
|
|
|
// User Info
|
|
User string `xorm:"varchar(100)" json:"user"`
|
|
|
|
// Payment Info
|
|
Payment string `xorm:"varchar(100)" json:"payment"`
|
|
Price float64 `json:"price"`
|
|
Currency string `xorm:"varchar(100)" json:"currency"`
|
|
|
|
// Order State
|
|
State string `xorm:"varchar(100)" json:"state"`
|
|
Message string `xorm:"varchar(2000)" json:"message"`
|
|
}
|
|
|
|
type ProductInfo struct {
|
|
Owner string `json:"owner"`
|
|
Name string `json:"name"`
|
|
CreatedTime string `json:"createdTime,omitempty"`
|
|
DisplayName string `json:"displayName"`
|
|
Image string `json:"image,omitempty"`
|
|
Detail string `json:"detail,omitempty"`
|
|
Price float64 `json:"price"`
|
|
Currency string `json:"currency,omitempty"`
|
|
IsRecharge bool `json:"isRecharge,omitempty"`
|
|
Quantity int `json:"quantity,omitempty"`
|
|
PricingName string `json:"pricingName,omitempty"`
|
|
PlanName string `json:"planName,omitempty"`
|
|
}
|
|
|
|
func GetOrderCount(owner, field, value string) (int64, error) {
|
|
session := GetSession(owner, -1, -1, field, value, "", "")
|
|
return session.Count(&Order{Owner: owner})
|
|
}
|
|
|
|
func GetOrders(owner string) ([]*Order, error) {
|
|
orders := []*Order{}
|
|
err := ormer.Engine.Desc("created_time").Find(&orders, &Order{Owner: owner})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return orders, nil
|
|
}
|
|
|
|
func GetUserOrders(owner, user string) ([]*Order, error) {
|
|
orders := []*Order{}
|
|
err := ormer.Engine.Desc("created_time").Find(&orders, &Order{Owner: owner, User: user})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return orders, nil
|
|
}
|
|
|
|
func GetPaginationOrders(owner string, offset, limit int, field, value, sortField, sortOrder string) ([]*Order, error) {
|
|
orders := []*Order{}
|
|
session := GetSession(owner, offset, limit, field, value, sortField, sortOrder)
|
|
err := session.Find(&orders, &Order{Owner: owner})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return orders, nil
|
|
}
|
|
|
|
func getOrder(owner string, name string) (*Order, error) {
|
|
if owner == "" || name == "" {
|
|
return nil, nil
|
|
}
|
|
|
|
order := Order{Owner: owner, Name: name}
|
|
existed, err := ormer.Engine.Get(&order)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if existed {
|
|
return &order, nil
|
|
} else {
|
|
return nil, nil
|
|
}
|
|
}
|
|
|
|
func GetOrder(id string) (*Order, error) {
|
|
owner, name, err := util.GetOwnerAndNameFromIdWithError(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return getOrder(owner, name)
|
|
}
|
|
|
|
func UpdateOrder(id string, order *Order) (bool, error) {
|
|
owner, name, err := util.GetOwnerAndNameFromIdWithError(id)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
var o *Order
|
|
if o, err = getOrder(owner, name); err != nil {
|
|
return false, err
|
|
} else if o == nil {
|
|
return false, nil
|
|
}
|
|
|
|
if o.State != order.State {
|
|
if order.State == "Created" {
|
|
order.UpdateTime = ""
|
|
} else {
|
|
order.UpdateTime = util.GetCurrentTime()
|
|
}
|
|
}
|
|
|
|
if !slices.Equal(o.Products, order.Products) {
|
|
existingInfos := make(map[string]ProductInfo, len(o.ProductInfos))
|
|
for _, info := range o.ProductInfos {
|
|
existingInfos[info.Name] = info
|
|
}
|
|
|
|
productInfos := make([]ProductInfo, 0, len(order.Products))
|
|
products, err := getOrderProducts(owner, order.Products)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
price := 0.0
|
|
for _, product := range products {
|
|
productInfo := ProductInfo{
|
|
Name: product.Name,
|
|
DisplayName: product.DisplayName,
|
|
Image: product.Image,
|
|
Detail: product.Detail,
|
|
Price: product.Price,
|
|
IsRecharge: product.IsRecharge,
|
|
}
|
|
if existingInfo, ok := existingInfos[product.Name]; ok {
|
|
// Keep historical product info; do not overwrite with current product.
|
|
productInfo = existingInfo
|
|
}
|
|
price += productInfo.Price
|
|
productInfos = append(productInfos, productInfo)
|
|
}
|
|
order.ProductInfos = productInfos
|
|
order.Price = price
|
|
}
|
|
|
|
affected, err := ormer.Engine.ID(core.PK{owner, name}).AllCols().Update(order)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return affected != 0, nil
|
|
}
|
|
|
|
func AddOrder(order *Order) (bool, error) {
|
|
affected, err := ormer.Engine.Insert(order)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return affected != 0, nil
|
|
}
|
|
|
|
func DeleteOrder(order *Order) (bool, error) {
|
|
affected, err := ormer.Engine.ID(core.PK{order.Owner, order.Name}).Delete(&Order{})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return affected != 0, nil
|
|
}
|
|
|
|
func (order *Order) GetId() string {
|
|
return fmt.Sprintf("%s/%s", order.Owner, order.Name)
|
|
}
|