1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?php
namespace Matrix\Events\Room;
use Matrix\Data\UnsignedData;
use Matrix\Enums\EventType;
use Matrix\Enums\MembershipState;
use Matrix\Events\StateEvent;
class MemberEvent extends StateEvent
{
public function __construct(
string $eventId,
int $originServerTimestamp,
string $roomId,
string $sender,
string $stateKey,
bool $isDirect,
MembershipState $membership,
?string $avatarUrl = null,
?string $displayName = null,
?string $joinAuthorisedViaUsersServer = null,
?string $reason = null,
?object $thirdPartyInvite = null, # TODO: https://spec.matrix.org/v1.17/client-server-api/#mroommember_thirdpartyinvite
?UnsignedData $unsigned = null,
)
{
parent::__construct(
array_filter([
"avatar_url" => $avatarUrl,
"displayname" => $displayName,
"is_direct" => $isDirect,
"join_authorised_via_users_server" => $joinAuthorisedViaUsersServer,
"membership" => $membership,
"reason" => $reason,
"third_party_invite" => $thirdPartyInvite,
], fn ($value) => ! is_null($value)),
$eventId,
$originServerTimestamp,
$roomId,
$sender,
$stateKey,
EventType::ROOM_MEMBER,
$unsigned,
);
}
}
|