2017-07-28 11:31:43 +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.
|
|
|
|
|
|
|
|
package alias
|
|
|
|
|
|
|
|
import (
|
2017-09-13 13:37:50 +01:00
|
|
|
"context"
|
2017-07-28 11:31:43 +01:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/common"
|
|
|
|
"github.com/matrix-org/dendrite/common/config"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RoomserverAliasAPIDatabase has the storage APIs needed to implement the alias API.
|
|
|
|
type RoomserverAliasAPIDatabase interface {
|
|
|
|
// Save a given room alias with the room ID it refers to.
|
|
|
|
// Returns an error if there was a problem talking to the database.
|
2017-09-13 16:30:19 +01:00
|
|
|
SetRoomAlias(ctx context.Context, alias string, roomID string) error
|
2017-08-23 15:08:48 +01:00
|
|
|
// Look up the room ID a given alias refers to.
|
2017-07-28 11:31:43 +01:00
|
|
|
// Returns an error if there was a problem talking to the database.
|
2017-09-13 16:30:19 +01:00
|
|
|
GetRoomIDFromAlias(ctx context.Context, alias string) (string, error)
|
2017-08-23 15:08:48 +01:00
|
|
|
// Look up all aliases referring to a given room ID.
|
2017-07-28 11:31:43 +01:00
|
|
|
// Returns an error if there was a problem talking to the database.
|
2017-09-13 16:30:19 +01:00
|
|
|
GetAliasesFromRoomID(ctx context.Context, roomID string) ([]string, error)
|
2017-07-28 11:31:43 +01:00
|
|
|
// Remove a given room alias.
|
|
|
|
// Returns an error if there was a problem talking to the database.
|
2017-09-13 16:30:19 +01:00
|
|
|
RemoveRoomAlias(ctx context.Context, alias string) error
|
2017-07-28 11:31:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// RoomserverAliasAPI is an implementation of api.RoomserverAliasAPI
|
|
|
|
type RoomserverAliasAPI struct {
|
|
|
|
DB RoomserverAliasAPIDatabase
|
|
|
|
Cfg *config.Dendrite
|
2017-08-04 13:12:36 +01:00
|
|
|
InputAPI api.RoomserverInputAPI
|
|
|
|
QueryAPI api.RoomserverQueryAPI
|
2017-07-28 11:31:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetRoomAlias implements api.RoomserverAliasAPI
|
|
|
|
func (r *RoomserverAliasAPI) SetRoomAlias(
|
2017-09-13 13:37:50 +01:00
|
|
|
ctx context.Context,
|
2017-07-28 11:31:43 +01:00
|
|
|
request *api.SetRoomAliasRequest,
|
|
|
|
response *api.SetRoomAliasResponse,
|
|
|
|
) error {
|
|
|
|
// Check if the alias isn't already referring to a room
|
2017-09-13 16:30:19 +01:00
|
|
|
roomID, err := r.DB.GetRoomIDFromAlias(ctx, request.Alias)
|
2017-07-28 11:31:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(roomID) > 0 {
|
|
|
|
// If the alias already exists, stop the process
|
|
|
|
response.AliasExists = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
response.AliasExists = false
|
|
|
|
|
|
|
|
// Save the new alias
|
2017-09-13 16:30:19 +01:00
|
|
|
if err := r.DB.SetRoomAlias(ctx, request.Alias, request.RoomID); err != nil {
|
2017-07-28 11:31:43 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a m.room.aliases event with the updated list of aliases for this room
|
2017-09-13 13:37:50 +01:00
|
|
|
// At this point we've already committed the alias to the database so we
|
|
|
|
// shouldn't cancel this request.
|
|
|
|
// TODO: Ensure that we send unsent events when if server restarts.
|
2017-11-15 11:13:09 +00:00
|
|
|
return r.sendUpdatedAliasesEvent(context.TODO(), request.UserID, request.RoomID)
|
2017-07-28 11:31:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetAliasRoomID implements api.RoomserverAliasAPI
|
|
|
|
func (r *RoomserverAliasAPI) GetAliasRoomID(
|
2017-09-13 13:37:50 +01:00
|
|
|
ctx context.Context,
|
2017-07-28 11:31:43 +01:00
|
|
|
request *api.GetAliasRoomIDRequest,
|
|
|
|
response *api.GetAliasRoomIDResponse,
|
|
|
|
) error {
|
2017-08-23 15:08:48 +01:00
|
|
|
// Look up the room ID in the database
|
2017-09-13 16:30:19 +01:00
|
|
|
roomID, err := r.DB.GetRoomIDFromAlias(ctx, request.Alias)
|
2017-07-28 11:31:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
response.RoomID = roomID
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveRoomAlias implements api.RoomserverAliasAPI
|
|
|
|
func (r *RoomserverAliasAPI) RemoveRoomAlias(
|
2017-09-13 13:37:50 +01:00
|
|
|
ctx context.Context,
|
2017-07-28 11:31:43 +01:00
|
|
|
request *api.RemoveRoomAliasRequest,
|
|
|
|
response *api.RemoveRoomAliasResponse,
|
|
|
|
) error {
|
2017-08-23 15:08:48 +01:00
|
|
|
// Look up the room ID in the database
|
2017-09-13 16:30:19 +01:00
|
|
|
roomID, err := r.DB.GetRoomIDFromAlias(ctx, request.Alias)
|
2017-07-28 11:31:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the dalias from the database
|
2017-09-13 16:30:19 +01:00
|
|
|
if err := r.DB.RemoveRoomAlias(ctx, request.Alias); err != nil {
|
2017-07-28 11:31:43 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send an updated m.room.aliases event
|
2017-09-13 16:30:19 +01:00
|
|
|
// At this point we've already committed the alias to the database so we
|
|
|
|
// shouldn't cancel this request.
|
|
|
|
// TODO: Ensure that we send unsent events when if server restarts.
|
2017-11-15 11:13:09 +00:00
|
|
|
return r.sendUpdatedAliasesEvent(context.TODO(), request.UserID, roomID)
|
2017-07-28 11:31:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type roomAliasesContent struct {
|
|
|
|
Aliases []string `json:"aliases"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the updated m.room.aliases event to send to the room after addition or
|
|
|
|
// removal of an alias
|
2017-09-13 13:37:50 +01:00
|
|
|
func (r *RoomserverAliasAPI) sendUpdatedAliasesEvent(
|
|
|
|
ctx context.Context, userID string, roomID string,
|
|
|
|
) error {
|
2017-07-28 11:31:43 +01:00
|
|
|
serverName := string(r.Cfg.Matrix.ServerName)
|
|
|
|
|
|
|
|
builder := gomatrixserverlib.EventBuilder{
|
|
|
|
Sender: userID,
|
|
|
|
RoomID: roomID,
|
|
|
|
Type: "m.room.aliases",
|
|
|
|
StateKey: &serverName,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve the updated list of aliases, marhal it and set it as the
|
|
|
|
// event's content
|
2017-09-13 16:30:19 +01:00
|
|
|
aliases, err := r.DB.GetAliasesFromRoomID(ctx, roomID)
|
2017-07-28 11:31:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
content := roomAliasesContent{Aliases: aliases}
|
|
|
|
rawContent, err := json.Marshal(content)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = builder.SetContent(json.RawMessage(rawContent))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get needed state events and depth
|
|
|
|
eventsNeeded, err := gomatrixserverlib.StateNeededForEventBuilder(&builder)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
req := api.QueryLatestEventsAndStateRequest{
|
|
|
|
RoomID: roomID,
|
|
|
|
StateToFetch: eventsNeeded.Tuples(),
|
|
|
|
}
|
|
|
|
var res api.QueryLatestEventsAndStateResponse
|
2017-09-13 13:37:50 +01:00
|
|
|
if err = r.QueryAPI.QueryLatestEventsAndState(ctx, &req, &res); err != nil {
|
2017-07-28 11:31:43 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
builder.Depth = res.Depth
|
|
|
|
builder.PrevEvents = res.LatestEvents
|
|
|
|
|
|
|
|
// Add auth events
|
|
|
|
authEvents := gomatrixserverlib.NewAuthEvents(nil)
|
|
|
|
for i := range res.StateEvents {
|
2017-09-20 10:59:19 +01:00
|
|
|
err = authEvents.AddEvent(&res.StateEvents[i])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-07-28 11:31:43 +01:00
|
|
|
}
|
|
|
|
refs, err := eventsNeeded.AuthEventReferences(&authEvents)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
builder.AuthEvents = refs
|
|
|
|
|
|
|
|
// Build the event
|
|
|
|
eventID := fmt.Sprintf("$%s:%s", util.RandomString(16), r.Cfg.Matrix.ServerName)
|
|
|
|
now := time.Now()
|
2017-09-13 13:37:50 +01:00
|
|
|
event, err := builder.Build(
|
|
|
|
eventID, now, r.Cfg.Matrix.ServerName, r.Cfg.Matrix.KeyID, r.Cfg.Matrix.PrivateKey,
|
|
|
|
)
|
2017-07-28 11:31:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the request
|
|
|
|
ire := api.InputRoomEvent{
|
|
|
|
Kind: api.KindNew,
|
|
|
|
Event: event,
|
|
|
|
AuthEventIDs: event.AuthEventIDs(),
|
|
|
|
SendAsServer: serverName,
|
|
|
|
}
|
|
|
|
inputReq := api.InputRoomEventsRequest{
|
|
|
|
InputRoomEvents: []api.InputRoomEvent{ire},
|
|
|
|
}
|
|
|
|
var inputRes api.InputRoomEventsResponse
|
|
|
|
|
|
|
|
// Send the request
|
2017-09-20 14:15:38 +01:00
|
|
|
return r.InputAPI.InputRoomEvents(ctx, &inputReq, &inputRes)
|
2017-07-28 11:31:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetupHTTP adds the RoomserverAliasAPI handlers to the http.ServeMux.
|
|
|
|
func (r *RoomserverAliasAPI) SetupHTTP(servMux *http.ServeMux) {
|
|
|
|
servMux.Handle(
|
|
|
|
api.RoomserverSetRoomAliasPath,
|
2017-09-28 14:50:40 +01:00
|
|
|
common.MakeInternalAPI("setRoomAlias", func(req *http.Request) util.JSONResponse {
|
2017-07-28 11:31:43 +01:00
|
|
|
var request api.SetRoomAliasRequest
|
|
|
|
var response api.SetRoomAliasResponse
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
2017-09-13 13:37:50 +01:00
|
|
|
if err := r.SetRoomAlias(req.Context(), &request, &response); err != nil {
|
2017-07-28 11:31:43 +01:00
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return util.JSONResponse{Code: 200, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
servMux.Handle(
|
|
|
|
api.RoomserverGetAliasRoomIDPath,
|
2017-09-28 14:50:40 +01:00
|
|
|
common.MakeInternalAPI("getAliasRoomID", func(req *http.Request) util.JSONResponse {
|
2017-07-28 11:31:43 +01:00
|
|
|
var request api.GetAliasRoomIDRequest
|
|
|
|
var response api.GetAliasRoomIDResponse
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
2017-09-13 13:37:50 +01:00
|
|
|
if err := r.GetAliasRoomID(req.Context(), &request, &response); err != nil {
|
2017-07-28 11:31:43 +01:00
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return util.JSONResponse{Code: 200, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
servMux.Handle(
|
|
|
|
api.RoomserverRemoveRoomAliasPath,
|
2017-09-28 14:50:40 +01:00
|
|
|
common.MakeInternalAPI("removeRoomAlias", func(req *http.Request) util.JSONResponse {
|
2017-07-28 11:31:43 +01:00
|
|
|
var request api.RemoveRoomAliasRequest
|
|
|
|
var response api.RemoveRoomAliasResponse
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
2017-09-13 13:37:50 +01:00
|
|
|
if err := r.RemoveRoomAlias(req.Context(), &request, &response); err != nil {
|
2017-07-28 11:31:43 +01:00
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return util.JSONResponse{Code: 200, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|