Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
58f00b4f8e | ||
|
|
d9ab1be2e7 | ||
|
|
4b77cd140d | ||
|
|
8d640be472 | ||
|
|
cc08e830d3 |
237
api/pkg/v1/pkg.pb.go
Normal file
237
api/pkg/v1/pkg.pb.go
Normal file
@@ -0,0 +1,237 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.28.1
|
||||||
|
// protoc v3.20.0
|
||||||
|
// source: pkg/v1/pkg.proto
|
||||||
|
|
||||||
|
package v1
|
||||||
|
|
||||||
|
import (
|
||||||
|
reflect "reflect"
|
||||||
|
sync "sync"
|
||||||
|
|
||||||
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// Verify that this generated code is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||||
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||||
|
)
|
||||||
|
|
||||||
|
// 定义 NoticeType 枚举
|
||||||
|
type NoticeType int32
|
||||||
|
|
||||||
|
const (
|
||||||
|
NoticeType_DINGTALK NoticeType = 0
|
||||||
|
NoticeType_WECHAT NoticeType = 1
|
||||||
|
NoticeType_EMAIL NoticeType = 2
|
||||||
|
NoticeType_SMS NoticeType = 3
|
||||||
|
NoticeType_VOICE NoticeType = 4
|
||||||
|
)
|
||||||
|
|
||||||
|
// Enum value maps for NoticeType.
|
||||||
|
var (
|
||||||
|
NoticeType_name = map[int32]string{
|
||||||
|
0: "DINGTALK",
|
||||||
|
1: "WECHAT",
|
||||||
|
2: "EMAIL",
|
||||||
|
3: "SMS",
|
||||||
|
4: "VOICE",
|
||||||
|
}
|
||||||
|
NoticeType_value = map[string]int32{
|
||||||
|
"DINGTALK": 0,
|
||||||
|
"WECHAT": 1,
|
||||||
|
"EMAIL": 2,
|
||||||
|
"SMS": 3,
|
||||||
|
"VOICE": 4,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
func (x NoticeType) Enum() *NoticeType {
|
||||||
|
p := new(NoticeType)
|
||||||
|
*p = x
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x NoticeType) String() string {
|
||||||
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (NoticeType) Descriptor() protoreflect.EnumDescriptor {
|
||||||
|
return file_pkg_v1_pkg_proto_enumTypes[0].Descriptor()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (NoticeType) Type() protoreflect.EnumType {
|
||||||
|
return &file_pkg_v1_pkg_proto_enumTypes[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x NoticeType) Number() protoreflect.EnumNumber {
|
||||||
|
return protoreflect.EnumNumber(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use NoticeType.Descriptor instead.
|
||||||
|
func (NoticeType) EnumDescriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_v1_pkg_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 排行榜数据
|
||||||
|
type RankData struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||||
|
Score int64 `protobuf:"varint,2,opt,name=score,proto3" json:"score,omitempty"`
|
||||||
|
Rank int32 `protobuf:"varint,3,opt,name=rank,proto3" json:"rank,omitempty"`
|
||||||
|
UpdateTs int64 `protobuf:"varint,4,opt,name=update_ts,json=updateTs,proto3" json:"update_ts,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RankData) Reset() {
|
||||||
|
*x = RankData{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_v1_pkg_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RankData) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*RankData) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *RankData) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_v1_pkg_proto_msgTypes[0]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use RankData.ProtoReflect.Descriptor instead.
|
||||||
|
func (*RankData) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_v1_pkg_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RankData) GetId() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Id
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RankData) GetScore() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Score
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RankData) GetRank() int32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Rank
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RankData) GetUpdateTs() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.UpdateTs
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_pkg_v1_pkg_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_pkg_v1_pkg_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x10, 0x70, 0x6b, 0x67, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x6b, 0x67, 0x2e, 0x70, 0x72, 0x6f,
|
||||||
|
0x74, 0x6f, 0x12, 0x07, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x22, 0x61, 0x0a, 0x08, 0x52,
|
||||||
|
0x61, 0x6e, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
||||||
|
0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65,
|
||||||
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x12, 0x0a,
|
||||||
|
0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x72, 0x61, 0x6e,
|
||||||
|
0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x73, 0x18, 0x04,
|
||||||
|
0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x73, 0x2a, 0x45,
|
||||||
|
0x0a, 0x0a, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08,
|
||||||
|
0x44, 0x49, 0x4e, 0x47, 0x54, 0x41, 0x4c, 0x4b, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x57, 0x45,
|
||||||
|
0x43, 0x48, 0x41, 0x54, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10,
|
||||||
|
0x02, 0x12, 0x07, 0x0a, 0x03, 0x53, 0x4d, 0x53, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x56, 0x4f,
|
||||||
|
0x49, 0x43, 0x45, 0x10, 0x04, 0x42, 0x2b, 0x5a, 0x29, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e,
|
||||||
|
0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x79, 0x66, 0x6c, 0x79, 0x69, 0x6e, 0x67, 0x2f, 0x75, 0x74, 0x69,
|
||||||
|
0x6c, 0x69, 0x74, 0x79, 0x5f, 0x67, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x6b, 0x67, 0x2f,
|
||||||
|
0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_pkg_v1_pkg_proto_rawDescOnce sync.Once
|
||||||
|
file_pkg_v1_pkg_proto_rawDescData = file_pkg_v1_pkg_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_pkg_v1_pkg_proto_rawDescGZIP() []byte {
|
||||||
|
file_pkg_v1_pkg_proto_rawDescOnce.Do(func() {
|
||||||
|
file_pkg_v1_pkg_proto_rawDescData = protoimpl.X.CompressGZIP(file_pkg_v1_pkg_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_pkg_v1_pkg_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_pkg_v1_pkg_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||||||
|
var file_pkg_v1_pkg_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||||
|
var file_pkg_v1_pkg_proto_goTypes = []interface{}{
|
||||||
|
(NoticeType)(0), // 0: package.NoticeType
|
||||||
|
(*RankData)(nil), // 1: package.RankData
|
||||||
|
}
|
||||||
|
var file_pkg_v1_pkg_proto_depIdxs = []int32{
|
||||||
|
0, // [0:0] is the sub-list for method output_type
|
||||||
|
0, // [0:0] is the sub-list for method input_type
|
||||||
|
0, // [0:0] is the sub-list for extension type_name
|
||||||
|
0, // [0:0] is the sub-list for extension extendee
|
||||||
|
0, // [0:0] is the sub-list for field type_name
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { file_pkg_v1_pkg_proto_init() }
|
||||||
|
func file_pkg_v1_pkg_proto_init() {
|
||||||
|
if File_pkg_v1_pkg_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_pkg_v1_pkg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*RankData); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
type x struct{}
|
||||||
|
out := protoimpl.TypeBuilder{
|
||||||
|
File: protoimpl.DescBuilder{
|
||||||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
|
RawDescriptor: file_pkg_v1_pkg_proto_rawDesc,
|
||||||
|
NumEnums: 1,
|
||||||
|
NumMessages: 1,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 0,
|
||||||
|
},
|
||||||
|
GoTypes: file_pkg_v1_pkg_proto_goTypes,
|
||||||
|
DependencyIndexes: file_pkg_v1_pkg_proto_depIdxs,
|
||||||
|
EnumInfos: file_pkg_v1_pkg_proto_enumTypes,
|
||||||
|
MessageInfos: file_pkg_v1_pkg_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_pkg_v1_pkg_proto = out.File
|
||||||
|
file_pkg_v1_pkg_proto_rawDesc = nil
|
||||||
|
file_pkg_v1_pkg_proto_goTypes = nil
|
||||||
|
file_pkg_v1_pkg_proto_depIdxs = nil
|
||||||
|
}
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
package aycache
|
package aycache
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/ayflying/utility_go/package/aycache/drive"
|
"github.com/ayflying/utility_go/pkg/aycache/drive"
|
||||||
|
drive2 "github.com/ayflying/utility_go/pkg/aycache/drive"
|
||||||
"github.com/gogf/gf/v2/os/gcache"
|
"github.com/gogf/gf/v2/os/gcache"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -13,7 +14,7 @@ type Mod struct {
|
|||||||
// return pgk.Cache
|
// return pgk.Cache
|
||||||
//}
|
//}
|
||||||
|
|
||||||
// Deprecated: Use pgk.Cache()
|
// Deprecated:弃用,改用 pgk.Cache()
|
||||||
func New(_name ...string) gcache.Adapter {
|
func New(_name ...string) gcache.Adapter {
|
||||||
|
|
||||||
var cacheAdapterObj gcache.Adapter
|
var cacheAdapterObj gcache.Adapter
|
||||||
@@ -23,11 +24,11 @@ func New(_name ...string) gcache.Adapter {
|
|||||||
}
|
}
|
||||||
switch name {
|
switch name {
|
||||||
case "cache":
|
case "cache":
|
||||||
cacheAdapterObj = NewAdapterMemory()
|
cacheAdapterObj = drive2.NewAdapterMemory()
|
||||||
case "redis":
|
case "redis":
|
||||||
cacheAdapterObj = NewAdapterRedis()
|
cacheAdapterObj = drive2.NewAdapterRedis()
|
||||||
case "file":
|
case "file":
|
||||||
cacheAdapterObj = NewAdapterFile("runtime/cache")
|
cacheAdapterObj = drive2.NewAdapterFile("runtime/cache")
|
||||||
case "es":
|
case "es":
|
||||||
cacheAdapterObj = drive.NewAdapterElasticsearch([]string{"http://127.0.0.1:9200"})
|
cacheAdapterObj = drive.NewAdapterElasticsearch([]string{"http://127.0.0.1:9200"})
|
||||||
}
|
}
|
||||||
83
drivers/db/elasticsearch/elasticsearch.go
Normal file
83
drivers/db/elasticsearch/elasticsearch.go
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
package elasticsearch
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/elastic/go-elasticsearch/v8"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
es *elasticsearch.TypedClient
|
||||||
|
)
|
||||||
|
|
||||||
|
type elastic struct {
|
||||||
|
client *elasticsearch.TypedClient
|
||||||
|
}
|
||||||
|
|
||||||
|
//func (d *Driver) Insert(ctx context.Context, table string, data interface{}, batch ...int) (res sql.Result, err error) {
|
||||||
|
//
|
||||||
|
// return
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// createIndex 创建索引
|
||||||
|
//func (d *Driver) CreateIndex(name string) {
|
||||||
|
//
|
||||||
|
// resp, err := d.client.Indices.
|
||||||
|
// Create(name).
|
||||||
|
// Do(context.Background())
|
||||||
|
// if err != nil {
|
||||||
|
// fmt.Printf("create index failed, err:%v\n", err)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// fmt.Printf("index:%#v\n", resp.Index)
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// indexDocument 索引文档
|
||||||
|
//func (d *Driver) IndexDocument(name string, key string, data interface{}) {
|
||||||
|
//
|
||||||
|
// // 添加文档
|
||||||
|
// resp, err := d.client.Index(name).
|
||||||
|
// Id(key).
|
||||||
|
// Document(data).
|
||||||
|
// Do(context.Background())
|
||||||
|
// if err != nil {
|
||||||
|
// fmt.Printf("indexing document failed, err:%v\n", err)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// fmt.Printf("result:%#v\n", resp.Result)
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// getDocument 获取文档
|
||||||
|
//func (d *Driver) GetDocument(name string, id string) (res json.RawMessage) {
|
||||||
|
// resp, err := d.client.Get(name, id).
|
||||||
|
// Do(context.Background())
|
||||||
|
// if err != nil {
|
||||||
|
// fmt.Printf("get document by id failed, err:%v\n", err)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// fmt.Printf("fileds:%d\n", resp.Source_)
|
||||||
|
// res = resp.Source_
|
||||||
|
// return
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// updateDocument 更新文档
|
||||||
|
//func (d *Driver) UpdateDocument(name string, key string, data interface{}) {
|
||||||
|
//
|
||||||
|
// resp, err := d.client.Update(name, key).
|
||||||
|
// Doc(data). // 使用结构体变量更新
|
||||||
|
// Do(context.Background())
|
||||||
|
// if err != nil {
|
||||||
|
// fmt.Printf("update document failed, err:%v\n", err)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// fmt.Printf("result:%v\n", resp.Result)
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// deleteDocument 删除 document
|
||||||
|
//func (d *Driver) DeleteDocument(name string, key string) {
|
||||||
|
// resp, err := d.client.Delete(name, key).
|
||||||
|
// Do(context.Background())
|
||||||
|
// if err != nil {
|
||||||
|
// fmt.Printf("delete document failed, err:%v\n", err)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// fmt.Printf("result:%v\n", resp.Result)
|
||||||
|
//}
|
||||||
39
drivers/db/elasticsearch/es_open.go
Normal file
39
drivers/db/elasticsearch/es_open.go
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
package elasticsearch
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"github.com/elastic/go-elasticsearch/v8"
|
||||||
|
"github.com/gogf/gf/v2/database/gdb"
|
||||||
|
"github.com/gogf/gf/v2/errors/gcode"
|
||||||
|
"github.com/gogf/gf/v2/errors/gerror"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (d *Driver) Open(config *gdb.ConfigNode) (db *sql.DB, err error) {
|
||||||
|
var (
|
||||||
|
source string
|
||||||
|
underlyingDriverName = "elasticsearch"
|
||||||
|
)
|
||||||
|
source = config.Host
|
||||||
|
|
||||||
|
cfg := elasticsearch.Config{
|
||||||
|
Addresses: []string{
|
||||||
|
config.Host,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
es, err = elasticsearch.NewTypedClient(cfg)
|
||||||
|
//if err != nil {
|
||||||
|
// fmt.Printf("elasticsearch.NewTypedClient failed, err:%v\n", err)
|
||||||
|
// return
|
||||||
|
//}
|
||||||
|
|
||||||
|
if db, err = sql.Open(underlyingDriverName, source); err != nil {
|
||||||
|
err = gerror.WrapCodef(
|
||||||
|
gcode.CodeDbOperationError, err,
|
||||||
|
`sql.Open failed for driver "%s" by source "%s"`, underlyingDriverName, source,
|
||||||
|
)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
47
drivers/db/elasticsearch/load.go
Normal file
47
drivers/db/elasticsearch/load.go
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
package elasticsearch
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/gogf/gf/v2/database/gdb"
|
||||||
|
"github.com/gogf/gf/v2/frame/g"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Driver is the driver for mysql database.
|
||||||
|
type Driver struct {
|
||||||
|
*gdb.Core
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
quoteChar = "`"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
var (
|
||||||
|
err error
|
||||||
|
driverObj = New()
|
||||||
|
driverNames = g.SliceStr{"es", "elasticsearch"}
|
||||||
|
)
|
||||||
|
for _, driverName := range driverNames {
|
||||||
|
if err = gdb.Register(driverName, driverObj); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// New create and returns a driver that implements gdb.Driver, which supports operations for MySQL.
|
||||||
|
func New() gdb.Driver {
|
||||||
|
return &Driver{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// New creates and returns a database object for mysql.
|
||||||
|
// It implements the interface of gdb.Driver for extra database driver installation.
|
||||||
|
func (d *Driver) New(core *gdb.Core, node *gdb.ConfigNode) (res gdb.DB, err error) {
|
||||||
|
res = &Driver{
|
||||||
|
Core: core,
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetChars returns the security char for this type of database.
|
||||||
|
func (d *Driver) GetChars() (charLeft string, charRight string) {
|
||||||
|
return quoteChar, quoteChar
|
||||||
|
}
|
||||||
53
drivers/db/found/found.go
Normal file
53
drivers/db/found/found.go
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
package found
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"github.com/gogf/gf/v2/database/gdb"
|
||||||
|
"github.com/gogf/gf/v2/frame/g"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Driver is the driver for mysql database.
|
||||||
|
type Driver struct {
|
||||||
|
*gdb.Core
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Driver) Open(config *gdb.ConfigNode) (*sql.DB, error) {
|
||||||
|
//TODO implement me
|
||||||
|
panic("implement me")
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
quoteChar = "`"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
var (
|
||||||
|
err error
|
||||||
|
driverObj = New()
|
||||||
|
driverNames = g.SliceStr{"es", "found"}
|
||||||
|
)
|
||||||
|
for _, driverName := range driverNames {
|
||||||
|
if err = gdb.Register(driverName, driverObj); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// New create and returns a driver that implements gdb.Driver, which supports operations for MySQL.
|
||||||
|
func New() gdb.Driver {
|
||||||
|
return &Driver{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// New creates and returns a database object for mysql.
|
||||||
|
// It implements the interface of gdb.Driver for extra database driver installation.
|
||||||
|
func (d *Driver) New(core *gdb.Core, node *gdb.ConfigNode) (res gdb.DB, err error) {
|
||||||
|
res = &Driver{
|
||||||
|
Core: core,
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetChars returns the security char for this type of database.
|
||||||
|
func (d *Driver) GetChars() (charLeft string, charRight string) {
|
||||||
|
return quoteChar, quoteChar
|
||||||
|
}
|
||||||
17
go.mod
17
go.mod
@@ -10,8 +10,10 @@ require (
|
|||||||
github.com/go-pay/gopay v1.5.109
|
github.com/go-pay/gopay v1.5.109
|
||||||
github.com/go-pay/util v0.0.4
|
github.com/go-pay/util v0.0.4
|
||||||
github.com/goccy/go-json v0.10.4
|
github.com/goccy/go-json v0.10.4
|
||||||
github.com/gogf/gf/contrib/config/apollo/v2 v2.8.3
|
github.com/gogf/gf/contrib/config/apollo/v2 v2.9.0
|
||||||
github.com/gogf/gf/v2 v2.8.3
|
github.com/gogf/gf/v2 v2.9.0
|
||||||
|
github.com/google/uuid v1.6.0
|
||||||
|
github.com/gorilla/websocket v1.5.3
|
||||||
github.com/lionsoul2014/ip2region/binding/golang v0.0.0-20241220152942-06eb5c6e8230
|
github.com/lionsoul2014/ip2region/binding/golang v0.0.0-20241220152942-06eb5c6e8230
|
||||||
github.com/minio/minio-go/v7 v7.0.85
|
github.com/minio/minio-go/v7 v7.0.85
|
||||||
github.com/xuri/excelize/v2 v2.9.0
|
github.com/xuri/excelize/v2 v2.9.0
|
||||||
@@ -28,7 +30,6 @@ require (
|
|||||||
github.com/clbanning/mxj/v2 v2.7.0 // indirect
|
github.com/clbanning/mxj/v2 v2.7.0 // indirect
|
||||||
github.com/dustin/go-humanize v1.0.1 // indirect
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
||||||
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
|
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
|
||||||
github.com/emersion/go-imap/v2 v2.0.0-beta.5 // indirect
|
|
||||||
github.com/emirpasic/gods v1.18.1 // indirect
|
github.com/emirpasic/gods v1.18.1 // indirect
|
||||||
github.com/fatih/color v1.18.0 // indirect
|
github.com/fatih/color v1.18.0 // indirect
|
||||||
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
||||||
@@ -41,9 +42,7 @@ require (
|
|||||||
github.com/go-pay/xtime v0.0.2 // indirect
|
github.com/go-pay/xtime v0.0.2 // indirect
|
||||||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
|
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
|
||||||
github.com/golang/protobuf v1.5.2 // indirect
|
github.com/golang/protobuf v1.5.2 // indirect
|
||||||
github.com/google/uuid v1.6.0 // indirect
|
|
||||||
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
|
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
|
||||||
github.com/gorilla/websocket v1.5.3 // indirect
|
|
||||||
github.com/grokify/html-strip-tags-go v0.1.0 // indirect
|
github.com/grokify/html-strip-tags-go v0.1.0 // indirect
|
||||||
github.com/hashicorp/hcl v1.0.0 // indirect
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
||||||
github.com/klauspost/compress v1.17.11 // indirect
|
github.com/klauspost/compress v1.17.11 // indirect
|
||||||
@@ -70,10 +69,10 @@ require (
|
|||||||
github.com/xuri/efp v0.0.0-20240408161823-9ad904a10d6d // indirect
|
github.com/xuri/efp v0.0.0-20240408161823-9ad904a10d6d // indirect
|
||||||
github.com/xuri/nfp v0.0.0-20240318013403-ab9948c2c4a7 // indirect
|
github.com/xuri/nfp v0.0.0-20240318013403-ab9948c2c4a7 // indirect
|
||||||
go.opencensus.io v0.23.0 // indirect
|
go.opencensus.io v0.23.0 // indirect
|
||||||
go.opentelemetry.io/otel v1.28.0 // indirect
|
go.opentelemetry.io/otel v1.32.0 // indirect
|
||||||
go.opentelemetry.io/otel/metric v1.28.0 // indirect
|
go.opentelemetry.io/otel/metric v1.32.0 // indirect
|
||||||
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
|
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
|
||||||
go.opentelemetry.io/otel/trace v1.28.0 // indirect
|
go.opentelemetry.io/otel/trace v1.32.0 // indirect
|
||||||
golang.org/x/crypto v0.33.0 // indirect
|
golang.org/x/crypto v0.33.0 // indirect
|
||||||
golang.org/x/net v0.33.0 // indirect
|
golang.org/x/net v0.33.0 // indirect
|
||||||
golang.org/x/sys v0.30.0 // indirect
|
golang.org/x/sys v0.30.0 // indirect
|
||||||
|
|||||||
37
go.sum
37
go.sum
@@ -77,8 +77,6 @@ github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4b
|
|||||||
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
|
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
|
||||||
github.com/elastic/go-elasticsearch/v8 v8.17.1 h1:bOXChDoCMB4TIwwGqKd031U8OXssmWLT3UrAr9EGs3Q=
|
github.com/elastic/go-elasticsearch/v8 v8.17.1 h1:bOXChDoCMB4TIwwGqKd031U8OXssmWLT3UrAr9EGs3Q=
|
||||||
github.com/elastic/go-elasticsearch/v8 v8.17.1/go.mod h1:MVJCtL+gJJ7x5jFeUmA20O7rvipX8GcQmo5iBcmaJn4=
|
github.com/elastic/go-elasticsearch/v8 v8.17.1/go.mod h1:MVJCtL+gJJ7x5jFeUmA20O7rvipX8GcQmo5iBcmaJn4=
|
||||||
github.com/emersion/go-imap/v2 v2.0.0-beta.5 h1:H3858DNmBuXyMK1++YrQIRdpKE1MwBc+ywBtg3n+0wA=
|
|
||||||
github.com/emersion/go-imap/v2 v2.0.0-beta.5/go.mod h1:BZTFHsS1hmgBkFlHqbxGLXk2hnRqTItUgwjSSCsYNAk=
|
|
||||||
github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=
|
github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=
|
||||||
github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ=
|
github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ=
|
||||||
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
|
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
|
||||||
@@ -124,10 +122,10 @@ github.com/go-pay/xtime v0.0.2/go.mod h1:W1yRbJaSt4CSBcdAtLBQ8xajiN/Pl5hquGczUcU
|
|||||||
github.com/goccy/go-json v0.10.4 h1:JSwxQzIqKfmFX1swYPpUThQZp/Ka4wzJdK0LWVytLPM=
|
github.com/goccy/go-json v0.10.4 h1:JSwxQzIqKfmFX1swYPpUThQZp/Ka4wzJdK0LWVytLPM=
|
||||||
github.com/goccy/go-json v0.10.4/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M=
|
github.com/goccy/go-json v0.10.4/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M=
|
||||||
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
|
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
|
||||||
github.com/gogf/gf/contrib/config/apollo/v2 v2.8.3 h1:KU51l3uaU7Mxq+FSoLjROyDERUGKCMo4qExxPEgA7KQ=
|
github.com/gogf/gf/contrib/config/apollo/v2 v2.9.0 h1:BewnDc3gq2iqYzPH56FtOelmT9F9WcAm6nnlOVgw3J8=
|
||||||
github.com/gogf/gf/contrib/config/apollo/v2 v2.8.3/go.mod h1:Uo6f/Pr6zVHSbdP2Lj9iToEMuh/TzU/bE2E5SJlquEk=
|
github.com/gogf/gf/contrib/config/apollo/v2 v2.9.0/go.mod h1:uNjaJcnMvMl7bkcoL0amxwcrOM+Q5XGADKKwKTY+8MY=
|
||||||
github.com/gogf/gf/v2 v2.8.3 h1:h9Px3lqJnnH6It0AqHRz4/1hx0JmvaSf1IvUir5x1rA=
|
github.com/gogf/gf/v2 v2.9.0 h1:semN5Q5qGjDQEv4620VzxcJzJlSD07gmyJ9Sy9zfbHk=
|
||||||
github.com/gogf/gf/v2 v2.8.3/go.mod h1:n++xPYGUUMadw6IygLEgGZqc6y6DRLrJKg5kqCrPLWY=
|
github.com/gogf/gf/v2 v2.9.0/go.mod h1:sWGQw+pLILtuHmbOxoe0D+0DdaXxbleT57axOLH2vKI=
|
||||||
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
|
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
|
||||||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
|
||||||
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
|
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
|
||||||
@@ -302,8 +300,8 @@ github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
|
|||||||
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
|
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
|
||||||
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
|
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
|
||||||
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||||
github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=
|
github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
|
||||||
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
|
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
|
||||||
github.com/rs/xid v1.6.0 h1:fV591PaemRlL6JfRxGDEPl69wICngIQ3shQtzfy2gxU=
|
github.com/rs/xid v1.6.0 h1:fV591PaemRlL6JfRxGDEPl69wICngIQ3shQtzfy2gxU=
|
||||||
github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0=
|
github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0=
|
||||||
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
|
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
|
||||||
@@ -331,8 +329,8 @@ github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81P
|
|||||||
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
|
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
|
||||||
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
|
||||||
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||||
github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=
|
github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=
|
||||||
github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=
|
github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=
|
||||||
github.com/tevid/gohamcrest v1.1.1 h1:ou+xSqlIw1xfGTg1uq1nif/htZ2S3EzRqLm2BP+tYU0=
|
github.com/tevid/gohamcrest v1.1.1 h1:ou+xSqlIw1xfGTg1uq1nif/htZ2S3EzRqLm2BP+tYU0=
|
||||||
@@ -359,14 +357,14 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
|
|||||||
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
|
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
|
||||||
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
|
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
|
||||||
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
|
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
|
||||||
go.opentelemetry.io/otel v1.28.0 h1:/SqNcYk+idO0CxKEUOtKQClMK/MimZihKYMruSMViUo=
|
go.opentelemetry.io/otel v1.32.0 h1:WnBN+Xjcteh0zdk01SVqV55d/m62NJLJdIyb4y/WO5U=
|
||||||
go.opentelemetry.io/otel v1.28.0/go.mod h1:q68ijF8Fc8CnMHKyzqL6akLO46ePnjkgfIMIjUIX9z4=
|
go.opentelemetry.io/otel v1.32.0/go.mod h1:00DCVSB0RQcnzlwyTfqtxSm+DRr9hpYrHjNGiBHVQIg=
|
||||||
go.opentelemetry.io/otel/metric v1.28.0 h1:f0HGvSl1KRAU1DLgLGFjrwVyismPlnuU6JD6bOeuA5Q=
|
go.opentelemetry.io/otel/metric v1.32.0 h1:xV2umtmNcThh2/a/aCP+h64Xx5wsj8qqnkYZktzNa0M=
|
||||||
go.opentelemetry.io/otel/metric v1.28.0/go.mod h1:Fb1eVBFZmLVTMb6PPohq3TO9IIhUisDsbJoL/+uQW4s=
|
go.opentelemetry.io/otel/metric v1.32.0/go.mod h1:jH7CIbbK6SH2V2wE16W05BHCtIDzauciCRLoc/SyMv8=
|
||||||
go.opentelemetry.io/otel/sdk v1.24.0 h1:YMPPDNymmQN3ZgczicBY3B6sf9n62Dlj9pWD3ucgoDw=
|
go.opentelemetry.io/otel/sdk v1.32.0 h1:RNxepc9vK59A8XsgZQouW8ue8Gkb4jpWtJm9ge5lEG4=
|
||||||
go.opentelemetry.io/otel/sdk v1.24.0/go.mod h1:KVrIYw6tEubO9E96HQpcmpTKDVn9gdv35HoYiQWGDFg=
|
go.opentelemetry.io/otel/sdk v1.32.0/go.mod h1:LqgegDBjKMmb2GC6/PrTnteJG39I8/vJCAP9LlJXEjU=
|
||||||
go.opentelemetry.io/otel/trace v1.28.0 h1:GhQ9cUuQGmNDd5BTCP2dAvv75RdMxEfTmYejp+lkx9g=
|
go.opentelemetry.io/otel/trace v1.32.0 h1:WIC9mYrXf8TmY/EXuULKc8hR17vE+Hjv2cssQDe03fM=
|
||||||
go.opentelemetry.io/otel/trace v1.28.0/go.mod h1:jPyXzNPg6da9+38HEwElrQiHlVMTnVfM3/yv2OlIHaI=
|
go.opentelemetry.io/otel/trace v1.32.0/go.mod h1:+i4rkvCraA+tG6AzwloGaCtkx53Fa+L+V8e9a7YvhT8=
|
||||||
go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
|
go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
|
||||||
go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
|
go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
|
||||||
go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo=
|
go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo=
|
||||||
@@ -701,8 +699,9 @@ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ
|
|||||||
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk=
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk=
|
||||||
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk=
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
|
|
||||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
|
||||||
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
|
||||||
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
|
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
|
||||||
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df h1:n7WqCuqOuCbNr617RXOY0AWRXxgwEyPp2z+p0+hgMuE=
|
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df h1:n7WqCuqOuCbNr617RXOY0AWRXxgwEyPp2z+p0+hgMuE=
|
||||||
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df/go.mod h1:LRQQ+SO6ZHR7tOkpBDuZnXENFzX8qRjMDMyPD6BRkCw=
|
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df/go.mod h1:LRQQ+SO6ZHR7tOkpBDuZnXENFzX8qRjMDMyPD6BRkCw=
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
package package;
|
package package;
|
||||||
|
|
||||||
option go_package = "github.com/ayflying/utility_go/api/pgk/v1";
|
option go_package = "github.com/ayflying/utility_go/api/pkg/v1";
|
||||||
|
|
||||||
|
|
||||||
// 定义 NoticeType 枚举
|
// 定义 NoticeType 枚举
|
||||||
@@ -1,119 +0,0 @@
|
|||||||
package drive
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"github.com/gogf/gf/v2/container/gvar"
|
|
||||||
"github.com/gogf/gf/v2/os/gcache"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type AdapterElasticsearch struct {
|
|
||||||
//FilePath string
|
|
||||||
Addresses []string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Set(ctx context.Context, key interface{}, value interface{}, duration time.Duration) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) SetMap(ctx context.Context, data map[interface{}]interface{}, duration time.Duration) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) SetIfNotExist(ctx context.Context, key interface{}, value interface{}, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) SetIfNotExistFunc(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) SetIfNotExistFuncLock(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Get(ctx context.Context, key interface{}) (*gvar.Var, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) GetOrSet(ctx context.Context, key interface{}, value interface{}, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) GetOrSetFunc(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) GetOrSetFuncLock(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Contains(ctx context.Context, key interface{}) (bool, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Size(ctx context.Context) (size int, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Data(ctx context.Context) (data map[interface{}]interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Keys(ctx context.Context) (keys []interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Values(ctx context.Context) (values []interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Update(ctx context.Context, key interface{}, value interface{}) (oldValue *gvar.Var, exist bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) UpdateExpire(ctx context.Context, key interface{}, duration time.Duration) (oldDuration time.Duration, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) GetExpire(ctx context.Context, key interface{}) (time.Duration, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Remove(ctx context.Context, keys ...interface{}) (lastValue *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Clear(ctx context.Context) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterElasticsearch) Close(ctx context.Context) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewAdapterElasticsearch(addresses []string) gcache.Adapter {
|
|
||||||
return &AdapterElasticsearch{
|
|
||||||
Addresses: addresses,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,134 +0,0 @@
|
|||||||
package aycache
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"github.com/gogf/gf/v2/container/gvar"
|
|
||||||
"github.com/gogf/gf/v2/os/gcache"
|
|
||||||
"github.com/gogf/gf/v2/os/gfile"
|
|
||||||
"github.com/gogf/gf/v2/util/gconv"
|
|
||||||
"path"
|
|
||||||
"strings"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type AdapterFile struct {
|
|
||||||
FilePath string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Set(ctx context.Context, key interface{}, value interface{}, duration time.Duration) error {
|
|
||||||
//defer a.handleLruKey(ctx, key)
|
|
||||||
//expireTime := a.getInternalExpire(duration)
|
|
||||||
//a.data.Set(key, memoryDataItem{
|
|
||||||
// a: value,
|
|
||||||
// a: expireTime,
|
|
||||||
//})
|
|
||||||
//c.eventList.PushBack(&adapterMemoryEvent{
|
|
||||||
// k: key,
|
|
||||||
// e: expireTime,
|
|
||||||
//})
|
|
||||||
|
|
||||||
arr := strings.Split(":", gconv.String(key))
|
|
||||||
fileName := path.Join(arr...)
|
|
||||||
return gfile.PutBytes(fileName, gconv.Bytes(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) SetMap(ctx context.Context, data map[interface{}]interface{}, duration time.Duration) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) SetIfNotExist(ctx context.Context, key interface{}, value interface{}, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) SetIfNotExistFunc(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) SetIfNotExistFuncLock(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Get(ctx context.Context, key interface{}) (*gvar.Var, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) GetOrSet(ctx context.Context, key interface{}, value interface{}, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) GetOrSetFunc(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) GetOrSetFuncLock(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Contains(ctx context.Context, key interface{}) (bool, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Size(ctx context.Context) (size int, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Data(ctx context.Context) (data map[interface{}]interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Keys(ctx context.Context) (keys []interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Values(ctx context.Context) (values []interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Update(ctx context.Context, key interface{}, value interface{}) (oldValue *gvar.Var, exist bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) UpdateExpire(ctx context.Context, key interface{}, duration time.Duration) (oldDuration time.Duration, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) GetExpire(ctx context.Context, key interface{}) (time.Duration, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Remove(ctx context.Context, keys ...interface{}) (lastValue *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Clear(ctx context.Context) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterFile) Close(ctx context.Context) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewAdapterFile(filePath string) gcache.Adapter {
|
|
||||||
return &AdapterFile{
|
|
||||||
FilePath: filePath,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
package aycache
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/gogf/gf/v2/os/gcache"
|
|
||||||
)
|
|
||||||
|
|
||||||
var adapterMemoryClient = gcache.New()
|
|
||||||
|
|
||||||
// NewAdapterMemory 创建并返回一个新的内存缓存对象。
|
|
||||||
func NewAdapterMemory() gcache.Adapter {
|
|
||||||
//if adapterMemoryClient == nil {
|
|
||||||
// adapterMemoryClient = gcache.New()
|
|
||||||
//}
|
|
||||||
return adapterMemoryClient
|
|
||||||
}
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
package aycache
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"github.com/gogf/gf/v2/container/gvar"
|
|
||||||
"github.com/gogf/gf/v2/database/gredis"
|
|
||||||
"github.com/gogf/gf/v2/os/gcache"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
// AdapterRedis is the gcache adapter implements using Redis server.
|
|
||||||
type AdapterMemcached struct {
|
|
||||||
//redis *gredis.Redis
|
|
||||||
//client
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Set(ctx context.Context, key interface{}, value interface{}, duration time.Duration) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) SetMap(ctx context.Context, data map[interface{}]interface{}, duration time.Duration) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) SetIfNotExist(ctx context.Context, key interface{}, value interface{}, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) SetIfNotExistFunc(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) SetIfNotExistFuncLock(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (ok bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Get(ctx context.Context, key interface{}) (*gvar.Var, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) GetOrSet(ctx context.Context, key interface{}, value interface{}, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) GetOrSetFunc(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) GetOrSetFuncLock(ctx context.Context, key interface{}, f gcache.Func, duration time.Duration) (result *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Contains(ctx context.Context, key interface{}) (bool, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Size(ctx context.Context) (size int, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Data(ctx context.Context) (data map[interface{}]interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Keys(ctx context.Context) (keys []interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Values(ctx context.Context) (values []interface{}, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Update(ctx context.Context, key interface{}, value interface{}) (oldValue *gvar.Var, exist bool, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) UpdateExpire(ctx context.Context, key interface{}, duration time.Duration) (oldDuration time.Duration, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) GetExpire(ctx context.Context, key interface{}) (time.Duration, error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Remove(ctx context.Context, keys ...interface{}) (lastValue *gvar.Var, err error) {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Clear(ctx context.Context) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a AdapterMemcached) Close(ctx context.Context) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewAdapterRedis creates and returns a new memory cache object.
|
|
||||||
func NewAdapterMemcached(redis *gredis.Redis) gcache.Adapter {
|
|
||||||
return &AdapterMemcached{}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
package aycache
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/gogf/gf/v2/frame/g"
|
|
||||||
"github.com/gogf/gf/v2/os/gcache"
|
|
||||||
)
|
|
||||||
|
|
||||||
var adapterRedisClient gcache.Adapter
|
|
||||||
var adapterRedisCache = gcache.New()
|
|
||||||
|
|
||||||
func NewAdapterRedis() gcache.Adapter {
|
|
||||||
|
|
||||||
if adapterRedisClient == nil {
|
|
||||||
adapterRedisClient = gcache.NewAdapterRedis(g.Redis("default"))
|
|
||||||
adapterRedisCache.SetAdapter(adapterRedisClient)
|
|
||||||
}
|
|
||||||
return adapterRedisCache
|
|
||||||
}
|
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Deprecated: 使用新的 pkg.Pay()
|
||||||
package pay
|
package pay
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@@ -27,6 +28,7 @@ type WechatPay struct {
|
|||||||
PrivateKey string
|
PrivateKey string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Deprecated: pkg.Pay().Wechat()
|
||||||
func Wechat() *WechatPay {
|
func Wechat() *WechatPay {
|
||||||
var pay = &WechatPay{}
|
var pay = &WechatPay{}
|
||||||
var err error
|
var err error
|
||||||
|
|||||||
@@ -1,395 +0,0 @@
|
|||||||
package rank
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/gogf/gf/v2/database/gredis"
|
|
||||||
"github.com/gogf/gf/v2/frame/g"
|
|
||||||
"github.com/gogf/gf/v2/os/gctx"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
ctx = gctx.New()
|
|
||||||
)
|
|
||||||
|
|
||||||
type Mod struct {
|
|
||||||
}
|
|
||||||
|
|
||||||
type F64CountRank struct {
|
|
||||||
name string // 排行榜名
|
|
||||||
updateTs string // 更新时间key
|
|
||||||
}
|
|
||||||
|
|
||||||
type RankData struct {
|
|
||||||
Id int64
|
|
||||||
Score int64
|
|
||||||
Rank int32
|
|
||||||
UpdateTs int64
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated:Use pgk.Rank()
|
|
||||||
func New() *Mod {
|
|
||||||
return &Mod{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s *Mod) Load() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// CreateF64CountRank 创建一个排行榜实例
|
|
||||||
// 参数:
|
|
||||||
//
|
|
||||||
// name: 排行榜的名称,通常代表一个赛季
|
|
||||||
//
|
|
||||||
// 返回值:
|
|
||||||
//
|
|
||||||
// *F64CountRank: 返回一个指向新创建的F64CountRank实例的指针
|
|
||||||
//
|
|
||||||
// Deprecated:Use pgk.Rank().CreateF64CountRank(fmt.Sprintf("rank:%v", 1))
|
|
||||||
func (s *Mod) CreateF64CountRank(name string) *F64CountRank {
|
|
||||||
// 初始化F64CountRank实例的name和updateTs字段
|
|
||||||
// name字段用于标识排行榜的名称,格式为"rank:<name>:score"
|
|
||||||
// updateTs字段用于标识排行榜的更新时间,格式为"rank:<name>:updateTs"
|
|
||||||
return &F64CountRank{
|
|
||||||
name: fmt.Sprintf("rank:%s:score", name),
|
|
||||||
updateTs: fmt.Sprintf("rank:%s:updateTs", name),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// IncrScore 对指定ID的分数进行增加,并返回增加后的当前分数。
|
|
||||||
// 该方法首先更新成员的更新时间戳,然后增加成员的分数。
|
|
||||||
//
|
|
||||||
// 参数:
|
|
||||||
//
|
|
||||||
// id - 要操作的成员ID。
|
|
||||||
// score - 要增加的分数。
|
|
||||||
//
|
|
||||||
// 返回值:
|
|
||||||
//
|
|
||||||
// curScore - 增加分数后的当前分数。
|
|
||||||
// err - 操作过程中可能发生的错误。
|
|
||||||
//
|
|
||||||
// IncrScore 先改redis再改cache
|
|
||||||
//
|
|
||||||
// @Description:
|
|
||||||
// @receiver r
|
|
||||||
// @param id
|
|
||||||
// @param score
|
|
||||||
// @return curScore
|
|
||||||
// @return err
|
|
||||||
func (r *F64CountRank) IncrScore(id int64, score int64) (curScore float64, err error) {
|
|
||||||
// 记录当前时间戳,用于更新成员的最新活动时间。
|
|
||||||
now := time.Now().UnixMilli()
|
|
||||||
|
|
||||||
// 将成员的更新时间戳加入到Redis的有序集合中,确保成员的排序依据是最新的活动时间。
|
|
||||||
_, err = g.Redis().ZAdd(ctx, r.updateTs, &gredis.ZAddOption{}, gredis.ZAddMember{
|
|
||||||
Score: float64(now),
|
|
||||||
Member: id,
|
|
||||||
})
|
|
||||||
|
|
||||||
// 增加成员的分数,并返回增加后的当前分数。
|
|
||||||
curScore, err = g.Redis().ZIncrBy(ctx, r.name, float64(score), id)
|
|
||||||
|
|
||||||
//如果分数小于0,则删除
|
|
||||||
if curScore <= 0 {
|
|
||||||
err = r.DelScore(id)
|
|
||||||
}
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// todo暂时未使用
|
|
||||||
func (r *F64CountRank) GetCount() {
|
|
||||||
count, _ := g.Redis().ZCard(ctx, r.name)
|
|
||||||
if count > 9999 {
|
|
||||||
//删除超过9999的数据
|
|
||||||
g.Redis().ZRemRangeByRank(ctx, r.name, 0, -9999)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Delete 删除当前排行榜
|
|
||||||
// 该方法通过删除Redis中与排行榜相关的键来清除排行榜信息
|
|
||||||
func (r *F64CountRank) Delete() {
|
|
||||||
// 删除排行榜数据键
|
|
||||||
_, err := g.Redis().Del(ctx, r.name)
|
|
||||||
if err != nil {
|
|
||||||
// 如果删除失败,记录错误日志
|
|
||||||
g.Log().Error(ctx, "排行榜删除失败:%v", err)
|
|
||||||
}
|
|
||||||
// 删除排行榜更新时间键
|
|
||||||
_, err = g.Redis().Del(ctx, r.updateTs)
|
|
||||||
if err != nil {
|
|
||||||
// 如果删除失败,记录错误日志
|
|
||||||
g.Log().Error(ctx, "排行榜删除失败:%v", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// DelScore 删除当前分数
|
|
||||||
//
|
|
||||||
// 该方法从更新时间有序集合和排名有序集合中移除指定的id。
|
|
||||||
// 这通常用于从排行榜中删除一个条目,同时确保其在更新时间集合中的对应记录也被清除。
|
|
||||||
//
|
|
||||||
// @Description: 从更新时间和排名集合中移除指定id
|
|
||||||
// @receiver r 接收者为F64CountRank类型的实例
|
|
||||||
// @param id 要从集合中移除的条目的ID
|
|
||||||
// @return err 可能发生的错误,如果操作成功,err为nil
|
|
||||||
func (r *F64CountRank) DelScore(id int64) (err error) {
|
|
||||||
// 从更新时间集合中移除id
|
|
||||||
_, err = g.Redis().ZRem(ctx, r.updateTs, id)
|
|
||||||
// 从排名集合中移除id
|
|
||||||
_, err = g.Redis().ZRem(ctx, r.name, id)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// DelByRank 根据排名范围删除元素。
|
|
||||||
// 该方法使用了Redis的有序集合数据结构,通过ZRange和ZRemRangeByRank命令来实现。
|
|
||||||
// 参数start和stop定义了要删除的排名范围,从start到stop(包括start和stop)。
|
|
||||||
// 返回可能的错误。
|
|
||||||
func (r *F64CountRank) DelByRank(start int64, stop int64) (err error) {
|
|
||||||
// 初始化一个空的int64切片,用于存储指定排名范围内的元素。
|
|
||||||
var members []int64
|
|
||||||
|
|
||||||
// 使用Redis的ZRange命令获取指定排名范围内的元素。
|
|
||||||
// 选项Rev设置为true,表示按照分数从高到低的顺序返回元素。
|
|
||||||
get, err := g.Redis().ZRange(ctx, r.name, start, stop,
|
|
||||||
gredis.ZRangeOption{
|
|
||||||
Rev: true,
|
|
||||||
})
|
|
||||||
|
|
||||||
// 使用Scan方法将获取到的元素扫描到members切片中。
|
|
||||||
err = get.Scan(&members)
|
|
||||||
// 如果扫描过程中出现错误,直接返回错误。
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// 遍历members切片,对于每个元素,使用ZRem命令从更新时间集合中删除对应的成员。
|
|
||||||
for _, member := range members {
|
|
||||||
_, err = g.Redis().ZRem(ctx, r.updateTs, member)
|
|
||||||
// 忽略ZRem操作的错误,因为即使元素不存在,ZRem也不会返回错误。
|
|
||||||
}
|
|
||||||
|
|
||||||
// 使用ZRemRangeByRank命令从有序集合中删除指定排名范围内的元素。
|
|
||||||
_, err = g.Redis().ZRemRangeByRank(ctx, r.name, start, stop)
|
|
||||||
// 返回可能的错误。
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// updateScore 更新给定ID的分数值。
|
|
||||||
//
|
|
||||||
// 参数:
|
|
||||||
//
|
|
||||||
// id - 需要更新分数的实体ID。
|
|
||||||
// score - 新的分数值。
|
|
||||||
//
|
|
||||||
// 返回值:
|
|
||||||
//
|
|
||||||
// error - 更新过程中可能出现的错误。
|
|
||||||
//
|
|
||||||
// 该方法首先记录当前时间作为更新时间戳,然后将新的分数值添加到排名系统中。
|
|
||||||
// 使用Redis的ZAdd方法来确保操作的原子性和一致性。
|
|
||||||
// UpdateScore 更新分数
|
|
||||||
//
|
|
||||||
// @Description:
|
|
||||||
// @receiver r
|
|
||||||
// @param id
|
|
||||||
// @param score
|
|
||||||
// @return err
|
|
||||||
func (r *F64CountRank) UpdateScore(id int64, score int64) (err error) {
|
|
||||||
// 获取当前时间戳,以毫秒为单位。
|
|
||||||
now := time.Now().UnixMilli()
|
|
||||||
|
|
||||||
// 向更新时间戳的有序集合中添加新的成员和分数,成员为id,分数为当前时间戳。
|
|
||||||
_, err = g.Redis().ZAdd(ctx, r.updateTs, &gredis.ZAddOption{}, gredis.ZAddMember{
|
|
||||||
Score: float64(now),
|
|
||||||
Member: id,
|
|
||||||
})
|
|
||||||
|
|
||||||
// 向排名的有序集合中添加新的成员和分数,成员为id,分数为传入的score。
|
|
||||||
_, err = g.Redis().ZAdd(ctx, r.name, &gredis.ZAddOption{}, gredis.ZAddMember{
|
|
||||||
Score: float64(score),
|
|
||||||
Member: id,
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
//// GetRankInfosV1 获取0~count跳记录
|
|
||||||
//func (r *F64CountRank) getRankInfosV1(offset, count int) (list []*RankInfo, err error) {
|
|
||||||
// /*
|
|
||||||
// 找到maxRank的玩家的分数
|
|
||||||
// 根据分数拿到所有分数大于等于minScore玩家
|
|
||||||
// 将这些玩家进行排序
|
|
||||||
// 返回maxRank条目
|
|
||||||
// */
|
|
||||||
// var (
|
|
||||||
// minScore int64 // 最低分
|
|
||||||
// maxScore int64
|
|
||||||
// //zl []redis2.Z
|
|
||||||
// zl []gredis.ZAddMember
|
|
||||||
// length int
|
|
||||||
// )
|
|
||||||
// // 拉取所有玩家的更新时间戳
|
|
||||||
// zl, err = g.Redis().ZRemRangeByScore(ctx,r.updateTs, strconv.Itoa(0), strconv.Itoa(-1))//ZRemRangeByScore(ctx, r.updateTs, strconv.Itoa(0), strconv.Itoa(-1))
|
|
||||||
// //zl, err = rdbV1.ZRangeWithScores(ctx, r.updateTs, 0, -1).Result()
|
|
||||||
// if err != nil {
|
|
||||||
// g.Log().Errorf(ctx, "redis err:%v", err)
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
// if len(zl) == 0 {
|
|
||||||
// //logs.Infof("empty list")
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
// tsl := make(map[int64]int64, len(zl))
|
|
||||||
// for _, z := range zl {
|
|
||||||
// id := gconv.Int64(z.Member) //pgk.InterfaceToNumber[uint64](z.Member)
|
|
||||||
// tsl[id] = int64(z.Score)
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// // 找到maxRank的玩家的分数
|
|
||||||
// zl, err = rdbV1.ZRevRangeByScoreWithScores(ctx, r.name, &redis2.ZRangeBy{
|
|
||||||
// Min: "0",
|
|
||||||
// Max: strconv.Itoa(math.MaxInt),
|
|
||||||
// Offset: 0,
|
|
||||||
// Count: int64(count),
|
|
||||||
// }).Result()
|
|
||||||
// if err != nil {
|
|
||||||
// g.Log().Errorf(ctx, "redis err:%v", err)
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
// if len(zl) == 0 {
|
|
||||||
// g.Log().Info(ctx, "empty list")
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
// minScore = int64(zl[len(zl)-1].Score)
|
|
||||||
// maxScore = int64(zl[0].Score)
|
|
||||||
// // 根据分数拿到所有分数大于等于minScore玩家
|
|
||||||
// zl, err = rdbV1.ZRevRangeByScoreWithScores(ctx, r.name, &redis2.ZRangeBy{
|
|
||||||
// Min: fmt.Sprintf("%v", minScore),
|
|
||||||
// Max: fmt.Sprintf("%v", maxScore),
|
|
||||||
// }).Result()
|
|
||||||
// if err != nil {
|
|
||||||
// g.Log().Errorf(ctx, "redis err:%v", err)
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
// if len(zl) == 0 {
|
|
||||||
// g.Log().Info(ctx, "empty list")
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
// //如果开始已经大于等于总长度,就返回空
|
|
||||||
// if offset >= len(zl) {
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
// list = make([]*RankInfo, len(zl))
|
|
||||||
// for i, z := range zl {
|
|
||||||
// id := gconv.Int64(z.Member)
|
|
||||||
// list[i] = &RankInfo{
|
|
||||||
// Id: id,
|
|
||||||
// Score: int64(z.Score),
|
|
||||||
// UpdateTs: tsl[id],
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // 将这些玩家进行排序
|
|
||||||
// sort.Slice(list, func(i, j int) bool {
|
|
||||||
// if list[i].Score != list[j].Score {
|
|
||||||
// return list[i].Score > list[j].Score
|
|
||||||
// } else {
|
|
||||||
// return list[i].UpdateTs < list[j].UpdateTs
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// length = len(list)
|
|
||||||
// if length > count {
|
|
||||||
// length = count
|
|
||||||
// }
|
|
||||||
// for i := range list {
|
|
||||||
// info := list[i]
|
|
||||||
// info.Rank = i + 1
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// list = list[offset:length]
|
|
||||||
// return
|
|
||||||
//}
|
|
||||||
|
|
||||||
// GetRankInfosNotTs 获取0~count跳记录 不根据更新时间来
|
|
||||||
// 该方法使用ZRange命令从Redis中获取指定范围的排名信息,不考虑更新时间
|
|
||||||
// 参数:
|
|
||||||
//
|
|
||||||
// offset - 获取记录的起始偏移量
|
|
||||||
// count - 获取记录的数量
|
|
||||||
//
|
|
||||||
// 返回值:
|
|
||||||
//
|
|
||||||
// list - 排名信息列表
|
|
||||||
// err - 错误信息,如果执行过程中遇到错误
|
|
||||||
func (r *F64CountRank) GetRankInfosNotTs(offset, count int) (list []*RankData, err error) {
|
|
||||||
// 初始化存储成员ID的切片
|
|
||||||
var members []int64
|
|
||||||
|
|
||||||
// 使用Redis的ZRange命令获取指定范围的成员ID
|
|
||||||
// 参数Rev设为true以从高分到低分获取成员
|
|
||||||
get, err := g.Redis().ZRange(ctx, r.name, int64(offset), int64(count),
|
|
||||||
gredis.ZRangeOption{
|
|
||||||
Rev: true,
|
|
||||||
}) //.ScanSlice(&members)
|
|
||||||
|
|
||||||
// 将获取的结果扫描到members切片中
|
|
||||||
err = get.Scan(&members)
|
|
||||||
// 如果发生错误,记录日志并返回
|
|
||||||
if err != nil {
|
|
||||||
//logs.Withf("redis err:%v", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// 根据获取的成员ID数量初始化排名信息列表
|
|
||||||
list = make([]*RankData, len(members))
|
|
||||||
for i := range members {
|
|
||||||
// 获取当前成员ID
|
|
||||||
id := members[i]
|
|
||||||
// 使用成员ID获取排名信息,不考虑更新时间
|
|
||||||
list[i] = r.GetIdRankNotTs(id)
|
|
||||||
}
|
|
||||||
// 返回排名信息列表和可能的错误
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetIdRankNotTs 获取指定id的当前排名
|
|
||||||
// 该方法从Redis的有序集合中查询指定id的分数和排名信息,不考虑时间戳
|
|
||||||
// 参数:
|
|
||||||
//
|
|
||||||
// id - 需要查询排名的id
|
|
||||||
//
|
|
||||||
// 返回值:
|
|
||||||
//
|
|
||||||
// rankInfo - 包含id的分数和排名信息的指针,如果没有找到,则返回nil
|
|
||||||
func (r *F64CountRank) GetIdRankNotTs(id int64) (rankInfo *RankData) {
|
|
||||||
// 初始化rankInfo结构体,设置id,其他字段将通过查询填充
|
|
||||||
rankInfo = &RankData{Id: id}
|
|
||||||
|
|
||||||
// 查询有序集合中指定id的分数
|
|
||||||
score, err := g.Redis().ZScore(ctx, r.name, id)
|
|
||||||
if err != nil {
|
|
||||||
// 如果发生错误,直接返回,rankInfo为初始化状态,Id已设置,其他字段为零值
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// 将分数转换为int64类型并更新rankInfo
|
|
||||||
rankInfo.Score = int64(score)
|
|
||||||
|
|
||||||
// 如果分数为0,直接返回,表示该id的分数为0,没有进一步查询排名的必要
|
|
||||||
if score == 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// 查询有序集合中指定id的排名
|
|
||||||
rank, err := g.Redis().ZRevRank(ctx, r.name, id)
|
|
||||||
if err != nil {
|
|
||||||
// 如果发生错误,直接返回,rankInfo中仅分数有效,排名信息未更新
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// 更新rankInfo中的排名信息,排名从0开始,所以需要加1以符合人类的计数习惯
|
|
||||||
rankInfo.Rank = int32(rank) + 1
|
|
||||||
|
|
||||||
// 返回包含完整排名信息的rankInfo指针
|
|
||||||
return rankInfo
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
package aycache
|
package aycache
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/ayflying/utility_go/package/aycache/drive"
|
"github.com/ayflying/utility_go/pkg/aycache/drive"
|
||||||
drive2 "github.com/ayflying/utility_go/pkg/aycache/drive"
|
drive2 "github.com/ayflying/utility_go/pkg/aycache/drive"
|
||||||
"github.com/gogf/gf/v2/os/gcache"
|
"github.com/gogf/gf/v2/os/gcache"
|
||||||
)
|
)
|
||||||
|
|||||||
189
pkg/config/config.go
Normal file
189
pkg/config/config.go
Normal file
@@ -0,0 +1,189 @@
|
|||||||
|
package config
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/apolloconfig/agollo/v4"
|
||||||
|
apolloConfig "github.com/apolloconfig/agollo/v4/env/config"
|
||||||
|
"github.com/apolloconfig/agollo/v4/storage"
|
||||||
|
"github.com/gogf/gf/contrib/config/apollo/v2"
|
||||||
|
"github.com/gogf/gf/v2/container/gvar"
|
||||||
|
"github.com/gogf/gf/v2/encoding/gjson"
|
||||||
|
"github.com/gogf/gf/v2/frame/g"
|
||||||
|
"github.com/gogf/gf/v2/os/gfile"
|
||||||
|
"github.com/gogf/gf/v2/os/gres"
|
||||||
|
"github.com/gogf/gf/v2/text/gstr"
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
//ApolloCfg *apolloConfig.AppConfig
|
||||||
|
ApolloCfg *apollo.Config
|
||||||
|
ApolloListener []string
|
||||||
|
Item2Obj = map[string]Load{}
|
||||||
|
)
|
||||||
|
|
||||||
|
// load接口定义了Load方法,用于加载数据
|
||||||
|
type Load interface {
|
||||||
|
Load(cfg ...string)
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewV1() *Cfg {
|
||||||
|
return &Cfg{}
|
||||||
|
}
|
||||||
|
|
||||||
|
type Cfg struct {
|
||||||
|
Lock sync.Mutex
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Cfg) GetDbFile(name string) (res *g.Var, err error) {
|
||||||
|
get2, err := g.Model("game_config").
|
||||||
|
Where("name", name).Master().Value("data")
|
||||||
|
err = get2.Scan(&res)
|
||||||
|
if res == nil {
|
||||||
|
res = &gvar.Var{}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Cfg) GetFile(filename string, obj ...Load) (jsonObj *gjson.Json, err error) {
|
||||||
|
pathStr := "manifest/game/"
|
||||||
|
filePath := pathStr + filename + ".json"
|
||||||
|
//err := gres.Load(pathStr + filename)
|
||||||
|
|
||||||
|
//载入静态资源到文件对象
|
||||||
|
err = gres.Load(filePath)
|
||||||
|
var bytes []byte
|
||||||
|
|
||||||
|
if gfile.IsFile(filePath) {
|
||||||
|
bytes = gfile.GetBytes(filePath)
|
||||||
|
} else {
|
||||||
|
bytes = gres.GetContent(filePath)
|
||||||
|
}
|
||||||
|
|
||||||
|
jsonObj, err = gjson.DecodeToJson(bytes)
|
||||||
|
//g.Dump(filePath, jsonObj)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// getUrlFile 获取远程配置
|
||||||
|
func (c *Cfg) GetUrlFile(name string) (jsonObj *gjson.Json, err error) {
|
||||||
|
urlStr := fmt.Sprintf("http://sdf.sdfs.sdf/%s.json", name)
|
||||||
|
getUrl, err := g.Client().Discovery(nil).Get(nil, urlStr)
|
||||||
|
bytes := getUrl.ReadAll()
|
||||||
|
jsonObj, err = gjson.DecodeToJson(bytes)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取阿波罗
|
||||||
|
//func (c *Cfg) GetApollo(name string, obj Load) (jsonObj *gjson.Json, err error) {
|
||||||
|
// jsonObj, err = c.GetApolloV2(name, obj)
|
||||||
|
// return
|
||||||
|
//
|
||||||
|
// //c.Lock.Lock()
|
||||||
|
// //defer c.Lock.Unlock()
|
||||||
|
// //
|
||||||
|
// //Item2Obj[name+".json"] = obj
|
||||||
|
// //var cfg = apolloConfig.AppConfig{
|
||||||
|
// // AppID: ApolloCfg.AppID,
|
||||||
|
// // Cluster: ApolloCfg.Cluster,
|
||||||
|
// // IP: ApolloCfg.IP,
|
||||||
|
// // NamespaceName: name + ".json",
|
||||||
|
// // Secret: ApolloCfg.Secret,
|
||||||
|
// // IsBackupConfig: ApolloCfg.IsBackupConfig,
|
||||||
|
// // BackupConfigPath: ApolloCfg.BackupConfigPath,
|
||||||
|
// // SyncServerTimeout: 60,
|
||||||
|
// // MustStart: true,
|
||||||
|
// //}
|
||||||
|
// ////cfg.NamespaceName = name + ".json"
|
||||||
|
// //
|
||||||
|
// //client, err := agollo.StartWithConfig(func() (*apolloConfig.AppConfig, error) {
|
||||||
|
// // return ApolloCfg, nil
|
||||||
|
// //})
|
||||||
|
// //if client == nil {
|
||||||
|
// // return
|
||||||
|
// //}
|
||||||
|
// //var getStr string
|
||||||
|
// //var getApollo *storage.Config
|
||||||
|
// //for range 5 {
|
||||||
|
// // getApollo = client.GetConfig(cfg.NamespaceName)
|
||||||
|
// // if getApollo != nil {
|
||||||
|
// // break
|
||||||
|
// // }
|
||||||
|
// // time.Sleep(time.Second * 5)
|
||||||
|
// //}
|
||||||
|
// //
|
||||||
|
// //if getApollo != nil {
|
||||||
|
// // getStr = getApollo.GetValue("content")
|
||||||
|
// // if getStr != "" {
|
||||||
|
// // //写入配置
|
||||||
|
// // gfile.PutContents(path.Join("manifest", "game", name+".json"), getStr)
|
||||||
|
// // }
|
||||||
|
// //} else {
|
||||||
|
// // jsonObj, err = c.GetFile(name)
|
||||||
|
// //}
|
||||||
|
// //jsonObj, err = gjson.DecodeToJson(getStr)
|
||||||
|
// ////首次运行加入监听器
|
||||||
|
// //if !gstr.InArray(ApolloListener, name) {
|
||||||
|
// // c2 := &CustomChangeListener{}
|
||||||
|
// // client.AddChangeListener(c2)
|
||||||
|
// // ApolloListener = append(ApolloListener, name)
|
||||||
|
// //}
|
||||||
|
// //return
|
||||||
|
//}
|
||||||
|
|
||||||
|
func (c *Cfg) GetApollo(name string, obj Load) (jsonObj *gjson.Json, err error) {
|
||||||
|
Item2Obj[name+".json"] = obj
|
||||||
|
|
||||||
|
// 接入阿波罗配置
|
||||||
|
ApolloCfg.NamespaceName = name + ".json"
|
||||||
|
adapter, err := apollo.New(nil, *ApolloCfg)
|
||||||
|
if err != nil {
|
||||||
|
g.Log().Fatalf(nil, `%+v`, err)
|
||||||
|
}
|
||||||
|
// Change the adapter of default configuration instance.
|
||||||
|
g.Cfg(name).SetAdapter(adapter)
|
||||||
|
|
||||||
|
//首次运行加入监听器
|
||||||
|
if !gstr.InArray(ApolloListener, name+".json") {
|
||||||
|
//放置监听器
|
||||||
|
client, _ := agollo.StartWithConfig(func() (*apolloConfig.AppConfig, error) {
|
||||||
|
return &apolloConfig.AppConfig{
|
||||||
|
AppID: ApolloCfg.AppID,
|
||||||
|
Cluster: ApolloCfg.Cluster,
|
||||||
|
NamespaceName: ApolloCfg.NamespaceName,
|
||||||
|
IP: ApolloCfg.IP,
|
||||||
|
IsBackupConfig: ApolloCfg.IsBackupConfig,
|
||||||
|
BackupConfigPath: ApolloCfg.BackupConfigPath,
|
||||||
|
Secret: ApolloCfg.Secret,
|
||||||
|
SyncServerTimeout: ApolloCfg.SyncServerTimeout,
|
||||||
|
MustStart: ApolloCfg.MustStart,
|
||||||
|
}, nil
|
||||||
|
})
|
||||||
|
c2 := &CustomChangeListener{}
|
||||||
|
client.AddChangeListener(c2)
|
||||||
|
ApolloListener = append(ApolloListener, name+".json")
|
||||||
|
}
|
||||||
|
|
||||||
|
cfg, err := g.Cfg(name).Get(nil, "content")
|
||||||
|
cfg.Scan(&jsonObj)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 阿波罗监听器
|
||||||
|
type CustomChangeListener struct {
|
||||||
|
wg sync.WaitGroup
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *CustomChangeListener) OnChange(changeEvent *storage.ChangeEvent) {
|
||||||
|
g.Log().Debugf(nil, "当前Namespace变化了:%v", changeEvent.Namespace)
|
||||||
|
filename := changeEvent.Namespace
|
||||||
|
if obj, ok := Item2Obj[filename]; ok {
|
||||||
|
//重载配置文件
|
||||||
|
obj.Load(changeEvent.Changes["content"].NewValue.(string))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *CustomChangeListener) OnNewestChange(event *storage.FullChangeEvent) {
|
||||||
|
//write your code here
|
||||||
|
|
||||||
|
}
|
||||||
@@ -33,7 +33,6 @@ func New(name ...string) *elastic {
|
|||||||
return &elastic{
|
return &elastic{
|
||||||
client: es,
|
client: es,
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// createIndex 创建索引
|
// createIndex 创建索引
|
||||||
|
|||||||
10
pkg/pkg.go
10
pkg/pkg.go
@@ -3,9 +3,11 @@ package pkg
|
|||||||
import (
|
import (
|
||||||
v1 "github.com/ayflying/utility_go/api/pgk/v1"
|
v1 "github.com/ayflying/utility_go/api/pgk/v1"
|
||||||
"github.com/ayflying/utility_go/pkg/aycache"
|
"github.com/ayflying/utility_go/pkg/aycache"
|
||||||
|
"github.com/ayflying/utility_go/pkg/config"
|
||||||
"github.com/ayflying/utility_go/pkg/notice"
|
"github.com/ayflying/utility_go/pkg/notice"
|
||||||
"github.com/ayflying/utility_go/pkg/rank"
|
"github.com/ayflying/utility_go/pkg/rank"
|
||||||
"github.com/ayflying/utility_go/pkg/s3"
|
"github.com/ayflying/utility_go/pkg/s3"
|
||||||
|
"github.com/ayflying/utility_go/pkg/websocket"
|
||||||
"github.com/gogf/gf/v2/os/gcache"
|
"github.com/gogf/gf/v2/os/gcache"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -28,3 +30,11 @@ func S3(_name ...string) *s3.Mod {
|
|||||||
func Rank() *rank.Mod {
|
func Rank() *rank.Mod {
|
||||||
return rank.New()
|
return rank.New()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Websocket() *websocket.SocketV1 {
|
||||||
|
return websocket.NewV1()
|
||||||
|
}
|
||||||
|
|
||||||
|
func Config() *config.Cfg {
|
||||||
|
return config.NewV1()
|
||||||
|
}
|
||||||
|
|||||||
16
pkg/websocket/registerer.go
Normal file
16
pkg/websocket/registerer.go
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
package websocket
|
||||||
|
|
||||||
|
import "context"
|
||||||
|
|
||||||
|
// 定义一个处理方法的类型
|
||||||
|
type Handler func(ctx context.Context, req any) (err error)
|
||||||
|
|
||||||
|
// 路由器的处理映射
|
||||||
|
var (
|
||||||
|
handlers = make(map[int]Handler)
|
||||||
|
)
|
||||||
|
|
||||||
|
// 注册方法,将某个消息路由器ID和对应的处理方法关联起来
|
||||||
|
func (s *SocketV1) RegisterRouter(cmd int, handler Handler) {
|
||||||
|
handlers[cmd] = handler
|
||||||
|
}
|
||||||
179
pkg/websocket/socket_new.go
Normal file
179
pkg/websocket/socket_new.go
Normal file
@@ -0,0 +1,179 @@
|
|||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"github.com/gogf/gf/v2/container/gmap"
|
||||||
|
"github.com/gogf/gf/v2/frame/g"
|
||||||
|
"github.com/gogf/gf/v2/os/gctx"
|
||||||
|
"github.com/gogf/gf/v2/os/glog"
|
||||||
|
"github.com/gogf/gf/v2/util/gconv"
|
||||||
|
"github.com/google/uuid"
|
||||||
|
"github.com/gorilla/websocket"
|
||||||
|
"sync"
|
||||||
|
"github.com/gogf/gf/v2/net/ghttp"
|
||||||
|
)
|
||||||
|
|
||||||
|
type SocketV1 struct{}
|
||||||
|
|
||||||
|
var (
|
||||||
|
//ctx = gctx.New()
|
||||||
|
//Conn map[uuid.UUID]*WebsocketData
|
||||||
|
lock sync.Mutex
|
||||||
|
|
||||||
|
m = gmap.New(true)
|
||||||
|
)
|
||||||
|
|
||||||
|
type WebsocketData struct {
|
||||||
|
Ws *websocket.Conn
|
||||||
|
Uuid uuid.UUID
|
||||||
|
Uid int64
|
||||||
|
Ctx context.Context
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewV1() *SocketV1 {
|
||||||
|
return &SocketV1{}
|
||||||
|
}
|
||||||
|
|
||||||
|
type SocketInterface interface {
|
||||||
|
OnConnect(*websocket.Conn)
|
||||||
|
OnMessage(*WebsocketData, []byte, int)
|
||||||
|
Send(uuid.UUID, []byte) (err error)
|
||||||
|
SendAll(data []byte)
|
||||||
|
OnClose(conn *websocket.Conn)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *SocketV1) Load(serv *ghttp.Server, prefix string) {
|
||||||
|
//websocket服务启动
|
||||||
|
serv.Group(prefix, func(group *ghttp.RouterGroup) {
|
||||||
|
|
||||||
|
var websocketCfg = websocket.Upgrader{
|
||||||
|
ReadBufferSize: 1024,
|
||||||
|
WriteBufferSize: 1024,
|
||||||
|
}
|
||||||
|
group.Bind(
|
||||||
|
func(r *ghttp.Request) {
|
||||||
|
ctx := r.Context()
|
||||||
|
ws, err := websocketCfg.Upgrade(r.Response.Writer, r.Request, nil)
|
||||||
|
if err != nil {
|
||||||
|
glog.Error(ctx, err)
|
||||||
|
r.Exit()
|
||||||
|
}
|
||||||
|
|
||||||
|
//ws联机触发器
|
||||||
|
NewV1().OnConnect(ctx, ws)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// OnConnect
|
||||||
|
//
|
||||||
|
// @Description:
|
||||||
|
// @receiver s
|
||||||
|
// @param conn
|
||||||
|
func (s *SocketV1) OnConnect(ctx context.Context, conn *websocket.Conn) {
|
||||||
|
//lock.Lock()
|
||||||
|
//defer lock.Unlock()
|
||||||
|
|
||||||
|
defer conn.Close()
|
||||||
|
id, _ := uuid.NewUUID()
|
||||||
|
ip := conn.RemoteAddr().String()
|
||||||
|
|
||||||
|
data := &WebsocketData{
|
||||||
|
Uuid: id,
|
||||||
|
Ws: conn,
|
||||||
|
Ctx: ctx,
|
||||||
|
}
|
||||||
|
m.Set(id, data)
|
||||||
|
|
||||||
|
//defer delete(Conn, id)
|
||||||
|
|
||||||
|
//to := fmt.Sprintf("创建连接:%v,ip=%v", id, ip)
|
||||||
|
//s.Send(id, []byte(to))
|
||||||
|
|
||||||
|
for {
|
||||||
|
//进入当前连接线程拥堵
|
||||||
|
msgType, msg, err := conn.ReadMessage()
|
||||||
|
if err != nil {
|
||||||
|
//客户端断开返回错误,断开当前连接
|
||||||
|
break
|
||||||
|
}
|
||||||
|
s.OnMessage(m.Get(id).(*WebsocketData), msg, msgType)
|
||||||
|
}
|
||||||
|
//关闭连接触发
|
||||||
|
s.OnClose(id, conn)
|
||||||
|
g.Log().Debugf(ctx, "断开连接:uuid=%v,ip=%v", id, ip)
|
||||||
|
}
|
||||||
|
|
||||||
|
// OnMessage
|
||||||
|
//
|
||||||
|
// @Description:
|
||||||
|
// @receiver s
|
||||||
|
// @param msg
|
||||||
|
// @param msgType
|
||||||
|
func (s *SocketV1) OnMessage(conn *WebsocketData, req []byte, msgType int) {
|
||||||
|
//g.Log().Debugf(ctx, "收到消息:%v,type=%v,conn=%v", string(req), msgType, conn)
|
||||||
|
//s.Send(conn.Uuid, msg)
|
||||||
|
//s.SendAll(msg)
|
||||||
|
msgStr := string(req)
|
||||||
|
msg := msgStr[8:]
|
||||||
|
cmd := gconv.Int(msgStr[:8])
|
||||||
|
//GetRouter(cmd, conn.Uid, msg)
|
||||||
|
handler, exist := handlers[cmd]
|
||||||
|
if exist {
|
||||||
|
//匹配上路由器
|
||||||
|
handler(conn.Ctx, msg)
|
||||||
|
} else {
|
||||||
|
//fmt.Println("未注册的路由器ID:", cmd)
|
||||||
|
s.Send(conn.Uuid, []byte("未注册的协议号:"+msgStr[:8]))
|
||||||
|
s.OnClose(conn.Uuid, conn.Ws)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Send
|
||||||
|
//
|
||||||
|
// @Description:
|
||||||
|
// @receiver s
|
||||||
|
// @param uid
|
||||||
|
// @param data
|
||||||
|
// @return err
|
||||||
|
func (s *SocketV1) Send(id uuid.UUID, data []byte) (err error) {
|
||||||
|
if !m.Contains(id) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
conn := m.Get(id).(*WebsocketData)
|
||||||
|
conn.Ws.WriteMessage(1, data)
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 批量发送
|
||||||
|
func (s *SocketV1) SendAll(data []byte) {
|
||||||
|
m.Iterator(func(k interface{}, v interface{}) bool {
|
||||||
|
//fmt.Printf("%v:%v ", k, v)
|
||||||
|
conn := v.(*WebsocketData)
|
||||||
|
conn.Ws.WriteMessage(1, data)
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// OnClose
|
||||||
|
//
|
||||||
|
// @Description:
|
||||||
|
// @receiver s
|
||||||
|
// @param conn
|
||||||
|
func (s *SocketV1) OnClose(id uuid.UUID, conn *websocket.Conn) {
|
||||||
|
// 在此处编写断开连接后的处理逻辑
|
||||||
|
g.Log().Debugf(gctx.New(), "WebSocket connection from %s has been closed.", conn.RemoteAddr())
|
||||||
|
|
||||||
|
// 可能的后续操作:
|
||||||
|
// 1. 更新连接状态或从连接池移除
|
||||||
|
// 2. 发送通知或清理关联资源
|
||||||
|
// 3. 执行特定于业务的断开处理
|
||||||
|
m.Remove(id)
|
||||||
|
conn.Close()
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user