gmessages/database/portal.go

159 lines
4.7 KiB
Go
Raw Normal View History

// mautrix-gmessages - A Matrix-Google Messages 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"
"database/sql"
"errors"
"fmt"
"github.com/rs/zerolog"
2023-08-08 13:13:44 +00:00
"go.mau.fi/util/dbutil"
"maunium.net/go/mautrix/id"
"go.mau.fi/mautrix-gmessages/libgm/gmproto"
)
type PortalQuery struct {
db *Database
}
func (pq *PortalQuery) New() *Portal {
return &Portal{
db: pq.db,
}
}
func (pq *PortalQuery) getDB() *Database {
return pq.db
}
2023-09-04 22:46:56 +00:00
const (
getAllPortalsQuery = "SELECT id, receiver, self_user, other_user, type, mxid, name, name_set, encrypted, in_space FROM portal"
getAllPortalsForUserQuery = getAllPortalsQuery + " WHERE receiver=$1"
getPortalByKeyQuery = getAllPortalsQuery + " WHERE id=$1 AND receiver=$2"
getPortalByOtherUserQuery = getAllPortalsQuery + " WHERE other_user=$1 AND receiver=$2"
getPortalByMXIDQuery = getAllPortalsQuery + " WHERE mxid=$1"
insertPortalQuery = `
INSERT INTO portal (id, receiver, self_user, other_user, type, mxid, name, name_set, encrypted, in_space)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
`
updatePortalQuery = `
UPDATE portal
SET self_user=$3, other_user=$4, type=$5, mxid=$6, name=$7, name_set=$8, encrypted=$9, in_space=$10
WHERE id=$1 AND receiver=$2
`
deletePortalQuery = "DELETE FROM portal WHERE id=$1 AND receiver=$2"
)
func (pq *PortalQuery) GetAll(ctx context.Context) ([]*Portal, error) {
2023-09-04 22:46:56 +00:00
return getAll[*Portal](pq, ctx, getAllPortalsQuery)
}
func (pq *PortalQuery) GetAllForUser(ctx context.Context, receiver int) ([]*Portal, error) {
2023-09-04 22:46:56 +00:00
return getAll[*Portal](pq, ctx, getAllPortalsForUserQuery, receiver)
}
func (pq *PortalQuery) GetByKey(ctx context.Context, key Key) (*Portal, error) {
2023-09-04 22:46:56 +00:00
return get[*Portal](pq, ctx, getPortalByKeyQuery, key.ID, key.Receiver)
}
2023-09-04 22:34:47 +00:00
func (pq *PortalQuery) GetByOtherUser(ctx context.Context, key Key) (*Portal, error) {
2023-09-04 22:46:56 +00:00
return get[*Portal](pq, ctx, getPortalByOtherUserQuery, key.ID, key.Receiver)
2023-09-04 22:34:47 +00:00
}
func (pq *PortalQuery) GetByMXID(ctx context.Context, mxid id.RoomID) (*Portal, error) {
2023-09-04 22:46:56 +00:00
return get[*Portal](pq, ctx, getPortalByMXIDQuery, mxid)
}
type Key struct {
ID string
Receiver int
}
func (p Key) String() string {
return fmt.Sprintf("%d.%s", p.Receiver, p.ID)
}
func (p Key) MarshalZerologObject(e *zerolog.Event) {
e.Str("id", p.ID).Int("receiver", p.Receiver)
}
type Portal struct {
db *Database
Key
OutgoingID string
OtherUserID string
MXID id.RoomID
Type gmproto.ConversationType
Name string
NameSet bool
Encrypted bool
InSpace bool
}
func (portal *Portal) Scan(row dbutil.Scannable) (*Portal, error) {
var mxid, selfUserID, otherUserID sql.NullString
var convType int
2023-09-04 22:18:01 +00:00
err := row.Scan(&portal.ID, &portal.Receiver, &selfUserID, &otherUserID, &convType, &mxid, &portal.Name, &portal.NameSet, &portal.Encrypted, &portal.InSpace)
if errors.Is(err, sql.ErrNoRows) {
return nil, nil
} else if err != nil {
return nil, err
}
portal.Type = gmproto.ConversationType(convType)
portal.MXID = id.RoomID(mxid.String)
portal.OutgoingID = selfUserID.String
portal.OtherUserID = otherUserID.String
return portal, nil
}
func (portal *Portal) sqlVariables() []any {
var mxid, selfUserID, otherUserID *string
if portal.MXID != "" {
mxid = (*string)(&portal.MXID)
}
if portal.OutgoingID != "" {
selfUserID = &portal.OutgoingID
}
if portal.OtherUserID != "" {
otherUserID = &portal.OtherUserID
}
2023-09-04 22:18:01 +00:00
return []any{
portal.ID, portal.Receiver, selfUserID, otherUserID, int(portal.Type), mxid, portal.Name, portal.NameSet,
portal.Encrypted, portal.InSpace,
}
}
func (portal *Portal) Insert(ctx context.Context) error {
2023-09-04 22:46:56 +00:00
_, err := portal.db.Conn(ctx).ExecContext(ctx, insertPortalQuery, portal.sqlVariables()...)
return err
}
func (portal *Portal) Update(ctx context.Context) error {
2023-09-04 22:46:56 +00:00
_, err := portal.db.Conn(ctx).ExecContext(ctx, updatePortalQuery, portal.sqlVariables()...)
return err
}
func (portal *Portal) Delete(ctx context.Context) error {
2023-09-04 22:46:56 +00:00
_, err := portal.db.Conn(ctx).ExecContext(ctx, deletePortalQuery, portal.ID, portal.Receiver)
return err
}