2017-04-20 23:40:52 +01: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.
|
|
|
|
|
2017-10-11 18:16:53 +01:00
|
|
|
package routing
|
2017-04-20 17:11:53 +01:00
|
|
|
|
|
|
|
import (
|
2018-08-20 10:22:06 +01:00
|
|
|
"context"
|
2020-07-10 00:39:44 +01:00
|
|
|
"net/http"
|
2019-06-19 14:05:03 +01:00
|
|
|
|
2017-05-30 17:51:40 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth"
|
2018-04-20 15:52:21 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-07-31 14:40:45 +01:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2023-05-09 23:46:49 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/spec"
|
2017-04-20 17:11:53 +01:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2020-07-10 00:39:44 +01:00
|
|
|
type loginResponse struct {
|
2022-12-23 13:11:11 +00:00
|
|
|
UserID string `json:"user_id"`
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
DeviceID string `json:"device_id"`
|
2020-07-10 00:39:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type flows struct {
|
2017-04-20 17:11:53 +01:00
|
|
|
Flows []flow `json:"flows"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type flow struct {
|
2020-09-02 16:52:06 +01:00
|
|
|
Type string `json:"type"`
|
2017-04-20 17:11:53 +01:00
|
|
|
}
|
|
|
|
|
2020-07-10 00:39:44 +01:00
|
|
|
func passwordLogin() flows {
|
|
|
|
f := flows{}
|
|
|
|
s := flow{
|
2020-09-02 16:52:06 +01:00
|
|
|
Type: "m.login.password",
|
2020-07-10 00:39:44 +01:00
|
|
|
}
|
2017-04-20 17:11:53 +01:00
|
|
|
f.Flows = append(f.Flows, s)
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
// Login implements GET and POST /login
|
2017-06-19 15:21:04 +01:00
|
|
|
func Login(
|
2022-05-05 13:17:38 +01:00
|
|
|
req *http.Request, userAPI userapi.ClientUserAPI,
|
2020-08-10 14:18:04 +01:00
|
|
|
cfg *config.ClientAPI,
|
2017-06-19 15:21:04 +01:00
|
|
|
) util.JSONResponse {
|
2020-07-10 00:39:44 +01:00
|
|
|
if req.Method == http.MethodGet {
|
|
|
|
// TODO: support other forms of login other than password, depending on config options
|
2017-04-20 17:11:53 +01:00
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-04-20 17:11:53 +01:00
|
|
|
JSON: passwordLogin(),
|
|
|
|
}
|
2018-03-13 15:55:45 +00:00
|
|
|
} else if req.Method == http.MethodPost {
|
2022-03-24 21:45:44 +00:00
|
|
|
login, cleanup, authErr := auth.LoginFromJSONReader(req.Context(), req.Body, userAPI, userAPI, cfg)
|
2020-07-10 00:39:44 +01:00
|
|
|
if authErr != nil {
|
|
|
|
return *authErr
|
2017-04-20 17:11:53 +01:00
|
|
|
}
|
2020-07-10 00:39:44 +01:00
|
|
|
// make a device/access token
|
2022-10-26 12:59:19 +01:00
|
|
|
authErr2 := completeAuth(req.Context(), cfg.Matrix, userAPI, login, req.RemoteAddr, req.UserAgent())
|
2022-02-10 10:27:26 +00:00
|
|
|
cleanup(req.Context(), &authErr2)
|
|
|
|
return authErr2
|
2017-04-20 17:11:53 +01:00
|
|
|
}
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusMethodNotAllowed,
|
2023-05-09 23:46:49 +01:00
|
|
|
JSON: spec.NotFound("Bad method"),
|
2017-04-20 17:11:53 +01:00
|
|
|
}
|
|
|
|
}
|
2018-08-20 10:22:06 +01:00
|
|
|
|
2020-07-10 00:39:44 +01:00
|
|
|
func completeAuth(
|
2022-10-26 12:59:19 +01:00
|
|
|
ctx context.Context, cfg *config.Global, userAPI userapi.ClientUserAPI, login *auth.Login,
|
2020-10-09 09:17:23 +01:00
|
|
|
ipAddr, userAgent string,
|
2020-07-10 00:39:44 +01:00
|
|
|
) util.JSONResponse {
|
|
|
|
token, err := auth.GenerateAccessToken()
|
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Error("auth.GenerateAccessToken failed")
|
2023-05-09 23:46:49 +01:00
|
|
|
return spec.InternalServerError()
|
2020-07-10 00:39:44 +01:00
|
|
|
}
|
2020-06-17 17:41:45 +01:00
|
|
|
|
2022-10-26 12:59:19 +01:00
|
|
|
localpart, serverName, err := userutil.ParseUsernameParam(login.Username(), cfg)
|
2020-06-17 17:41:45 +01:00
|
|
|
if err != nil {
|
2020-07-10 00:39:44 +01:00
|
|
|
util.GetLogger(ctx).WithError(err).Error("auth.ParseUsernameParam failed")
|
2023-05-09 23:46:49 +01:00
|
|
|
return spec.InternalServerError()
|
2020-06-17 17:41:45 +01:00
|
|
|
}
|
|
|
|
|
2020-07-31 14:40:45 +01:00
|
|
|
var performRes userapi.PerformDeviceCreationResponse
|
|
|
|
err = userAPI.PerformDeviceCreation(ctx, &userapi.PerformDeviceCreationRequest{
|
|
|
|
DeviceDisplayName: login.InitialDisplayName,
|
|
|
|
DeviceID: login.DeviceID,
|
|
|
|
AccessToken: token,
|
|
|
|
Localpart: localpart,
|
2022-11-11 16:41:37 +00:00
|
|
|
ServerName: serverName,
|
2020-10-09 09:17:23 +01:00
|
|
|
IPAddr: ipAddr,
|
|
|
|
UserAgent: userAgent,
|
2020-07-31 14:40:45 +01:00
|
|
|
}, &performRes)
|
2020-06-17 17:41:45 +01:00
|
|
|
if err != nil {
|
2020-07-10 00:39:44 +01:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusInternalServerError,
|
2023-05-09 23:46:49 +01:00
|
|
|
JSON: spec.Unknown("failed to create device: " + err.Error()),
|
2020-06-17 17:41:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:39:44 +01:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: loginResponse{
|
2020-07-31 14:40:45 +01:00
|
|
|
UserID: performRes.Device.UserID,
|
|
|
|
AccessToken: performRes.Device.AccessToken,
|
|
|
|
DeviceID: performRes.Device.ID,
|
2020-07-10 00:39:44 +01:00
|
|
|
},
|
|
|
|
}
|
2020-06-17 17:41:45 +01:00
|
|
|
}
|