mautrix-signal/database/lostportal.go
Tulir Asokan 35db0abe8b
Refactor database tables and query wrappers (#402)
* Change most columns to `NOT NULL`, including primary keys
  (because SQLite).
* Change columns only storing signal user IDs (portal receiver, message
  sender, user uuid) to use the `uuid` type instead of `TEXT`.
* Drop chat ID from message table primary key.
* Add part index to message table to replace timestamp hack for storing
  multiple parts of the same message.
* Change query wrappers to use new QureyHelper struct in dbutil, and 
  pass contexts and errors everywhere.

As a part of changing the portal receiver from phone number to uuid,
old portals whose receiver isn't logged in anymore may be discarded.
The discarded portals will be stored in the lost_portals table for
cleanup or recovery.
2023-12-31 16:12:58 +02:00

58 lines
1.6 KiB
Go

// mautrix-signal - A Matrix-signal puppeting bridge.
// Copyright (C) 2023 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package database
import (
"context"
"go.mau.fi/util/dbutil"
"maunium.net/go/mautrix/id"
)
const (
getLostPortalsQuery = `SELECT chat_id, receiver, mxid FROM lost_portals`
deleteLostPortalQuery = `DELETE FROM lost_portals WHERE mxid=$1`
)
type LostPortalQuery struct {
*dbutil.QueryHelper[*LostPortal]
}
func (lpq *LostPortalQuery) GetAll(ctx context.Context) ([]*LostPortal, error) {
return lpq.QueryMany(ctx, getLostPortalsQuery)
}
type LostPortal struct {
qh *dbutil.QueryHelper[*LostPortal]
ChatID string
Receiver string
MXID id.RoomID
}
func newLostPortal(qh *dbutil.QueryHelper[*LostPortal]) *LostPortal {
return &LostPortal{qh: qh}
}
func (l *LostPortal) Scan(row dbutil.Scannable) (*LostPortal, error) {
err := row.Scan(&l.ChatID, &l.Receiver, &l.MXID)
return l, err
}
func (l *LostPortal) Delete(ctx context.Context) error {
return l.qh.Exec(ctx, deleteLostPortalQuery, l.MXID)
}