2020-01-20 01:21:30 +01:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2020-01-20 01:21:30 +01:00
|
|
|
|
|
|
|
namespace Friendica\Model;
|
|
|
|
|
|
|
|
use Friendica\BaseModel;
|
2020-01-14 04:22:02 +01:00
|
|
|
use Friendica\Database\Database;
|
2021-10-07 20:48:39 +02:00
|
|
|
use Friendica\Network\HTTPException\NotFoundException;
|
2021-10-07 19:46:24 +02:00
|
|
|
use Friendica\Security\PermissionSet\Depository\PermissionSet as PermissionSetDepository;
|
2021-10-05 23:30:10 +02:00
|
|
|
use Friendica\Security\PermissionSet\Entity\PermissionSet;
|
2020-01-14 04:22:02 +01:00
|
|
|
use Psr\Log\LoggerInterface;
|
2020-01-20 01:21:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom profile field model class.
|
|
|
|
*
|
|
|
|
* Custom profile fields are user-created arbitrary profile fields that can be assigned a permission set to restrict its
|
|
|
|
* display to specific Friendica contacts as it requires magic authentication to work.
|
|
|
|
*
|
|
|
|
* @property int uid
|
|
|
|
* @property int order
|
|
|
|
* @property int psid
|
|
|
|
* @property string label
|
|
|
|
* @property string value
|
|
|
|
* @property string created
|
|
|
|
* @property string edited
|
2021-10-07 20:48:39 +02:00
|
|
|
* @property PermissionSet permissionSet
|
2020-01-20 01:21:30 +01:00
|
|
|
*/
|
|
|
|
class ProfileField extends BaseModel
|
|
|
|
{
|
2020-01-14 04:22:02 +01:00
|
|
|
/** @var PermissionSet */
|
2021-10-07 20:48:39 +02:00
|
|
|
private $permissionSet;
|
2020-01-20 01:21:30 +01:00
|
|
|
|
2021-10-07 19:46:24 +02:00
|
|
|
/** @var PermissionSetDepository */
|
2021-10-05 23:30:10 +02:00
|
|
|
private $permissionSetDepository;
|
2020-01-14 04:22:02 +01:00
|
|
|
|
2021-10-07 19:46:24 +02:00
|
|
|
public function __construct(Database $dba, LoggerInterface $logger, PermissionSetDepository $permissionSetDepository, array $data = [])
|
2020-01-14 04:22:02 +01:00
|
|
|
{
|
|
|
|
parent::__construct($dba, $logger, $data);
|
|
|
|
|
2021-10-05 23:30:10 +02:00
|
|
|
$this->permissionSetDepository = $permissionSetDepository;
|
2020-01-14 04:22:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function __get($name)
|
|
|
|
{
|
|
|
|
$this->checkValid();
|
|
|
|
|
|
|
|
switch ($name) {
|
2021-10-07 20:48:39 +02:00
|
|
|
case 'permissionSet':
|
|
|
|
if (empty($this->permissionSet)) {
|
|
|
|
$permissionSet = $this->permissionSetDepository->selectOneById($this->psid);
|
|
|
|
if ($permissionSet->uid !== $this->uid) {
|
2021-10-08 13:36:19 +02:00
|
|
|
throw new NotFoundException(sprintf('PermissionSet %d (user-id: %d) for ProfileField %d (user-id: %d) is invalid.', $permissionSet->id, $permissionSet->uid, $this->id, $this->uid));
|
2021-10-07 20:48:39 +02:00
|
|
|
}
|
2020-01-14 04:22:02 +01:00
|
|
|
|
2021-10-07 20:48:39 +02:00
|
|
|
$this->permissionSet = $permissionSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
$return = $this->permissionSet;
|
2020-01-14 04:22:02 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$return = parent::__get($name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
2020-01-20 01:21:30 +01:00
|
|
|
}
|