2017-05-19 09:27:03 +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-19 09:27:03 +00:00
|
|
|
|
|
|
|
import (
|
2017-09-18 13:15:27 +00:00
|
|
|
"context"
|
2017-05-19 09:27:03 +00:00
|
|
|
"database/sql"
|
|
|
|
"time"
|
|
|
|
|
2018-05-31 14:21:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2020-09-24 10:10:14 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2020-06-17 10:22:26 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2017-05-19 09:27:03 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2018-06-29 10:55:29 +00:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
2017-05-19 09:27:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const accountsSchema = `
|
|
|
|
-- Stores data about accounts.
|
2017-08-07 10:51:46 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS account_accounts (
|
2017-05-19 09:27:03 +00:00
|
|
|
-- The Matrix user ID localpart for this account
|
|
|
|
localpart TEXT NOT NULL PRIMARY KEY,
|
|
|
|
-- When this account was first created, as a unix timestamp (ms resolution).
|
|
|
|
created_ts BIGINT NOT NULL,
|
|
|
|
-- The password hash for this account. Can be NULL if this is a passwordless account.
|
2018-02-08 11:02:48 +00:00
|
|
|
password_hash TEXT,
|
2018-07-05 16:34:59 +00:00
|
|
|
-- Identifies which application service this account belongs to, if any.
|
2018-02-08 11:02:48 +00:00
|
|
|
appservice_id TEXT
|
2017-05-19 09:27:03 +00:00
|
|
|
-- TODO:
|
2018-02-08 11:02:48 +00:00
|
|
|
-- is_guest, is_admin, upgraded_ts, devices, any email reset stuff?
|
2017-05-19 09:27:03 +00:00
|
|
|
);
|
2018-05-31 14:36:15 +00:00
|
|
|
-- Create sequence for autogenerated numeric usernames
|
|
|
|
CREATE SEQUENCE IF NOT EXISTS numeric_username_seq START 1;
|
2017-05-19 09:27:03 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
const insertAccountSQL = "" +
|
2018-02-08 11:02:48 +00:00
|
|
|
"INSERT INTO account_accounts(localpart, created_ts, password_hash, appservice_id) VALUES ($1, $2, $3, $4)"
|
2017-05-19 09:27:03 +00:00
|
|
|
|
2020-09-04 14:16:13 +00:00
|
|
|
const updatePasswordSQL = "" +
|
|
|
|
"UPDATE account_accounts SET password_hash = $1 WHERE localpart = $2"
|
|
|
|
|
2017-05-19 09:27:03 +00:00
|
|
|
const selectAccountByLocalpartSQL = "" +
|
2018-05-31 09:46:50 +00:00
|
|
|
"SELECT localpart, appservice_id FROM account_accounts WHERE localpart = $1"
|
2017-05-19 09:27:03 +00:00
|
|
|
|
|
|
|
const selectPasswordHashSQL = "" +
|
2017-08-07 10:51:46 +00:00
|
|
|
"SELECT password_hash FROM account_accounts WHERE localpart = $1"
|
2017-05-19 09:27:03 +00:00
|
|
|
|
2018-05-31 14:36:15 +00:00
|
|
|
const selectNewNumericLocalpartSQL = "" +
|
|
|
|
"SELECT nextval('numeric_username_seq')"
|
|
|
|
|
2017-05-19 09:27:03 +00:00
|
|
|
type accountsStatements struct {
|
2018-05-31 14:36:15 +00:00
|
|
|
insertAccountStmt *sql.Stmt
|
2020-09-04 14:16:13 +00:00
|
|
|
updatePasswordStmt *sql.Stmt
|
2018-05-31 14:36:15 +00:00
|
|
|
selectAccountByLocalpartStmt *sql.Stmt
|
|
|
|
selectPasswordHashStmt *sql.Stmt
|
|
|
|
selectNewNumericLocalpartStmt *sql.Stmt
|
|
|
|
serverName gomatrixserverlib.ServerName
|
2017-05-19 09:27:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *accountsStatements) prepare(db *sql.DB, server gomatrixserverlib.ServerName) (err error) {
|
|
|
|
_, err = db.Exec(accountsSchema)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if s.insertAccountStmt, err = db.Prepare(insertAccountSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-09-04 14:16:13 +00:00
|
|
|
if s.updatePasswordStmt, err = db.Prepare(updatePasswordSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-05-19 09:27:03 +00:00
|
|
|
if s.selectAccountByLocalpartStmt, err = db.Prepare(selectAccountByLocalpartSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if s.selectPasswordHashStmt, err = db.Prepare(selectPasswordHashSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-05-31 14:36:15 +00:00
|
|
|
if s.selectNewNumericLocalpartStmt, err = db.Prepare(selectNewNumericLocalpartSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-05-19 09:27:03 +00:00
|
|
|
s.serverName = server
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// insertAccount creates a new account. 'hash' should be the password hash for this account. If it is missing,
|
|
|
|
// this account will be passwordless. Returns an error if this account already exists. Returns the account
|
|
|
|
// on success.
|
2017-09-18 13:15:27 +00:00
|
|
|
func (s *accountsStatements) insertAccount(
|
2020-03-06 18:00:07 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, localpart, hash, appserviceID string,
|
2020-06-17 10:22:26 +00:00
|
|
|
) (*api.Account, error) {
|
2017-05-19 09:27:03 +00:00
|
|
|
createdTimeMS := time.Now().UnixNano() / 1000000
|
2020-09-24 10:10:14 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.insertAccountStmt)
|
2018-02-08 11:02:48 +00:00
|
|
|
|
|
|
|
var err error
|
|
|
|
if appserviceID == "" {
|
|
|
|
_, err = stmt.ExecContext(ctx, localpart, createdTimeMS, hash, nil)
|
|
|
|
} else {
|
|
|
|
_, err = stmt.ExecContext(ctx, localpart, createdTimeMS, hash, appserviceID)
|
|
|
|
}
|
|
|
|
if err != nil {
|
2017-09-18 13:15:27 +00:00
|
|
|
return nil, err
|
2017-05-19 09:27:03 +00:00
|
|
|
}
|
2018-02-08 11:02:48 +00:00
|
|
|
|
2020-06-17 10:22:26 +00:00
|
|
|
return &api.Account{
|
2018-02-08 11:02:48 +00:00
|
|
|
Localpart: localpart,
|
2018-05-31 14:21:13 +00:00
|
|
|
UserID: userutil.MakeUserID(localpart, s.serverName),
|
2018-02-08 11:02:48 +00:00
|
|
|
ServerName: s.serverName,
|
|
|
|
AppServiceID: appserviceID,
|
2017-09-18 13:15:27 +00:00
|
|
|
}, nil
|
2017-05-19 09:27:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-04 14:16:13 +00:00
|
|
|
func (s *accountsStatements) updatePassword(
|
|
|
|
ctx context.Context, localpart, passwordHash string,
|
|
|
|
) (err error) {
|
|
|
|
_, err = s.updatePasswordStmt.ExecContext(ctx, passwordHash, localpart)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-18 13:15:27 +00:00
|
|
|
func (s *accountsStatements) selectPasswordHash(
|
|
|
|
ctx context.Context, localpart string,
|
|
|
|
) (hash string, err error) {
|
|
|
|
err = s.selectPasswordHashStmt.QueryRowContext(ctx, localpart).Scan(&hash)
|
2017-05-19 09:27:03 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-18 13:15:27 +00:00
|
|
|
func (s *accountsStatements) selectAccountByLocalpart(
|
|
|
|
ctx context.Context, localpart string,
|
2020-06-17 10:22:26 +00:00
|
|
|
) (*api.Account, error) {
|
2018-06-29 10:55:29 +00:00
|
|
|
var appserviceIDPtr sql.NullString
|
2020-06-17 10:22:26 +00:00
|
|
|
var acc api.Account
|
2018-06-29 10:55:29 +00:00
|
|
|
|
2017-09-18 13:15:27 +00:00
|
|
|
stmt := s.selectAccountByLocalpartStmt
|
2018-06-29 10:55:29 +00:00
|
|
|
err := stmt.QueryRowContext(ctx, localpart).Scan(&acc.Localpart, &appserviceIDPtr)
|
|
|
|
if err != nil {
|
|
|
|
if err != sql.ErrNoRows {
|
|
|
|
log.WithError(err).Error("Unable to retrieve user from the db")
|
|
|
|
}
|
|
|
|
return nil, err
|
2017-05-19 09:27:03 +00:00
|
|
|
}
|
2018-06-29 10:55:29 +00:00
|
|
|
if appserviceIDPtr.Valid {
|
|
|
|
acc.AppServiceID = appserviceIDPtr.String
|
|
|
|
}
|
|
|
|
|
|
|
|
acc.UserID = userutil.MakeUserID(localpart, s.serverName)
|
|
|
|
acc.ServerName = s.serverName
|
|
|
|
|
|
|
|
return &acc, nil
|
2017-05-19 09:27:03 +00:00
|
|
|
}
|
2018-05-31 14:36:15 +00:00
|
|
|
|
|
|
|
func (s *accountsStatements) selectNewNumericLocalpart(
|
2020-03-06 18:00:07 +00:00
|
|
|
ctx context.Context, txn *sql.Tx,
|
2018-05-31 14:36:15 +00:00
|
|
|
) (id int64, err error) {
|
2020-03-06 18:00:07 +00:00
|
|
|
stmt := s.selectNewNumericLocalpartStmt
|
|
|
|
if txn != nil {
|
2020-09-24 10:10:14 +00:00
|
|
|
stmt = sqlutil.TxStmt(txn, stmt)
|
2020-03-06 18:00:07 +00:00
|
|
|
}
|
|
|
|
err = stmt.QueryRowContext(ctx).Scan(&id)
|
2018-05-31 14:36:15 +00:00
|
|
|
return
|
|
|
|
}
|