2020-06-15 10:54:11 +02:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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 internal
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
2020-06-18 19:36:03 +02:00
|
|
|
"encoding/json"
|
2020-06-16 18:39:56 +02:00
|
|
|
"errors"
|
2020-06-15 10:54:11 +02:00
|
|
|
"fmt"
|
2022-03-03 12:40:53 +01:00
|
|
|
"strconv"
|
|
|
|
"time"
|
2020-06-15 10:54:11 +02:00
|
|
|
|
2022-02-16 18:55:38 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
"github.com/sirupsen/logrus"
|
2022-03-24 22:45:44 +01:00
|
|
|
"golang.org/x/crypto/bcrypt"
|
2022-02-16 18:55:38 +01:00
|
|
|
|
2020-06-16 15:10:55 +02:00
|
|
|
"github.com/matrix-org/dendrite/appservice/types"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2022-03-03 12:40:53 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/pushrules"
|
2020-06-16 18:39:56 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2020-07-30 19:00:56 +02:00
|
|
|
keyapi "github.com/matrix-org/dendrite/keyserver/api"
|
2020-12-02 18:41:00 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-06-15 10:54:11 +02:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2022-03-03 12:40:53 +01:00
|
|
|
"github.com/matrix-org/dendrite/userapi/producers"
|
2022-02-18 12:31:05 +01:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage"
|
2022-03-03 12:40:53 +01:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/tables"
|
2020-06-15 10:54:11 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type UserInternalAPI struct {
|
2022-03-03 12:40:53 +01:00
|
|
|
DB storage.Database
|
|
|
|
SyncProducer *producers.SyncAPI
|
|
|
|
|
|
|
|
DisableTLSValidation bool
|
|
|
|
ServerName gomatrixserverlib.ServerName
|
2020-06-16 15:10:55 +02:00
|
|
|
// AppServices is the list of all registered AS
|
|
|
|
AppServices []config.ApplicationService
|
2020-07-30 19:00:56 +02:00
|
|
|
KeyAPI keyapi.KeyInternalAPI
|
2020-06-15 10:54:11 +02:00
|
|
|
}
|
|
|
|
|
2020-06-18 19:36:03 +02:00
|
|
|
func (a *UserInternalAPI) InputAccountData(ctx context.Context, req *api.InputAccountDataRequest, res *api.InputAccountDataResponse) error {
|
|
|
|
local, domain, err := gomatrixserverlib.SplitID('@', req.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if domain != a.ServerName {
|
|
|
|
return fmt.Errorf("cannot query profile of remote users: got %s want %s", domain, a.ServerName)
|
|
|
|
}
|
|
|
|
if req.DataType == "" {
|
|
|
|
return fmt.Errorf("data type must not be empty")
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
return a.DB.SaveAccountData(ctx, local, req.RoomID, req.DataType, req.AccountData)
|
2020-06-18 19:36:03 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 18:39:56 +02:00
|
|
|
func (a *UserInternalAPI) PerformAccountCreation(ctx context.Context, req *api.PerformAccountCreationRequest, res *api.PerformAccountCreationResponse) error {
|
2022-02-18 12:31:05 +01:00
|
|
|
acc, err := a.DB.CreateAccount(ctx, req.Localpart, req.Password, req.AppServiceID, req.AccountType)
|
2020-06-16 18:39:56 +02:00
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, sqlutil.ErrUserExists) { // This account already exists
|
|
|
|
switch req.OnConflict {
|
|
|
|
case api.ConflictUpdate:
|
|
|
|
break
|
|
|
|
case api.ConflictAbort:
|
|
|
|
return &api.ErrorConflict{
|
|
|
|
Message: err.Error(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-17 12:22:26 +02:00
|
|
|
// account already exists
|
2020-06-16 18:39:56 +02:00
|
|
|
res.AccountCreated = false
|
2020-06-17 12:22:26 +02:00
|
|
|
res.Account = &api.Account{
|
|
|
|
AppServiceID: req.AppServiceID,
|
|
|
|
Localpart: req.Localpart,
|
|
|
|
ServerName: a.ServerName,
|
|
|
|
UserID: fmt.Sprintf("@%s:%s", req.Localpart, a.ServerName),
|
2022-02-16 18:55:38 +01:00
|
|
|
AccountType: req.AccountType,
|
2020-06-17 12:22:26 +02:00
|
|
|
}
|
2021-03-03 15:01:34 +01:00
|
|
|
return nil
|
2020-06-16 18:39:56 +02:00
|
|
|
}
|
2020-07-01 14:35:58 +02:00
|
|
|
|
2022-02-16 18:55:38 +01:00
|
|
|
if req.AccountType == api.AccountTypeGuest {
|
|
|
|
res.AccountCreated = true
|
|
|
|
res.Account = acc
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-02-18 12:31:05 +01:00
|
|
|
if err = a.DB.SetDisplayName(ctx, req.Localpart, req.Localpart); err != nil {
|
2020-07-01 14:35:58 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-06-16 18:39:56 +02:00
|
|
|
res.AccountCreated = true
|
2020-06-17 12:22:26 +02:00
|
|
|
res.Account = acc
|
2020-06-16 18:39:56 +02:00
|
|
|
return nil
|
|
|
|
}
|
2020-09-04 16:16:13 +02:00
|
|
|
|
|
|
|
func (a *UserInternalAPI) PerformPasswordUpdate(ctx context.Context, req *api.PerformPasswordUpdateRequest, res *api.PerformPasswordUpdateResponse) error {
|
2022-02-18 12:31:05 +01:00
|
|
|
if err := a.DB.SetPassword(ctx, req.Localpart, req.Password); err != nil {
|
2020-09-04 16:16:13 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.PasswordUpdated = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-16 18:39:56 +02:00
|
|
|
func (a *UserInternalAPI) PerformDeviceCreation(ctx context.Context, req *api.PerformDeviceCreationRequest, res *api.PerformDeviceCreationResponse) error {
|
2020-08-10 13:38:33 +02:00
|
|
|
util.GetLogger(ctx).WithFields(logrus.Fields{
|
|
|
|
"localpart": req.Localpart,
|
|
|
|
"device_id": req.DeviceID,
|
|
|
|
"display_name": req.DeviceDisplayName,
|
|
|
|
}).Info("PerformDeviceCreation")
|
2022-02-18 12:31:05 +01:00
|
|
|
dev, err := a.DB.CreateDevice(ctx, req.Localpart, req.DeviceID, req.AccessToken, req.DeviceDisplayName, req.IPAddr, req.UserAgent)
|
2020-06-16 18:39:56 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.DeviceCreated = true
|
2020-06-17 12:22:26 +02:00
|
|
|
res.Device = dev
|
2021-12-03 18:18:35 +01:00
|
|
|
if req.NoDeviceListUpdate {
|
|
|
|
return nil
|
|
|
|
}
|
2020-07-31 15:40:45 +02:00
|
|
|
// create empty device keys and upload them to trigger device list changes
|
|
|
|
return a.deviceListUpdate(dev.UserID, []string{dev.ID})
|
2020-06-16 18:39:56 +02:00
|
|
|
}
|
|
|
|
|
2020-07-30 19:00:56 +02:00
|
|
|
func (a *UserInternalAPI) PerformDeviceDeletion(ctx context.Context, req *api.PerformDeviceDeletionRequest, res *api.PerformDeviceDeletionResponse) error {
|
|
|
|
util.GetLogger(ctx).WithField("user_id", req.UserID).WithField("devices", req.DeviceIDs).Info("PerformDeviceDeletion")
|
|
|
|
local, domain, err := gomatrixserverlib.SplitID('@', req.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if domain != a.ServerName {
|
|
|
|
return fmt.Errorf("cannot PerformDeviceDeletion of remote users: got %s want %s", domain, a.ServerName)
|
|
|
|
}
|
2020-08-27 19:53:40 +02:00
|
|
|
deletedDeviceIDs := req.DeviceIDs
|
|
|
|
if len(req.DeviceIDs) == 0 {
|
|
|
|
var devices []api.Device
|
2022-02-18 12:31:05 +01:00
|
|
|
devices, err = a.DB.RemoveAllDevices(ctx, local, req.ExceptDeviceID)
|
2020-08-27 19:53:40 +02:00
|
|
|
for _, d := range devices {
|
|
|
|
deletedDeviceIDs = append(deletedDeviceIDs, d.ID)
|
|
|
|
}
|
|
|
|
} else {
|
2022-02-18 12:31:05 +01:00
|
|
|
err = a.DB.RemoveDevices(ctx, local, req.DeviceIDs)
|
2020-08-27 19:53:40 +02:00
|
|
|
}
|
2020-07-30 19:00:56 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-08-18 13:07:09 +02:00
|
|
|
// Ask the keyserver to delete device keys and signatures for those devices
|
|
|
|
deleteReq := &keyapi.PerformDeleteKeysRequest{
|
|
|
|
UserID: req.UserID,
|
|
|
|
}
|
|
|
|
for _, keyID := range req.DeviceIDs {
|
|
|
|
deleteReq.KeyIDs = append(deleteReq.KeyIDs, gomatrixserverlib.KeyID(keyID))
|
|
|
|
}
|
|
|
|
deleteRes := &keyapi.PerformDeleteKeysResponse{}
|
|
|
|
a.KeyAPI.PerformDeleteKeys(ctx, deleteReq, deleteRes)
|
|
|
|
if err := deleteRes.Error; err != nil {
|
|
|
|
return fmt.Errorf("a.KeyAPI.PerformDeleteKeys: %w", err)
|
|
|
|
}
|
2020-07-30 19:00:56 +02:00
|
|
|
// create empty device keys and upload them to delete what was once there and trigger device list changes
|
2020-08-27 19:53:40 +02:00
|
|
|
return a.deviceListUpdate(req.UserID, deletedDeviceIDs)
|
2020-07-31 15:40:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) deviceListUpdate(userID string, deviceIDs []string) error {
|
|
|
|
deviceKeys := make([]keyapi.DeviceKeys, len(deviceIDs))
|
|
|
|
for i, did := range deviceIDs {
|
2020-07-30 19:00:56 +02:00
|
|
|
deviceKeys[i] = keyapi.DeviceKeys{
|
2020-07-31 15:40:45 +02:00
|
|
|
UserID: userID,
|
2020-07-30 19:00:56 +02:00
|
|
|
DeviceID: did,
|
|
|
|
KeyJSON: nil,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var uploadRes keyapi.PerformUploadKeysResponse
|
|
|
|
a.KeyAPI.PerformUploadKeys(context.Background(), &keyapi.PerformUploadKeysRequest{
|
2021-03-02 12:40:20 +01:00
|
|
|
UserID: userID,
|
2020-07-30 19:00:56 +02:00
|
|
|
DeviceKeys: deviceKeys,
|
|
|
|
}, &uploadRes)
|
|
|
|
if uploadRes.Error != nil {
|
2021-09-08 18:31:03 +02:00
|
|
|
return fmt.Errorf("failed to delete device keys: %v", uploadRes.Error)
|
2020-07-30 19:00:56 +02:00
|
|
|
}
|
|
|
|
if len(uploadRes.KeyErrors) > 0 {
|
2021-09-08 18:31:03 +02:00
|
|
|
return fmt.Errorf("failed to delete device keys, key errors: %+v", uploadRes.KeyErrors)
|
2020-07-30 19:00:56 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-20 12:29:02 +01:00
|
|
|
func (a *UserInternalAPI) PerformLastSeenUpdate(
|
|
|
|
ctx context.Context,
|
|
|
|
req *api.PerformLastSeenUpdateRequest,
|
|
|
|
res *api.PerformLastSeenUpdateResponse,
|
|
|
|
) error {
|
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', req.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("gomatrixserverlib.SplitID: %w", err)
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
if err := a.DB.UpdateDeviceLastSeen(ctx, localpart, req.DeviceID, req.RemoteAddr); err != nil {
|
2020-11-20 12:29:02 +01:00
|
|
|
return fmt.Errorf("a.DeviceDB.UpdateDeviceLastSeen: %w", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-31 15:40:45 +02:00
|
|
|
func (a *UserInternalAPI) PerformDeviceUpdate(ctx context.Context, req *api.PerformDeviceUpdateRequest, res *api.PerformDeviceUpdateResponse) error {
|
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', req.RequestingUserID)
|
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Error("gomatrixserverlib.SplitID failed")
|
|
|
|
return err
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
dev, err := a.DB.GetDeviceByID(ctx, localpart, req.DeviceID)
|
2020-07-31 15:40:45 +02:00
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
res.DeviceExists = false
|
|
|
|
return nil
|
|
|
|
} else if err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Error("deviceDB.GetDeviceByID failed")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.DeviceExists = true
|
|
|
|
|
|
|
|
if dev.UserID != req.RequestingUserID {
|
|
|
|
res.Forbidden = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-02-18 12:31:05 +01:00
|
|
|
err = a.DB.UpdateDevice(ctx, localpart, req.DeviceID, req.DisplayName)
|
2020-07-31 15:40:45 +02:00
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Error("deviceDB.UpdateDevice failed")
|
|
|
|
return err
|
|
|
|
}
|
2020-08-12 23:43:02 +02:00
|
|
|
if req.DisplayName != nil && dev.DisplayName != *req.DisplayName {
|
|
|
|
// display name has changed: update the device key
|
|
|
|
var uploadRes keyapi.PerformUploadKeysResponse
|
|
|
|
a.KeyAPI.PerformUploadKeys(context.Background(), &keyapi.PerformUploadKeysRequest{
|
2021-03-02 12:40:20 +01:00
|
|
|
UserID: req.RequestingUserID,
|
2020-08-12 23:43:02 +02:00
|
|
|
DeviceKeys: []keyapi.DeviceKeys{
|
|
|
|
{
|
|
|
|
DeviceID: dev.ID,
|
|
|
|
DisplayName: *req.DisplayName,
|
|
|
|
KeyJSON: nil,
|
|
|
|
UserID: dev.UserID,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
OnlyDisplayNameUpdates: true,
|
|
|
|
}, &uploadRes)
|
|
|
|
if uploadRes.Error != nil {
|
2021-09-08 18:31:03 +02:00
|
|
|
return fmt.Errorf("failed to update device key display name: %v", uploadRes.Error)
|
2020-08-12 23:43:02 +02:00
|
|
|
}
|
|
|
|
if len(uploadRes.KeyErrors) > 0 {
|
2021-09-08 18:31:03 +02:00
|
|
|
return fmt.Errorf("failed to update device key display name, key errors: %+v", uploadRes.KeyErrors)
|
2020-08-12 23:43:02 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-31 15:40:45 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-15 10:54:11 +02:00
|
|
|
func (a *UserInternalAPI) QueryProfile(ctx context.Context, req *api.QueryProfileRequest, res *api.QueryProfileResponse) error {
|
|
|
|
local, domain, err := gomatrixserverlib.SplitID('@', req.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if domain != a.ServerName {
|
|
|
|
return fmt.Errorf("cannot query profile of remote users: got %s want %s", domain, a.ServerName)
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
prof, err := a.DB.GetProfileByLocalpart(ctx, local)
|
2020-06-15 10:54:11 +02:00
|
|
|
if err != nil {
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.UserExists = true
|
|
|
|
res.AvatarURL = prof.AvatarURL
|
|
|
|
res.DisplayName = prof.DisplayName
|
|
|
|
return nil
|
2020-07-28 11:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QuerySearchProfiles(ctx context.Context, req *api.QuerySearchProfilesRequest, res *api.QuerySearchProfilesResponse) error {
|
2022-02-18 12:31:05 +01:00
|
|
|
profiles, err := a.DB.SearchProfiles(ctx, req.SearchString, req.Limit)
|
2020-07-28 11:53:17 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.Profiles = profiles
|
|
|
|
return nil
|
2020-06-15 10:54:11 +02:00
|
|
|
}
|
2020-06-16 15:10:55 +02:00
|
|
|
|
2020-07-22 18:04:57 +02:00
|
|
|
func (a *UserInternalAPI) QueryDeviceInfos(ctx context.Context, req *api.QueryDeviceInfosRequest, res *api.QueryDeviceInfosResponse) error {
|
2022-02-18 12:31:05 +01:00
|
|
|
devices, err := a.DB.GetDevicesByID(ctx, req.DeviceIDs)
|
2020-07-22 18:04:57 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.DeviceInfo = make(map[string]struct {
|
|
|
|
DisplayName string
|
|
|
|
UserID string
|
|
|
|
})
|
|
|
|
for _, d := range devices {
|
|
|
|
res.DeviceInfo[d.ID] = struct {
|
|
|
|
DisplayName string
|
|
|
|
UserID string
|
|
|
|
}{
|
|
|
|
DisplayName: d.DisplayName,
|
|
|
|
UserID: d.UserID,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-16 15:53:19 +02:00
|
|
|
func (a *UserInternalAPI) QueryDevices(ctx context.Context, req *api.QueryDevicesRequest, res *api.QueryDevicesResponse) error {
|
|
|
|
local, domain, err := gomatrixserverlib.SplitID('@', req.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if domain != a.ServerName {
|
|
|
|
return fmt.Errorf("cannot query devices of remote users: got %s want %s", domain, a.ServerName)
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
devs, err := a.DB.GetDevicesByLocalpart(ctx, local)
|
2020-06-16 15:53:19 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
res.UserExists = true
|
2020-06-16 15:53:19 +02:00
|
|
|
res.Devices = devs
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-16 18:05:38 +02:00
|
|
|
func (a *UserInternalAPI) QueryAccountData(ctx context.Context, req *api.QueryAccountDataRequest, res *api.QueryAccountDataResponse) error {
|
|
|
|
local, domain, err := gomatrixserverlib.SplitID('@', req.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if domain != a.ServerName {
|
|
|
|
return fmt.Errorf("cannot query account data of remote users: got %s want %s", domain, a.ServerName)
|
|
|
|
}
|
|
|
|
if req.DataType != "" {
|
2020-06-18 19:36:03 +02:00
|
|
|
var data json.RawMessage
|
2022-02-18 12:31:05 +01:00
|
|
|
data, err = a.DB.GetAccountDataByType(ctx, local, req.RoomID, req.DataType)
|
2020-06-16 18:05:38 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-06-18 19:36:03 +02:00
|
|
|
res.RoomAccountData = make(map[string]map[string]json.RawMessage)
|
|
|
|
res.GlobalAccountData = make(map[string]json.RawMessage)
|
|
|
|
if data != nil {
|
2020-06-16 18:05:38 +02:00
|
|
|
if req.RoomID != "" {
|
2020-06-18 19:36:03 +02:00
|
|
|
if _, ok := res.RoomAccountData[req.RoomID]; !ok {
|
|
|
|
res.RoomAccountData[req.RoomID] = make(map[string]json.RawMessage)
|
|
|
|
}
|
|
|
|
res.RoomAccountData[req.RoomID][req.DataType] = data
|
2020-06-16 18:05:38 +02:00
|
|
|
} else {
|
2020-06-18 19:36:03 +02:00
|
|
|
res.GlobalAccountData[req.DataType] = data
|
2020-06-16 18:05:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
global, rooms, err := a.DB.GetAccountData(ctx, local)
|
2020-06-16 18:05:38 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.RoomAccountData = rooms
|
|
|
|
res.GlobalAccountData = global
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-16 15:10:55 +02:00
|
|
|
func (a *UserInternalAPI) QueryAccessToken(ctx context.Context, req *api.QueryAccessTokenRequest, res *api.QueryAccessTokenResponse) error {
|
|
|
|
if req.AppServiceUserID != "" {
|
|
|
|
appServiceDevice, err := a.queryAppServiceToken(ctx, req.AccessToken, req.AppServiceUserID)
|
2021-12-03 18:18:35 +01:00
|
|
|
if err != nil {
|
|
|
|
res.Err = err.Error()
|
|
|
|
}
|
2020-06-16 15:10:55 +02:00
|
|
|
res.Device = appServiceDevice
|
2021-12-03 18:18:35 +01:00
|
|
|
|
2020-06-16 15:10:55 +02:00
|
|
|
return nil
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
device, err := a.DB.GetDeviceByAccessToken(ctx, req.AccessToken)
|
2020-06-16 15:10:55 +02:00
|
|
|
if err != nil {
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2022-02-16 18:55:38 +01:00
|
|
|
localPart, _, err := gomatrixserverlib.SplitID('@', device.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
acc, err := a.DB.GetAccountByLocalpart(ctx, localPart)
|
2022-02-16 18:55:38 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
device.AccountType = acc.AccountType
|
2020-06-16 15:10:55 +02:00
|
|
|
res.Device = device
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the appservice 'device' or nil if the token is not an appservice. Returns an error if there was a problem
|
|
|
|
// creating a 'device'.
|
|
|
|
func (a *UserInternalAPI) queryAppServiceToken(ctx context.Context, token, appServiceUserID string) (*api.Device, error) {
|
|
|
|
// Search for app service with given access_token
|
|
|
|
var appService *config.ApplicationService
|
|
|
|
for _, as := range a.AppServices {
|
|
|
|
if as.ASToken == token {
|
|
|
|
appService = &as
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if appService == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a dummy device for AS user
|
|
|
|
dev := api.Device{
|
|
|
|
// Use AS dummy device ID
|
|
|
|
ID: types.AppServiceDeviceID,
|
|
|
|
// AS dummy device has AS's token.
|
2021-03-03 17:27:44 +01:00
|
|
|
AccessToken: token,
|
|
|
|
AppserviceID: appService.ID,
|
2022-02-16 18:55:38 +01:00
|
|
|
AccountType: api.AccountTypeAppService,
|
2020-06-16 15:10:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
localpart, err := userutil.ParseUsernameParam(appServiceUserID, &a.ServerName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if localpart != "" { // AS is masquerading as another user
|
|
|
|
// Verify that the user is registered
|
2022-02-18 12:31:05 +01:00
|
|
|
account, err := a.DB.GetAccountByLocalpart(ctx, localpart)
|
2021-01-04 11:43:23 +01:00
|
|
|
// Verify that the account exists and either appServiceID matches or
|
|
|
|
// it belongs to the appservice user namespaces
|
|
|
|
if err == nil && (account.AppServiceID == appService.ID || appService.IsInterestedInUserID(appServiceUserID)) {
|
2020-06-16 15:10:55 +02:00
|
|
|
// Set the userID of dummy device
|
|
|
|
dev.UserID = appServiceUserID
|
|
|
|
return &dev, nil
|
|
|
|
}
|
|
|
|
return nil, &api.ErrorForbidden{Message: "appservice has not registered this user"}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS is not masquerading as any user, so use AS's sender_localpart
|
|
|
|
dev.UserID = appService.SenderLocalpart
|
|
|
|
return &dev, nil
|
|
|
|
}
|
2020-10-02 18:18:20 +02:00
|
|
|
|
|
|
|
// PerformAccountDeactivation deactivates the user's account, removing all ability for the user to login again.
|
|
|
|
func (a *UserInternalAPI) PerformAccountDeactivation(ctx context.Context, req *api.PerformAccountDeactivationRequest, res *api.PerformAccountDeactivationResponse) error {
|
2022-02-18 12:31:05 +01:00
|
|
|
err := a.DB.DeactivateAccount(ctx, req.Localpart)
|
2020-10-02 18:18:20 +02:00
|
|
|
res.AccountDeactivated = err == nil
|
|
|
|
return err
|
|
|
|
}
|
2021-04-07 14:26:20 +02:00
|
|
|
|
|
|
|
// PerformOpenIDTokenCreation creates a new token that a relying party uses to authenticate a user
|
|
|
|
func (a *UserInternalAPI) PerformOpenIDTokenCreation(ctx context.Context, req *api.PerformOpenIDTokenCreationRequest, res *api.PerformOpenIDTokenCreationResponse) error {
|
|
|
|
token := util.RandomString(24)
|
|
|
|
|
2022-02-18 12:31:05 +01:00
|
|
|
exp, err := a.DB.CreateOpenIDToken(ctx, token, req.UserID)
|
2021-04-07 14:26:20 +02:00
|
|
|
|
|
|
|
res.Token = api.OpenIDToken{
|
|
|
|
Token: token,
|
|
|
|
UserID: req.UserID,
|
|
|
|
ExpiresAtMS: exp,
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryOpenIDToken validates that the OpenID token was issued for the user, the replying party uses this for validation
|
|
|
|
func (a *UserInternalAPI) QueryOpenIDToken(ctx context.Context, req *api.QueryOpenIDTokenRequest, res *api.QueryOpenIDTokenResponse) error {
|
2022-02-18 12:31:05 +01:00
|
|
|
openIDTokenAttrs, err := a.DB.GetOpenIDTokenAttributes(ctx, req.Token)
|
2021-04-07 14:26:20 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
res.Sub = openIDTokenAttrs.UserID
|
|
|
|
res.ExpiresAtMS = openIDTokenAttrs.ExpiresAtMS
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2021-07-27 13:47:32 +02:00
|
|
|
|
2021-12-03 18:18:35 +01:00
|
|
|
func (a *UserInternalAPI) PerformKeyBackup(ctx context.Context, req *api.PerformKeyBackupRequest, res *api.PerformKeyBackupResponse) error {
|
2021-07-27 18:08:53 +02:00
|
|
|
// Delete metadata
|
2021-07-27 13:47:32 +02:00
|
|
|
if req.DeleteBackup {
|
|
|
|
if req.Version == "" {
|
|
|
|
res.BadInput = true
|
|
|
|
res.Error = "must specify a version to delete"
|
2021-12-03 18:18:35 +01:00
|
|
|
if res.Error != "" {
|
|
|
|
return fmt.Errorf(res.Error)
|
|
|
|
}
|
|
|
|
return nil
|
2021-07-27 13:47:32 +02:00
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
exists, err := a.DB.DeleteKeyBackup(ctx, req.UserID, req.Version)
|
2021-07-27 13:47:32 +02:00
|
|
|
if err != nil {
|
|
|
|
res.Error = fmt.Sprintf("failed to delete backup: %s", err)
|
|
|
|
}
|
|
|
|
res.Exists = exists
|
|
|
|
res.Version = req.Version
|
2021-12-03 18:18:35 +01:00
|
|
|
if res.Error != "" {
|
|
|
|
return fmt.Errorf(res.Error)
|
|
|
|
}
|
|
|
|
return nil
|
2021-07-27 13:47:32 +02:00
|
|
|
}
|
2021-07-27 18:08:53 +02:00
|
|
|
// Create metadata
|
2021-07-27 13:47:32 +02:00
|
|
|
if req.Version == "" {
|
2022-02-18 12:31:05 +01:00
|
|
|
version, err := a.DB.CreateKeyBackup(ctx, req.UserID, req.Algorithm, req.AuthData)
|
2021-07-27 13:47:32 +02:00
|
|
|
if err != nil {
|
|
|
|
res.Error = fmt.Sprintf("failed to create backup: %s", err)
|
|
|
|
}
|
|
|
|
res.Exists = err == nil
|
|
|
|
res.Version = version
|
2021-12-03 18:18:35 +01:00
|
|
|
if res.Error != "" {
|
|
|
|
return fmt.Errorf(res.Error)
|
|
|
|
}
|
|
|
|
return nil
|
2021-07-27 13:47:32 +02:00
|
|
|
}
|
2021-07-27 18:08:53 +02:00
|
|
|
// Update metadata
|
|
|
|
if len(req.Keys.Rooms) == 0 {
|
2022-02-18 12:31:05 +01:00
|
|
|
err := a.DB.UpdateKeyBackupAuthData(ctx, req.UserID, req.Version, req.AuthData)
|
2021-07-27 18:08:53 +02:00
|
|
|
if err != nil {
|
|
|
|
res.Error = fmt.Sprintf("failed to update backup: %s", err)
|
|
|
|
}
|
2021-07-27 20:29:32 +02:00
|
|
|
res.Exists = err == nil
|
2021-07-27 18:08:53 +02:00
|
|
|
res.Version = req.Version
|
2021-12-03 18:18:35 +01:00
|
|
|
if res.Error != "" {
|
|
|
|
return fmt.Errorf(res.Error)
|
|
|
|
}
|
|
|
|
return nil
|
2021-07-27 18:08:53 +02:00
|
|
|
}
|
|
|
|
// Upload Keys for a specific version metadata
|
|
|
|
a.uploadBackupKeys(ctx, req, res)
|
2021-12-03 18:18:35 +01:00
|
|
|
if res.Error != "" {
|
|
|
|
return fmt.Errorf(res.Error)
|
|
|
|
}
|
|
|
|
return nil
|
2021-07-27 18:08:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) uploadBackupKeys(ctx context.Context, req *api.PerformKeyBackupRequest, res *api.PerformKeyBackupResponse) {
|
2021-07-27 20:29:32 +02:00
|
|
|
// you can only upload keys for the CURRENT version
|
2022-02-18 12:31:05 +01:00
|
|
|
version, _, _, _, deleted, err := a.DB.GetKeyBackup(ctx, req.UserID, "")
|
2021-07-27 13:47:32 +02:00
|
|
|
if err != nil {
|
2021-07-27 18:08:53 +02:00
|
|
|
res.Error = fmt.Sprintf("failed to query version: %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if deleted {
|
|
|
|
res.Error = "backup was deleted"
|
|
|
|
return
|
|
|
|
}
|
2021-07-27 20:29:32 +02:00
|
|
|
if version != req.Version {
|
|
|
|
res.BadInput = true
|
|
|
|
res.Error = fmt.Sprintf("%s isn't the current version, %s is.", req.Version, version)
|
|
|
|
return
|
|
|
|
}
|
2021-07-27 18:08:53 +02:00
|
|
|
res.Exists = true
|
|
|
|
res.Version = version
|
|
|
|
|
|
|
|
// map keys to a form we can upload more easily - the map ensures we have no duplicates.
|
|
|
|
var uploads []api.InternalKeyBackupSession
|
|
|
|
for roomID, data := range req.Keys.Rooms {
|
|
|
|
for sessionID, sessionData := range data.Sessions {
|
|
|
|
uploads = append(uploads, api.InternalKeyBackupSession{
|
|
|
|
RoomID: roomID,
|
|
|
|
SessionID: sessionID,
|
|
|
|
KeyBackupSession: sessionData,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2022-02-18 12:31:05 +01:00
|
|
|
count, etag, err := a.DB.UpsertBackupKeys(ctx, version, req.UserID, uploads)
|
2021-07-27 18:08:53 +02:00
|
|
|
if err != nil {
|
|
|
|
res.Error = fmt.Sprintf("failed to upsert keys: %s", err)
|
|
|
|
return
|
2021-07-27 13:47:32 +02:00
|
|
|
}
|
2021-07-27 18:08:53 +02:00
|
|
|
res.KeyCount = count
|
|
|
|
res.KeyETag = etag
|
2021-07-27 13:47:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryKeyBackup(ctx context.Context, req *api.QueryKeyBackupRequest, res *api.QueryKeyBackupResponse) {
|
2022-02-18 12:31:05 +01:00
|
|
|
version, algorithm, authData, etag, deleted, err := a.DB.GetKeyBackup(ctx, req.UserID, req.Version)
|
2021-07-27 13:47:32 +02:00
|
|
|
res.Version = version
|
|
|
|
if err != nil {
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
res.Exists = false
|
|
|
|
return
|
|
|
|
}
|
|
|
|
res.Error = fmt.Sprintf("failed to query key backup: %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
res.Algorithm = algorithm
|
|
|
|
res.AuthData = authData
|
2021-07-27 20:29:32 +02:00
|
|
|
res.ETag = etag
|
2021-07-27 13:47:32 +02:00
|
|
|
res.Exists = !deleted
|
|
|
|
|
2021-07-27 20:29:32 +02:00
|
|
|
if !req.ReturnKeys {
|
2022-02-18 12:31:05 +01:00
|
|
|
res.Count, err = a.DB.CountBackupKeys(ctx, version, req.UserID)
|
2021-07-27 20:29:32 +02:00
|
|
|
if err != nil {
|
|
|
|
res.Error = fmt.Sprintf("failed to count keys: %s", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-02-18 12:31:05 +01:00
|
|
|
result, err := a.DB.GetBackupKeys(ctx, version, req.UserID, req.KeysForRoomID, req.KeysForSessionID)
|
2021-07-27 20:29:32 +02:00
|
|
|
if err != nil {
|
|
|
|
res.Error = fmt.Sprintf("failed to query keys: %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
res.Keys = result
|
2021-07-27 13:47:32 +02:00
|
|
|
}
|
2022-03-03 12:40:53 +01:00
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryNotifications(ctx context.Context, req *api.QueryNotificationsRequest, res *api.QueryNotificationsResponse) error {
|
|
|
|
if req.Limit == 0 || req.Limit > 1000 {
|
|
|
|
req.Limit = 1000
|
|
|
|
}
|
|
|
|
|
|
|
|
var fromID int64
|
|
|
|
var err error
|
|
|
|
if req.From != "" {
|
|
|
|
fromID, err = strconv.ParseInt(req.From, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("QueryNotifications: parsing 'from': %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var filter tables.NotificationFilter = tables.AllNotifications
|
|
|
|
if req.Only == "highlight" {
|
|
|
|
filter = tables.HighlightNotifications
|
|
|
|
}
|
|
|
|
notifs, lastID, err := a.DB.GetNotifications(ctx, req.Localpart, fromID, req.Limit, filter)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if notifs == nil {
|
|
|
|
// This ensures empty is JSON-encoded as [] instead of null.
|
|
|
|
notifs = []*api.Notification{}
|
|
|
|
}
|
|
|
|
res.Notifications = notifs
|
|
|
|
if lastID >= 0 {
|
|
|
|
res.NextToken = strconv.FormatInt(lastID+1, 10)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) PerformPusherSet(ctx context.Context, req *api.PerformPusherSetRequest, res *struct{}) error {
|
|
|
|
util.GetLogger(ctx).WithFields(logrus.Fields{
|
|
|
|
"localpart": req.Localpart,
|
|
|
|
"pushkey": req.Pusher.PushKey,
|
|
|
|
"display_name": req.Pusher.AppDisplayName,
|
|
|
|
}).Info("PerformPusherCreation")
|
|
|
|
if !req.Append {
|
|
|
|
err := a.DB.RemovePushers(ctx, req.Pusher.AppID, req.Pusher.PushKey)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if req.Pusher.Kind == "" {
|
|
|
|
return a.DB.RemovePusher(ctx, req.Pusher.AppID, req.Pusher.PushKey, req.Localpart)
|
|
|
|
}
|
|
|
|
if req.Pusher.PushKeyTS == 0 {
|
|
|
|
req.Pusher.PushKeyTS = gomatrixserverlib.AsTimestamp(time.Now())
|
|
|
|
}
|
|
|
|
return a.DB.UpsertPusher(ctx, req.Pusher, req.Localpart)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) PerformPusherDeletion(ctx context.Context, req *api.PerformPusherDeletionRequest, res *struct{}) error {
|
|
|
|
pushers, err := a.DB.GetPushers(ctx, req.Localpart)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for i := range pushers {
|
|
|
|
logrus.Warnf("pusher session: %d, req session: %d", pushers[i].SessionID, req.SessionID)
|
|
|
|
if pushers[i].SessionID != req.SessionID {
|
|
|
|
err := a.DB.RemovePusher(ctx, pushers[i].AppID, pushers[i].PushKey, req.Localpart)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryPushers(ctx context.Context, req *api.QueryPushersRequest, res *api.QueryPushersResponse) error {
|
|
|
|
var err error
|
|
|
|
res.Pushers, err = a.DB.GetPushers(ctx, req.Localpart)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) PerformPushRulesPut(
|
|
|
|
ctx context.Context,
|
|
|
|
req *api.PerformPushRulesPutRequest,
|
|
|
|
_ *struct{},
|
|
|
|
) error {
|
|
|
|
bs, err := json.Marshal(&req.RuleSets)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
userReq := api.InputAccountDataRequest{
|
|
|
|
UserID: req.UserID,
|
|
|
|
DataType: pushRulesAccountDataType,
|
|
|
|
AccountData: json.RawMessage(bs),
|
|
|
|
}
|
|
|
|
var userRes api.InputAccountDataResponse // empty
|
|
|
|
if err := a.InputAccountData(ctx, &userReq, &userRes); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := a.SyncProducer.SendAccountData(req.UserID, "" /* roomID */, pushRulesAccountDataType); err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Errorf("syncProducer.SendData failed")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryPushRules(ctx context.Context, req *api.QueryPushRulesRequest, res *api.QueryPushRulesResponse) error {
|
|
|
|
userReq := api.QueryAccountDataRequest{
|
|
|
|
UserID: req.UserID,
|
|
|
|
DataType: pushRulesAccountDataType,
|
|
|
|
}
|
|
|
|
var userRes api.QueryAccountDataResponse
|
|
|
|
if err := a.QueryAccountData(ctx, &userReq, &userRes); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
bs, ok := userRes.GlobalAccountData[pushRulesAccountDataType]
|
|
|
|
if ok {
|
|
|
|
// Legacy Dendrite users will have completely empty push rules, so we should
|
|
|
|
// detect that situation and set some defaults.
|
|
|
|
var rules struct {
|
|
|
|
G struct {
|
|
|
|
Content []json.RawMessage `json:"content"`
|
|
|
|
Override []json.RawMessage `json:"override"`
|
|
|
|
Room []json.RawMessage `json:"room"`
|
|
|
|
Sender []json.RawMessage `json:"sender"`
|
|
|
|
Underride []json.RawMessage `json:"underride"`
|
|
|
|
} `json:"global"`
|
|
|
|
}
|
|
|
|
if err := json.Unmarshal([]byte(bs), &rules); err == nil {
|
|
|
|
count := len(rules.G.Content) + len(rules.G.Override) +
|
|
|
|
len(rules.G.Room) + len(rules.G.Sender) + len(rules.G.Underride)
|
|
|
|
ok = count > 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
// If we didn't find any default push rules then we should just generate some
|
|
|
|
// fresh ones.
|
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', req.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to split user ID %q for push rules", req.UserID)
|
|
|
|
}
|
|
|
|
pushRuleSets := pushrules.DefaultAccountRuleSets(localpart, a.ServerName)
|
|
|
|
prbs, err := json.Marshal(pushRuleSets)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to marshal default push rules: %w", err)
|
|
|
|
}
|
|
|
|
if err := a.DB.SaveAccountData(ctx, localpart, "", pushRulesAccountDataType, json.RawMessage(prbs)); err != nil {
|
|
|
|
return fmt.Errorf("failed to save default push rules: %w", err)
|
|
|
|
}
|
|
|
|
res.RuleSets = pushRuleSets
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var data pushrules.AccountRuleSets
|
|
|
|
if err := json.Unmarshal([]byte(bs), &data); err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Error("json.Unmarshal of push rules failed")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.RuleSets = &data
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-24 22:45:44 +01:00
|
|
|
func (a *UserInternalAPI) SetAvatarURL(ctx context.Context, req *api.PerformSetAvatarURLRequest, res *api.PerformSetAvatarURLResponse) error {
|
|
|
|
return a.DB.SetAvatarURL(ctx, req.Localpart, req.AvatarURL)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryNumericLocalpart(ctx context.Context, res *api.QueryNumericLocalpartResponse) error {
|
|
|
|
id, err := a.DB.GetNewNumericLocalpart(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.ID = id
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryAccountAvailability(ctx context.Context, req *api.QueryAccountAvailabilityRequest, res *api.QueryAccountAvailabilityResponse) error {
|
2022-03-28 14:31:17 +02:00
|
|
|
var err error
|
|
|
|
res.Available, err = a.DB.CheckAccountAvailability(ctx, req.Localpart)
|
2022-03-24 22:45:44 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryAccountByPassword(ctx context.Context, req *api.QueryAccountByPasswordRequest, res *api.QueryAccountByPasswordResponse) error {
|
|
|
|
acc, err := a.DB.GetAccountByPassword(ctx, req.Localpart, req.PlaintextPassword)
|
|
|
|
switch err {
|
|
|
|
case sql.ErrNoRows: // user does not exist
|
|
|
|
return nil
|
|
|
|
case bcrypt.ErrMismatchedHashAndPassword: // user exists, but password doesn't match
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
res.Exists = true
|
|
|
|
res.Account = acc
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) SetDisplayName(ctx context.Context, req *api.PerformUpdateDisplayNameRequest, _ *struct{}) error {
|
|
|
|
return a.DB.SetDisplayName(ctx, req.Localpart, req.DisplayName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryLocalpartForThreePID(ctx context.Context, req *api.QueryLocalpartForThreePIDRequest, res *api.QueryLocalpartForThreePIDResponse) error {
|
|
|
|
localpart, err := a.DB.GetLocalpartForThreePID(ctx, req.ThreePID, req.Medium)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.Localpart = localpart
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) QueryThreePIDsForLocalpart(ctx context.Context, req *api.QueryThreePIDsForLocalpartRequest, res *api.QueryThreePIDsForLocalpartResponse) error {
|
|
|
|
r, err := a.DB.GetThreePIDsForLocalpart(ctx, req.Localpart)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
res.ThreePIDs = r
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) PerformForgetThreePID(ctx context.Context, req *api.PerformForgetThreePIDRequest, res *struct{}) error {
|
|
|
|
return a.DB.RemoveThreePIDAssociation(ctx, req.ThreePID, req.Medium)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *UserInternalAPI) PerformSaveThreePIDAssociation(ctx context.Context, req *api.PerformSaveThreePIDAssociationRequest, res *struct{}) error {
|
|
|
|
return a.DB.SaveThreePIDAssociation(ctx, req.ThreePID, req.Localpart, req.Medium)
|
|
|
|
}
|
|
|
|
|
2022-03-03 12:40:53 +01:00
|
|
|
const pushRulesAccountDataType = "m.push_rules"
|