vendor/pimcore/pimcore/models/User/AbstractUser.php line 72

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Commercial License (PCL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  13.  */
  14. namespace Pimcore\Model\User;
  15. use Pimcore\Cache\RuntimeCache;
  16. use Pimcore\Event\Model\UserRoleEvent;
  17. use Pimcore\Event\Traits\RecursionBlockingEventDispatchHelperTrait;
  18. use Pimcore\Event\UserRoleEvents;
  19. use Pimcore\Model;
  20. /**
  21.  * @method \Pimcore\Model\User\AbstractUser\Dao getDao()
  22.  * @method void setLastLoginDate()
  23.  *
  24.  * @abstract Will be natively abstract in Pimcore 11
  25.  */
  26. class AbstractUser extends Model\AbstractModel
  27. {
  28.     use RecursionBlockingEventDispatchHelperTrait;
  29.     /**
  30.      * @var int|null
  31.      */
  32.     protected $id;
  33.     /**
  34.      * @var int|null
  35.      */
  36.     protected $parentId;
  37.     /**
  38.      * @var string|null
  39.      */
  40.     protected $name;
  41.     /**
  42.      * @var string
  43.      */
  44.     protected $type;
  45.     /**
  46.      * @param int $id
  47.      *
  48.      * @return static|null
  49.      */
  50.     public static function getById($id)
  51.     {
  52.         if (!is_numeric($id) || $id 0) {
  53.             return null;
  54.         }
  55.         $cacheKey 'user_' $id;
  56.         try {
  57.             if (RuntimeCache::isRegistered($cacheKey)) {
  58.                 $user RuntimeCache::get($cacheKey);
  59.             } else {
  60.                 $user = new static();
  61.                 $user->getDao()->getById($id);
  62.                 $className Service::getClassNameForType($user->getType());
  63.                 if (get_class($user) !== $className) {
  64.                     /** @var AbstractUser $user */
  65.                     $user $className::getById($user->getId());
  66.                 }
  67.                 RuntimeCache::set($cacheKey$user);
  68.             }
  69.         } catch (Model\Exception\NotFoundException $e) {
  70.             return null;
  71.         }
  72.         if (!$user || !static::typeMatch($user)) {
  73.             return null;
  74.         }
  75.         return $user;
  76.     }
  77.     /**
  78.      * @param array $values
  79.      *
  80.      * @return static
  81.      */
  82.     public static function create($values = [])
  83.     {
  84.         $user = new static();
  85.         self::checkCreateData($values);
  86.         $user->setValues($values);
  87.         $user->save();
  88.         return $user;
  89.     }
  90.     /**
  91.      * @param string $name
  92.      *
  93.      * @return static|null
  94.      */
  95.     public static function getByName($name)
  96.     {
  97.         try {
  98.             $user = new static();
  99.             $user->getDao()->getByName($name);
  100.             return $user;
  101.         } catch (Model\Exception\NotFoundException $e) {
  102.             return null;
  103.         }
  104.     }
  105.     /**
  106.      * @return int|null
  107.      */
  108.     public function getId()
  109.     {
  110.         return $this->id;
  111.     }
  112.     /**
  113.      * @param int $id
  114.      *
  115.      * @return $this
  116.      */
  117.     public function setId($id)
  118.     {
  119.         $this->id = (int) $id;
  120.         return $this;
  121.     }
  122.     /**
  123.      * @return int|null
  124.      */
  125.     public function getParentId()
  126.     {
  127.         return $this->parentId;
  128.     }
  129.     /**
  130.      * @param int $parentId
  131.      *
  132.      * @return $this
  133.      */
  134.     public function setParentId($parentId)
  135.     {
  136.         $this->parentId = (int)$parentId;
  137.         return $this;
  138.     }
  139.     /**
  140.      * @return string|null
  141.      */
  142.     public function getName()
  143.     {
  144.         return $this->name;
  145.     }
  146.     /**
  147.      * @param string $name
  148.      *
  149.      * @return $this
  150.      */
  151.     public function setName($name)
  152.     {
  153.         $this->name $name;
  154.         return $this;
  155.     }
  156.     /**
  157.      * @return string
  158.      */
  159.     public function getType()
  160.     {
  161.         return $this->type;
  162.     }
  163.     /**
  164.      * @return $this
  165.      *
  166.      * @throws \Exception
  167.      */
  168.     public function save()
  169.     {
  170.         $isUpdate false;
  171.         if ($this->getId()) {
  172.             $isUpdate true;
  173.             $this->dispatchEvent(new UserRoleEvent($this), UserRoleEvents::PRE_UPDATE);
  174.         } else {
  175.             $this->dispatchEvent(new UserRoleEvent($this), UserRoleEvents::PRE_ADD);
  176.         }
  177.         if (!preg_match('/^[a-zA-Z0-9\-\.~_@]+$/'$this->getName())) {
  178.             throw new \Exception('Invalid name for user/role `' $this->getName() . '` (allowed characters: a-z A-Z 0-9 -.~_@)');
  179.         }
  180.         $this->beginTransaction();
  181.         try {
  182.             if (!$this->getId()) {
  183.                 $this->getDao()->create();
  184.             }
  185.             $this->update();
  186.             $this->commit();
  187.         } catch (\Exception $e) {
  188.             $this->rollBack();
  189.             throw $e;
  190.         }
  191.         if ($isUpdate) {
  192.             $this->dispatchEvent(new UserRoleEvent($this), UserRoleEvents::POST_UPDATE);
  193.         } else {
  194.             $this->dispatchEvent(new UserRoleEvent($this), UserRoleEvents::POST_ADD);
  195.         }
  196.         return $this;
  197.     }
  198.     /**
  199.      * @throws \Exception
  200.      */
  201.     public function delete()
  202.     {
  203.         if ($this->getId() < 1) {
  204.             throw new \Exception('Deleting the system user is not allowed!');
  205.         }
  206.         $parentUserId $this->getParentId();
  207.         $this->dispatchEvent(new UserRoleEvent($this), UserRoleEvents::PRE_DELETE);
  208.         $type $this->getType();
  209.         // delete all children
  210.         $list = ($type === 'role' || $type === 'rolefolder') ? new Model\User\Role\Listing() : new Listing();
  211.         $list->setCondition('parentId = ?'$this->getId());
  212.         foreach ($list as $user) {
  213.             $user->delete();
  214.         }
  215.         // remove user-role relations
  216.         if ($type === 'role') {
  217.             $this->cleanupUserRoleRelations();
  218.         }
  219.         // now delete the current user
  220.         $this->getDao()->delete();
  221.         $cacheKey 'user_' $this->getId();
  222.         if (RuntimeCache::isRegistered($cacheKey)) {
  223.             RuntimeCache::set($cacheKeynull);
  224.         }
  225.         if ($parentUserId && $parentUserId 1) {
  226.             $parentCacheKey 'user_' $parentUserId;
  227.             if (RuntimeCache::isRegistered($parentCacheKey)) {
  228.                 RuntimeCache::set($parentCacheKeynull);
  229.             }
  230.         }
  231.         $this->dispatchEvent(new UserRoleEvent($this), UserRoleEvents::POST_DELETE);
  232.     }
  233.     /**
  234.      * https://github.com/pimcore/pimcore/issues/7085
  235.      *
  236.      * @throws \Exception
  237.      */
  238.     private function cleanupUserRoleRelations()
  239.     {
  240.         $userRoleListing = new Listing();
  241.         $userRoleListing->setCondition('FIND_IN_SET(' $this->getId() . ',roles)');
  242.         $userRoleListing $userRoleListing->load();
  243.         if (count($userRoleListing)) {
  244.             foreach ($userRoleListing as $relatedUser) {
  245.                 $userRoles $relatedUser->getRoles();
  246.                 if (is_array($userRoles)) {
  247.                     $key array_search($this->getId(), $userRoles);
  248.                     if (false !== $key) {
  249.                         unset($userRoles[$key]);
  250.                         $relatedUser->setRoles($userRoles);
  251.                         $relatedUser->save();
  252.                     }
  253.                 }
  254.             }
  255.         }
  256.     }
  257.     /**
  258.      * @param string $type
  259.      *
  260.      * @return $this
  261.      */
  262.     public function setType($type)
  263.     {
  264.         $this->type $type;
  265.         return $this;
  266.     }
  267.     /**
  268.      * @throws \Exception
  269.      */
  270.     protected function update()
  271.     {
  272.         $this->getDao()->update();
  273.     }
  274.     /**
  275.      * @internal
  276.      *
  277.      * @param AbstractUser $user
  278.      *
  279.      * @return bool
  280.      */
  281.     protected static function typeMatch(AbstractUser $user): bool
  282.     {
  283.         $staticType = static::class;
  284.         if ($staticType !== AbstractUser::class && !$user instanceof $staticType) {
  285.             return false;
  286.         }
  287.         return true;
  288.     }
  289. }