2017-04-20 22:40:52 +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.
|
|
|
|
|
2017-10-11 17:16:53 +00:00
|
|
|
package routing
|
2017-04-20 16:11:53 +00:00
|
|
|
|
|
|
|
import (
|
2018-08-20 09:22:06 +00:00
|
|
|
"context"
|
2020-07-09 23:39:44 +00:00
|
|
|
"net/http"
|
2019-06-19 13:05:03 +00:00
|
|
|
|
2017-05-30 16:51:40 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth"
|
2017-04-20 16:11:53 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2018-04-20 14:52:21 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2020-07-31 13:40:45 +00:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2020-06-17 11:05:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/accounts"
|
2017-05-05 16:43:42 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-04-20 16:11:53 +00:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2020-07-09 23:39:44 +00:00
|
|
|
type loginResponse struct {
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
HomeServer gomatrixserverlib.ServerName `json:"home_server"`
|
|
|
|
DeviceID string `json:"device_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type flows struct {
|
2017-04-20 16:11:53 +00:00
|
|
|
Flows []flow `json:"flows"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type flow struct {
|
2020-09-02 15:52:06 +00:00
|
|
|
Type string `json:"type"`
|
2017-04-20 16:11:53 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 23:39:44 +00:00
|
|
|
func passwordLogin() flows {
|
|
|
|
f := flows{}
|
|
|
|
s := flow{
|
2020-09-02 15:52:06 +00:00
|
|
|
Type: "m.login.password",
|
2020-07-09 23:39:44 +00:00
|
|
|
}
|
2017-04-20 16:11:53 +00:00
|
|
|
f.Flows = append(f.Flows, s)
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
// Login implements GET and POST /login
|
2017-06-19 14:21:04 +00:00
|
|
|
func Login(
|
2020-07-31 13:40:45 +00:00
|
|
|
req *http.Request, accountDB accounts.Database, userAPI userapi.UserInternalAPI,
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg *config.ClientAPI,
|
2017-06-19 14:21:04 +00:00
|
|
|
) util.JSONResponse {
|
2020-07-09 23:39:44 +00:00
|
|
|
if req.Method == http.MethodGet {
|
|
|
|
// TODO: support other forms of login other than password, depending on config options
|
2017-04-20 16:11:53 +00:00
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-04-20 16:11:53 +00:00
|
|
|
JSON: passwordLogin(),
|
|
|
|
}
|
2018-03-13 15:55:45 +00:00
|
|
|
} else if req.Method == http.MethodPost {
|
2020-07-09 23:39:44 +00:00
|
|
|
typePassword := auth.LoginTypePassword{
|
|
|
|
GetAccountByPassword: accountDB.GetAccountByPassword,
|
|
|
|
Config: cfg,
|
|
|
|
}
|
|
|
|
r := typePassword.Request()
|
|
|
|
resErr := httputil.UnmarshalJSONRequest(req, r)
|
2017-04-20 16:11:53 +00:00
|
|
|
if resErr != nil {
|
|
|
|
return *resErr
|
|
|
|
}
|
2020-07-09 23:39:44 +00:00
|
|
|
login, authErr := typePassword.Login(req.Context(), r)
|
|
|
|
if authErr != nil {
|
|
|
|
return *authErr
|
2017-04-20 16:11:53 +00:00
|
|
|
}
|
2020-07-09 23:39:44 +00:00
|
|
|
// make a device/access token
|
2020-07-31 13:40:45 +00:00
|
|
|
return completeAuth(req.Context(), cfg.Matrix.ServerName, userAPI, login)
|
2017-04-20 16:11:53 +00:00
|
|
|
}
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusMethodNotAllowed,
|
2017-04-20 16:11:53 +00:00
|
|
|
JSON: jsonerror.NotFound("Bad method"),
|
|
|
|
}
|
|
|
|
}
|
2018-08-20 09:22:06 +00:00
|
|
|
|
2020-07-09 23:39:44 +00:00
|
|
|
func completeAuth(
|
2020-07-31 13:40:45 +00:00
|
|
|
ctx context.Context, serverName gomatrixserverlib.ServerName, userAPI userapi.UserInternalAPI, login *auth.Login,
|
2020-07-09 23:39:44 +00:00
|
|
|
) util.JSONResponse {
|
|
|
|
token, err := auth.GenerateAccessToken()
|
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Error("auth.GenerateAccessToken failed")
|
|
|
|
return jsonerror.InternalServerError()
|
|
|
|
}
|
2020-06-17 16:41:45 +00:00
|
|
|
|
2020-07-09 23:39:44 +00:00
|
|
|
localpart, err := userutil.ParseUsernameParam(login.Username(), &serverName)
|
2020-06-17 16:41:45 +00:00
|
|
|
if err != nil {
|
2020-07-09 23:39:44 +00:00
|
|
|
util.GetLogger(ctx).WithError(err).Error("auth.ParseUsernameParam failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2020-06-17 16:41:45 +00:00
|
|
|
}
|
|
|
|
|
2020-07-31 13:40:45 +00:00
|
|
|
var performRes userapi.PerformDeviceCreationResponse
|
|
|
|
err = userAPI.PerformDeviceCreation(ctx, &userapi.PerformDeviceCreationRequest{
|
|
|
|
DeviceDisplayName: login.InitialDisplayName,
|
|
|
|
DeviceID: login.DeviceID,
|
|
|
|
AccessToken: token,
|
|
|
|
Localpart: localpart,
|
|
|
|
}, &performRes)
|
2020-06-17 16:41:45 +00:00
|
|
|
if err != nil {
|
2020-07-09 23:39:44 +00:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusInternalServerError,
|
|
|
|
JSON: jsonerror.Unknown("failed to create device: " + err.Error()),
|
2020-06-17 16:41:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-09 23:39:44 +00:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: loginResponse{
|
2020-07-31 13:40:45 +00:00
|
|
|
UserID: performRes.Device.UserID,
|
|
|
|
AccessToken: performRes.Device.AccessToken,
|
2020-07-09 23:39:44 +00:00
|
|
|
HomeServer: serverName,
|
2020-07-31 13:40:45 +00:00
|
|
|
DeviceID: performRes.Device.ID,
|
2020-07-09 23:39:44 +00:00
|
|
|
},
|
|
|
|
}
|
2020-06-17 16:41:45 +00:00
|
|
|
}
|