]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/ProfileField.php
Account for the PUBLIC value for id parameter in Depository\PermissionSet::selectOneById
[friendica.git] / src / Model / ProfileField.php
index 51b43e33c8a838828d41c06715948cf46b9fe36c..c5905f934cb3e1a73736ffa52f01454c53d7bc69 100644 (file)
@@ -1,8 +1,32 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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/>.
+ *
+ */
 
 namespace Friendica\Model;
 
 use Friendica\BaseModel;
+use Friendica\Database\Database;
+use Friendica\Network\HTTPException\NotFoundException;
+use Friendica\Security\PermissionSet\Depository\PermissionSet as PermissionSetDepository;
+use Friendica\Security\PermissionSet\Entity\PermissionSet;
+use Psr\Log\LoggerInterface;
 
 /**
  * Custom profile field model class.
@@ -17,8 +41,45 @@ use Friendica\BaseModel;
  * @property string value
  * @property string created
  * @property string edited
+ * @property PermissionSet permissionSet
  */
 class ProfileField extends BaseModel
 {
+       /** @var PermissionSet */
+       private $permissionSet;
+
+       /** @var PermissionSetDepository */
+       private $permissionSetDepository;
+
+       public function __construct(Database $dba, LoggerInterface $logger, PermissionSetDepository $permissionSetDepository, array $data = [])
+       {
+               parent::__construct($dba, $logger, $data);
+
+               $this->permissionSetDepository = $permissionSetDepository;
+       }
+
+       public function __get($name)
+       {
+               $this->checkValid();
+
+               switch ($name) {
+                       case 'permissionSet':
+                               if (empty($this->permissionSet)) {
+                                       $permissionSet = $this->permissionSetDepository->selectOneById($this->psid, $this->uid);
+                                       if ($permissionSet->uid !== $this->uid) {
+                                               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));
+                                       }
+
+                                       $this->permissionSet = $permissionSet;
+                               }
+
+                               $return = $this->permissionSet;
+                               break;
+                       default:
+                               $return = parent::__get($name);
+                               break;
+               }
 
+               return $return;
+       }
 }