mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-08 19:40:24 +08:00
156 lines
3.8 KiB
Go
156 lines
3.8 KiB
Go
package regions
|
||
|
||
import (
|
||
"encoding/json"
|
||
_ "github.com/go-sql-driver/mysql"
|
||
"github.com/iwind/TeaGo/Tea"
|
||
"github.com/iwind/TeaGo/dbs"
|
||
"github.com/iwind/TeaGo/types"
|
||
"github.com/mozillazg/go-pinyin"
|
||
"strings"
|
||
)
|
||
|
||
const (
|
||
RegionCountryStateEnabled = 1 // 已启用
|
||
RegionCountryStateDisabled = 0 // 已禁用
|
||
)
|
||
|
||
var regionCountryNameAndIdCacheMap = map[string]int64{} // country name => int
|
||
|
||
type RegionCountryDAO dbs.DAO
|
||
|
||
func NewRegionCountryDAO() *RegionCountryDAO {
|
||
return dbs.NewDAO(&RegionCountryDAO{
|
||
DAOObject: dbs.DAOObject{
|
||
DB: Tea.Env,
|
||
Table: "edgeRegionCountries",
|
||
Model: new(RegionCountry),
|
||
PkName: "id",
|
||
},
|
||
}).(*RegionCountryDAO)
|
||
}
|
||
|
||
var SharedRegionCountryDAO *RegionCountryDAO
|
||
|
||
func init() {
|
||
dbs.OnReady(func() {
|
||
SharedRegionCountryDAO = NewRegionCountryDAO()
|
||
})
|
||
}
|
||
|
||
// 启用条目
|
||
func (this *RegionCountryDAO) EnableRegionCountry(tx *dbs.Tx, id uint32) error {
|
||
_, err := this.Query(tx).
|
||
Pk(id).
|
||
Set("state", RegionCountryStateEnabled).
|
||
Update()
|
||
return err
|
||
}
|
||
|
||
// 禁用条目
|
||
func (this *RegionCountryDAO) DisableRegionCountry(tx *dbs.Tx, id int64) error {
|
||
_, err := this.Query(tx).
|
||
Pk(id).
|
||
Set("state", RegionCountryStateDisabled).
|
||
Update()
|
||
return err
|
||
}
|
||
|
||
// 查找启用中的条目
|
||
func (this *RegionCountryDAO) FindEnabledRegionCountry(tx *dbs.Tx, id int64) (*RegionCountry, error) {
|
||
result, err := this.Query(tx).
|
||
Pk(id).
|
||
Attr("state", RegionCountryStateEnabled).
|
||
Find()
|
||
if result == nil {
|
||
return nil, err
|
||
}
|
||
return result.(*RegionCountry), err
|
||
}
|
||
|
||
// 根据主键查找名称
|
||
func (this *RegionCountryDAO) FindRegionCountryName(tx *dbs.Tx, id int64) (string, error) {
|
||
return this.Query(tx).
|
||
Pk(id).
|
||
Result("name").
|
||
FindStringCol("")
|
||
}
|
||
|
||
// 根据数据ID查找国家
|
||
func (this *RegionCountryDAO) FindCountryIdWithDataId(tx *dbs.Tx, dataId string) (int64, error) {
|
||
return this.Query(tx).
|
||
Attr("dataId", dataId).
|
||
ResultPk().
|
||
FindInt64Col(0)
|
||
}
|
||
|
||
// 根据国家名查找国家ID
|
||
func (this *RegionCountryDAO) FindCountryIdWithName(tx *dbs.Tx, countryName string) (int64, error) {
|
||
return this.Query(tx).
|
||
Where("JSON_CONTAINS(codes, :countryName)").
|
||
Param("countryName", "\""+countryName+"\""). // 查询的需要是个JSON字符串,所以这里加双引号
|
||
ResultPk().
|
||
FindInt64Col(0)
|
||
}
|
||
|
||
// 根据国家名查找国家ID,并可使用缓存
|
||
func (this *RegionCountryDAO) FindCountryIdWithNameCacheable(tx *dbs.Tx, countryName string) (int64, error) {
|
||
SharedCacheLocker.RLock()
|
||
provinceId, ok := regionCountryNameAndIdCacheMap[countryName]
|
||
if ok {
|
||
SharedCacheLocker.RUnlock()
|
||
return provinceId, nil
|
||
}
|
||
SharedCacheLocker.RUnlock()
|
||
|
||
countryId, err := this.FindCountryIdWithName(tx, countryName)
|
||
if err != nil {
|
||
return 0, err
|
||
}
|
||
|
||
SharedCacheLocker.Lock()
|
||
regionCountryNameAndIdCacheMap[countryName] = countryId
|
||
SharedCacheLocker.Unlock()
|
||
|
||
return countryId, nil
|
||
}
|
||
|
||
// 根据数据ID创建国家
|
||
func (this *RegionCountryDAO) CreateCountry(tx *dbs.Tx, name string, dataId string) (int64, error) {
|
||
op := NewRegionCountryOperator()
|
||
op.Name = name
|
||
|
||
pinyinPieces := pinyin.Pinyin(name, pinyin.NewArgs())
|
||
pinyinResult := []string{}
|
||
for _, piece := range pinyinPieces {
|
||
pinyinResult = append(pinyinResult, strings.Join(piece, " "))
|
||
}
|
||
pinyinJSON, err := json.Marshal([]string{strings.Join(pinyinResult, " ")})
|
||
op.Pinyin = pinyinJSON
|
||
|
||
codes := []string{name}
|
||
codesJSON, err := json.Marshal(codes)
|
||
if err != nil {
|
||
return 0, err
|
||
}
|
||
op.Codes = codesJSON
|
||
|
||
op.DataId = dataId
|
||
op.State = RegionCountryStateEnabled
|
||
err = this.Save(tx, op)
|
||
if err != nil {
|
||
return 0, err
|
||
}
|
||
return types.Int64(op.Id), nil
|
||
}
|
||
|
||
// 查找所有可用的国家
|
||
func (this *RegionCountryDAO) FindAllEnabledCountriesOrderByPinyin(tx *dbs.Tx) (result []*RegionCountry, err error) {
|
||
_, err = this.Query(tx).
|
||
State(RegionCountryStateEnabled).
|
||
Slice(&result).
|
||
Asc("pinyin").
|
||
FindAll()
|
||
return
|
||
}
|