- 新增 internal/cache/home_cache.go,实现带 TTL 的首页文章列表内存缓存 - frontend.go 首页 handler 优先读取缓存,未命中/过期时查询 DB 并回填 - PostService 注入失效回调,在 Create/Update/Delete/Approve 后自动失效缓存 - 减少首页每次请求都查 DB 的开销
132 lines
5.3 KiB
Go
132 lines
5.3 KiB
Go
package router
|
||
|
||
import (
|
||
"time"
|
||
|
||
"metazone.cc/metalab/internal/cache"
|
||
"metazone.cc/metalab/internal/config"
|
||
"metazone.cc/metalab/internal/controller"
|
||
adminCtrl "metazone.cc/metalab/internal/controller/admin"
|
||
"metazone.cc/metalab/internal/middleware"
|
||
"metazone.cc/metalab/internal/repository"
|
||
"metazone.cc/metalab/internal/service"
|
||
|
||
"github.com/redis/go-redis/v9"
|
||
"gorm.io/gorm"
|
||
)
|
||
|
||
func buildDeps(db *gorm.DB, cfg *config.Config, siteSettings *config.SiteSettings, redisClient *redis.Client) *dependencies {
|
||
userRepo, sessionMgr, authService, _, authCtrl, avatarSvc, authMdw := buildDepsCore(db, cfg, siteSettings, redisClient)
|
||
|
||
auditRepo := repository.NewAuditRepo(db)
|
||
notificationRepo := repository.NewNotificationRepo(db)
|
||
notificationService := service.NewNotificationService(notificationRepo)
|
||
|
||
// 域能系统
|
||
energyRepo := repository.NewEnergyRepo(db)
|
||
fundRepo := repository.NewFundRepo(db)
|
||
energyRepo.SetFundStore(fundRepo) // 为跨仓库 Transaction 注入 FundStore
|
||
energyService := service.NewEnergyService(energyRepo, nil, notificationService)
|
||
energyService.SetFundRepo(fundRepo) // 只读查询
|
||
|
||
// 等级/签到/任务系统(链式注入域能服务)
|
||
_, levelSvc, levelCtrl := buildDepsLevel(db, notificationService, authMdw)
|
||
levelSvc.WithEnergyService(energyService)
|
||
|
||
// EnergyService 也需要 LevelService(用于赋能获得经验),通过 setter 注入
|
||
energyService.SetExpAdder(levelSvc)
|
||
|
||
auditService := service.NewAuditService(auditRepo, userRepo, siteSettings, cfg.Audit, notificationService, levelSvc)
|
||
auditService.WithEnergyRefundService(energyService)
|
||
auditController := adminCtrl.NewAuditController(auditService, userRepo)
|
||
|
||
messageController := controller.NewMessageController(notificationService)
|
||
|
||
settingsCtrl := controller.NewSettingsController(authService, avatarSvc, auditService, sessionMgr, cfg, levelSvc)
|
||
settingsCtrl.WithEnergyService(energyService)
|
||
settingsCtrl.SetNotifyPrefReader(authService)
|
||
siteSettingController := adminCtrl.NewSiteSettingController(
|
||
service.NewSiteSettingService(siteSettings),
|
||
&service.AuditDefaults{
|
||
Enabled: cfg.Audit.Enabled, UsernameAudit: cfg.Audit.UsernameAudit,
|
||
AvatarAudit: cfg.Audit.AvatarAudit, BioAudit: cfg.Audit.BioAudit,
|
||
},
|
||
)
|
||
|
||
postRepo := repository.NewPostRepo(db)
|
||
postService := service.NewPostService(postRepo, siteSettings, notificationService, userRepo)
|
||
shortcodeSvc := service.NewShortcodeService()
|
||
postCtrl := controller.NewPostController(postService, shortcodeSvc)
|
||
adminPostCtrl := adminCtrl.NewAdminPostController(postService)
|
||
adminController := adminCtrl.NewAdminController(service.NewAdminService(userRepo, postRepo, sessionMgr))
|
||
studioCtrl := controller.NewStudioController(postService)
|
||
studioCtrl.WithEnergyService(energyService)
|
||
|
||
// 域能控制器
|
||
energyCtrl := controller.NewEnergyController(energyService)
|
||
adminEnergyCtrl := adminCtrl.NewAdminEnergyController(energyService)
|
||
|
||
// 评论系统
|
||
commentRepo := repository.NewCommentRepo(db)
|
||
commentService := service.NewCommentService(commentRepo, notificationService)
|
||
commentCtrl := controller.NewCommentController(commentService)
|
||
|
||
// 后台评论管理
|
||
adminCommentCtrl := adminCtrl.NewAdminCommentController(commentService)
|
||
|
||
// 赞/踩系统
|
||
reactionRepo := repository.NewReactionRepo(db)
|
||
reactionService := service.NewReactionService(reactionRepo)
|
||
reactionCtrl := controller.NewReactionController(reactionService)
|
||
|
||
// 关注系统
|
||
followRepo := repository.NewFollowRepo(db)
|
||
followService := service.NewFollowService(followRepo)
|
||
followService.SetNotifier(notificationService) // 关注通知
|
||
followCtrl := controller.NewFollowController(followService)
|
||
|
||
// 收藏夹系统(需在 SpaceController 之前初始化)
|
||
favoriteRepo := repository.NewFavoriteRepo(db)
|
||
favoriteService := service.NewFavoriteService(favoriteRepo)
|
||
favoriteCtrl := controller.NewFavoriteController(favoriteService)
|
||
|
||
// 用户空间
|
||
spaceService := service.NewSpaceService(userRepo, postRepo)
|
||
spaceCtrl := controller.NewSpaceController(spaceService)
|
||
spaceCtrl.WithFollowService(followService)
|
||
spaceCtrl.WithFavoriteService(favoriteService)
|
||
|
||
// Studio 趋势图
|
||
trendsService := service.NewTrendsService(energyRepo, commentRepo, reactionRepo, favoriteRepo)
|
||
studioCtrl.WithTrendsService(trendsService)
|
||
|
||
maintenanceMdw := middleware.NewMaintenanceMiddleware(cfg, siteSettings, sessionMgr)
|
||
|
||
// 首页内存缓存(30s TTL),文章变更时失效
|
||
homeCache := cache.NewHomePageCache(30 * time.Second)
|
||
postService.WithHomePageInvalidator(func() { homeCache.Invalidate() })
|
||
|
||
return &dependencies{
|
||
authCtrl: authCtrl, authMdw: authMdw, maintenanceMdw: maintenanceMdw,
|
||
settingsCtrl: settingsCtrl,
|
||
messageCtrl: messageController, postCtrl: postCtrl, postService: postService, spaceCtrl: spaceCtrl,
|
||
studioCtrl: studioCtrl,
|
||
adminPostCtrl: adminPostCtrl,
|
||
adminCtrl: adminController, auditCtrl: auditController,
|
||
siteSettingCtrl: siteSettingController,
|
||
levelCtrl: levelCtrl,
|
||
energyCtrl: energyCtrl,
|
||
adminEnergyCtrl: adminEnergyCtrl,
|
||
energyService: energyService,
|
||
commentCtrl: commentCtrl,
|
||
commentService: commentService,
|
||
adminCommentCtrl: adminCommentCtrl,
|
||
reactionCtrl: reactionCtrl,
|
||
followCtrl: followCtrl,
|
||
favoriteCtrl: favoriteCtrl,
|
||
favoriteService: favoriteService,
|
||
trendsService: trendsService,
|
||
homeCache: homeCache,
|
||
}
|
||
}
|