. */ namespace App\Services\UserSystem; use App\Entity\Attachments\Attachment; use App\Entity\Attachments\AttachmentType; use App\Entity\Attachments\UserAttachment; use App\Entity\UserSystem\User; use App\Services\Attachments\AttachmentSubmitHandler; use App\Services\Attachments\AttachmentURLGenerator; use Doctrine\ORM\EntityManagerInterface; use Liip\ImagineBundle\Service\FilterService; use Symfony\Component\Asset\Packages; use Symfony\Component\HttpFoundation\File\UploadedFile; class UserAvatarHelper { private bool $use_gravatar; private Packages $packages; private AttachmentURLGenerator $attachmentURLGenerator; private FilterService $filterService; private EntityManagerInterface $entityManager; private AttachmentSubmitHandler $submitHandler; public function __construct(bool $use_gravatar, Packages $packages, AttachmentURLGenerator $attachmentURLGenerator, FilterService $filterService, EntityManagerInterface $entityManager, AttachmentSubmitHandler $attachmentSubmitHandler) { $this->use_gravatar = $use_gravatar; $this->packages = $packages; $this->attachmentURLGenerator = $attachmentURLGenerator; $this->filterService = $filterService; $this->entityManager = $entityManager; $this->submitHandler = $attachmentSubmitHandler; } /** * Returns the URL to the profile picture of the given user (in big size) * @param User $user * @return string */ public function getAvatarURL(User $user): string { //Check if the user has a master attachment defined (meaning he has explicitly defined a profile picture) if ($user->getMasterPictureAttachment() !== null) { return $this->attachmentURLGenerator->getThumbnailURL($user->getMasterPictureAttachment(), 'thumbnail_md'); } //If not check if gravatar is enabled (then use gravatar URL) if ($this->use_gravatar) { return $this->getGravatar($user, 200); //200px wide picture } //Fallback to the default avatar picture return $this->packages->getUrl('/img/default_avatar.png'); } public function getAvatarSmURL(User $user): string { //Check if the user has a master attachment defined (meaning he has explicitly defined a profile picture) if ($user->getMasterPictureAttachment() !== null) { return $this->attachmentURLGenerator->getThumbnailURL($user->getMasterPictureAttachment(), 'thumbnail_xs'); } //If not check if gravatar is enabled (then use gravatar URL) if ($this->use_gravatar) { return $this->getGravatar($user, 50); //50px wide picture } try { //Otherwise we can serve the relative path via Asset component return $this->filterService->getUrlOfFilteredImage('/img/default_avatar.png', 'thumbnail_xs'); } catch (\Imagine\Exception\RuntimeException $e) { //If the filter fails, we can not serve the thumbnail and fall back to the original image and log an warning return $this->packages->getUrl('/img/default_avatar.png'); } } public function getAvatarMdURL(User $user): string { //Check if the user has a master attachment defined (meaning he has explicitly defined a profile picture) if ($user->getMasterPictureAttachment() !== null) { return $this->attachmentURLGenerator->getThumbnailURL($user->getMasterPictureAttachment(), 'thumbnail_sm'); } //If not check if gravatar is enabled (then use gravatar URL) if ($this->use_gravatar) { return $this->getGravatar($user, 150); } try { //Otherwise we can serve the relative path via Asset component return $this->filterService->getUrlOfFilteredImage('/img/default_avatar.png', 'thumbnail_xs'); } catch (\Imagine\Exception\RuntimeException $e) { //If the filter fails, we can not serve the thumbnail and fall back to the original image and log an warning return $this->packages->getUrl('/img/default_avatar.png'); } } /** * Get either a Gravatar URL or complete image tag for a specified email address. * * @param User $user The user for which the gravator should be generated * @param int $s Size in pixels, defaults to 80px [ 1 - 2048 ] * @param string $d Default imageset to use [ 404 | mm | identicon | monsterid | wavatar ] * @param string $r Maximum rating (inclusive) [ g | pg | r | x ] * * @return string containing either just a URL or a complete image tag * @source https://gravatar.com/site/implement/images/php/ */ private function getGravatar(User $user, int $s = 80, string $d = 'identicon', string $r = 'g'): string { $email = $user->getEmail(); if (empty($email)) { $email = 'Part-DB'; } $url = 'https://www.gravatar.com/avatar/'; $url .= md5(strtolower(trim($email))); $url .= "?s=${s}&d=${d}&r=${r}"; return $url; } /** * Handles the upload of the user avatar. * @param User $user * @param UploadedFile $file * @return Attachment */ public function handleAvatarUpload(User $user, UploadedFile $file): Attachment { //Determine which attachment to user //If the user already has a master attachment, we use this one if ($user->getMasterPictureAttachment()) { $attachment = $user->getMasterPictureAttachment(); } else { //Otherwise we have to create one $attachment = new UserAttachment(); $user->addAttachment($attachment); $user->setMasterPictureAttachment($attachment); $attachment->setName('Avatar'); //Retrieve or create the avatar attachment type $attachment_type = $this->entityManager->getRepository(AttachmentType::class)->findOneBy(['name' => 'Avatars']); if ($attachment_type === null) { $attachment_type = new AttachmentType(); $attachment_type->setName('Avatars'); $attachment_type->setFiletypeFilter('image/*'); $this->entityManager->persist($attachment_type); } $attachment->setAttachmentType($attachment_type); //$user->setMasterPictureAttachment($attachment); } //Handle the upload $this->submitHandler->handleFormSubmit($attachment, $file); //Set attachment as master picture $user->setMasterPictureAttachment($attachment); return $attachment; } }