2021-01-08 16:59:06 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
2022-10-19 13:05:39 +01:00
|
|
|
|
2023-04-04 18:16:53 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/synctypes"
|
2022-10-19 13:05:39 +01:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2023-04-19 15:50:33 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/spec"
|
2021-01-08 16:59:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type SyncRequest struct {
|
|
|
|
Context context.Context
|
|
|
|
Log *logrus.Entry
|
|
|
|
Device *userapi.Device
|
|
|
|
Response *Response
|
2023-04-04 18:16:53 +01:00
|
|
|
Filter synctypes.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.
|
2022-10-19 13:05:39 +01:00
|
|
|
MembershipChanges map[string]struct{}
|
|
|
|
// Updated by the PDU stream.
|
2022-04-07 15:08:19 +01:00
|
|
|
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 {
|
2023-04-19 15:50:33 +01:00
|
|
|
case spec.Join:
|
2022-04-27 12:03:34 +01:00
|
|
|
return true
|
2023-04-19 15:50:33 +01:00
|
|
|
case spec.Invite:
|
2022-04-27 12:03:34 +01:00
|
|
|
return true
|
2023-04-19 15:50:33 +01:00
|
|
|
case spec.Peek:
|
2022-04-27 12:03:34 +01:00
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|