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"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"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"`
|
|
|
|
|
|
|
|
Submitter string `xorm:"varchar(100)" json:"submitter"`
|
|
|
|
Approver string `xorm:"varchar(100)" json:"approver"`
|
|
|
|
ApproveTime string `xorm:"varchar(100)" json:"approveTime"`
|
|
|
|
|
|
|
|
State string `xorm:"varchar(100)" json:"state"`
|
|
|
|
}
|
|
|
|
|
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{}
|
|
|
|
err := adapter.Engine.Desc("created_time").Find(&pricings, &Pricing{Owner: owner})
|
|
|
|
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}
|
|
|
|
existed, err := adapter.Engine.Get(&pricing)
|
|
|
|
if err != nil {
|
2023-05-30 15:49:39 +08:00
|
|
|
return &pricing, 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-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
|
|
|
}
|
|
|
|
|
|
|
|
affected, err := adapter.Engine.ID(core.PK{owner, name}).AllCols().Update(pricing)
|
|
|
|
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-05-20 10:56:21 +03:00
|
|
|
affected, err := adapter.Engine.Insert(pricing)
|
|
|
|
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-05-20 10:56:21 +03:00
|
|
|
affected, err := adapter.Engine.ID(core.PK{pricing.Owner, pricing.Name}).Delete(pricing)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
func (pricing *Pricing) GetId() string {
|
|
|
|
return fmt.Sprintf("%s/%s", pricing.Owner, pricing.Name)
|
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
func (pricing *Pricing) HasPlan(owner string, plan string) (bool, error) {
|
|
|
|
selectedPlan, err := GetPlan(fmt.Sprintf("%s/%s", owner, plan))
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2023-05-20 10:56:21 +03:00
|
|
|
|
|
|
|
if selectedPlan == nil {
|
2023-05-30 15:49:39 +08:00
|
|
|
return false, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
result := false
|
|
|
|
|
|
|
|
for _, pricingPlan := range pricing.Plans {
|
|
|
|
if strings.Contains(pricingPlan, selectedPlan.Name) {
|
|
|
|
result = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
return result, nil
|
2023-05-20 10:56:21 +03:00
|
|
|
}
|