Files
nextcloud-pantry/lib/Db/HouseMember.php
2026-04-07 01:27:11 +03:00

58 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace OCA\Pantry\Db;
use OCP\AppFramework\Db\Entity;
/**
* @method int getHouseId()
* @method void setHouseId(int $houseId)
* @method string getUserId()
* @method void setUserId(string $userId)
* @method string getRole()
* @method void setRole(string $role)
* @method int getJoinedAt()
* @method void setJoinedAt(int $joinedAt)
*/
class HouseMember extends Entity implements \JsonSerializable {
public const ROLE_OWNER = 'owner';
public const ROLE_ADMIN = 'admin';
public const ROLE_MEMBER = 'member';
protected int $houseId = 0;
protected string $userId = '';
protected string $role = self::ROLE_MEMBER;
protected int $joinedAt = 0;
public function __construct() {
$this->addType('houseId', 'integer');
$this->addType('joinedAt', 'integer');
// Force role to be included in INSERTs — without this, the ORM
// skips it because the PHP default matches the initial value.
$this->markFieldUpdated('role');
}
public function isAtLeastAdmin(): bool {
return $this->role === self::ROLE_OWNER || $this->role === self::ROLE_ADMIN;
}
public function isOwner(): bool {
return $this->role === self::ROLE_OWNER;
}
public function jsonSerialize(): array {
return [
'id' => $this->id,
'houseId' => $this->houseId,
'userId' => $this->userId,
'role' => $this->role,
'joinedAt' => $this->joinedAt,
];
}
}