458 lines
8.0 KiB
PHP
458 lines
8.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Circles\Model;
|
|
|
|
use JsonSerializable;
|
|
use OC;
|
|
use OCA\Circles\AppInfo\Application;
|
|
use OCA\Circles\Service\MiscService;
|
|
use OCP\IL10N;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
class BaseMember implements JsonSerializable {
|
|
public const LEVEL_NONE = 0;
|
|
public const LEVEL_MEMBER = 1;
|
|
public const LEVEL_MODERATOR = 4;
|
|
public const LEVEL_ADMIN = 8;
|
|
public const LEVEL_OWNER = 9;
|
|
|
|
public const STATUS_NONMEMBER = 'Unknown';
|
|
public const STATUS_INVITED = 'Invited';
|
|
public const STATUS_REQUEST = 'Requesting';
|
|
public const STATUS_MEMBER = 'Member';
|
|
public const STATUS_BLOCKED = 'Blocked';
|
|
public const STATUS_KICKED = 'Removed';
|
|
|
|
public const TYPE_USER = 1;
|
|
public const TYPE_GROUP = 2;
|
|
public const TYPE_MAIL = 3;
|
|
public const TYPE_CONTACT = 4;
|
|
|
|
/** @var string */
|
|
private $circleUniqueId;
|
|
|
|
/** @var IL10N */
|
|
protected $l10n;
|
|
|
|
/** @var string */
|
|
private $userId = '';
|
|
|
|
/** @var string */
|
|
private $memberId = '';
|
|
|
|
/** @var int */
|
|
private $type = self::TYPE_USER;
|
|
|
|
/** @var string */
|
|
private $cachedName = '';
|
|
|
|
/** @var int */
|
|
private $cachedUpdate = 0;
|
|
|
|
/** @var int */
|
|
private $level;
|
|
|
|
/** @var string */
|
|
private $status;
|
|
|
|
/** @var string */
|
|
private $contactId = '';
|
|
|
|
/** @var array */
|
|
private $contactMeta = [];
|
|
|
|
/** @var string */
|
|
private $note;
|
|
|
|
/** @var string */
|
|
private $instance = '';
|
|
|
|
/** @var string */
|
|
private $joined = '';
|
|
|
|
/** @var int */
|
|
private $joinedSince;
|
|
|
|
/** @var bool */
|
|
protected $broadcasting = true;
|
|
|
|
/**
|
|
* BaseMember constructor.
|
|
*
|
|
* @param string $circleUniqueId
|
|
* @param string $userId
|
|
* @param int $type
|
|
*/
|
|
public function __construct($userId = '', $type = 0, $circleUniqueId = '') {
|
|
$this->l10n = OC::$server->getL10N(Application::APP_ID);
|
|
|
|
$this->setType($type);
|
|
$this->setUserId($userId);
|
|
$this->setCircleId($circleUniqueId);
|
|
$this->setLevel(DeprecatedMember::LEVEL_NONE);
|
|
$this->setStatus(DeprecatedMember::STATUS_NONMEMBER);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $circleUniqueId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setCircleId($circleUniqueId) {
|
|
$this->circleUniqueId = $circleUniqueId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getCircleId() {
|
|
return $this->circleUniqueId;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getType() {
|
|
return $this->type;
|
|
}
|
|
|
|
public function setType($type) {
|
|
$this->type = (int)$type;
|
|
}
|
|
|
|
|
|
public function getViewerType() {
|
|
if ($this->getType() === 2) {
|
|
return 'group';
|
|
} else {
|
|
return 'user';
|
|
}
|
|
}
|
|
|
|
|
|
public function setUserId($userId) {
|
|
$this->userId = $userId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getUserId() {
|
|
return $this->userId;
|
|
}
|
|
|
|
|
|
public function setMemberId($memberId) {
|
|
$this->memberId = $memberId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getMemberId() {
|
|
return $this->memberId;
|
|
}
|
|
|
|
|
|
public function setCachedName($display) {
|
|
$this->cachedName = $display;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getCachedName() {
|
|
if ($this->cachedName === '') {
|
|
return $this->userId;
|
|
}
|
|
|
|
return $this->cachedName;
|
|
}
|
|
|
|
|
|
public function setCachedUpdate(int $time) {
|
|
$this->cachedUpdate = $time;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getCachedUpdate(): int {
|
|
return $this->cachedUpdate;
|
|
}
|
|
|
|
|
|
public function setLevel($level) {
|
|
$this->level = (int)$level;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getLevel() {
|
|
return $this->level;
|
|
}
|
|
|
|
|
|
public function setNote($note) {
|
|
$this->note = $note;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getNote() {
|
|
return $this->note;
|
|
}
|
|
|
|
|
|
public function setInstance($instance) {
|
|
$this->instance = $instance;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getInstance() {
|
|
return $this->instance;
|
|
}
|
|
|
|
|
|
public function setContactId($contactId) {
|
|
$this->contactId = $contactId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getContactId() {
|
|
return $this->contactId;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param array $contactMeta
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setContactMeta(array $contactMeta): self {
|
|
$this->contactMeta = $contactMeta;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getContactMeta(): array {
|
|
return $this->contactMeta;
|
|
}
|
|
|
|
/**
|
|
* @param string $k
|
|
* @param string $v
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function addContactMeta(string $k, string $v): self {
|
|
$this->contactMeta[$k] = $v;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $k
|
|
* @param string $v
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function addContactMetaArray(string $k, string $v): self {
|
|
if (!array_key_exists($k, $this->contactMeta)) {
|
|
$this->contactMeta[$k] = [];
|
|
}
|
|
|
|
$this->contactMeta[$k][] = $v;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $k
|
|
* @param array $v
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setContactMetaArray(string $k, array $v): self {
|
|
$this->contactMeta[$k] = $v;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $status
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setStatus($status) {
|
|
if (is_null($status)) {
|
|
$this->status = self::STATUS_NONMEMBER;
|
|
} else {
|
|
$this->status = $status;
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getStatus() {
|
|
return $this->status;
|
|
}
|
|
|
|
|
|
public function setJoined($joined) {
|
|
$this->joined = $joined;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getJoined() {
|
|
return $this->joined;
|
|
}
|
|
|
|
|
|
public function getJoinedSince(): int {
|
|
return $this->joinedSince;
|
|
}
|
|
|
|
public function setJoinedSince(int $since) {
|
|
$this->joinedSince = $since;
|
|
}
|
|
|
|
|
|
public function isLevel($level) {
|
|
return ($this->getLevel() >= $level);
|
|
}
|
|
|
|
|
|
public function isAlmostMember() {
|
|
return ($this->getStatus() === DeprecatedMember::STATUS_INVITED
|
|
|| $this->getStatus() === DeprecatedMember::STATUS_REQUEST);
|
|
}
|
|
|
|
|
|
protected function setAsAMember($level = 1) {
|
|
$this->setStatus(DeprecatedMember::STATUS_MEMBER);
|
|
$this->setLevel($level);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $arr
|
|
*
|
|
* @return null|DeprecatedMember
|
|
*/
|
|
public static function fromArray($arr) {
|
|
if ($arr === null) {
|
|
return null;
|
|
}
|
|
|
|
$member = new DeprecatedMember();
|
|
$member->setCircleId($arr['circle_id']);
|
|
$member->setMemberId($arr['member_id']);
|
|
if (array_key_exists('cached_name', $arr)) {
|
|
$member->setCachedName($arr['cached_name']);
|
|
}
|
|
|
|
$member->setLevel($arr['level']);
|
|
|
|
// $member->setType(MiscService::get($arr, 'user_type'));
|
|
// $member->setType(MiscService::get($arr, 'type', $member->getType()));
|
|
|
|
$member->setInstance($arr['instance']);
|
|
$member->setUserId($arr['user_id']);
|
|
$member->setStatus($arr['status']);
|
|
$member->setInstance($arr['instance']);
|
|
$member->setNote($arr['note']);
|
|
$member->setJoined($arr['joined']);
|
|
|
|
return $member;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $json
|
|
*
|
|
* @return DeprecatedMember
|
|
*/
|
|
public static function fromJSON($json) {
|
|
return self::fromArray(json_decode($json, true));
|
|
}
|
|
|
|
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'circle_id' => $this->getCircleId(),
|
|
'member_id' => $this->getMemberId(),
|
|
'user_id' => $this->getUserId(),
|
|
'user_type' => $this->getType(),
|
|
'cached_name' => $this->getCachedName(),
|
|
'contact_id' => $this->getContactId(),
|
|
'level' => $this->getLevel(),
|
|
'level_string' => $this->getLevelString(),
|
|
'status' => $this->getStatus(),
|
|
'instance' => $this->getInstance(),
|
|
'note' => $this->getNote(),
|
|
'joined' => $this->getJoined()
|
|
];
|
|
}
|
|
|
|
public function getLevelString() {
|
|
switch ($this->getLevel()) {
|
|
case self::LEVEL_NONE:
|
|
return 'Not a member';
|
|
case self::LEVEL_MEMBER:
|
|
return 'Member';
|
|
case self::LEVEL_MODERATOR:
|
|
return 'Moderator';
|
|
case self::LEVEL_ADMIN:
|
|
return 'Admin';
|
|
case self::LEVEL_OWNER:
|
|
return 'Owner';
|
|
}
|
|
|
|
return 'none';
|
|
}
|
|
|
|
|
|
public function getTypeString() {
|
|
switch ($this->getType()) {
|
|
case self::TYPE_USER:
|
|
return 'Local Member';
|
|
case self::TYPE_GROUP:
|
|
return 'Group';
|
|
case self::TYPE_MAIL:
|
|
return 'Mail address';
|
|
case self::TYPE_CONTACT:
|
|
return 'Contact';
|
|
}
|
|
|
|
return 'none';
|
|
}
|
|
|
|
public function getTypeName() {
|
|
switch ($this->getType()) {
|
|
case self::TYPE_USER:
|
|
case self::TYPE_MAIL:
|
|
case self::TYPE_CONTACT:
|
|
return 'user';
|
|
case self::TYPE_GROUP:
|
|
return 'user-group';
|
|
}
|
|
|
|
return 'none';
|
|
}
|
|
}
|