All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 6m17s
- 合并 customer_account 和 shop_account 路由到统一的 account 接口 - 新增统一认证接口 (auth handler) - 实现越权防护中间件和权限检查工具函数 - 新增操作审计日志模型和服务 - 更新数据库迁移 (版本 39: account_operation_log 表) - 补充集成测试覆盖权限检查和审计日志场景
52 lines
3.2 KiB
Go
52 lines
3.2 KiB
Go
package bootstrap
|
|
|
|
import (
|
|
"github.com/break/junhong_cmp_fiber/internal/handler/admin"
|
|
"github.com/break/junhong_cmp_fiber/internal/handler/app"
|
|
authHandler "github.com/break/junhong_cmp_fiber/internal/handler/auth"
|
|
"github.com/break/junhong_cmp_fiber/internal/handler/callback"
|
|
"github.com/break/junhong_cmp_fiber/internal/handler/h5"
|
|
"github.com/go-playground/validator/v10"
|
|
)
|
|
|
|
func initHandlers(svc *services, deps *Dependencies) *Handlers {
|
|
validate := validator.New()
|
|
|
|
return &Handlers{
|
|
Auth: authHandler.NewHandler(svc.Auth, validate),
|
|
Account: admin.NewAccountHandler(svc.Account),
|
|
Role: admin.NewRoleHandler(svc.Role, validate),
|
|
Permission: admin.NewPermissionHandler(svc.Permission),
|
|
PersonalCustomer: app.NewPersonalCustomerHandler(svc.PersonalCustomer, deps.Logger),
|
|
Shop: admin.NewShopHandler(svc.Shop),
|
|
AdminAuth: admin.NewAuthHandler(svc.Auth, validate),
|
|
H5Auth: h5.NewAuthHandler(svc.Auth, validate),
|
|
ShopCommission: admin.NewShopCommissionHandler(svc.ShopCommission),
|
|
CommissionWithdrawal: admin.NewCommissionWithdrawalHandler(svc.CommissionWithdrawal),
|
|
CommissionWithdrawalSetting: admin.NewCommissionWithdrawalSettingHandler(svc.CommissionWithdrawalSetting),
|
|
Enterprise: admin.NewEnterpriseHandler(svc.Enterprise),
|
|
EnterpriseCard: admin.NewEnterpriseCardHandler(svc.EnterpriseCard),
|
|
EnterpriseDevice: admin.NewEnterpriseDeviceHandler(svc.EnterpriseDevice),
|
|
EnterpriseDeviceH5: h5.NewEnterpriseDeviceHandler(svc.EnterpriseDevice),
|
|
Authorization: admin.NewAuthorizationHandler(svc.Authorization),
|
|
MyCommission: admin.NewMyCommissionHandler(svc.MyCommission),
|
|
IotCard: admin.NewIotCardHandler(svc.IotCard),
|
|
IotCardImport: admin.NewIotCardImportHandler(svc.IotCardImport),
|
|
Device: admin.NewDeviceHandler(svc.Device),
|
|
DeviceImport: admin.NewDeviceImportHandler(svc.DeviceImport),
|
|
AssetAllocationRecord: admin.NewAssetAllocationRecordHandler(svc.AssetAllocationRecord),
|
|
Storage: admin.NewStorageHandler(deps.StorageService),
|
|
Carrier: admin.NewCarrierHandler(svc.Carrier),
|
|
PackageSeries: admin.NewPackageSeriesHandler(svc.PackageSeries),
|
|
Package: admin.NewPackageHandler(svc.Package),
|
|
ShopSeriesAllocation: admin.NewShopSeriesAllocationHandler(svc.ShopSeriesAllocation),
|
|
ShopPackageAllocation: admin.NewShopPackageAllocationHandler(svc.ShopPackageAllocation),
|
|
ShopPackageBatchAllocation: admin.NewShopPackageBatchAllocationHandler(svc.ShopPackageBatchAllocation),
|
|
ShopPackageBatchPricing: admin.NewShopPackageBatchPricingHandler(svc.ShopPackageBatchPricing),
|
|
AdminOrder: admin.NewOrderHandler(svc.Order),
|
|
H5Order: h5.NewOrderHandler(svc.Order),
|
|
H5Recharge: h5.NewRechargeHandler(svc.Recharge),
|
|
PaymentCallback: callback.NewPaymentHandler(svc.Order, svc.Recharge, deps.WechatPayment),
|
|
}
|
|
}
|