2017-05-25 12:33:50 +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.
|
|
|
|
|
2020-02-13 17:27:33 +00:00
|
|
|
package sqlite3
|
2017-05-25 12:33:50 +00:00
|
|
|
|
|
|
|
import (
|
2017-09-18 14:51:26 +00:00
|
|
|
"context"
|
2017-05-25 12:33:50 +00:00
|
|
|
"database/sql"
|
2020-02-13 17:27:33 +00:00
|
|
|
"strings"
|
2017-05-25 12:33:50 +00:00
|
|
|
"time"
|
|
|
|
|
2020-07-22 16:04:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2020-06-16 13:10:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2020-02-13 17:27:33 +00:00
|
|
|
|
2018-05-31 14:21:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2017-05-25 12:33:50 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
|
|
|
const devicesSchema = `
|
2019-08-23 16:55:40 +00:00
|
|
|
-- This sequence is used for automatic allocation of session_id.
|
2020-02-13 17:27:33 +00:00
|
|
|
-- CREATE SEQUENCE IF NOT EXISTS device_session_id_seq START 1;
|
2019-08-23 16:55:40 +00:00
|
|
|
|
2017-05-25 12:33:50 +00:00
|
|
|
-- Stores data about devices.
|
2017-08-07 10:51:46 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS device_devices (
|
2020-02-13 17:27:33 +00:00
|
|
|
access_token TEXT PRIMARY KEY,
|
|
|
|
session_id INTEGER,
|
|
|
|
device_id TEXT ,
|
|
|
|
localpart TEXT ,
|
|
|
|
created_ts BIGINT,
|
|
|
|
display_name TEXT,
|
2020-10-09 08:17:23 +00:00
|
|
|
last_seen_ts BIGINT,
|
|
|
|
ip TEXT,
|
|
|
|
user_agent TEXT,
|
2020-02-13 17:27:33 +00:00
|
|
|
|
|
|
|
UNIQUE (localpart, device_id)
|
2017-05-25 12:33:50 +00:00
|
|
|
);
|
|
|
|
`
|
|
|
|
|
|
|
|
const insertDeviceSQL = "" +
|
2020-10-09 08:17:23 +00:00
|
|
|
"INSERT INTO device_devices (device_id, localpart, access_token, created_ts, display_name, session_id, last_seen_ts, ip, user_agent)" +
|
|
|
|
" VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)"
|
2020-02-13 17:27:33 +00:00
|
|
|
|
|
|
|
const selectDevicesCountSQL = "" +
|
|
|
|
"SELECT COUNT(access_token) FROM device_devices"
|
2017-05-25 12:33:50 +00:00
|
|
|
|
|
|
|
const selectDeviceByTokenSQL = "" +
|
2019-08-23 16:55:40 +00:00
|
|
|
"SELECT session_id, device_id, localpart FROM device_devices WHERE access_token = $1"
|
2017-05-25 12:33:50 +00:00
|
|
|
|
2017-10-17 18:12:54 +00:00
|
|
|
const selectDeviceByIDSQL = "" +
|
2017-11-14 09:59:02 +00:00
|
|
|
"SELECT display_name FROM device_devices WHERE localpart = $1 and device_id = $2"
|
2017-10-17 18:12:54 +00:00
|
|
|
|
|
|
|
const selectDevicesByLocalpartSQL = "" +
|
2020-11-17 10:07:03 +00:00
|
|
|
"SELECT device_id, display_name, last_seen_ts, ip, user_agent FROM device_devices WHERE localpart = $1 AND device_id != $2"
|
2017-11-14 09:59:02 +00:00
|
|
|
|
|
|
|
const updateDeviceNameSQL = "" +
|
|
|
|
"UPDATE device_devices SET display_name = $1 WHERE localpart = $2 AND device_id = $3"
|
2017-10-17 18:12:54 +00:00
|
|
|
|
2017-05-25 12:33:50 +00:00
|
|
|
const deleteDeviceSQL = "" +
|
2017-08-07 10:51:46 +00:00
|
|
|
"DELETE FROM device_devices WHERE device_id = $1 AND localpart = $2"
|
2017-05-25 12:33:50 +00:00
|
|
|
|
2017-10-15 10:29:47 +00:00
|
|
|
const deleteDevicesByLocalpartSQL = "" +
|
2020-09-04 14:16:13 +00:00
|
|
|
"DELETE FROM device_devices WHERE localpart = $1 AND device_id != $2"
|
2017-10-15 10:29:47 +00:00
|
|
|
|
2020-02-11 12:13:38 +00:00
|
|
|
const deleteDevicesSQL = "" +
|
2020-02-13 17:27:33 +00:00
|
|
|
"DELETE FROM device_devices WHERE localpart = $1 AND device_id IN ($2)"
|
2020-02-11 12:13:38 +00:00
|
|
|
|
2020-07-22 16:04:57 +00:00
|
|
|
const selectDevicesByIDSQL = "" +
|
|
|
|
"SELECT device_id, localpart, display_name FROM device_devices WHERE device_id IN ($1)"
|
|
|
|
|
2020-10-09 08:17:23 +00:00
|
|
|
const updateDeviceLastSeen = "" +
|
2020-11-20 11:29:02 +00:00
|
|
|
"UPDATE device_devices SET last_seen_ts = $1, ip = $2 WHERE localpart = $3 AND device_id = $4"
|
2020-10-09 08:17:23 +00:00
|
|
|
|
2017-05-25 12:33:50 +00:00
|
|
|
type devicesStatements struct {
|
2020-02-13 17:27:33 +00:00
|
|
|
db *sql.DB
|
2020-08-21 09:42:08 +00:00
|
|
|
writer sqlutil.Writer
|
2017-10-15 10:29:47 +00:00
|
|
|
insertDeviceStmt *sql.Stmt
|
2020-02-13 17:27:33 +00:00
|
|
|
selectDevicesCountStmt *sql.Stmt
|
2017-10-15 10:29:47 +00:00
|
|
|
selectDeviceByTokenStmt *sql.Stmt
|
2017-10-17 18:12:54 +00:00
|
|
|
selectDeviceByIDStmt *sql.Stmt
|
2020-07-22 16:04:57 +00:00
|
|
|
selectDevicesByIDStmt *sql.Stmt
|
2017-10-17 18:12:54 +00:00
|
|
|
selectDevicesByLocalpartStmt *sql.Stmt
|
2017-11-14 09:59:02 +00:00
|
|
|
updateDeviceNameStmt *sql.Stmt
|
2020-10-09 08:17:23 +00:00
|
|
|
updateDeviceLastSeenStmt *sql.Stmt
|
2017-10-15 10:29:47 +00:00
|
|
|
deleteDeviceStmt *sql.Stmt
|
|
|
|
deleteDevicesByLocalpartStmt *sql.Stmt
|
2017-10-17 18:12:54 +00:00
|
|
|
serverName gomatrixserverlib.ServerName
|
2017-05-25 12:33:50 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 17:09:41 +00:00
|
|
|
func (s *devicesStatements) execSchema(db *sql.DB) error {
|
|
|
|
_, err := db.Exec(devicesSchema)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-08-21 09:42:08 +00:00
|
|
|
func (s *devicesStatements) prepare(db *sql.DB, writer sqlutil.Writer, server gomatrixserverlib.ServerName) (err error) {
|
2020-02-13 17:27:33 +00:00
|
|
|
s.db = db
|
2020-08-21 09:42:08 +00:00
|
|
|
s.writer = writer
|
2017-05-25 12:33:50 +00:00
|
|
|
if s.insertDeviceStmt, err = db.Prepare(insertDeviceSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-02-13 17:27:33 +00:00
|
|
|
if s.selectDevicesCountStmt, err = db.Prepare(selectDevicesCountSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-05-25 12:33:50 +00:00
|
|
|
if s.selectDeviceByTokenStmt, err = db.Prepare(selectDeviceByTokenSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-10-17 18:12:54 +00:00
|
|
|
if s.selectDeviceByIDStmt, err = db.Prepare(selectDeviceByIDSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if s.selectDevicesByLocalpartStmt, err = db.Prepare(selectDevicesByLocalpartSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-11-14 09:59:02 +00:00
|
|
|
if s.updateDeviceNameStmt, err = db.Prepare(updateDeviceNameSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-05-25 12:33:50 +00:00
|
|
|
if s.deleteDeviceStmt, err = db.Prepare(deleteDeviceSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-10-15 10:29:47 +00:00
|
|
|
if s.deleteDevicesByLocalpartStmt, err = db.Prepare(deleteDevicesByLocalpartSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-07-22 16:04:57 +00:00
|
|
|
if s.selectDevicesByIDStmt, err = db.Prepare(selectDevicesByIDSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-10-09 08:17:23 +00:00
|
|
|
if s.updateDeviceLastSeenStmt, err = db.Prepare(updateDeviceLastSeen); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-05-25 12:33:50 +00:00
|
|
|
s.serverName = server
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// insertDevice creates a new device. Returns an error if any device with the same access token already exists.
|
|
|
|
// Returns an error if the user already has a device with the given device ID.
|
|
|
|
// Returns the device on success.
|
2017-09-18 14:51:26 +00:00
|
|
|
func (s *devicesStatements) insertDevice(
|
|
|
|
ctx context.Context, txn *sql.Tx, id, localpart, accessToken string,
|
2020-10-09 08:17:23 +00:00
|
|
|
displayName *string, ipAddr, userAgent string,
|
2020-06-16 13:10:55 +00:00
|
|
|
) (*api.Device, error) {
|
2017-05-25 12:33:50 +00:00
|
|
|
createdTimeMS := time.Now().UnixNano() / 1000000
|
2019-08-23 16:55:40 +00:00
|
|
|
var sessionID int64
|
2020-08-21 09:42:08 +00:00
|
|
|
countStmt := sqlutil.TxStmt(txn, s.selectDevicesCountStmt)
|
|
|
|
insertStmt := sqlutil.TxStmt(txn, s.insertDeviceStmt)
|
|
|
|
if err := countStmt.QueryRowContext(ctx).Scan(&sessionID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
sessionID++
|
2020-10-09 08:17:23 +00:00
|
|
|
if _, err := insertStmt.ExecContext(ctx, id, localpart, accessToken, createdTimeMS, displayName, sessionID, createdTimeMS, ipAddr, userAgent); err != nil {
|
2017-09-18 14:51:26 +00:00
|
|
|
return nil, err
|
2017-05-25 12:33:50 +00:00
|
|
|
}
|
2020-06-16 13:10:55 +00:00
|
|
|
return &api.Device{
|
2017-09-18 14:51:26 +00:00
|
|
|
ID: id,
|
2018-05-31 14:21:13 +00:00
|
|
|
UserID: userutil.MakeUserID(localpart, s.serverName),
|
2017-09-18 14:51:26 +00:00
|
|
|
AccessToken: accessToken,
|
2019-08-23 16:55:40 +00:00
|
|
|
SessionID: sessionID,
|
2020-10-09 08:17:23 +00:00
|
|
|
LastSeenTS: createdTimeMS,
|
|
|
|
LastSeenIP: ipAddr,
|
|
|
|
UserAgent: userAgent,
|
2017-09-18 14:51:26 +00:00
|
|
|
}, nil
|
2017-05-25 12:33:50 +00:00
|
|
|
}
|
|
|
|
|
2017-09-18 14:51:26 +00:00
|
|
|
func (s *devicesStatements) deleteDevice(
|
|
|
|
ctx context.Context, txn *sql.Tx, id, localpart string,
|
|
|
|
) error {
|
2020-08-21 09:42:08 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.deleteDeviceStmt)
|
|
|
|
_, err := stmt.ExecContext(ctx, id, localpart)
|
|
|
|
return err
|
2017-05-25 12:33:50 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 12:13:38 +00:00
|
|
|
func (s *devicesStatements) deleteDevices(
|
|
|
|
ctx context.Context, txn *sql.Tx, localpart string, devices []string,
|
|
|
|
) error {
|
2020-07-31 13:40:45 +00:00
|
|
|
orig := strings.Replace(deleteDevicesSQL, "($2)", sqlutil.QueryVariadicOffset(len(devices), 1), 1)
|
2020-02-13 17:27:33 +00:00
|
|
|
prep, err := s.db.Prepare(orig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, prep)
|
|
|
|
params := make([]interface{}, len(devices)+1)
|
|
|
|
params[0] = localpart
|
|
|
|
for i, v := range devices {
|
|
|
|
params[i+1] = v
|
|
|
|
}
|
|
|
|
_, err = stmt.ExecContext(ctx, params...)
|
|
|
|
return err
|
2020-02-11 12:13:38 +00:00
|
|
|
}
|
|
|
|
|
2017-10-15 10:29:47 +00:00
|
|
|
func (s *devicesStatements) deleteDevicesByLocalpart(
|
2020-09-04 14:16:13 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, localpart, exceptDeviceID string,
|
2017-10-15 10:29:47 +00:00
|
|
|
) error {
|
2020-08-21 09:42:08 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.deleteDevicesByLocalpartStmt)
|
2020-09-04 14:16:13 +00:00
|
|
|
_, err := stmt.ExecContext(ctx, localpart, exceptDeviceID)
|
2020-08-21 09:42:08 +00:00
|
|
|
return err
|
2017-10-15 10:29:47 +00:00
|
|
|
}
|
|
|
|
|
2017-11-14 09:59:02 +00:00
|
|
|
func (s *devicesStatements) updateDeviceName(
|
|
|
|
ctx context.Context, txn *sql.Tx, localpart, deviceID string, displayName *string,
|
|
|
|
) error {
|
2020-08-21 09:42:08 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.updateDeviceNameStmt)
|
|
|
|
_, err := stmt.ExecContext(ctx, displayName, localpart, deviceID)
|
|
|
|
return err
|
2017-11-14 09:59:02 +00:00
|
|
|
}
|
|
|
|
|
2017-09-18 14:51:26 +00:00
|
|
|
func (s *devicesStatements) selectDeviceByToken(
|
|
|
|
ctx context.Context, accessToken string,
|
2020-06-16 13:10:55 +00:00
|
|
|
) (*api.Device, error) {
|
|
|
|
var dev api.Device
|
2017-05-25 12:33:50 +00:00
|
|
|
var localpart string
|
2017-09-18 14:51:26 +00:00
|
|
|
stmt := s.selectDeviceByTokenStmt
|
2019-08-23 16:55:40 +00:00
|
|
|
err := stmt.QueryRowContext(ctx, accessToken).Scan(&dev.SessionID, &dev.ID, &localpart)
|
2017-05-25 12:33:50 +00:00
|
|
|
if err == nil {
|
2018-05-31 14:21:13 +00:00
|
|
|
dev.UserID = userutil.MakeUserID(localpart, s.serverName)
|
2017-05-25 12:33:50 +00:00
|
|
|
dev.AccessToken = accessToken
|
|
|
|
}
|
|
|
|
return &dev, err
|
|
|
|
}
|
|
|
|
|
2019-07-22 14:05:38 +00:00
|
|
|
// selectDeviceByID retrieves a device from the database with the given user
|
|
|
|
// localpart and deviceID
|
2017-10-17 18:12:54 +00:00
|
|
|
func (s *devicesStatements) selectDeviceByID(
|
|
|
|
ctx context.Context, localpart, deviceID string,
|
2020-06-16 13:10:55 +00:00
|
|
|
) (*api.Device, error) {
|
|
|
|
var dev api.Device
|
2020-07-22 16:04:57 +00:00
|
|
|
var displayName sql.NullString
|
2017-10-17 18:12:54 +00:00
|
|
|
stmt := s.selectDeviceByIDStmt
|
2020-07-22 16:04:57 +00:00
|
|
|
err := stmt.QueryRowContext(ctx, localpart, deviceID).Scan(&displayName)
|
2017-10-17 18:12:54 +00:00
|
|
|
if err == nil {
|
|
|
|
dev.ID = deviceID
|
2018-05-31 14:21:13 +00:00
|
|
|
dev.UserID = userutil.MakeUserID(localpart, s.serverName)
|
2020-07-22 16:04:57 +00:00
|
|
|
if displayName.Valid {
|
|
|
|
dev.DisplayName = displayName.String
|
|
|
|
}
|
2017-10-17 18:12:54 +00:00
|
|
|
}
|
|
|
|
return &dev, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *devicesStatements) selectDevicesByLocalpart(
|
2020-09-04 14:16:13 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, localpart, exceptDeviceID string,
|
2020-06-16 13:10:55 +00:00
|
|
|
) ([]api.Device, error) {
|
|
|
|
devices := []api.Device{}
|
2020-09-04 14:16:13 +00:00
|
|
|
rows, err := sqlutil.TxStmt(txn, s.selectDevicesByLocalpartStmt).QueryContext(ctx, localpart, exceptDeviceID)
|
2017-10-17 18:12:54 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return devices, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for rows.Next() {
|
2020-06-16 13:10:55 +00:00
|
|
|
var dev api.Device
|
2020-11-17 10:07:03 +00:00
|
|
|
var lastseents sql.NullInt64
|
|
|
|
var id, displayname, ip, useragent sql.NullString
|
|
|
|
err = rows.Scan(&id, &displayname, &lastseents, &ip, &useragent)
|
2017-10-17 18:12:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return devices, err
|
|
|
|
}
|
2020-05-26 13:41:16 +00:00
|
|
|
if id.Valid {
|
|
|
|
dev.ID = id.String
|
|
|
|
}
|
|
|
|
if displayname.Valid {
|
|
|
|
dev.DisplayName = displayname.String
|
|
|
|
}
|
2020-11-17 10:07:03 +00:00
|
|
|
if lastseents.Valid {
|
|
|
|
dev.LastSeenTS = lastseents.Int64
|
|
|
|
}
|
|
|
|
if ip.Valid {
|
|
|
|
dev.LastSeenIP = ip.String
|
|
|
|
}
|
|
|
|
if useragent.Valid {
|
|
|
|
dev.UserAgent = useragent.String
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:21:13 +00:00
|
|
|
dev.UserID = userutil.MakeUserID(localpart, s.serverName)
|
2017-10-17 18:12:54 +00:00
|
|
|
devices = append(devices, dev)
|
|
|
|
}
|
|
|
|
|
2020-02-13 17:27:33 +00:00
|
|
|
return devices, nil
|
2017-10-17 18:12:54 +00:00
|
|
|
}
|
2020-07-22 16:04:57 +00:00
|
|
|
|
|
|
|
func (s *devicesStatements) selectDevicesByID(ctx context.Context, deviceIDs []string) ([]api.Device, error) {
|
|
|
|
sqlQuery := strings.Replace(selectDevicesByIDSQL, "($1)", sqlutil.QueryVariadic(len(deviceIDs)), 1)
|
|
|
|
iDeviceIDs := make([]interface{}, len(deviceIDs))
|
|
|
|
for i := range deviceIDs {
|
|
|
|
iDeviceIDs[i] = deviceIDs[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
rows, err := s.db.QueryContext(ctx, sqlQuery, iDeviceIDs...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "selectDevicesByID: rows.close() failed")
|
|
|
|
var devices []api.Device
|
|
|
|
for rows.Next() {
|
|
|
|
var dev api.Device
|
|
|
|
var localpart string
|
|
|
|
var displayName sql.NullString
|
|
|
|
if err := rows.Scan(&dev.ID, &localpart, &displayName); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if displayName.Valid {
|
|
|
|
dev.DisplayName = displayName.String
|
|
|
|
}
|
|
|
|
dev.UserID = userutil.MakeUserID(localpart, s.serverName)
|
|
|
|
devices = append(devices, dev)
|
|
|
|
}
|
|
|
|
return devices, rows.Err()
|
|
|
|
}
|
2020-10-09 08:17:23 +00:00
|
|
|
|
2020-11-20 11:29:02 +00:00
|
|
|
func (s *devicesStatements) updateDeviceLastSeen(ctx context.Context, txn *sql.Tx, localpart, deviceID, ipAddr string) error {
|
2020-10-09 08:17:23 +00:00
|
|
|
lastSeenTs := time.Now().UnixNano() / 1000000
|
|
|
|
stmt := sqlutil.TxStmt(txn, s.updateDeviceLastSeenStmt)
|
2020-11-20 11:29:02 +00:00
|
|
|
_, err := stmt.ExecContext(ctx, lastSeenTs, ipAddr, localpart, deviceID)
|
2020-10-09 08:17:23 +00:00
|
|
|
return err
|
|
|
|
}
|