2022-03-03 11:40:53 +00:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package postgres
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
|
2022-09-27 14:01:34 +01:00
|
|
|
"github.com/lib/pq"
|
|
|
|
|
2022-03-03 11:40:53 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
|
|
|
"github.com/matrix-org/dendrite/internal/eventutil"
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage/tables"
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
func NewPostgresNotificationDataTable(db *sql.DB) (tables.NotificationData, error) {
|
|
|
|
_, err := db.Exec(notificationDataSchema)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
r := ¬ificationDataStatements{}
|
|
|
|
return r, sqlutil.StatementList{
|
|
|
|
{&r.upsertRoomUnreadCounts, upsertRoomUnreadNotificationCountsSQL},
|
2022-09-27 14:01:34 +01:00
|
|
|
{&r.selectUserUnreadCountsForRooms, selectUserUnreadNotificationsForRooms},
|
2022-03-03 11:40:53 +00:00
|
|
|
{&r.selectMaxID, selectMaxNotificationIDSQL},
|
2023-01-19 20:02:32 +00:00
|
|
|
{&r.purgeNotificationData, purgeNotificationDataSQL},
|
2022-03-03 11:40:53 +00:00
|
|
|
}.Prepare(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
type notificationDataStatements struct {
|
2022-09-27 14:01:34 +01:00
|
|
|
upsertRoomUnreadCounts *sql.Stmt
|
|
|
|
selectUserUnreadCountsForRooms *sql.Stmt
|
|
|
|
selectMaxID *sql.Stmt
|
2023-01-19 20:02:32 +00:00
|
|
|
purgeNotificationData *sql.Stmt
|
2022-03-03 11:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const notificationDataSchema = `
|
|
|
|
CREATE TABLE IF NOT EXISTS syncapi_notification_data (
|
|
|
|
id BIGSERIAL PRIMARY KEY,
|
|
|
|
user_id TEXT NOT NULL,
|
|
|
|
room_id TEXT NOT NULL,
|
|
|
|
notification_count BIGINT NOT NULL DEFAULT 0,
|
|
|
|
highlight_count BIGINT NOT NULL DEFAULT 0,
|
|
|
|
CONSTRAINT syncapi_notification_data_unique UNIQUE (user_id, room_id)
|
|
|
|
);`
|
|
|
|
|
|
|
|
const upsertRoomUnreadNotificationCountsSQL = `INSERT INTO syncapi_notification_data
|
|
|
|
(user_id, room_id, notification_count, highlight_count)
|
|
|
|
VALUES ($1, $2, $3, $4)
|
|
|
|
ON CONFLICT (user_id, room_id)
|
2022-08-05 12:44:20 +01:00
|
|
|
DO UPDATE SET id = nextval('syncapi_notification_data_id_seq'), notification_count = $3, highlight_count = $4
|
2022-03-03 11:40:53 +00:00
|
|
|
RETURNING id`
|
|
|
|
|
2022-09-27 14:01:34 +01:00
|
|
|
const selectUserUnreadNotificationsForRooms = `SELECT room_id, notification_count, highlight_count
|
|
|
|
FROM syncapi_notification_data
|
|
|
|
WHERE user_id = $1 AND
|
|
|
|
room_id = ANY($2)`
|
2022-03-03 11:40:53 +00:00
|
|
|
|
|
|
|
const selectMaxNotificationIDSQL = `SELECT CASE COUNT(*) WHEN 0 THEN 0 ELSE MAX(id) END FROM syncapi_notification_data`
|
|
|
|
|
2023-01-19 20:02:32 +00:00
|
|
|
const purgeNotificationDataSQL = "" +
|
|
|
|
"DELETE FROM syncapi_notification_data WHERE room_id = $1"
|
|
|
|
|
2022-09-09 13:06:42 +01:00
|
|
|
func (r *notificationDataStatements) UpsertRoomUnreadCounts(ctx context.Context, txn *sql.Tx, userID, roomID string, notificationCount, highlightCount int) (pos types.StreamPosition, err error) {
|
|
|
|
err = sqlutil.TxStmt(txn, r.upsertRoomUnreadCounts).QueryRowContext(ctx, userID, roomID, notificationCount, highlightCount).Scan(&pos)
|
2022-03-03 11:40:53 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-27 14:01:34 +01:00
|
|
|
func (r *notificationDataStatements) SelectUserUnreadCountsForRooms(
|
|
|
|
ctx context.Context, txn *sql.Tx, userID string, roomIDs []string,
|
|
|
|
) (map[string]*eventutil.NotificationData, error) {
|
|
|
|
rows, err := sqlutil.TxStmt(txn, r.selectUserUnreadCountsForRooms).QueryContext(ctx, userID, pq.Array(roomIDs))
|
2022-03-03 11:40:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-09-27 14:01:34 +01:00
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "SelectUserUnreadCountsForRooms: rows.close() failed")
|
2022-03-03 11:40:53 +00:00
|
|
|
|
|
|
|
roomCounts := map[string]*eventutil.NotificationData{}
|
2022-09-27 14:01:34 +01:00
|
|
|
var roomID string
|
|
|
|
var notificationCount, highlightCount int
|
2022-03-03 11:40:53 +00:00
|
|
|
for rows.Next() {
|
2022-09-27 14:01:34 +01:00
|
|
|
if err = rows.Scan(&roomID, ¬ificationCount, &highlightCount); err != nil {
|
2022-03-03 11:40:53 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
roomCounts[roomID] = &eventutil.NotificationData{
|
|
|
|
RoomID: roomID,
|
|
|
|
UnreadNotificationCount: notificationCount,
|
|
|
|
UnreadHighlightCount: highlightCount,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return roomCounts, rows.Err()
|
|
|
|
}
|
|
|
|
|
2022-09-09 13:06:42 +01:00
|
|
|
func (r *notificationDataStatements) SelectMaxID(ctx context.Context, txn *sql.Tx) (int64, error) {
|
2022-03-03 11:40:53 +00:00
|
|
|
var id int64
|
2022-09-09 13:06:42 +01:00
|
|
|
err := sqlutil.TxStmt(txn, r.selectMaxID).QueryRowContext(ctx).Scan(&id)
|
2022-03-03 11:40:53 +00:00
|
|
|
return id, err
|
|
|
|
}
|
2023-01-19 20:02:32 +00:00
|
|
|
|
|
|
|
func (s *notificationDataStatements) PurgeNotificationData(
|
|
|
|
ctx context.Context, txn *sql.Tx, roomID string,
|
|
|
|
) error {
|
|
|
|
_, err := sqlutil.TxStmt(txn, s.purgeNotificationData).ExecContext(ctx, roomID)
|
|
|
|
return err
|
|
|
|
}
|