mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-31 10:43:10 -06:00
Update sqlite migration
Change allowance check on /admin/whois
This commit is contained in:
parent
b5c8fc922c
commit
6fe71d92bb
|
|
@ -47,7 +47,8 @@ func GetAdminWhois(
|
||||||
req *http.Request, userAPI api.UserInternalAPI, device *api.Device,
|
req *http.Request, userAPI api.UserInternalAPI, device *api.Device,
|
||||||
userID string,
|
userID string,
|
||||||
) util.JSONResponse {
|
) util.JSONResponse {
|
||||||
if device.AccountType != api.AccountTypeAdmin && userID != device.UserID {
|
allowed := device.AccountType == api.AccountTypeAdmin || userID == device.UserID
|
||||||
|
if !allowed {
|
||||||
return util.JSONResponse{
|
return util.JSONResponse{
|
||||||
Code: http.StatusForbidden,
|
Code: http.StatusForbidden,
|
||||||
JSON: jsonerror.Forbidden("userID does not match the current user"),
|
JSON: jsonerror.Forbidden("userID does not match the current user"),
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ CREATE TABLE IF NOT EXISTS account_accounts (
|
||||||
-- If the account is currently active
|
-- If the account is currently active
|
||||||
is_deactivated BOOLEAN DEFAULT FALSE,
|
is_deactivated BOOLEAN DEFAULT FALSE,
|
||||||
-- The account_type (user = 1, guest = 2, admin = 3, appservice = 4)
|
-- The account_type (user = 1, guest = 2, admin = 3, appservice = 4)
|
||||||
account_type INT DEFAULT 2
|
account_type SMALLINT
|
||||||
-- TODO:
|
-- TODO:
|
||||||
-- upgraded_ts, devices, any email reset stuff?
|
-- upgraded_ts, devices, any email reset stuff?
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -12,13 +12,18 @@ func LoadAddAccountType(m *sqlutil.Migrations) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func UpAddAccountType(tx *sql.Tx) error {
|
func UpAddAccountType(tx *sql.Tx) error {
|
||||||
_, err := tx.Exec("ALTER TABLE account_accounts ADD COLUMN IF NOT EXISTS account_type INT DEFAULT 2;")
|
_, err := tx.Exec("ALTER TABLE account_accounts ADD COLUMN IF NOT EXISTS account_type SMALLINT;")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to execute upgrade: %w", err)
|
return fmt.Errorf("failed to add column: %w", err)
|
||||||
|
|
||||||
|
}
|
||||||
|
_, err = tx.Exec("UPDATE account_accounts SET account_type = 1 WHERE appservice_id = '';")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to update user accounts: %w", err)
|
||||||
}
|
}
|
||||||
_, err = tx.Exec("UPDATE account_accounts SET account_type = 4 WHERE appservice_id <> '';")
|
_, err = tx.Exec("UPDATE account_accounts SET account_type = 4 WHERE appservice_id <> '';")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to execute upgrade: %w", err)
|
return fmt.Errorf("failed to update appservice accounts upgrade: %w", err)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ CREATE TABLE IF NOT EXISTS account_accounts (
|
||||||
-- If the account is currently active
|
-- If the account is currently active
|
||||||
is_deactivated BOOLEAN DEFAULT 0,
|
is_deactivated BOOLEAN DEFAULT 0,
|
||||||
-- The account_type (user = 1, guest = 2, admin = 3, appservice = 4)
|
-- The account_type (user = 1, guest = 2, admin = 3, appservice = 4)
|
||||||
account_type INTEGER DEFAULT 2
|
account_type INTEGER
|
||||||
-- TODO:
|
-- TODO:
|
||||||
-- upgraded_ts, devices, any email reset stuff?
|
-- upgraded_ts, devices, any email reset stuff?
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -18,49 +18,24 @@ func LoadAddAccountType(m *sqlutil.Migrations) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func UpAddAccountType(tx *sql.Tx) error {
|
func UpAddAccountType(tx *sql.Tx) error {
|
||||||
_, err := tx.Exec(`
|
// initially set every account to useracount, change appserver accounts afterwards
|
||||||
ALTER TABLE account_accounts RENAME TO account_accounts_tmp;
|
_, err := tx.Exec(`ALTER TABLE account_accounts ADD COLUMN account_type INTEGER;`)
|
||||||
CREATE TABLE account_accounts (
|
|
||||||
localpart TEXT NOT NULL PRIMARY KEY,
|
|
||||||
created_ts BIGINT NOT NULL,
|
|
||||||
password_hash TEXT,
|
|
||||||
appservice_id TEXT,
|
|
||||||
is_deactivated BOOLEAN DEFAULT 0,
|
|
||||||
account_type INTEGER DEFAULT 2
|
|
||||||
);
|
|
||||||
INSERT INTO account_accounts (
|
|
||||||
localpart, created_ts, password_hash, appservice_id
|
|
||||||
) SELECT
|
|
||||||
localpart, created_ts, password_hash, appservice_id
|
|
||||||
FROM account_accounts_tmp;
|
|
||||||
|
|
||||||
UPDATE account_accounts SET account_type = 4 WHERE appservice_id <> '';
|
|
||||||
|
|
||||||
DROP TABLE account_accounts_tmp;`)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to execute upgrade: %w", err)
|
return fmt.Errorf("failed to add column: %w", err)
|
||||||
|
}
|
||||||
|
_, err = tx.Exec(`UPDATE account_accounts SET account_type = 1 WHERE appservice_id = ''`)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to update user accounts: %w", err)
|
||||||
|
}
|
||||||
|
_, err = tx.Exec(`UPDATE account_accounts SET account_type = 4 WHERE appservice_id <> ''`)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to update appservice accounts upgrade: %w", err)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func DownAddAccountType(tx *sql.Tx) error {
|
func DownAddAccountType(tx *sql.Tx) error {
|
||||||
_, err := tx.Exec(`
|
_, err := tx.Exec(`ALTER TABLE account_accounts DROP COLUMN account_type;`)
|
||||||
ALTER TABLE account_accounts RENAME TO account_accounts_tmp;
|
|
||||||
CREATE TABLE account_accounts (
|
|
||||||
localpart TEXT NOT NULL PRIMARY KEY,
|
|
||||||
created_ts BIGINT NOT NULL,
|
|
||||||
password_hash TEXT,
|
|
||||||
appservice_id TEXT,
|
|
||||||
is_deactivated BOOLEAN DEFAULT 0
|
|
||||||
);
|
|
||||||
INSERT
|
|
||||||
INTO account_accounts (
|
|
||||||
localpart, created_ts, password_hash, appservice_id
|
|
||||||
) SELECT
|
|
||||||
localpart, created_ts, password_hash, appservice_id
|
|
||||||
FROM account_accounts_tmp
|
|
||||||
;
|
|
||||||
DROP TABLE account_accounts_tmp;`)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to execute downgrade: %w", err)
|
return fmt.Errorf("failed to execute downgrade: %w", err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue