2017-07-11 15:04:34 +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-07-11 15:04:34 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2020-03-02 16:20:44 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2020-06-16 13:10:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2020-08-27 17:53:40 +00:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2017-07-11 15:04:34 +00:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Logout handles POST /logout
|
|
|
|
func Logout(
|
2020-08-27 17:53:40 +00:00
|
|
|
req *http.Request, userAPI userapi.UserInternalAPI, device *api.Device,
|
2017-07-11 15:04:34 +00:00
|
|
|
) util.JSONResponse {
|
2020-08-27 17:53:40 +00:00
|
|
|
var performRes userapi.PerformDeviceDeletionResponse
|
|
|
|
err := userAPI.PerformDeviceDeletion(req.Context(), &userapi.PerformDeviceDeletionRequest{
|
|
|
|
UserID: device.UserID,
|
|
|
|
DeviceIDs: []string{device.ID},
|
|
|
|
}, &performRes)
|
2017-07-25 15:10:59 +00:00
|
|
|
if err != nil {
|
2020-08-27 17:53:40 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("PerformDeviceDeletion failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2017-07-11 15:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-07-11 15:04:34 +00:00
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|
2017-10-15 10:29:47 +00:00
|
|
|
|
|
|
|
// LogoutAll handles POST /logout/all
|
|
|
|
func LogoutAll(
|
2020-08-27 17:53:40 +00:00
|
|
|
req *http.Request, userAPI userapi.UserInternalAPI, device *api.Device,
|
2017-10-15 10:29:47 +00:00
|
|
|
) util.JSONResponse {
|
2020-08-27 17:53:40 +00:00
|
|
|
var performRes userapi.PerformDeviceDeletionResponse
|
|
|
|
err := userAPI.PerformDeviceDeletion(req.Context(), &userapi.PerformDeviceDeletionRequest{
|
|
|
|
UserID: device.UserID,
|
|
|
|
DeviceIDs: nil,
|
|
|
|
}, &performRes)
|
2017-10-15 10:29:47 +00:00
|
|
|
if err != nil {
|
2020-08-27 17:53:40 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("PerformDeviceDeletion failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2017-10-15 10:29:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-10-15 10:29:47 +00:00
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|