2023-09-28 22:09:52 +08:00
|
|
|
package mysql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
2023-09-29 12:47:49 +08:00
|
|
|
"fmt"
|
2023-09-28 22:09:52 +08:00
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
|
|
|
"github.com/usememos/memos/server/profile"
|
|
|
|
"github.com/usememos/memos/store"
|
|
|
|
)
|
|
|
|
|
2023-10-05 23:11:29 +08:00
|
|
|
type DB struct {
|
2023-09-28 22:09:52 +08:00
|
|
|
db *sql.DB
|
|
|
|
profile *profile.Profile
|
|
|
|
}
|
|
|
|
|
2023-10-05 23:11:29 +08:00
|
|
|
func NewDB(profile *profile.Profile) (store.Driver, error) {
|
2023-09-29 12:47:49 +08:00
|
|
|
// Open MySQL connection with parameter.
|
|
|
|
// multiStatements=true is required for migration.
|
|
|
|
// See more in: https://github.com/go-sql-driver/mysql#multistatements
|
|
|
|
db, err := sql.Open("mysql", fmt.Sprintf("%s?multiStatements=true", profile.DSN))
|
2023-09-28 22:09:52 +08:00
|
|
|
if err != nil {
|
2023-09-29 09:15:54 +08:00
|
|
|
return nil, errors.Wrapf(err, "failed to open db: %s", profile.DSN)
|
2023-09-28 22:09:52 +08:00
|
|
|
}
|
|
|
|
|
2023-10-05 23:11:29 +08:00
|
|
|
driver := DB{db: db, profile: profile}
|
2023-09-28 22:09:52 +08:00
|
|
|
return &driver, nil
|
|
|
|
}
|
|
|
|
|
2023-10-05 23:11:29 +08:00
|
|
|
func (d *DB) GetDB() *sql.DB {
|
2023-09-29 09:15:54 +08:00
|
|
|
return d.db
|
|
|
|
}
|
|
|
|
|
2023-10-05 23:11:29 +08:00
|
|
|
func (d *DB) Vacuum(ctx context.Context) error {
|
2023-09-28 22:09:52 +08:00
|
|
|
tx, err := d.db.BeginTx(ctx, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer tx.Rollback()
|
|
|
|
|
|
|
|
if err := vacuumMemo(ctx, tx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := vacuumResource(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 := vacuumMemoRelations(ctx, tx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := vacuumTag(ctx, tx); err != nil {
|
|
|
|
// Prevent revive warning.
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx.Commit()
|
|
|
|
}
|
|
|
|
|
2023-10-05 23:11:29 +08:00
|
|
|
func (*DB) BackupTo(context.Context, string) error {
|
2023-09-28 22:09:52 +08:00
|
|
|
return errors.New("Please use mysqldump to backup")
|
|
|
|
}
|
|
|
|
|
2023-10-05 23:11:29 +08:00
|
|
|
func (d *DB) Close() error {
|
2023-09-28 22:09:52 +08:00
|
|
|
return d.db.Close()
|
|
|
|
}
|