* add: device login * update: global config * add: User transmission interface encryption * update: get global config * update: User transmission interface encryption * add: get device list * add: SecretIsEmpty Message * update: device middleware * add: query user subscribe node list * fix bug: query device list * fix bug: unbind device * update: device login * fix bug: The ad table is missing the description field * fix bug:page size is zero * update: Device Middleware * fix bug: Site custom data update failed
27 lines
681 B
Go
27 lines
681 B
Go
package initialize
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/perfect-panel/server/pkg/logger"
|
|
|
|
"github.com/perfect-panel/server/internal/config"
|
|
"github.com/perfect-panel/server/internal/model/auth"
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
"github.com/perfect-panel/server/pkg/tool"
|
|
)
|
|
|
|
func Device(ctx *svc.ServiceContext) {
|
|
logger.Debug("device config initialization")
|
|
method, err := ctx.AuthModel.FindOneByMethod(context.Background(), "device")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
var cfg config.DeviceConfig
|
|
var deviceConfig auth.DeviceConfig
|
|
deviceConfig.Unmarshal(method.Config)
|
|
tool.DeepCopy(&cfg, deviceConfig)
|
|
cfg.Enable = *method.Enabled
|
|
ctx.Config.Device = cfg
|
|
}
|