// Copyright 2022 ROC. All rights reserved. // Use of this source code is governed by a MIT style // license that can be found in the LICENSE file. // Core service implement base gorm+mysql/postgresql/sqlite3. // Jinzhu is the primary developer of gorm so use his name as // package name as a saluter. package jinzhu import ( "github.com/Masterminds/semver/v3" "github.com/alimy/cfg" "github.com/rocboss/paopao-ce/internal/conf" "github.com/rocboss/paopao-ce/internal/core" "github.com/rocboss/paopao-ce/internal/dao/cache" "github.com/rocboss/paopao-ce/internal/dao/security" "github.com/sirupsen/logrus" ) var ( _ core.DataService = (*dataServant)(nil) _ core.VersionInfo = (*dataServant)(nil) ) type dataServant struct { core.IndexPostsService core.WalletService core.MessageService core.TopicService core.TweetService core.TweetManageService core.TweetHelpService core.CommentService core.CommentManageService core.UserManageService core.ContactManageService core.SecurityService core.AttachmentCheckService } func NewDataService() (core.DataService, core.VersionInfo) { var ( v core.VersionInfo cis core.CacheIndexService ips core.IndexPostsService ) db := conf.MustGormDB() pvs := security.NewPhoneVerifyService() ams := NewAuthorizationManageService() ths := newTweetHelpService(db) // initialize core.IndexPostsService if cfg.If("Friendship") { ips = newFriendIndexService(db, ams, ths) } else if cfg.If("Followship") { ips = newFollowIndexService(db, ths) } else if cfg.If("Lightship") { ips = newLightIndexService(db, ths) } else { // default use lightship post index service ips = newLightIndexService(db, ths) } // initialize core.CacheIndexService if cfg.If("SimpleCacheIndex") { // simpleCache use special post index service ips = newSimpleIndexPostsService(db, ths) cis, v = cache.NewSimpleCacheIndexService(ips) } else if cfg.If("BigCacheIndex") { // TODO: make cache index post in different scence like friendship/followship/lightship cis, v = cache.NewBigCacheIndexService(ips, ams) } else { cis, v = cache.NewNoneCacheIndexService(ips) } logrus.Infof("use %s as cache index service by version: %s", v.Name(), v.Version()) ds := &dataServant{ IndexPostsService: cis, WalletService: newWalletService(db), MessageService: newMessageService(db), TopicService: newTopicService(db), TweetService: newTweetService(db), TweetManageService: newTweetManageService(db, cis), TweetHelpService: newTweetHelpService(db), CommentService: newCommentService(db), CommentManageService: newCommentManageService(db), UserManageService: newUserManageService(db), ContactManageService: newContactManageService(db), SecurityService: newSecurityService(db, pvs), AttachmentCheckService: security.NewAttachmentCheckService(), } return ds, ds } func NewAuthorizationManageService() core.AuthorizationManageService { return newAuthorizationManageService(conf.MustGormDB()) } func (s *dataServant) Name() string { return "Gorm" } func (s *dataServant) Version() *semver.Version { return semver.MustParse("v0.2.0") }