// 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 devices import ( "context" "database/sql" "github.com/matrix-org/dendrite/clientapi/auth/authtypes" "github.com/matrix-org/dendrite/common" "github.com/matrix-org/gomatrixserverlib" ) // Database represents a device database. type Database struct { db *sql.DB devices devicesStatements } // NewDatabase creates a new device database func NewDatabase(dataSourceName string, serverName gomatrixserverlib.ServerName) (*Database, error) { var db *sql.DB var err error if db, err = sql.Open("postgres", dataSourceName); err != nil { return nil, err } d := devicesStatements{} if err = d.prepare(db, serverName); err != nil { return nil, err } return &Database{db, d}, nil } // GetDeviceByAccessToken returns the device matching the given access token. // Returns sql.ErrNoRows if no matching device was found. func (d *Database) GetDeviceByAccessToken( ctx context.Context, token string, ) (*authtypes.Device, error) { return d.devices.selectDeviceByToken(ctx, token) } // CreateDevice makes a new device associated with the given user ID localpart. // If there is already a device with the same device ID for this user, that access token will be revoked // and replaced with the given accessToken. If the given accessToken is already in use for another device, // an error will be returned. // Returns the device on success. func (d *Database) CreateDevice( ctx context.Context, localpart, deviceID, accessToken string, ) (dev *authtypes.Device, returnErr error) { returnErr = common.WithTransaction(d.db, func(txn *sql.Tx) error { var err error // Revoke existing token for this device if err = d.devices.deleteDevice(ctx, txn, deviceID, localpart); err != nil { return err } dev, err = d.devices.insertDevice(ctx, txn, deviceID, localpart, accessToken) if err != nil { return err } return nil }) return } // RemoveDevice revokes a device by deleting the entry in the database // matching with the given device ID and user ID localpart // If the device doesn't exist, it will not return an error // If something went wrong during the deletion, it will return the SQL error func (d *Database) RemoveDevice( ctx context.Context, deviceID, localpart string, ) error { return common.WithTransaction(d.db, func(txn *sql.Tx) error { if err := d.devices.deleteDevice(ctx, txn, deviceID, localpart); err != sql.ErrNoRows { return err } return nil }) }