. */ namespace SP\Services\UserProfile; use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; use SP\Core\Exceptions\ConstraintException; use SP\Core\Exceptions\QueryException; use SP\Core\Exceptions\SPException; use SP\DataModel\ItemSearchData; use SP\DataModel\ProfileData; use SP\DataModel\UserProfileData; use SP\Repositories\NoSuchItemException; use SP\Repositories\UserProfile\UserProfileRepository; use SP\Services\Service; use SP\Services\ServiceException; use SP\Services\ServiceItemTrait; use SP\Storage\Database\QueryResult; use SP\Util\Util; /** * Class UserProfileService * * @package SP\Services\UserProfile */ final class UserProfileService extends Service { use ServiceItemTrait; /** * @var UserProfileRepository */ protected $userProfileRepository; /** * @param $id * * @return UserProfileData * @throws ConstraintException * @throws QueryException * @throws NoSuchItemException */ public function getById($id) { $result = $this->userProfileRepository->getById($id); if ($result->getNumRows() === 0) { throw new NoSuchItemException(__u('Profile not found')); } $userProfileData = $result->getData(); $userProfileData->setProfile(Util::unserialize(ProfileData::class, $userProfileData->getProfile())); return $userProfileData; } /** * @param ItemSearchData $itemSearchData * * @return QueryResult * @throws ConstraintException * @throws QueryException */ public function search(ItemSearchData $itemSearchData) { return $this->userProfileRepository->search($itemSearchData); } /** * @param $id * * @return $this * @throws NoSuchItemException * @throws ConstraintException * @throws QueryException */ public function delete($id) { if ($this->userProfileRepository->delete($id) === 0) { throw new NoSuchItemException(__u('Profile not found'), NoSuchItemException::INFO); } return $this; } /** * @param array $ids * * @return int * @throws ServiceException * @throws ConstraintException * @throws QueryException */ public function deleteByIdBatch(array $ids) { if (($count = $this->userProfileRepository->deleteByIdBatch($ids)) !== count($ids)) { throw new ServiceException(__u('Error while removing the profiles'), ServiceException::WARNING); } return $count; } /** * @param $itemData * * @return int * @throws SPException */ public function create($itemData) { return $this->userProfileRepository->create($itemData); } /** * @param $itemData * * @throws SPException * @throws ConstraintException * @throws QueryException */ public function update($itemData) { if ($this->userProfileRepository->update($itemData) === 0) { throw new ServiceException(__u('Error while updating the profile')); } } /** * @param $id * * @return array * @throws ConstraintException * @throws QueryException */ public function getUsersForProfile($id) { return $this->userProfileRepository->getUsersForProfile($id)->getDataAsArray(); } /** * Get all items from the service's repository * * @return UserProfileData[] * @throws ConstraintException * @throws QueryException */ public function getAllBasic() { return $this->userProfileRepository->getAll()->getDataAsArray(); } /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ protected function initialize() { $this->userProfileRepository = $this->dic->get(UserProfileRepository::class); } }