2021-04-23 18:28:38 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// 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 sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2021-04-24 13:12:06 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2021-04-23 18:28:38 +00:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
|
|
|
const pushersSchema = `
|
|
|
|
-- Stores data about pushers.
|
|
|
|
CREATE TABLE IF NOT EXISTS pusher_pushers (
|
2021-04-24 13:12:06 +00:00
|
|
|
localpart TEXT PRIMARY KEY,
|
|
|
|
pushkey VARCHAR(512),
|
|
|
|
kind TEXT,
|
|
|
|
app_id VARCHAR(64),
|
|
|
|
app_display_name TEXT,
|
|
|
|
device_display_name TEXT,
|
|
|
|
profile_tag TEXT,
|
|
|
|
lang TEXT,
|
|
|
|
url TEXT,
|
|
|
|
format TEXT,
|
2021-04-23 18:28:38 +00:00
|
|
|
|
2021-04-24 13:12:06 +00:00
|
|
|
UNIQUE (localpart, pushkey)
|
2021-04-23 18:28:38 +00:00
|
|
|
);
|
|
|
|
`
|
|
|
|
const selectPushersByLocalpartSQL = "" +
|
2021-04-24 13:12:06 +00:00
|
|
|
"SELECT pushkey, kind, app_id, app_display_name, device_display_name, profile_tag, lang, url, format FROM pusher_pushers WHERE localpart = $1"
|
2021-04-23 18:28:38 +00:00
|
|
|
|
|
|
|
type pushersStatements struct {
|
|
|
|
db *sql.DB
|
|
|
|
writer sqlutil.Writer
|
|
|
|
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, writer sqlutil.Writer, server gomatrixserverlib.ServerName) (err error) {
|
|
|
|
s.db = db
|
|
|
|
s.writer = writer
|
|
|
|
if s.selectPushersByLocalpartStmt, err = db.Prepare(selectPushersByLocalpartSQL); err != nil {
|
2021-04-24 13:12:06 +00:00
|
|
|
logrus.WithError(err).Debug("💥💥💥 Preparing selectPushersByLocalpartStmt...")
|
|
|
|
return
|
2021-04-23 18:28:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
s.serverName = server
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *pushersStatements) selectPushersByLocalpart(
|
2021-04-23 21:02:00 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, localpart string,
|
2021-04-23 18:28:38 +00:00
|
|
|
) ([]api.Pusher, error) {
|
|
|
|
pushers := []api.Pusher{}
|
2021-04-23 21:02:00 +00:00
|
|
|
rows, err := sqlutil.TxStmt(txn, s.selectPushersByLocalpartStmt).QueryContext(ctx, localpart)
|
2021-04-23 18:28:38 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return pushers, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for rows.Next() {
|
2021-04-23 21:02:00 +00:00
|
|
|
var pusher api.Pusher
|
2021-04-24 13:12:06 +00:00
|
|
|
var pushkey, kind, appid, appdisplayname, devicedisplayname, profiletag, lang, url, format sql.NullString
|
|
|
|
err = rows.Scan(&pushkey, &kind, &appid, &appdisplayname, &devicedisplayname, &profiletag, &lang, &url, &format)
|
2021-04-23 18:28:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return pushers, err
|
|
|
|
}
|
2021-04-23 21:02:00 +00:00
|
|
|
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
|
|
|
|
}
|
2021-04-24 13:12:06 +00:00
|
|
|
if lang.Valid {
|
|
|
|
pusher.Language = lang.String
|
2021-04-23 21:02:00 +00:00
|
|
|
}
|
|
|
|
if url.Valid && format.Valid {
|
|
|
|
pusher.Data = api.PusherData{
|
|
|
|
URL: url.String,
|
|
|
|
Format: format.String,
|
|
|
|
}
|
2021-04-23 18:28:38 +00:00
|
|
|
}
|
|
|
|
|
2021-04-23 21:02:00 +00:00
|
|
|
pusher.UserID = userutil.MakeUserID(localpart, s.serverName)
|
|
|
|
pushers = append(pushers, pusher)
|
2021-04-23 18:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return pushers, nil
|
|
|
|
}
|