summaryrefslogtreecommitdiff
path: root/matrix-specification/Events/Room/JoinRulesEvent.php
blob: 337c9d29b23fd0c5abc64afbe195f645a267ba51 (plain)
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
<?php

namespace Matrix\Events\Room;

use Matrix\Data\UnsignedData;
use Matrix\Enums\EventType;
use Matrix\Enums\RoomJoinRule;
use Matrix\Events\StateEvent;

class JoinRulesEvent extends StateEvent
{
  /**
   * @param ?AllowCondition[] $allow
   */
  public function __construct(
    string $eventId,
    int $originServerTimestamp,
    string $roomId,
    string $sender,
    RoomJoinRule $joinRule,
    ?array $allow = null,
    string $stateKey = "",
    ?UnsignedData $unsigned = null,
  )
  {
    parent::__construct(
      array_filter([
        "allow" => $allow,
        "join_rule" => $joinRule,
      ], fn ($value) => ! is_null($value)),
      $eventId,
      $originServerTimestamp,
      $roomId,
      $sender,
      $stateKey,
      EventType::ROOM_JOIN_RULES,
      $unsigned,
    );
  }
}