2021-01-08 16:59:06 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SyncRequest struct {
|
|
|
|
Context context.Context
|
|
|
|
Log *logrus.Entry
|
|
|
|
Device *userapi.Device
|
|
|
|
Response *Response
|
2021-01-19 18:00:42 +00:00
|
|
|
Filter gomatrixserverlib.Filter
|
2021-01-08 16:59:06 +00:00
|
|
|
Since StreamingToken
|
|
|
|
Timeout time.Duration
|
|
|
|
WantFullState bool
|
|
|
|
|
|
|
|
// Updated by the PDU stream.
|
|
|
|
Rooms map[string]string
|
2022-04-07 15:08:19 +01:00
|
|
|
// Updated by the PDU stream.
|
|
|
|
IgnoredUsers IgnoredUsers
|
2021-01-08 16:59:06 +00:00
|
|
|
}
|
|
|
|
|
2022-04-27 12:03:34 +01:00
|
|
|
func (r *SyncRequest) IsRoomPresent(roomID string) bool {
|
|
|
|
membership, ok := r.Rooms[roomID]
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
switch membership {
|
|
|
|
case gomatrixserverlib.Join:
|
|
|
|
return true
|
|
|
|
case gomatrixserverlib.Invite:
|
|
|
|
return true
|
|
|
|
case gomatrixserverlib.Peek:
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|