2021-11-03 02:09:49 +01:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"errors"
|
2021-11-28 20:07:29 +01:00
|
|
|
"fmt"
|
2021-11-03 02:09:49 +01:00
|
|
|
_ "github.com/mattn/go-sqlite3" // SQLite driver
|
2021-11-29 21:34:29 +01:00
|
|
|
"log"
|
2021-11-28 20:07:29 +01:00
|
|
|
"strings"
|
2021-11-03 02:09:49 +01:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2021-11-28 20:07:29 +01:00
|
|
|
// Messages cache
|
2021-11-03 02:09:49 +01:00
|
|
|
const (
|
2021-11-28 20:07:29 +01:00
|
|
|
createMessagesTableQuery = `
|
2021-11-03 02:09:49 +01:00
|
|
|
BEGIN;
|
|
|
|
CREATE TABLE IF NOT EXISTS messages (
|
2021-12-31 16:19:41 +01:00
|
|
|
id TEXT PRIMARY KEY,
|
2021-11-03 02:09:49 +01:00
|
|
|
time INT NOT NULL,
|
2021-12-31 16:19:41 +01:00
|
|
|
topic TEXT NOT NULL,
|
|
|
|
message TEXT NOT NULL,
|
|
|
|
title TEXT NOT NULL,
|
2021-11-28 20:07:29 +01:00
|
|
|
priority INT NOT NULL,
|
2021-12-31 16:19:41 +01:00
|
|
|
tags TEXT NOT NULL,
|
2022-01-04 23:40:41 +01:00
|
|
|
click TEXT NOT NULL,
|
2022-01-04 00:55:08 +01:00
|
|
|
attachment_name TEXT NOT NULL,
|
|
|
|
attachment_type TEXT NOT NULL,
|
|
|
|
attachment_size INT NOT NULL,
|
|
|
|
attachment_expires INT NOT NULL,
|
|
|
|
attachment_url TEXT NOT NULL,
|
2022-01-07 14:49:28 +01:00
|
|
|
attachment_owner TEXT NOT NULL,
|
2021-12-10 17:31:42 +01:00
|
|
|
published INT NOT NULL
|
2021-11-03 02:09:49 +01:00
|
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_topic ON messages (topic);
|
|
|
|
COMMIT;
|
|
|
|
`
|
2022-01-04 00:55:08 +01:00
|
|
|
insertMessageQuery = `
|
2022-01-07 14:49:28 +01:00
|
|
|
INSERT INTO messages (id, time, topic, message, title, priority, tags, click, attachment_name, attachment_type, attachment_size, attachment_expires, attachment_url, attachment_owner, published)
|
2022-01-05 00:25:49 +01:00
|
|
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
|
2022-01-04 00:55:08 +01:00
|
|
|
`
|
2021-12-11 04:57:01 +01:00
|
|
|
pruneMessagesQuery = `DELETE FROM messages WHERE time < ? AND published = 1`
|
2021-11-03 02:09:49 +01:00
|
|
|
selectMessagesSinceTimeQuery = `
|
2022-01-07 14:49:28 +01:00
|
|
|
SELECT id, time, topic, message, title, priority, tags, click, attachment_name, attachment_type, attachment_size, attachment_expires, attachment_url, attachment_owner
|
2021-12-10 17:31:42 +01:00
|
|
|
FROM messages
|
|
|
|
WHERE topic = ? AND time >= ? AND published = 1
|
|
|
|
ORDER BY time ASC
|
|
|
|
`
|
|
|
|
selectMessagesSinceTimeIncludeScheduledQuery = `
|
2022-01-07 14:49:28 +01:00
|
|
|
SELECT id, time, topic, message, title, priority, tags, click, attachment_name, attachment_type, attachment_size, attachment_expires, attachment_url, attachment_owner
|
2021-11-03 02:09:49 +01:00
|
|
|
FROM messages
|
|
|
|
WHERE topic = ? AND time >= ?
|
|
|
|
ORDER BY time ASC
|
|
|
|
`
|
2021-12-10 17:31:42 +01:00
|
|
|
selectMessagesDueQuery = `
|
2022-01-07 14:49:28 +01:00
|
|
|
SELECT id, time, topic, message, title, priority, tags, click, attachment_name, attachment_type, attachment_size, attachment_expires, attachment_url, attachment_owner
|
2021-12-10 17:31:42 +01:00
|
|
|
FROM messages
|
|
|
|
WHERE time <= ? AND published = 0
|
|
|
|
`
|
|
|
|
updateMessagePublishedQuery = `UPDATE messages SET published = 1 WHERE id = ?`
|
2021-11-28 20:07:29 +01:00
|
|
|
selectMessagesCountQuery = `SELECT COUNT(*) FROM messages`
|
2021-11-29 17:48:34 +01:00
|
|
|
selectMessageCountForTopicQuery = `SELECT COUNT(*) FROM messages WHERE topic = ?`
|
2021-12-09 04:57:31 +01:00
|
|
|
selectTopicsQuery = `SELECT topic FROM messages GROUP BY topic`
|
2022-01-07 15:15:33 +01:00
|
|
|
selectAttachmentsSizeQuery = `SELECT IFNULL(SUM(attachment_size), 0) FROM messages WHERE attachment_owner = ? AND attachment_expires >= ?`
|
|
|
|
selectAttachmentsExpiredQuery = `SELECT id FROM messages WHERE attachment_expires > 0 AND attachment_expires < ?`
|
2021-11-28 20:07:29 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Schema management queries
|
|
|
|
const (
|
2022-01-04 00:55:08 +01:00
|
|
|
currentSchemaVersion = 3
|
2021-11-28 20:07:29 +01:00
|
|
|
createSchemaVersionTableQuery = `
|
|
|
|
CREATE TABLE IF NOT EXISTS schemaVersion (
|
|
|
|
id INT PRIMARY KEY,
|
|
|
|
version INT NOT NULL
|
|
|
|
);
|
|
|
|
`
|
|
|
|
insertSchemaVersion = `INSERT INTO schemaVersion VALUES (1, ?)`
|
2021-12-10 17:31:42 +01:00
|
|
|
updateSchemaVersion = `UPDATE schemaVersion SET version = ? WHERE id = 1`
|
2021-11-28 20:07:29 +01:00
|
|
|
selectSchemaVersionQuery = `SELECT version FROM schemaVersion WHERE id = 1`
|
|
|
|
|
|
|
|
// 0 -> 1
|
|
|
|
migrate0To1AlterMessagesTableQuery = `
|
|
|
|
BEGIN;
|
2021-12-31 16:19:41 +01:00
|
|
|
ALTER TABLE messages ADD COLUMN title TEXT NOT NULL DEFAULT('');
|
2021-11-28 20:07:29 +01:00
|
|
|
ALTER TABLE messages ADD COLUMN priority INT NOT NULL DEFAULT(0);
|
2021-12-31 16:19:41 +01:00
|
|
|
ALTER TABLE messages ADD COLUMN tags TEXT NOT NULL DEFAULT('');
|
2021-11-28 20:07:29 +01:00
|
|
|
COMMIT;
|
|
|
|
`
|
2021-12-10 17:31:42 +01:00
|
|
|
|
|
|
|
// 1 -> 2
|
|
|
|
migrate1To2AlterMessagesTableQuery = `
|
|
|
|
ALTER TABLE messages ADD COLUMN published INT NOT NULL DEFAULT(1);
|
|
|
|
`
|
2022-01-04 00:55:08 +01:00
|
|
|
|
|
|
|
// 2 -> 3
|
|
|
|
migrate2To3AlterMessagesTableQuery = `
|
|
|
|
BEGIN;
|
2022-01-04 23:40:41 +01:00
|
|
|
ALTER TABLE messages ADD COLUMN click TEXT NOT NULL DEFAULT('');
|
2022-01-05 00:25:49 +01:00
|
|
|
ALTER TABLE messages ADD COLUMN attachment_name TEXT NOT NULL DEFAULT('');
|
|
|
|
ALTER TABLE messages ADD COLUMN attachment_type TEXT NOT NULL DEFAULT('');
|
|
|
|
ALTER TABLE messages ADD COLUMN attachment_size INT NOT NULL DEFAULT('0');
|
|
|
|
ALTER TABLE messages ADD COLUMN attachment_expires INT NOT NULL DEFAULT('0');
|
2022-01-07 14:49:28 +01:00
|
|
|
ALTER TABLE messages ADD COLUMN attachment_owner TEXT NOT NULL DEFAULT('');
|
2022-01-05 00:25:49 +01:00
|
|
|
ALTER TABLE messages ADD COLUMN attachment_url TEXT NOT NULL DEFAULT('');
|
2022-01-04 00:55:08 +01:00
|
|
|
COMMIT;
|
|
|
|
`
|
2021-11-03 02:09:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type sqliteCache struct {
|
|
|
|
db *sql.DB
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ cache = (*sqliteCache)(nil)
|
|
|
|
|
|
|
|
func newSqliteCache(filename string) (*sqliteCache, error) {
|
|
|
|
db, err := sql.Open("sqlite3", filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-28 20:07:29 +01:00
|
|
|
if err := setupDB(db); err != nil {
|
2021-11-03 02:09:49 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &sqliteCache{
|
2021-11-03 16:33:34 +01:00
|
|
|
db: db,
|
2021-11-03 02:09:49 +01:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *sqliteCache) AddMessage(m *message) error {
|
2021-12-07 17:45:15 +01:00
|
|
|
if m.Event != messageEvent {
|
|
|
|
return errUnexpectedMessageType
|
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
published := m.Time <= time.Now().Unix()
|
2022-01-04 00:55:08 +01:00
|
|
|
tags := strings.Join(m.Tags, ",")
|
2022-01-07 14:49:28 +01:00
|
|
|
var attachmentName, attachmentType, attachmentURL, attachmentOwner string
|
2022-01-04 00:55:08 +01:00
|
|
|
var attachmentSize, attachmentExpires int64
|
|
|
|
if m.Attachment != nil {
|
|
|
|
attachmentName = m.Attachment.Name
|
|
|
|
attachmentType = m.Attachment.Type
|
|
|
|
attachmentSize = m.Attachment.Size
|
|
|
|
attachmentExpires = m.Attachment.Expires
|
|
|
|
attachmentURL = m.Attachment.URL
|
2022-01-07 14:49:28 +01:00
|
|
|
attachmentOwner = m.Attachment.Owner
|
2022-01-04 00:55:08 +01:00
|
|
|
}
|
|
|
|
_, err := c.db.Exec(
|
|
|
|
insertMessageQuery,
|
|
|
|
m.ID,
|
|
|
|
m.Time,
|
|
|
|
m.Topic,
|
|
|
|
m.Message,
|
|
|
|
m.Title,
|
|
|
|
m.Priority,
|
|
|
|
tags,
|
2022-01-05 00:25:49 +01:00
|
|
|
m.Click,
|
2022-01-04 00:55:08 +01:00
|
|
|
attachmentName,
|
|
|
|
attachmentType,
|
|
|
|
attachmentSize,
|
|
|
|
attachmentExpires,
|
|
|
|
attachmentURL,
|
2022-01-07 14:49:28 +01:00
|
|
|
attachmentOwner,
|
2022-01-04 00:55:08 +01:00
|
|
|
published,
|
|
|
|
)
|
2021-11-03 02:09:49 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-12-10 17:31:42 +01:00
|
|
|
func (c *sqliteCache) Messages(topic string, since sinceTime, scheduled bool) ([]*message, error) {
|
2021-12-07 17:45:15 +01:00
|
|
|
if since.IsNone() {
|
|
|
|
return make([]*message, 0), nil
|
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
var rows *sql.Rows
|
|
|
|
var err error
|
|
|
|
if scheduled {
|
|
|
|
rows, err = c.db.Query(selectMessagesSinceTimeIncludeScheduledQuery, topic, since.Time().Unix())
|
|
|
|
} else {
|
|
|
|
rows, err = c.db.Query(selectMessagesSinceTimeQuery, topic, since.Time().Unix())
|
|
|
|
}
|
2021-11-03 02:09:49 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
return readMessages(rows)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *sqliteCache) MessagesDue() ([]*message, error) {
|
|
|
|
rows, err := c.db.Query(selectMessagesDueQuery, time.Now().Unix())
|
|
|
|
if err != nil {
|
2021-11-03 02:09:49 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
return readMessages(rows)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *sqliteCache) MarkPublished(m *message) error {
|
|
|
|
_, err := c.db.Exec(updateMessagePublishedQuery, m.ID)
|
|
|
|
return err
|
2021-11-03 02:09:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *sqliteCache) MessageCount(topic string) (int, error) {
|
2021-11-28 20:07:29 +01:00
|
|
|
rows, err := c.db.Query(selectMessageCountForTopicQuery, topic)
|
2021-11-03 02:09:49 +01:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
var count int
|
|
|
|
if !rows.Next() {
|
|
|
|
return 0, errors.New("no rows found")
|
|
|
|
}
|
|
|
|
if err := rows.Scan(&count); err != nil {
|
|
|
|
return 0, err
|
|
|
|
} else if err := rows.Err(); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return count, nil
|
|
|
|
}
|
|
|
|
|
2021-12-07 17:45:15 +01:00
|
|
|
func (c *sqliteCache) Topics() (map[string]*topic, error) {
|
|
|
|
rows, err := c.db.Query(selectTopicsQuery)
|
2021-11-03 02:09:49 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
2021-12-07 17:45:15 +01:00
|
|
|
topics := make(map[string]*topic)
|
2021-11-03 02:09:49 +01:00
|
|
|
for rows.Next() {
|
|
|
|
var id string
|
2021-12-09 04:57:31 +01:00
|
|
|
if err := rows.Scan(&id); err != nil {
|
2021-11-03 02:09:49 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-12-09 04:57:31 +01:00
|
|
|
topics[id] = newTopic(id)
|
2021-11-03 02:09:49 +01:00
|
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return topics, nil
|
|
|
|
}
|
|
|
|
|
2021-12-09 04:57:31 +01:00
|
|
|
func (c *sqliteCache) Prune(olderThan time.Time) error {
|
|
|
|
_, err := c.db.Exec(pruneMessagesQuery, olderThan.Unix())
|
2021-11-03 02:09:49 +01:00
|
|
|
return err
|
|
|
|
}
|
2021-11-28 20:07:29 +01:00
|
|
|
|
2022-01-07 14:49:28 +01:00
|
|
|
func (c *sqliteCache) AttachmentsSize(owner string) (int64, error) {
|
2022-01-07 15:15:33 +01:00
|
|
|
rows, err := c.db.Query(selectAttachmentsSizeQuery, owner, time.Now().Unix())
|
2022-01-07 14:49:28 +01:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
var size int64
|
|
|
|
if !rows.Next() {
|
|
|
|
return 0, errors.New("no rows found")
|
|
|
|
}
|
|
|
|
if err := rows.Scan(&size); err != nil {
|
|
|
|
return 0, err
|
|
|
|
} else if err := rows.Err(); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return size, nil
|
|
|
|
}
|
|
|
|
|
2022-01-07 15:15:33 +01:00
|
|
|
func (c *sqliteCache) AttachmentsExpired() ([]string, error) {
|
|
|
|
rows, err := c.db.Query(selectAttachmentsExpiredQuery, time.Now().Unix())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
ids := make([]string, 0)
|
|
|
|
for rows.Next() {
|
|
|
|
var id string
|
|
|
|
if err := rows.Scan(&id); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ids = append(ids, id)
|
|
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ids, nil
|
|
|
|
}
|
|
|
|
|
2021-12-10 17:31:42 +01:00
|
|
|
func readMessages(rows *sql.Rows) ([]*message, error) {
|
|
|
|
defer rows.Close()
|
|
|
|
messages := make([]*message, 0)
|
|
|
|
for rows.Next() {
|
2022-01-04 00:55:08 +01:00
|
|
|
var timestamp, attachmentSize, attachmentExpires int64
|
2021-12-10 17:31:42 +01:00
|
|
|
var priority int
|
2022-01-07 14:49:28 +01:00
|
|
|
var id, topic, msg, title, tagsStr, click, attachmentName, attachmentType, attachmentURL, attachmentOwner string
|
2022-01-10 21:36:12 +01:00
|
|
|
if err := rows.Scan(&id, ×tamp, &topic, &msg, &title, &priority, &tagsStr, &click, &attachmentName, &attachmentType, &attachmentSize, &attachmentExpires, &attachmentURL, &attachmentOwner); err != nil {
|
2021-12-10 17:31:42 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var tags []string
|
|
|
|
if tagsStr != "" {
|
|
|
|
tags = strings.Split(tagsStr, ",")
|
|
|
|
}
|
2022-01-04 00:55:08 +01:00
|
|
|
var att *attachment
|
|
|
|
if attachmentName != "" && attachmentURL != "" {
|
|
|
|
att = &attachment{
|
2022-01-07 14:49:28 +01:00
|
|
|
Name: attachmentName,
|
|
|
|
Type: attachmentType,
|
|
|
|
Size: attachmentSize,
|
|
|
|
Expires: attachmentExpires,
|
|
|
|
URL: attachmentURL,
|
|
|
|
Owner: attachmentOwner,
|
2022-01-04 00:55:08 +01:00
|
|
|
}
|
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
messages = append(messages, &message{
|
2022-01-04 00:55:08 +01:00
|
|
|
ID: id,
|
|
|
|
Time: timestamp,
|
|
|
|
Event: messageEvent,
|
|
|
|
Topic: topic,
|
|
|
|
Message: msg,
|
|
|
|
Title: title,
|
|
|
|
Priority: priority,
|
|
|
|
Tags: tags,
|
2022-01-05 00:25:49 +01:00
|
|
|
Click: click,
|
2022-01-04 00:55:08 +01:00
|
|
|
Attachment: att,
|
2021-12-10 17:31:42 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return messages, nil
|
|
|
|
}
|
|
|
|
|
2021-11-28 20:07:29 +01:00
|
|
|
func setupDB(db *sql.DB) error {
|
|
|
|
// If 'messages' table does not exist, this must be a new database
|
|
|
|
rowsMC, err := db.Query(selectMessagesCountQuery)
|
|
|
|
if err != nil {
|
|
|
|
return setupNewDB(db)
|
|
|
|
}
|
2021-12-11 02:28:56 +01:00
|
|
|
rowsMC.Close()
|
2021-11-28 20:07:29 +01:00
|
|
|
|
|
|
|
// If 'messages' table exists, check 'schemaVersion' table
|
|
|
|
schemaVersion := 0
|
|
|
|
rowsSV, err := db.Query(selectSchemaVersionQuery)
|
|
|
|
if err == nil {
|
|
|
|
defer rowsSV.Close()
|
|
|
|
if !rowsSV.Next() {
|
|
|
|
return errors.New("cannot determine schema version: cache file may be corrupt")
|
|
|
|
}
|
|
|
|
if err := rowsSV.Scan(&schemaVersion); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-11 02:28:56 +01:00
|
|
|
rowsSV.Close()
|
2021-11-28 20:07:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Do migrations
|
|
|
|
if schemaVersion == currentSchemaVersion {
|
|
|
|
return nil
|
|
|
|
} else if schemaVersion == 0 {
|
2021-12-10 17:31:42 +01:00
|
|
|
return migrateFrom0(db)
|
|
|
|
} else if schemaVersion == 1 {
|
|
|
|
return migrateFrom1(db)
|
2022-01-04 00:55:08 +01:00
|
|
|
} else if schemaVersion == 2 {
|
|
|
|
return migrateFrom2(db)
|
2021-11-28 20:07:29 +01:00
|
|
|
}
|
|
|
|
return fmt.Errorf("unexpected schema version found: %d", schemaVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupNewDB(db *sql.DB) error {
|
|
|
|
if _, err := db.Exec(createMessagesTableQuery); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := db.Exec(createSchemaVersionTableQuery); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := db.Exec(insertSchemaVersion, currentSchemaVersion); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-10 17:31:42 +01:00
|
|
|
func migrateFrom0(db *sql.DB) error {
|
2021-11-29 21:34:29 +01:00
|
|
|
log.Print("Migrating cache database schema: from 0 to 1")
|
2021-11-28 20:07:29 +01:00
|
|
|
if _, err := db.Exec(migrate0To1AlterMessagesTableQuery); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := db.Exec(createSchemaVersionTableQuery); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := db.Exec(insertSchemaVersion, 1); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
return migrateFrom1(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
func migrateFrom1(db *sql.DB) error {
|
|
|
|
log.Print("Migrating cache database schema: from 1 to 2")
|
|
|
|
if _, err := db.Exec(migrate1To2AlterMessagesTableQuery); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := db.Exec(updateSchemaVersion, 2); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-04 00:55:08 +01:00
|
|
|
return migrateFrom2(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
func migrateFrom2(db *sql.DB) error {
|
|
|
|
log.Print("Migrating cache database schema: from 2 to 3")
|
|
|
|
if _, err := db.Exec(migrate2To3AlterMessagesTableQuery); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := db.Exec(updateSchemaVersion, 3); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
return nil // Update this when a new version is added
|
2021-11-28 20:07:29 +01:00
|
|
|
}
|