mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-04 02:53:40 +00:00
128 lines
3.7 KiB
Go
128 lines
3.7 KiB
Go
// Copyright 2021 Dan Peleg <dan@globekeeper.com>
|
|
//
|
|
// 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"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
|
"github.com/matrix-org/dendrite/internal"
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
)
|
|
|
|
const pushersSchema = `
|
|
-- Stores data about pushers.
|
|
CREATE TABLE IF NOT EXISTS pusher_pushers (
|
|
-- The Matrix user ID localpart for this pusher
|
|
localpart TEXT NOT NULL PRIMARY KEY,
|
|
-- The push key for this pusher
|
|
pushkey TEXT,
|
|
-- The pusher kind
|
|
kind TEXT,
|
|
-- The pusher Application ID
|
|
app_id TEXT,
|
|
-- The pusher application display name, human friendlier than app_id and updatable
|
|
app_display_name TEXT,
|
|
-- The pusher device display name,
|
|
device_display_name TEXT,
|
|
-- The pusher profile tag,
|
|
profile_tag TEXT,
|
|
-- The pusher preferred language,
|
|
language TEXT,
|
|
);
|
|
|
|
-- Pusher IDs must be unique for a given user.
|
|
CREATE UNIQUE INDEX IF NOT EXISTS pusher_localpart_id_idx ON pusher_pushers(localpart, pusher_id);
|
|
`
|
|
|
|
const selectPushersByLocalpartSQL = "" +
|
|
"SELECT pusher_id, display_name, last_seen_ts, ip, user_agent FROM pusher_pushers WHERE localpart = $1 AND pusher_id != $2"
|
|
|
|
type pushersStatements struct {
|
|
selectPushersByLocalpartStmt *sql.Stmt
|
|
serverName gomatrixserverlib.ServerName
|
|
}
|
|
|
|
func (s *pushersStatements) execSchema(db *sql.DB) error {
|
|
_, err := db.Exec(pushersSchema)
|
|
return err
|
|
}
|
|
|
|
func (s *pushersStatements) prepare(db *sql.DB, server gomatrixserverlib.ServerName) (err error) {
|
|
if s.selectPushersByLocalpartStmt, err = db.Prepare(selectPushersByLocalpartSQL); err != nil {
|
|
return
|
|
}
|
|
s.serverName = server
|
|
return
|
|
}
|
|
|
|
func (s *pushersStatements) selectPushersByLocalpart(
|
|
ctx context.Context, txn *sql.Tx, localpart, exceptPusherID string,
|
|
) ([]api.Pusher, error) {
|
|
pushers := []api.Pusher{}
|
|
rows, err := sqlutil.TxStmt(txn, s.selectPushersByLocalpartStmt).QueryContext(ctx, localpart, exceptPusherID)
|
|
|
|
if err != nil {
|
|
return pushers, err
|
|
}
|
|
defer internal.CloseAndLogIfError(ctx, rows, "selectPushersByLocalpart: rows.close() failed")
|
|
|
|
for rows.Next() {
|
|
var pusher api.Pusher
|
|
var id, pushkey, kind, appid, appdisplayname, devicedisplayname, profiletag, language, url, format sql.NullString
|
|
err = rows.Scan(&id, &pushkey, &kind, &appid, &appdisplayname, &devicedisplayname, &profiletag, &language, &url, &format)
|
|
if err != nil {
|
|
return pushers, err
|
|
}
|
|
if id.Valid {
|
|
pusher.ID = id.String
|
|
}
|
|
if pushkey.Valid {
|
|
pusher.PushKey = pushkey.String
|
|
}
|
|
if kind.Valid {
|
|
pusher.Kind = kind.String
|
|
}
|
|
if appid.Valid {
|
|
pusher.AppID = appid.String
|
|
}
|
|
if appdisplayname.Valid {
|
|
pusher.AppDisplayName = appdisplayname.String
|
|
}
|
|
if devicedisplayname.Valid {
|
|
pusher.DeviceDisplayName = devicedisplayname.String
|
|
}
|
|
if profiletag.Valid {
|
|
pusher.ProfileTag = profiletag.String
|
|
}
|
|
if language.Valid {
|
|
pusher.Language = language.String
|
|
}
|
|
if url.Valid && format.Valid {
|
|
pusher.Data = api.PusherData{
|
|
URL: url.String,
|
|
Format: format.String,
|
|
}
|
|
}
|
|
|
|
pusher.UserID = userutil.MakeUserID(localpart, s.serverName)
|
|
pushers = append(pushers, pusher)
|
|
}
|
|
|
|
return pushers, rows.Err()
|
|
}
|