2020-02-13 17:27:33 +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 postgres
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
2020-06-18 17:36:03 +00:00
|
|
|
"encoding/json"
|
2020-02-13 17:27:33 +00:00
|
|
|
"errors"
|
2020-03-06 18:00:07 +00:00
|
|
|
"strconv"
|
2020-02-13 17:27:33 +00:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2020-04-16 09:06:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-06-17 10:22:26 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2020-10-15 17:09:41 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/accounts/postgres/deltas"
|
|
|
|
_ "github.com/matrix-org/dendrite/userapi/storage/accounts/postgres/deltas"
|
2020-02-13 17:27:33 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"golang.org/x/crypto/bcrypt"
|
|
|
|
|
|
|
|
// Import the postgres database driver.
|
|
|
|
_ "github.com/lib/pq"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Database represents an account database
|
|
|
|
type Database struct {
|
2020-08-21 09:42:08 +00:00
|
|
|
db *sql.DB
|
|
|
|
writer sqlutil.Writer
|
2020-06-12 13:55:57 +00:00
|
|
|
sqlutil.PartitionOffsetStatements
|
2020-02-13 17:27:33 +00:00
|
|
|
accounts accountsStatements
|
|
|
|
profiles profilesStatements
|
|
|
|
accountDatas accountDataStatements
|
|
|
|
threepids threepidStatements
|
|
|
|
serverName gomatrixserverlib.ServerName
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDatabase creates a new accounts and profiles database
|
2020-08-10 13:18:04 +00:00
|
|
|
func NewDatabase(dbProperties *config.DatabaseOptions, serverName gomatrixserverlib.ServerName) (*Database, error) {
|
|
|
|
db, err := sqlutil.Open(dbProperties)
|
|
|
|
if err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
d := &Database{
|
|
|
|
serverName: serverName,
|
|
|
|
db: db,
|
|
|
|
writer: sqlutil.NewDummyWriter(),
|
|
|
|
}
|
2020-10-15 17:09:41 +00:00
|
|
|
|
|
|
|
// Create tables before executing migrations so we don't fail if the table is missing,
|
|
|
|
// and THEN prepare statements so we don't fail due to referencing new columns
|
|
|
|
if err = d.accounts.execSchema(db); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
m := sqlutil.NewMigrations()
|
|
|
|
deltas.LoadIsActive(m)
|
|
|
|
if err = m.RunDeltas(db, dbProperties); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-08-21 09:42:08 +00:00
|
|
|
if err = d.PartitionOffsetStatements.Prepare(db, d.writer, "account"); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
if err = d.accounts.prepare(db, serverName); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
if err = d.profiles.prepare(db); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
if err = d.accountDatas.prepare(db); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
if err = d.threepids.prepare(db); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-10-15 17:09:41 +00:00
|
|
|
|
2020-08-21 09:42:08 +00:00
|
|
|
return d, nil
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccountByPassword returns the account associated with the given localpart and password.
|
|
|
|
// Returns sql.ErrNoRows if no account exists which matches the given localpart.
|
|
|
|
func (d *Database) GetAccountByPassword(
|
|
|
|
ctx context.Context, localpart, plaintextPassword string,
|
2020-06-17 10:22:26 +00:00
|
|
|
) (*api.Account, error) {
|
2020-02-13 17:27:33 +00:00
|
|
|
hash, err := d.accounts.selectPasswordHash(ctx, localpart)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(plaintextPassword)); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return d.accounts.selectAccountByLocalpart(ctx, localpart)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetProfileByLocalpart returns the profile associated with the given localpart.
|
|
|
|
// Returns sql.ErrNoRows if no profile exists which matches the given localpart.
|
|
|
|
func (d *Database) GetProfileByLocalpart(
|
|
|
|
ctx context.Context, localpart string,
|
|
|
|
) (*authtypes.Profile, error) {
|
|
|
|
return d.profiles.selectProfileByLocalpart(ctx, localpart)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetAvatarURL updates the avatar URL of the profile associated with the given
|
|
|
|
// localpart. Returns an error if something went wrong with the SQL query
|
|
|
|
func (d *Database) SetAvatarURL(
|
|
|
|
ctx context.Context, localpart string, avatarURL string,
|
|
|
|
) error {
|
|
|
|
return d.profiles.setAvatarURL(ctx, localpart, avatarURL)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetDisplayName updates the display name of the profile associated with the given
|
|
|
|
// localpart. Returns an error if something went wrong with the SQL query
|
|
|
|
func (d *Database) SetDisplayName(
|
|
|
|
ctx context.Context, localpart string, displayName string,
|
|
|
|
) error {
|
|
|
|
return d.profiles.setDisplayName(ctx, localpart, displayName)
|
|
|
|
}
|
|
|
|
|
2020-09-04 14:16:13 +00:00
|
|
|
// SetPassword sets the account password to the given hash.
|
|
|
|
func (d *Database) SetPassword(
|
|
|
|
ctx context.Context, localpart, plaintextPassword string,
|
|
|
|
) error {
|
|
|
|
hash, err := hashPassword(plaintextPassword)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return d.accounts.updatePassword(ctx, localpart, hash)
|
|
|
|
}
|
|
|
|
|
2020-03-06 18:00:07 +00:00
|
|
|
// CreateGuestAccount makes a new guest account and creates an empty profile
|
|
|
|
// for this account.
|
2020-06-17 10:22:26 +00:00
|
|
|
func (d *Database) CreateGuestAccount(ctx context.Context) (acc *api.Account, err error) {
|
2020-06-12 13:55:57 +00:00
|
|
|
err = sqlutil.WithTransaction(d.db, func(txn *sql.Tx) error {
|
2020-03-06 18:00:07 +00:00
|
|
|
var numLocalpart int64
|
|
|
|
numLocalpart, err = d.accounts.selectNewNumericLocalpart(ctx, txn)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
localpart := strconv.FormatInt(numLocalpart, 10)
|
|
|
|
acc, err = d.createAccount(ctx, txn, localpart, "", "")
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
return acc, err
|
|
|
|
}
|
|
|
|
|
2020-02-13 17:27:33 +00:00
|
|
|
// CreateAccount makes a new account with the given login name and password, and creates an empty profile
|
|
|
|
// for this account. If no password is supplied, the account will be a passwordless account. If the
|
2020-06-12 13:55:57 +00:00
|
|
|
// account already exists, it will return nil, sqlutil.ErrUserExists.
|
2020-02-13 17:27:33 +00:00
|
|
|
func (d *Database) CreateAccount(
|
|
|
|
ctx context.Context, localpart, plaintextPassword, appserviceID string,
|
2020-06-17 10:22:26 +00:00
|
|
|
) (acc *api.Account, err error) {
|
2020-06-12 13:55:57 +00:00
|
|
|
err = sqlutil.WithTransaction(d.db, func(txn *sql.Tx) error {
|
2020-03-06 18:00:07 +00:00
|
|
|
acc, err = d.createAccount(ctx, txn, localpart, plaintextPassword, appserviceID)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Database) createAccount(
|
|
|
|
ctx context.Context, txn *sql.Tx, localpart, plaintextPassword, appserviceID string,
|
2020-06-17 10:22:26 +00:00
|
|
|
) (*api.Account, error) {
|
2020-02-13 17:27:33 +00:00
|
|
|
var err error
|
|
|
|
|
|
|
|
// Generate a password hash if this is not a password-less user
|
|
|
|
hash := ""
|
|
|
|
if plaintextPassword != "" {
|
|
|
|
hash, err = hashPassword(plaintextPassword)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2020-03-06 18:00:07 +00:00
|
|
|
if err := d.profiles.insertProfile(ctx, txn, localpart); err != nil {
|
2020-06-12 13:55:57 +00:00
|
|
|
if sqlutil.IsUniqueConstraintViolationErr(err) {
|
|
|
|
return nil, sqlutil.ErrUserExists
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-03-06 18:00:07 +00:00
|
|
|
|
2020-06-18 17:36:03 +00:00
|
|
|
if err := d.accountDatas.insertAccountData(ctx, txn, localpart, "", "m.push_rules", json.RawMessage(`{
|
2020-02-13 17:27:33 +00:00
|
|
|
"global": {
|
|
|
|
"content": [],
|
|
|
|
"override": [],
|
|
|
|
"room": [],
|
|
|
|
"sender": [],
|
|
|
|
"underride": []
|
|
|
|
}
|
2020-06-18 17:36:03 +00:00
|
|
|
}`)); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-03-06 18:00:07 +00:00
|
|
|
return d.accounts.insertAccount(ctx, txn, localpart, hash, appserviceID)
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SaveAccountData saves new account data for a given user and a given room.
|
|
|
|
// If the account data is not specific to a room, the room ID should be an empty string
|
|
|
|
// If an account data already exists for a given set (user, room, data type), it will
|
|
|
|
// update the corresponding row with the new content
|
|
|
|
// Returns a SQL error if there was an issue with the insertion/update
|
|
|
|
func (d *Database) SaveAccountData(
|
2020-06-18 17:36:03 +00:00
|
|
|
ctx context.Context, localpart, roomID, dataType string, content json.RawMessage,
|
2020-02-13 17:27:33 +00:00
|
|
|
) error {
|
2020-06-12 13:55:57 +00:00
|
|
|
return sqlutil.WithTransaction(d.db, func(txn *sql.Tx) error {
|
2020-03-06 18:00:07 +00:00
|
|
|
return d.accountDatas.insertAccountData(ctx, txn, localpart, roomID, dataType, content)
|
|
|
|
})
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccountData returns account data related to a given localpart
|
|
|
|
// If no account data could be found, returns an empty arrays
|
|
|
|
// Returns an error if there was an issue with the retrieval
|
|
|
|
func (d *Database) GetAccountData(ctx context.Context, localpart string) (
|
2020-06-18 17:36:03 +00:00
|
|
|
global map[string]json.RawMessage,
|
|
|
|
rooms map[string]map[string]json.RawMessage,
|
2020-02-13 17:27:33 +00:00
|
|
|
err error,
|
|
|
|
) {
|
|
|
|
return d.accountDatas.selectAccountData(ctx, localpart)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccountDataByType returns account data matching a given
|
|
|
|
// localpart, room ID and type.
|
|
|
|
// If no account data could be found, returns nil
|
|
|
|
// Returns an error if there was an issue with the retrieval
|
|
|
|
func (d *Database) GetAccountDataByType(
|
|
|
|
ctx context.Context, localpart, roomID, dataType string,
|
2020-06-18 17:36:03 +00:00
|
|
|
) (data json.RawMessage, err error) {
|
2020-02-13 17:27:33 +00:00
|
|
|
return d.accountDatas.selectAccountDataByType(
|
|
|
|
ctx, localpart, roomID, dataType,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetNewNumericLocalpart generates and returns a new unused numeric localpart
|
|
|
|
func (d *Database) GetNewNumericLocalpart(
|
|
|
|
ctx context.Context,
|
|
|
|
) (int64, error) {
|
2020-03-06 18:00:07 +00:00
|
|
|
return d.accounts.selectNewNumericLocalpart(ctx, nil)
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func hashPassword(plaintext string) (hash string, err error) {
|
|
|
|
hashBytes, err := bcrypt.GenerateFromPassword([]byte(plaintext), bcrypt.DefaultCost)
|
|
|
|
return string(hashBytes), err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Err3PIDInUse is the error returned when trying to save an association involving
|
|
|
|
// a third-party identifier which is already associated to a local user.
|
|
|
|
var Err3PIDInUse = errors.New("This third-party identifier is already in use")
|
|
|
|
|
|
|
|
// SaveThreePIDAssociation saves the association between a third party identifier
|
|
|
|
// and a local Matrix user (identified by the user's ID's local part).
|
|
|
|
// If the third-party identifier is already part of an association, returns Err3PIDInUse.
|
|
|
|
// Returns an error if there was a problem talking to the database.
|
|
|
|
func (d *Database) SaveThreePIDAssociation(
|
|
|
|
ctx context.Context, threepid, localpart, medium string,
|
|
|
|
) (err error) {
|
2020-06-12 13:55:57 +00:00
|
|
|
return sqlutil.WithTransaction(d.db, func(txn *sql.Tx) error {
|
2020-02-13 17:27:33 +00:00
|
|
|
user, err := d.threepids.selectLocalpartForThreePID(
|
|
|
|
ctx, txn, threepid, medium,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(user) > 0 {
|
|
|
|
return Err3PIDInUse
|
|
|
|
}
|
|
|
|
|
|
|
|
return d.threepids.insertThreePID(ctx, txn, threepid, medium, localpart)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveThreePIDAssociation removes the association involving a given third-party
|
|
|
|
// identifier.
|
|
|
|
// If no association exists involving this third-party identifier, returns nothing.
|
|
|
|
// If there was a problem talking to the database, returns an error.
|
|
|
|
func (d *Database) RemoveThreePIDAssociation(
|
|
|
|
ctx context.Context, threepid string, medium string,
|
|
|
|
) (err error) {
|
|
|
|
return d.threepids.deleteThreePID(ctx, threepid, medium)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetLocalpartForThreePID looks up the localpart associated with a given third-party
|
|
|
|
// identifier.
|
|
|
|
// If no association involves the given third-party idenfitier, returns an empty
|
|
|
|
// string.
|
|
|
|
// Returns an error if there was a problem talking to the database.
|
|
|
|
func (d *Database) GetLocalpartForThreePID(
|
|
|
|
ctx context.Context, threepid string, medium string,
|
|
|
|
) (localpart string, err error) {
|
|
|
|
return d.threepids.selectLocalpartForThreePID(ctx, nil, threepid, medium)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetThreePIDsForLocalpart looks up the third-party identifiers associated with
|
|
|
|
// a given local user.
|
|
|
|
// If no association is known for this user, returns an empty slice.
|
|
|
|
// Returns an error if there was an issue talking to the database.
|
|
|
|
func (d *Database) GetThreePIDsForLocalpart(
|
|
|
|
ctx context.Context, localpart string,
|
|
|
|
) (threepids []authtypes.ThreePID, err error) {
|
|
|
|
return d.threepids.selectThreePIDsForLocalpart(ctx, localpart)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckAccountAvailability checks if the username/localpart is already present
|
|
|
|
// in the database.
|
|
|
|
// If the DB returns sql.ErrNoRows the Localpart isn't taken.
|
|
|
|
func (d *Database) CheckAccountAvailability(ctx context.Context, localpart string) (bool, error) {
|
|
|
|
_, err := d.accounts.selectAccountByLocalpart(ctx, localpart)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccountByLocalpart returns the account associated with the given localpart.
|
|
|
|
// This function assumes the request is authenticated or the account data is used only internally.
|
|
|
|
// Returns sql.ErrNoRows if no account exists which matches the given localpart.
|
|
|
|
func (d *Database) GetAccountByLocalpart(ctx context.Context, localpart string,
|
2020-06-17 10:22:26 +00:00
|
|
|
) (*api.Account, error) {
|
2020-02-13 17:27:33 +00:00
|
|
|
return d.accounts.selectAccountByLocalpart(ctx, localpart)
|
|
|
|
}
|
2020-07-28 09:53:17 +00:00
|
|
|
|
|
|
|
// SearchProfiles returns all profiles where the provided localpart or display name
|
|
|
|
// match any part of the profiles in the database.
|
|
|
|
func (d *Database) SearchProfiles(ctx context.Context, searchString string, limit int,
|
|
|
|
) ([]authtypes.Profile, error) {
|
|
|
|
return d.profiles.selectProfilesBySearch(ctx, searchString, limit)
|
|
|
|
}
|
2020-10-02 16:18:20 +00:00
|
|
|
|
|
|
|
// DeactivateAccount deactivates the user's account, removing all ability for the user to login again.
|
|
|
|
func (d *Database) DeactivateAccount(ctx context.Context, localpart string) (err error) {
|
|
|
|
return d.accounts.deactivateAccount(ctx, localpart)
|
|
|
|
}
|