refactor: 更新项目引用路径从perfect-panel/ppanel-server到perfect-panel/server
Build docker and publish / build (20.15.1) (push) Failing after 6m27s

feat: 添加版本和构建时间变量
fix: 修正短信队列类型注释错误
style: 清理未使用的代码和测试文件
docs: 更新安装文档中的下载链接
chore: 迁移数据库脚本添加日志和订阅配置
This commit is contained in:
2025-10-13 01:33:03 -07:00
parent 393b42f35a
commit c582087c0f
974 changed files with 23609 additions and 23398 deletions
+49
View File
@@ -0,0 +1,49 @@
package cache
import "time"
const (
defaultExpiry = time.Hour * 24 * 7
defaultNotFoundExpiry = time.Minute
)
type (
// Options is used to store the cache options.
Options struct {
Expiry time.Duration
NotFoundExpiry time.Duration
}
// Option defines the method to customize an Options.
Option func(o *Options)
)
func newOptions(opts ...Option) Options {
var o Options
for _, opt := range opts {
opt(&o)
}
if o.Expiry <= 0 {
o.Expiry = defaultExpiry
}
if o.NotFoundExpiry <= 0 {
o.NotFoundExpiry = defaultNotFoundExpiry
}
return o
}
// WithExpiry returns a func to customize an Options with given expiry.
func WithExpiry(expiry time.Duration) Option {
return func(o *Options) {
o.Expiry = expiry
}
}
// WithNotFoundExpiry returns a func to customize an Options with given not found expiry.
func WithNotFoundExpiry(expiry time.Duration) Option {
return func(o *Options) {
o.NotFoundExpiry = expiry
}
}
+28
View File
@@ -0,0 +1,28 @@
package cache
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestCacheOptions(t *testing.T) {
t.Run("default options", func(t *testing.T) {
o := newOptions()
assert.Equal(t, defaultExpiry, o.Expiry)
assert.Equal(t, defaultNotFoundExpiry, o.NotFoundExpiry)
})
t.Run("with expiry", func(t *testing.T) {
o := newOptions(WithExpiry(time.Second))
assert.Equal(t, time.Second, o.Expiry)
assert.Equal(t, defaultNotFoundExpiry, o.NotFoundExpiry)
})
t.Run("with not found expiry", func(t *testing.T) {
o := newOptions(WithNotFoundExpiry(time.Second))
assert.Equal(t, defaultExpiry, o.Expiry)
assert.Equal(t, time.Second, o.NotFoundExpiry)
})
}
+16 -7
View File
@@ -5,12 +5,16 @@ import (
"database/sql"
"encoding/json"
"errors"
"time"
"github.com/redis/go-redis/v9"
"gorm.io/gorm"
)
var ErrNotFound = redis.Nil
var (
// ErrNotFound is the error when cache not found.
ErrNotFound = redis.Nil
)
type (
// ExecCtxFn defines the sql exec method.
@@ -23,16 +27,21 @@ type (
QueryCtxFn func(conn *gorm.DB, v interface{}) error
CachedConn struct {
db *gorm.DB
cache *redis.Client
db *gorm.DB
cache *redis.Client
expiry time.Duration
notFoundExpiry time.Duration
}
)
// NewConn returns a CachedConn with a redis cluster cache.
func NewConn(db *gorm.DB, c *redis.Client) CachedConn {
func NewConn(db *gorm.DB, c *redis.Client, opts ...Option) CachedConn {
o := newOptions(opts...)
return CachedConn{
db: db,
cache: c,
db: db,
cache: c,
expiry: o.Expiry,
notFoundExpiry: o.NotFoundExpiry,
}
}
@@ -65,7 +74,7 @@ func (cc CachedConn) SetCache(key string, v interface{}) error {
return err
}
// set redis key
return cc.cache.Set(context.Background(), key, val, 0).Err()
return cc.cache.Set(context.Background(), key, val, cc.expiry).Err()
}
// ExecCtx runs given exec on given keys, and returns execution result.
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/perfect-panel/ppanel-server/pkg/orm"
"github.com/perfect-panel/server/pkg/orm"
"github.com/redis/go-redis/v9"
"gorm.io/gorm"
"gorm.io/plugin/soft_delete"