2023-05-20 10:56:21 +03:00
|
|
|
// Copyright 2023 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"
|
|
|
|
|
|
|
|
"github.com/casdoor/casdoor/util"
|
|
|
|
"github.com/xorm-io/core"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Pricing 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"`
|
|
|
|
DisplayName string `xorm:"varchar(100)" json:"displayName"`
|
|
|
|
Description string `xorm:"varchar(100)" json:"description"`
|
|
|
|
|
|
|
|
Plans []string `xorm:"mediumtext" json:"plans"`
|
|
|
|
IsEnabled bool `json:"isEnabled"`
|
|
|
|
TrialDuration int `json:"trialDuration"`
|
|
|
|
Application string `xorm:"varchar(100)" json:"application"`
|
|
|
|
}
|
|
|
|
|
2023-08-24 23:20:50 +08:00
|
|
|
func (pricing *Pricing) GetId() string {
|
|
|
|
return fmt.Sprintf("%s/%s", pricing.Owner, pricing.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pricing *Pricing) HasPlan(planName string) (bool, error) {
|
|
|
|
planId := util.GetId(pricing.Owner, planName)
|
|
|
|
plan, err := GetPlan(planId)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
if plan == nil {
|
|
|
|
return false, fmt.Errorf("plan: %s does not exist", planId)
|
|
|
|
}
|
|
|
|
|
|
|
|
if util.InSlice(pricing.Plans, plan.Name) {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func GetPricingCount(owner, field, value string) (int64, error) {
|
2023-05-20 10:56:21 +03:00
|
|
|
session := GetSession(owner, -1, -1, field, value, "", "")
|
2023-05-30 15:49:39 +08:00
|
|
|
return session.Count(&Pricing{})
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func GetPricings(owner string) ([]*Pricing, error) {
|
2023-05-20 10:56:21 +03:00
|
|
|
pricings := []*Pricing{}
|
2023-07-29 15:07:04 +08:00
|
|
|
err := ormer.Engine.Desc("created_time").Find(&pricings, &Pricing{Owner: owner})
|
2023-05-20 10:56:21 +03:00
|
|
|
if err != nil {
|
2023-05-30 15:49:39 +08:00
|
|
|
return pricings, err
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
2023-05-30 15:49:39 +08:00
|
|
|
|
|
|
|
return pricings, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func GetPaginatedPricings(owner string, offset, limit int, field, value, sortField, sortOrder string) ([]*Pricing, error) {
|
2023-05-20 10:56:21 +03:00
|
|
|
pricings := []*Pricing{}
|
|
|
|
session := GetSession(owner, offset, limit, field, value, sortField, sortOrder)
|
|
|
|
err := session.Find(&pricings)
|
|
|
|
if err != nil {
|
2023-05-30 15:49:39 +08:00
|
|
|
return pricings, err
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
2023-05-30 15:49:39 +08:00
|
|
|
return pricings, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func getPricing(owner, name string) (*Pricing, error) {
|
2023-05-20 10:56:21 +03:00
|
|
|
if owner == "" || name == "" {
|
2023-05-30 15:49:39 +08:00
|
|
|
return nil, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pricing := Pricing{Owner: owner, Name: name}
|
2023-07-29 15:07:04 +08:00
|
|
|
existed, err := ormer.Engine.Get(&pricing)
|
2023-05-20 10:56:21 +03:00
|
|
|
if err != nil {
|
2023-08-24 23:20:50 +08:00
|
|
|
return nil, err
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
if existed {
|
2023-05-30 15:49:39 +08:00
|
|
|
return &pricing, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
} else {
|
2023-05-30 15:49:39 +08:00
|
|
|
return nil, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func GetPricing(id string) (*Pricing, error) {
|
2023-05-20 10:56:21 +03:00
|
|
|
owner, name := util.GetOwnerAndNameFromId(id)
|
|
|
|
return getPricing(owner, name)
|
|
|
|
}
|
|
|
|
|
2023-08-24 23:20:50 +08:00
|
|
|
func GetApplicationDefaultPricing(owner, appName string) (*Pricing, error) {
|
|
|
|
pricings := make([]*Pricing, 0, 1)
|
|
|
|
err := ormer.Engine.Asc("created_time").Find(&pricings, &Pricing{Owner: owner, Application: appName})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, pricing := range pricings {
|
|
|
|
if pricing.IsEnabled {
|
|
|
|
return pricing, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func UpdatePricing(id string, pricing *Pricing) (bool, error) {
|
2023-05-20 10:56:21 +03:00
|
|
|
owner, name := util.GetOwnerAndNameFromId(id)
|
2023-05-30 15:49:39 +08:00
|
|
|
if p, err := getPricing(owner, name); err != nil {
|
|
|
|
return false, err
|
|
|
|
} else if p == nil {
|
|
|
|
return false, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
2023-07-29 15:07:04 +08:00
|
|
|
affected, err := ormer.Engine.ID(core.PK{owner, name}).AllCols().Update(pricing)
|
2023-05-20 10:56:21 +03:00
|
|
|
if err != nil {
|
2023-05-30 15:49:39 +08:00
|
|
|
return false, err
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
return affected != 0, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func AddPricing(pricing *Pricing) (bool, error) {
|
2023-07-29 15:07:04 +08:00
|
|
|
affected, err := ormer.Engine.Insert(pricing)
|
2023-05-20 10:56:21 +03:00
|
|
|
if err != nil {
|
2023-05-30 15:49:39 +08:00
|
|
|
return false, err
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
2023-05-30 15:49:39 +08:00
|
|
|
return affected != 0, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func DeletePricing(pricing *Pricing) (bool, error) {
|
2023-07-29 15:07:04 +08:00
|
|
|
affected, err := ormer.Engine.ID(core.PK{pricing.Owner, pricing.Name}).Delete(pricing)
|
2023-05-20 10:56:21 +03:00
|
|
|
if err != nil {
|
2023-05-30 15:49:39 +08:00
|
|
|
return false, err
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
2023-05-30 15:49:39 +08:00
|
|
|
return affected != 0, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
2023-08-24 23:20:50 +08:00
|
|
|
func CheckPricingAndPlan(owner, pricingName, planName string) error {
|
|
|
|
pricingId := util.GetId(owner, pricingName)
|
|
|
|
pricing, err := GetPricing(pricingId)
|
|
|
|
if pricing == nil || err != nil {
|
|
|
|
if pricing == nil && err == nil {
|
|
|
|
err = fmt.Errorf("pricing: %s does not exist", pricingName)
|
|
|
|
}
|
|
|
|
return err
|
2023-05-30 15:49:39 +08:00
|
|
|
}
|
2023-08-24 23:20:50 +08:00
|
|
|
ok, err := pricing.HasPlan(planName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
2023-08-24 23:20:50 +08:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("pricing: %s does not have plan: %s", pricingName, planName)
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
2023-08-24 23:20:50 +08:00
|
|
|
return nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|