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 postgres
|
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"
|
|
|
|
"time"
|
|
|
|
|
2020-02-11 12:13:38 +00:00
|
|
|
"github.com/lib/pq"
|
2018-05-31 14:21:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2020-05-21 13:40:13 +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"
|
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.
|
|
|
|
CREATE SEQUENCE IF NOT EXISTS device_session_id_seq START 1;
|
|
|
|
|
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 (
|
2017-05-25 12:33:50 +00:00
|
|
|
-- The access token granted to this device. This has to be the primary key
|
|
|
|
-- so we can distinguish which device is making a given request.
|
|
|
|
access_token TEXT NOT NULL PRIMARY KEY,
|
2019-08-23 16:55:40 +00:00
|
|
|
-- The auto-allocated unique ID of the session identified by the access token.
|
|
|
|
-- This can be used as a secure substitution of the access token in situations
|
|
|
|
-- where data is associated with access tokens (e.g. transaction storage),
|
|
|
|
-- so we don't have to store users' access tokens everywhere.
|
|
|
|
session_id BIGINT NOT NULL DEFAULT nextval('device_session_id_seq'),
|
2017-05-25 12:33:50 +00:00
|
|
|
-- The device identifier. This only needs to uniquely identify a device for a given user, not globally.
|
|
|
|
-- access_tokens will be clobbered based on the device ID for a user.
|
|
|
|
device_id TEXT NOT NULL,
|
|
|
|
-- The Matrix user ID localpart for this device. This is preferable to storing the full user_id
|
|
|
|
-- as it is smaller, makes it clearer that we only manage devices for our own users, and may make
|
|
|
|
-- migration to different domain names easier.
|
|
|
|
localpart TEXT NOT NULL,
|
|
|
|
-- When this devices was first recognised on the network, as a unix timestamp (ms resolution).
|
2017-11-14 09:59:02 +00:00
|
|
|
created_ts BIGINT NOT NULL,
|
|
|
|
-- The display name, human friendlier than device_id and updatable
|
|
|
|
display_name TEXT
|
2017-05-25 12:33:50 +00:00
|
|
|
-- TODO: device keys, device display names, last used ts and IP address?, token restrictions (if 3rd-party OAuth app)
|
|
|
|
);
|
|
|
|
|
|
|
|
-- Device IDs must be unique for a given user.
|
2017-08-07 10:51:46 +00:00
|
|
|
CREATE UNIQUE INDEX IF NOT EXISTS device_localpart_id_idx ON device_devices(localpart, device_id);
|
2017-05-25 12:33:50 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
const insertDeviceSQL = "" +
|
2019-08-23 16:55:40 +00:00
|
|
|
"INSERT INTO device_devices(device_id, localpart, access_token, created_ts, display_name) VALUES ($1, $2, $3, $4, $5)" +
|
|
|
|
" RETURNING session_id"
|
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-09-04 14:16:13 +00:00
|
|
|
"SELECT device_id, display_name 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 = "" +
|
|
|
|
"DELETE FROM device_devices WHERE localpart = $1 AND device_id = ANY($2)"
|
|
|
|
|
2020-07-22 16:04:57 +00:00
|
|
|
const selectDevicesByIDSQL = "" +
|
|
|
|
"SELECT device_id, localpart, display_name FROM device_devices WHERE device_id = ANY($1)"
|
|
|
|
|
2017-05-25 12:33:50 +00:00
|
|
|
type devicesStatements struct {
|
2017-10-15 10:29:47 +00:00
|
|
|
insertDeviceStmt *sql.Stmt
|
|
|
|
selectDeviceByTokenStmt *sql.Stmt
|
2017-10-17 18:12:54 +00:00
|
|
|
selectDeviceByIDStmt *sql.Stmt
|
|
|
|
selectDevicesByLocalpartStmt *sql.Stmt
|
2020-07-22 16:04:57 +00:00
|
|
|
selectDevicesByIDStmt *sql.Stmt
|
2017-11-14 09:59:02 +00:00
|
|
|
updateDeviceNameStmt *sql.Stmt
|
2017-10-15 10:29:47 +00:00
|
|
|
deleteDeviceStmt *sql.Stmt
|
|
|
|
deleteDevicesByLocalpartStmt *sql.Stmt
|
2020-02-11 12:13:38 +00:00
|
|
|
deleteDevicesStmt *sql.Stmt
|
2017-10-17 18:12:54 +00:00
|
|
|
serverName gomatrixserverlib.ServerName
|
2017-05-25 12:33:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *devicesStatements) prepare(db *sql.DB, server gomatrixserverlib.ServerName) (err error) {
|
|
|
|
_, err = db.Exec(devicesSchema)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if s.insertDeviceStmt, err = db.Prepare(insertDeviceSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
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-02-11 12:13:38 +00:00
|
|
|
if s.deleteDevicesStmt, err = db.Prepare(deleteDevicesSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-07-22 16:04:57 +00:00
|
|
|
if s.selectDevicesByIDStmt, err = db.Prepare(selectDevicesByIDSQL); 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,
|
2017-11-14 09:59:02 +00:00
|
|
|
displayName *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-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.insertDeviceStmt)
|
2019-08-23 16:55:40 +00:00
|
|
|
if err := stmt.QueryRowContext(ctx, id, localpart, accessToken, createdTimeMS, displayName).Scan(&sessionID); 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,
|
2017-09-18 14:51:26 +00:00
|
|
|
}, nil
|
2017-05-25 12:33:50 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 12:13:38 +00:00
|
|
|
// deleteDevice removes a single device by id and user localpart.
|
2017-09-18 14:51:26 +00:00
|
|
|
func (s *devicesStatements) deleteDevice(
|
|
|
|
ctx context.Context, txn *sql.Tx, id, localpart string,
|
|
|
|
) error {
|
2020-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.deleteDeviceStmt)
|
2017-09-18 14:51:26 +00:00
|
|
|
_, err := stmt.ExecContext(ctx, id, localpart)
|
2017-05-25 12:33:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 12:13:38 +00:00
|
|
|
// deleteDevices removes a single or multiple devices by ids and user localpart.
|
|
|
|
// Returns an error if the execution failed.
|
|
|
|
func (s *devicesStatements) deleteDevices(
|
|
|
|
ctx context.Context, txn *sql.Tx, localpart string, devices []string,
|
|
|
|
) error {
|
2020-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.deleteDevicesStmt)
|
2020-02-11 12:13:38 +00:00
|
|
|
_, err := stmt.ExecContext(ctx, localpart, pq.Array(devices))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// deleteDevicesByLocalpart removes all devices for the
|
|
|
|
// given user localpart.
|
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-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.deleteDevicesByLocalpartStmt)
|
2020-09-04 14:16:13 +00:00
|
|
|
_, err := stmt.ExecContext(ctx, localpart, exceptDeviceID)
|
2017-10-15 10:29:47 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
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-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.updateDeviceNameStmt)
|
2017-11-14 09:59:02 +00:00
|
|
|
_, err := stmt.ExecContext(ctx, displayName, localpart, deviceID)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-07-22 16:04:57 +00:00
|
|
|
func (s *devicesStatements) selectDevicesByID(ctx context.Context, deviceIDs []string) ([]api.Device, error) {
|
|
|
|
rows, err := s.selectDevicesByIDStmt.QueryContext(ctx, pq.StringArray(deviceIDs))
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2017-10-17 18:12:54 +00:00
|
|
|
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
|
|
|
|
}
|
2020-05-21 13:40:13 +00:00
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "selectDevicesByLocalpart: rows.close() failed")
|
2017-10-17 18:12:54 +00:00
|
|
|
|
|
|
|
for rows.Next() {
|
2020-06-16 13:10:55 +00:00
|
|
|
var dev api.Device
|
2020-05-26 13:41:16 +00:00
|
|
|
var id, displayname sql.NullString
|
|
|
|
err = rows.Scan(&id, &displayname)
|
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
|
|
|
|
}
|
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-11 14:12:21 +00:00
|
|
|
return devices, rows.Err()
|
2017-10-17 18:12:54 +00:00
|
|
|
}
|