memos/store/store.go

86 lines
1.7 KiB
Go
Raw Normal View History

2022-05-16 02:37:23 +03:00
package store
2022-05-21 19:59:22 +03:00
import (
2022-11-06 07:21:58 +03:00
"context"
2022-05-21 19:59:22 +03:00
"database/sql"
"sync"
2022-06-27 17:09:06 +03:00
"github.com/usememos/memos/server/profile"
2022-05-21 19:59:22 +03:00
)
2022-08-24 16:53:12 +03:00
// Store provides database access to all raw objects.
2022-05-16 02:37:23 +03:00
type Store struct {
Profile *profile.Profile
db *sql.DB
systemSettingCache sync.Map // map[string]*SystemSetting
userCache sync.Map // map[int]*User
2023-06-29 17:55:03 +03:00
userSettingCache sync.Map // map[string]*UserSetting
shortcutCache sync.Map // map[int]*shortcutRaw
2023-06-26 18:46:01 +03:00
idpCache sync.Map // map[int]*IdentityProvider
2022-05-16 02:37:23 +03:00
}
2022-08-24 16:53:12 +03:00
// New creates a new instance of Store.
2022-05-22 04:29:34 +03:00
func New(db *sql.DB, profile *profile.Profile) *Store {
2022-05-16 02:37:23 +03:00
return &Store{
Profile: profile,
2022-05-21 19:59:22 +03:00
db: db,
2022-05-16 02:37:23 +03:00
}
}
2022-11-06 07:21:58 +03:00
func (s *Store) GetDB() *sql.DB {
return s.db
}
2022-11-06 07:21:58 +03:00
func (s *Store) Vacuum(ctx context.Context) error {
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return err
2022-11-06 07:21:58 +03:00
}
defer tx.Rollback()
if err := s.vacuumImpl(ctx, tx); err != nil {
2022-11-06 07:21:58 +03:00
return err
}
if err := tx.Commit(); err != nil {
return err
2022-11-06 07:21:58 +03:00
}
// Vacuum sqlite database file size after deleting resource.
if _, err := s.db.Exec("VACUUM"); err != nil {
return err
}
return nil
}
func (*Store) vacuumImpl(ctx context.Context, tx *sql.Tx) error {
2022-11-06 07:21:58 +03:00
if err := vacuumMemo(ctx, tx); err != nil {
return err
}
if err := vacuumResource(ctx, tx); err != nil {
return err
}
if err := vacuumShortcut(ctx, tx); err != nil {
return err
}
if err := vacuumUserSetting(ctx, tx); err != nil {
return err
}
if err := vacuumMemoOrganizer(ctx, tx); err != nil {
return err
}
if err := vacuumMemoResource(ctx, tx); err != nil {
return err
}
if err := vacuumMemoRelations(ctx, tx); err != nil {
return err
}
if err := vacuumTag(ctx, tx); err != nil {
2022-11-06 07:21:58 +03:00
// Prevent revive warning.
return err
}
return nil
}