2017-07-28 10:31:43 +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.
|
|
|
|
|
|
|
|
package api
|
|
|
|
|
|
|
|
// SetRoomAliasRequest is a request to SetRoomAlias
|
|
|
|
type SetRoomAliasRequest struct {
|
|
|
|
// ID of the user setting the alias
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
// New alias for the room
|
|
|
|
Alias string `json:"alias"`
|
|
|
|
// The room ID the alias is referring to
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetRoomAliasResponse is a response to SetRoomAlias
|
|
|
|
type SetRoomAliasResponse struct {
|
|
|
|
// Does the alias already refer to a room?
|
|
|
|
AliasExists bool `json:"alias_exists"`
|
|
|
|
}
|
|
|
|
|
2018-05-30 12:43:13 +00:00
|
|
|
// GetRoomIDForAliasRequest is a request to GetRoomIDForAlias
|
|
|
|
type GetRoomIDForAliasRequest struct {
|
2017-07-28 10:31:43 +00:00
|
|
|
// Alias we want to lookup
|
|
|
|
Alias string `json:"alias"`
|
2021-03-03 17:00:31 +00:00
|
|
|
// Should we ask appservices for their aliases as a part of
|
|
|
|
// the request?
|
|
|
|
IncludeAppservices bool `json:"include_appservices"`
|
2017-07-28 10:31:43 +00:00
|
|
|
}
|
|
|
|
|
2018-05-30 12:43:13 +00:00
|
|
|
// GetRoomIDForAliasResponse is a response to GetRoomIDForAlias
|
|
|
|
type GetRoomIDForAliasResponse struct {
|
2017-07-28 10:31:43 +00:00
|
|
|
// The room ID the alias refers to
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
}
|
|
|
|
|
2018-05-30 12:43:13 +00:00
|
|
|
// GetAliasesForRoomIDRequest is a request to GetAliasesForRoomID
|
|
|
|
type GetAliasesForRoomIDRequest struct {
|
|
|
|
// The room ID we want to find aliases for
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAliasesForRoomIDResponse is a response to GetAliasesForRoomID
|
|
|
|
type GetAliasesForRoomIDResponse struct {
|
|
|
|
// The aliases the alias refers to
|
|
|
|
Aliases []string `json:"aliases"`
|
|
|
|
}
|
|
|
|
|
2019-08-07 03:00:58 +00:00
|
|
|
// GetCreatorIDForAliasRequest is a request to GetCreatorIDForAlias
|
|
|
|
type GetCreatorIDForAliasRequest struct {
|
|
|
|
// The alias we want to find the creator of
|
|
|
|
Alias string `json:"alias"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCreatorIDForAliasResponse is a response to GetCreatorIDForAlias
|
|
|
|
type GetCreatorIDForAliasResponse struct {
|
|
|
|
// The user ID of the alias creator
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
}
|
|
|
|
|
2017-07-28 10:31:43 +00:00
|
|
|
// RemoveRoomAliasRequest is a request to RemoveRoomAlias
|
|
|
|
type RemoveRoomAliasRequest struct {
|
|
|
|
// ID of the user removing the alias
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
// The room alias to remove
|
|
|
|
Alias string `json:"alias"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveRoomAliasResponse is a response to RemoveRoomAlias
|
|
|
|
type RemoveRoomAliasResponse struct{}
|