2017-04-21 00:40:52 +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.
|
|
|
|
|
2017-10-11 19:16:53 +02:00
|
|
|
package routing
|
2017-04-20 18:11:53 +02:00
|
|
|
|
|
|
|
import (
|
2017-05-30 18:51:40 +02:00
|
|
|
"net/http"
|
|
|
|
|
2018-08-20 11:22:06 +02:00
|
|
|
"context"
|
2019-06-19 15:05:03 +02:00
|
|
|
|
2017-05-30 18:51:40 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth"
|
2018-08-20 11:22:06 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2017-05-30 18:51:40 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/accounts"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/devices"
|
2017-04-20 18:11:53 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2018-04-20 16:52:21 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2017-06-19 16:21:04 +02:00
|
|
|
"github.com/matrix-org/dendrite/common/config"
|
2017-05-05 18:43:42 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-04-20 18:11:53 +02:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type loginFlows struct {
|
|
|
|
Flows []flow `json:"flows"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type flow struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Stages []string `json:"stages"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type passwordRequest struct {
|
2019-07-22 16:05:38 +02:00
|
|
|
User string `json:"user"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
// Both DeviceID and InitialDisplayName can be omitted, or empty strings ("")
|
|
|
|
// Thus a pointer is needed to differentiate between the two
|
2017-11-14 10:59:02 +01:00
|
|
|
InitialDisplayName *string `json:"initial_device_display_name"`
|
2019-07-22 16:05:38 +02:00
|
|
|
DeviceID *string `json:"device_id"`
|
2017-04-20 18:11:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type loginResponse struct {
|
2017-05-05 18:43:42 +02:00
|
|
|
UserID string `json:"user_id"`
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
HomeServer gomatrixserverlib.ServerName `json:"home_server"`
|
2017-10-10 11:40:52 +02:00
|
|
|
DeviceID string `json:"device_id"`
|
2017-04-20 18:11:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func passwordLogin() loginFlows {
|
|
|
|
f := loginFlows{}
|
|
|
|
s := flow{"m.login.password", []string{"m.login.password"}}
|
|
|
|
f.Flows = append(f.Flows, s)
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
// Login implements GET and POST /login
|
2017-06-19 16:21:04 +02:00
|
|
|
func Login(
|
|
|
|
req *http.Request, accountDB *accounts.Database, deviceDB *devices.Database,
|
|
|
|
cfg config.Dendrite,
|
|
|
|
) util.JSONResponse {
|
2018-03-13 16:55:45 +01:00
|
|
|
if req.Method == http.MethodGet { // TODO: support other forms of login other than password, depending on config options
|
2017-04-20 18:11:53 +02:00
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusOK,
|
2017-04-20 18:11:53 +02:00
|
|
|
JSON: passwordLogin(),
|
|
|
|
}
|
2018-03-13 16:55:45 +01:00
|
|
|
} else if req.Method == http.MethodPost {
|
2017-04-20 18:11:53 +02:00
|
|
|
var r passwordRequest
|
|
|
|
resErr := httputil.UnmarshalJSONRequest(req, &r)
|
|
|
|
if resErr != nil {
|
|
|
|
return *resErr
|
|
|
|
}
|
|
|
|
if r.User == "" {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusBadRequest,
|
2017-04-20 18:11:53 +02:00
|
|
|
JSON: jsonerror.BadJSON("'user' must be supplied."),
|
|
|
|
}
|
|
|
|
}
|
2017-05-30 18:51:40 +02:00
|
|
|
|
|
|
|
util.GetLogger(req.Context()).WithField("user", r.User).Info("Processing login request")
|
|
|
|
|
2018-04-20 16:52:21 +02:00
|
|
|
localpart, err := userutil.ParseUsernameParam(r.User, &cfg.Matrix.ServerName)
|
|
|
|
if err != nil {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.InvalidUsername(err.Error()),
|
2017-09-22 18:08:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
acc, err := accountDB.GetAccountByPassword(req.Context(), localpart, r.Password)
|
2017-05-30 18:51:40 +02:00
|
|
|
if err != nil {
|
|
|
|
// Technically we could tell them if the user does not exist by checking if err == sql.ErrNoRows
|
|
|
|
// but that would leak the existence of the user.
|
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusForbidden,
|
2018-03-02 10:08:02 +01:00
|
|
|
JSON: jsonerror.Forbidden("username or password was incorrect, or the account does not exist"),
|
2017-05-30 18:51:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
token, err := auth.GenerateAccessToken()
|
|
|
|
if err != nil {
|
2019-07-09 18:33:52 +02:00
|
|
|
return httputil.LogThenError(req, err)
|
2017-05-30 18:51:40 +02:00
|
|
|
}
|
|
|
|
|
2019-07-22 16:05:38 +02:00
|
|
|
dev, err := getDevice(req.Context(), r, deviceDB, acc, token)
|
2017-05-30 18:51:40 +02:00
|
|
|
if err != nil {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusInternalServerError,
|
2017-05-30 18:51:40 +02:00
|
|
|
JSON: jsonerror.Unknown("failed to create device: " + err.Error()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 18:11:53 +02:00
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusOK,
|
2017-04-20 18:11:53 +02:00
|
|
|
JSON: loginResponse{
|
2017-05-30 18:51:40 +02:00
|
|
|
UserID: dev.UserID,
|
|
|
|
AccessToken: dev.AccessToken,
|
2017-06-19 16:21:04 +02:00
|
|
|
HomeServer: cfg.Matrix.ServerName,
|
2017-10-10 11:40:52 +02:00
|
|
|
DeviceID: dev.ID,
|
2017-04-20 18:11:53 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusMethodNotAllowed,
|
2017-04-20 18:11:53 +02:00
|
|
|
JSON: jsonerror.NotFound("Bad method"),
|
|
|
|
}
|
|
|
|
}
|
2018-08-20 11:22:06 +02:00
|
|
|
|
2019-07-22 16:05:38 +02:00
|
|
|
// getDevice returns a new or existing device
|
2018-08-20 11:22:06 +02:00
|
|
|
func getDevice(
|
|
|
|
ctx context.Context,
|
|
|
|
r passwordRequest,
|
|
|
|
deviceDB *devices.Database,
|
|
|
|
acc *authtypes.Account,
|
2019-07-22 16:05:38 +02:00
|
|
|
token string,
|
2018-08-20 11:22:06 +02:00
|
|
|
) (dev *authtypes.Device, err error) {
|
2019-07-22 16:05:38 +02:00
|
|
|
dev, err = deviceDB.CreateDevice(
|
|
|
|
ctx, acc.Localpart, r.DeviceID, token, r.InitialDisplayName,
|
|
|
|
)
|
2018-08-20 11:22:06 +02:00
|
|
|
return
|
|
|
|
}
|