2017-05-19 11:27:03 +02: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 18:27:33 +01:00
|
|
|
package sqlite3
|
2017-05-19 11:27:03 +02:00
|
|
|
|
|
|
|
import (
|
2017-09-18 15:15:27 +02:00
|
|
|
"context"
|
2017-05-19 11:27:03 +02:00
|
|
|
"database/sql"
|
|
|
|
"time"
|
|
|
|
|
2017-05-23 18:43:05 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2018-05-31 16:21:13 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2017-05-19 11:27:03 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2018-06-29 12:55:29 +02:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
2017-05-19 11:27:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const accountsSchema = `
|
|
|
|
-- Stores data about accounts.
|
2017-08-07 12:51:46 +02:00
|
|
|
CREATE TABLE IF NOT EXISTS account_accounts (
|
2017-05-19 11:27:03 +02: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 12:02:48 +01:00
|
|
|
password_hash TEXT,
|
2018-07-05 18:34:59 +02:00
|
|
|
-- Identifies which application service this account belongs to, if any.
|
2018-02-08 12:02:48 +01:00
|
|
|
appservice_id TEXT
|
2017-05-19 11:27:03 +02:00
|
|
|
-- TODO:
|
2018-02-08 12:02:48 +01:00
|
|
|
-- is_guest, is_admin, upgraded_ts, devices, any email reset stuff?
|
2017-05-19 11:27:03 +02:00
|
|
|
);
|
|
|
|
`
|
|
|
|
|
|
|
|
const insertAccountSQL = "" +
|
2018-02-08 12:02:48 +01:00
|
|
|
"INSERT INTO account_accounts(localpart, created_ts, password_hash, appservice_id) VALUES ($1, $2, $3, $4)"
|
2017-05-19 11:27:03 +02:00
|
|
|
|
|
|
|
const selectAccountByLocalpartSQL = "" +
|
2018-05-31 11:46:50 +02:00
|
|
|
"SELECT localpart, appservice_id FROM account_accounts WHERE localpart = $1"
|
2017-05-19 11:27:03 +02:00
|
|
|
|
|
|
|
const selectPasswordHashSQL = "" +
|
2017-08-07 12:51:46 +02:00
|
|
|
"SELECT password_hash FROM account_accounts WHERE localpart = $1"
|
2017-05-19 11:27:03 +02:00
|
|
|
|
2018-05-31 16:36:15 +02:00
|
|
|
const selectNewNumericLocalpartSQL = "" +
|
2020-02-13 18:27:33 +01:00
|
|
|
"SELECT COUNT(localpart) FROM account_accounts"
|
2018-05-31 16:36:15 +02:00
|
|
|
|
2017-05-19 11:27:03 +02:00
|
|
|
// TODO: Update password
|
|
|
|
|
|
|
|
type accountsStatements struct {
|
2018-05-31 16:36:15 +02:00
|
|
|
insertAccountStmt *sql.Stmt
|
|
|
|
selectAccountByLocalpartStmt *sql.Stmt
|
|
|
|
selectPasswordHashStmt *sql.Stmt
|
|
|
|
selectNewNumericLocalpartStmt *sql.Stmt
|
|
|
|
serverName gomatrixserverlib.ServerName
|
2017-05-19 11:27:03 +02: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
|
|
|
|
}
|
|
|
|
if s.selectAccountByLocalpartStmt, err = db.Prepare(selectAccountByLocalpartSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if s.selectPasswordHashStmt, err = db.Prepare(selectPasswordHashSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-05-31 16:36:15 +02:00
|
|
|
if s.selectNewNumericLocalpartStmt, err = db.Prepare(selectNewNumericLocalpartSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-05-19 11:27:03 +02: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 15:15:27 +02:00
|
|
|
func (s *accountsStatements) insertAccount(
|
2020-03-06 19:00:07 +01:00
|
|
|
ctx context.Context, txn *sql.Tx, localpart, hash, appserviceID string,
|
2017-09-18 15:15:27 +02:00
|
|
|
) (*authtypes.Account, error) {
|
2017-05-19 11:27:03 +02:00
|
|
|
createdTimeMS := time.Now().UnixNano() / 1000000
|
2017-09-18 15:15:27 +02:00
|
|
|
stmt := s.insertAccountStmt
|
2018-02-08 12:02:48 +01:00
|
|
|
|
|
|
|
var err error
|
|
|
|
if appserviceID == "" {
|
2020-03-06 19:00:07 +01:00
|
|
|
_, err = txn.Stmt(stmt).ExecContext(ctx, localpart, createdTimeMS, hash, nil)
|
2018-02-08 12:02:48 +01:00
|
|
|
} else {
|
2020-03-06 19:00:07 +01:00
|
|
|
_, err = txn.Stmt(stmt).ExecContext(ctx, localpart, createdTimeMS, hash, appserviceID)
|
2018-02-08 12:02:48 +01:00
|
|
|
}
|
|
|
|
if err != nil {
|
2017-09-18 15:15:27 +02:00
|
|
|
return nil, err
|
2017-05-19 11:27:03 +02:00
|
|
|
}
|
2018-02-08 12:02:48 +01:00
|
|
|
|
2017-09-18 15:15:27 +02:00
|
|
|
return &authtypes.Account{
|
2018-02-08 12:02:48 +01:00
|
|
|
Localpart: localpart,
|
2018-05-31 16:21:13 +02:00
|
|
|
UserID: userutil.MakeUserID(localpart, s.serverName),
|
2018-02-08 12:02:48 +01:00
|
|
|
ServerName: s.serverName,
|
|
|
|
AppServiceID: appserviceID,
|
2017-09-18 15:15:27 +02:00
|
|
|
}, nil
|
2017-05-19 11:27:03 +02:00
|
|
|
}
|
|
|
|
|
2017-09-18 15:15:27 +02: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 11:27:03 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-18 15:15:27 +02:00
|
|
|
func (s *accountsStatements) selectAccountByLocalpart(
|
|
|
|
ctx context.Context, localpart string,
|
2018-06-29 12:55:29 +02:00
|
|
|
) (*authtypes.Account, error) {
|
|
|
|
var appserviceIDPtr sql.NullString
|
|
|
|
var acc authtypes.Account
|
|
|
|
|
2017-09-18 15:15:27 +02:00
|
|
|
stmt := s.selectAccountByLocalpartStmt
|
2018-06-29 12:55:29 +02: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 11:27:03 +02:00
|
|
|
}
|
2018-06-29 12:55:29 +02: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 11:27:03 +02:00
|
|
|
}
|
2018-05-31 16:36:15 +02:00
|
|
|
|
|
|
|
func (s *accountsStatements) selectNewNumericLocalpart(
|
2020-03-06 19:00:07 +01:00
|
|
|
ctx context.Context, txn *sql.Tx,
|
2018-05-31 16:36:15 +02:00
|
|
|
) (id int64, err error) {
|
2020-03-06 19:00:07 +01:00
|
|
|
stmt := s.selectNewNumericLocalpartStmt
|
|
|
|
if txn != nil {
|
|
|
|
stmt = txn.Stmt(stmt)
|
|
|
|
}
|
|
|
|
err = stmt.QueryRowContext(ctx).Scan(&id)
|
2018-05-31 16:36:15 +02:00
|
|
|
return
|
|
|
|
}
|