|
|
|
@ -118,18 +118,20 @@ func Setup(
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// unspecced consent tracking
|
|
|
|
|
consentAPIMux.HandleFunc("/consent", consent(userAPI, cfg)).Methods(http.MethodGet, http.MethodPost, http.MethodOptions)
|
|
|
|
|
if cfg.Matrix.UserConsentOptions.Enabled() {
|
|
|
|
|
consentAPIMux.HandleFunc("/consent", consent(userAPI, cfg)).Methods(http.MethodGet, http.MethodPost, http.MethodOptions)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
r0mux := publicAPIMux.PathPrefix("/r0").Subrouter()
|
|
|
|
|
unstableMux := publicAPIMux.PathPrefix("/unstable").Subrouter()
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/createRoom",
|
|
|
|
|
httputil.MakeAuthAPI("createRoom", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("createRoom", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return CreateRoom(req, device, cfg, accountDB, rsAPI, asAPI)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/join/{roomIDOrAlias}",
|
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -145,7 +147,7 @@ func Setup(
|
|
|
|
|
|
|
|
|
|
if mscCfg.Enabled("msc2753") {
|
|
|
|
|
r0mux.Handle("/peek/{roomIDOrAlias}",
|
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Peek, userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Peek, userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -160,12 +162,12 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
}
|
|
|
|
|
r0mux.Handle("/joined_rooms",
|
|
|
|
|
httputil.MakeAuthAPI("joined_rooms", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("joined_rooms", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return GetJoinedRooms(req, device, rsAPI)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/join",
|
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -179,7 +181,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/leave",
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -193,7 +195,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/unpeek",
|
|
|
|
|
httputil.MakeAuthAPI("unpeek", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("unpeek", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -204,7 +206,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/ban",
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -213,7 +215,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/invite",
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -225,7 +227,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/kick",
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -234,7 +236,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/unban",
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("membership", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -243,7 +245,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/send/{eventType}",
|
|
|
|
|
httputil.MakeAuthAPI("send_message", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("send_message", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -252,7 +254,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/send/{eventType}/{txnID}",
|
|
|
|
|
httputil.MakeAuthAPI("send_message", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("send_message", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -263,7 +265,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/event/{eventID}",
|
|
|
|
|
httputil.MakeAuthAPI("rooms_get_event", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("rooms_get_event", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -272,7 +274,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/state", httputil.MakeAuthAPI("room_state", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/state", httputil.MakeAuthAPI("room_state", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -280,7 +282,7 @@ func Setup(
|
|
|
|
|
return OnIncomingStateRequest(req.Context(), device, rsAPI, vars["roomID"])
|
|
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/aliases", httputil.MakeAuthAPI("aliases", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/aliases", httputil.MakeAuthAPI("aliases", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -288,7 +290,7 @@ func Setup(
|
|
|
|
|
return GetAliases(req, rsAPI, device, vars["roomID"])
|
|
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/state/{type:[^/]+/?}", httputil.MakeAuthAPI("room_state", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/state/{type:[^/]+/?}", httputil.MakeAuthAPI("room_state", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -299,7 +301,7 @@ func Setup(
|
|
|
|
|
return OnIncomingStateTypeRequest(req.Context(), device, rsAPI, vars["roomID"], eventType, "", eventFormat)
|
|
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/state/{type}/{stateKey}", httputil.MakeAuthAPI("room_state", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/state/{type}/{stateKey}", httputil.MakeAuthAPI("room_state", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -309,7 +311,7 @@ func Setup(
|
|
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/state/{eventType:[^/]+/?}",
|
|
|
|
|
httputil.MakeAuthAPI("send_message", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("send_message", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -321,7 +323,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/state/{eventType}/{stateKey}",
|
|
|
|
|
httputil.MakeAuthAPI("send_message", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("send_message", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -356,7 +358,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/directory/room/{roomAlias}",
|
|
|
|
|
httputil.MakeAuthAPI("directory_room", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("directory_room", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -366,7 +368,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/directory/room/{roomAlias}",
|
|
|
|
|
httputil.MakeAuthAPI("directory_room", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("directory_room", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -385,7 +387,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
// TODO: Add AS support
|
|
|
|
|
r0mux.Handle("/directory/list/room/{roomID}",
|
|
|
|
|
httputil.MakeAuthAPI("directory_list", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("directory_list", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -400,19 +402,19 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/logout",
|
|
|
|
|
httputil.MakeAuthAPI("logout", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("logout", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return Logout(req, userAPI, device)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/logout/all",
|
|
|
|
|
httputil.MakeAuthAPI("logout", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("logout", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return LogoutAll(req, userAPI, device)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/typing/{userID}",
|
|
|
|
|
httputil.MakeAuthAPI("rooms_typing", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("rooms_typing", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -424,7 +426,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/redact/{eventID}",
|
|
|
|
|
httputil.MakeAuthAPI("rooms_redact", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("rooms_redact", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -433,7 +435,7 @@ func Setup(
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/redact/{eventID}/{txnId}",
|
|
|
|
|
httputil.MakeAuthAPI("rooms_redact", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("rooms_redact", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -443,7 +445,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/sendToDevice/{eventType}/{txnID}",
|
|
|
|
|
httputil.MakeAuthAPI("send_to_device", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("send_to_device", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -457,7 +459,7 @@ func Setup(
|
|
|
|
|
// rather than r0. It's an exact duplicate of the above handler.
|
|
|
|
|
// TODO: Remove this if/when sytest is fixed!
|
|
|
|
|
unstableMux.Handle("/sendToDevice/{eventType}/{txnID}",
|
|
|
|
|
httputil.MakeAuthAPI("send_to_device", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("send_to_device", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -468,7 +470,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/account/whoami",
|
|
|
|
|
httputil.MakeAuthAPI("whoami", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("whoami", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -477,7 +479,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/account/password",
|
|
|
|
|
httputil.MakeAuthAPI("password", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("password", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -486,7 +488,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/account/deactivate",
|
|
|
|
|
httputil.MakeAuthAPI("deactivate", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("deactivate", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -554,7 +556,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/profile/{userID}/avatar_url",
|
|
|
|
|
httputil.MakeAuthAPI("profile_avatar_url", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("profile_avatar_url", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -579,7 +581,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/profile/{userID}/displayname",
|
|
|
|
|
httputil.MakeAuthAPI("profile_displayname", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("profile_displayname", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -594,19 +596,19 @@ func Setup(
|
|
|
|
|
// PUT requests, so we need to allow this method
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/account/3pid",
|
|
|
|
|
httputil.MakeAuthAPI("account_3pid", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("account_3pid", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return GetAssociated3PIDs(req, accountDB, device)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/account/3pid",
|
|
|
|
|
httputil.MakeAuthAPI("account_3pid", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("account_3pid", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return CheckAndSave3PIDAssociation(req, accountDB, device, cfg)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
unstableMux.Handle("/account/3pid/delete",
|
|
|
|
|
httputil.MakeAuthAPI("account_3pid", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("account_3pid", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return Forget3PID(req, accountDB)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
@ -632,7 +634,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/voip/turnServer",
|
|
|
|
|
httputil.MakeAuthAPI("turn_server", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("turn_server", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -661,7 +663,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userID}/account_data/{type}",
|
|
|
|
|
httputil.MakeAuthAPI("user_account_data", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("user_account_data", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -671,7 +673,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userID}/rooms/{roomID}/account_data/{type}",
|
|
|
|
|
httputil.MakeAuthAPI("user_account_data", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("user_account_data", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -681,7 +683,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userID}/account_data/{type}",
|
|
|
|
|
httputil.MakeAuthAPI("user_account_data", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("user_account_data", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -691,7 +693,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userID}/rooms/{roomID}/account_data/{type}",
|
|
|
|
|
httputil.MakeAuthAPI("user_account_data", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("user_account_data", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -701,7 +703,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/admin/whois/{userID}",
|
|
|
|
|
httputil.MakeAuthAPI("admin_whois", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("admin_whois", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -711,7 +713,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userID}/openid/request_token",
|
|
|
|
|
httputil.MakeAuthAPI("openid_request_token", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("openid_request_token", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -724,7 +726,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user_directory/search",
|
|
|
|
|
httputil.MakeAuthAPI("userdirectory_search", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("userdirectory_search", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -749,7 +751,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/members",
|
|
|
|
|
httputil.MakeAuthAPI("rooms_members", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("rooms_members", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -759,7 +761,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/joined_members",
|
|
|
|
|
httputil.MakeAuthAPI("rooms_members", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("rooms_members", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -769,7 +771,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/read_markers",
|
|
|
|
|
httputil.MakeAuthAPI("rooms_read_markers", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("rooms_read_markers", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -782,7 +784,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/rooms/{roomID}/forget",
|
|
|
|
|
httputil.MakeAuthAPI("rooms_forget", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("rooms_forget", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -795,13 +797,13 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/devices",
|
|
|
|
|
httputil.MakeAuthAPI("get_devices", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("get_devices", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return GetDevicesByLocalpart(req, userAPI, device)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/devices/{deviceID}",
|
|
|
|
|
httputil.MakeAuthAPI("get_device", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("get_device", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -811,7 +813,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/devices/{deviceID}",
|
|
|
|
|
httputil.MakeAuthAPI("device_data", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("device_data", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -821,7 +823,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/devices/{deviceID}",
|
|
|
|
|
httputil.MakeAuthAPI("delete_device", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("delete_device", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -831,7 +833,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodDelete, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/delete_devices",
|
|
|
|
|
httputil.MakeAuthAPI("delete_devices", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("delete_devices", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return DeleteDevices(req, userAPI, device)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
@ -856,7 +858,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userId}/rooms/{roomId}/tags",
|
|
|
|
|
httputil.MakeAuthAPI("get_tags", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("get_tags", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -866,7 +868,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userId}/rooms/{roomId}/tags/{tag}",
|
|
|
|
|
httputil.MakeAuthAPI("put_tag", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("put_tag", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -876,7 +878,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodPut, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userId}/rooms/{roomId}/tags/{tag}",
|
|
|
|
|
httputil.MakeAuthAPI("delete_tag", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("delete_tag", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -886,7 +888,7 @@ func Setup(
|
|
|
|
|
).Methods(http.MethodDelete, http.MethodOptions)
|
|
|
|
|
|
|
|
|
|
r0mux.Handle("/capabilities",
|
|
|
|
|
httputil.MakeAuthAPI("capabilities", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("capabilities", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
@ -896,7 +898,7 @@ func Setup(
|
|
|
|
|
|
|
|
|
|
// Key Backup Versions (Metadata)
|
|
|
|
|
|
|
|
|
|
getBackupKeysVersion := httputil.MakeAuthAPI("get_backup_keys_version", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
getBackupKeysVersion := httputil.MakeAuthAPI("get_backup_keys_version", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -904,11 +906,11 @@ func Setup(
|
|
|
|
|
return KeyBackupVersion(req, userAPI, device, vars["version"])
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
getLatestBackupKeysVersion := httputil.MakeAuthAPI("get_latest_backup_keys_version", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
getLatestBackupKeysVersion := httputil.MakeAuthAPI("get_latest_backup_keys_version", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return KeyBackupVersion(req, userAPI, device, "")
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
putBackupKeysVersion := httputil.MakeAuthAPI("put_backup_keys_version", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
putBackupKeysVersion := httputil.MakeAuthAPI("put_backup_keys_version", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -916,7 +918,7 @@ func Setup(
|
|
|
|
|
return ModifyKeyBackupVersionAuthData(req, userAPI, device, vars["version"])
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
deleteBackupKeysVersion := httputil.MakeAuthAPI("delete_backup_keys_version", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
deleteBackupKeysVersion := httputil.MakeAuthAPI("delete_backup_keys_version", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -924,7 +926,7 @@ func Setup(
|
|
|
|
|
return DeleteKeyBackupVersion(req, userAPI, device, vars["version"])
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
postNewBackupKeysVersion := httputil.MakeAuthAPI("post_new_backup_keys_version", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
postNewBackupKeysVersion := httputil.MakeAuthAPI("post_new_backup_keys_version", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return CreateKeyBackupVersion(req, userAPI, device)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
@ -943,7 +945,7 @@ func Setup(
|
|
|
|
|
// Inserting E2E Backup Keys
|
|
|
|
|
|
|
|
|
|
// Bulk room and session
|
|
|
|
|
putBackupKeys := httputil.MakeAuthAPI("put_backup_keys", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
putBackupKeys := httputil.MakeAuthAPI("put_backup_keys", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
version := req.URL.Query().Get("version")
|
|
|
|
|
if version == "" {
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
@ -960,7 +962,7 @@ func Setup(
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Single room bulk session
|
|
|
|
|
putBackupKeysRoom := httputil.MakeAuthAPI("put_backup_keys_room", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
putBackupKeysRoom := httputil.MakeAuthAPI("put_backup_keys_room", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -992,7 +994,7 @@ func Setup(
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Single room, single session
|
|
|
|
|
putBackupKeysRoomSession := httputil.MakeAuthAPI("put_backup_keys_room_session", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
putBackupKeysRoomSession := httputil.MakeAuthAPI("put_backup_keys_room_session", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -1034,11 +1036,11 @@ func Setup(
|
|
|
|
|
|
|
|
|
|
// Querying E2E Backup Keys
|
|
|
|
|
|
|
|
|
|
getBackupKeys := httputil.MakeAuthAPI("get_backup_keys", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
getBackupKeys := httputil.MakeAuthAPI("get_backup_keys", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return GetBackupKeys(req, userAPI, device, req.URL.Query().Get("version"), "", "")
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
getBackupKeysRoom := httputil.MakeAuthAPI("get_backup_keys_room", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
getBackupKeysRoom := httputil.MakeAuthAPI("get_backup_keys_room", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -1046,7 +1048,7 @@ func Setup(
|
|
|
|
|
return GetBackupKeys(req, userAPI, device, req.URL.Query().Get("version"), vars["roomID"], "")
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
getBackupKeysRoomSession := httputil.MakeAuthAPI("get_backup_keys_room_session", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
getBackupKeysRoomSession := httputil.MakeAuthAPI("get_backup_keys_room_session", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
@ -1066,11 +1068,11 @@ func Setup(
|
|
|
|
|
|
|
|
|
|
// Cross-signing device keys
|
|
|
|
|
|
|
|
|
|
postDeviceSigningKeys := httputil.MakeAuthAPI("post_device_signing_keys", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
postDeviceSigningKeys := httputil.MakeAuthAPI("post_device_signing_keys", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return UploadCrossSigningDeviceKeys(req, userInteractiveAuth, keyAPI, device, accountDB, cfg)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
postDeviceSigningSignatures := httputil.MakeAuthAPI("post_device_signing_signatures", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
postDeviceSigningSignatures := httputil.MakeAuthAPI("post_device_signing_signatures", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return UploadCrossSigningDeviceSignatures(req, keyAPI, device)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
@ -1082,27 +1084,27 @@ func Setup(
|
|
|
|
|
|
|
|
|
|
// Supplying a device ID is deprecated.
|
|
|
|
|
r0mux.Handle("/keys/upload/{deviceID}",
|
|
|
|
|
httputil.MakeAuthAPI("keys_upload", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("keys_upload", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return UploadKeys(req, keyAPI, device)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/keys/upload",
|
|
|
|
|
httputil.MakeAuthAPI("keys_upload", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("keys_upload", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return UploadKeys(req, keyAPI, device)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/keys/query",
|
|
|
|
|
httputil.MakeAuthAPI("keys_query", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("keys_query", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return QueryKeys(req, keyAPI, device)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/keys/claim",
|
|
|
|
|
httputil.MakeAuthAPI("keys_claim", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI("keys_claim", userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
return ClaimKeys(req, keyAPI)
|
|
|
|
|
}),
|
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
r0mux.Handle("/rooms/{roomId}/receipt/{receiptType}/{eventId}",
|
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, cfg.Matrix.UserConsentOptions, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
|
if r := rateLimits.Limit(req); r != nil {
|
|
|
|
|
return *r
|
|
|
|
|
}
|
|
|
|
|