70 lines
2 KiB
PHP
70 lines
2 KiB
PHP
<?php
|
|
namespace Szurubooru\Controllers;
|
|
|
|
final class UserAvatarController extends AbstractController
|
|
{
|
|
private $userService;
|
|
private $fileService;
|
|
private $httpHelper;
|
|
private $thumbnailService;
|
|
|
|
public function __construct(
|
|
\Szurubooru\Services\UserService $userService,
|
|
\Szurubooru\Services\FileService $fileService,
|
|
\Szurubooru\Helpers\HttpHelper $httpHelper,
|
|
\Szurubooru\Services\ThumbnailService $thumbnailService)
|
|
{
|
|
$this->userService = $userService;
|
|
$this->fileService = $fileService;
|
|
$this->httpHelper = $httpHelper;
|
|
$this->thumbnailService = $thumbnailService;
|
|
}
|
|
|
|
public function registerRoutes(\Szurubooru\Router $router)
|
|
{
|
|
$router->get('/api/users/:userName/avatar/:size', [$this, 'getAvatarByName']);
|
|
}
|
|
|
|
public function getAvatarByName($userName, $size)
|
|
{
|
|
$user = $this->userService->getByName($userName);
|
|
|
|
switch ($user->getAvatarStyle())
|
|
{
|
|
case \Szurubooru\Entities\User::AVATAR_STYLE_GRAVATAR:
|
|
$hash = md5(strtolower(trim($user->getEmail() ? $user->getEmail() : $user->getId() . $user->getName())));
|
|
$url = 'https://www.gravatar.com/avatar/' . $hash . '?d=retro&s=' . $size;
|
|
$this->serveFromUrl($url);
|
|
break;
|
|
|
|
case \Szurubooru\Entities\User::AVATAR_STYLE_BLANK:
|
|
$this->serveFromFile($this->getBlankAvatarSourceContentPath(), $size);
|
|
break;
|
|
|
|
case \Szurubooru\Entities\User::AVATAR_STYLE_MANUAL:
|
|
$this->serveFromFile($user->getCustomAvatarSourceContentPath(), $size);
|
|
break;
|
|
|
|
default:
|
|
$this->serveFromFile($this->getBlankAvatarSourceContentPath(), $size);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private function serveFromUrl($url)
|
|
{
|
|
$this->httpHelper->redirect($url);
|
|
}
|
|
|
|
private function serveFromFile($sourceName, $size)
|
|
{
|
|
$this->thumbnailService->generateIfNeeded($sourceName, $size, $size);
|
|
$thumbnailName = $this->thumbnailService->getThumbnailName($sourceName, $size, $size);
|
|
$this->fileService->serve($thumbnailName);
|
|
}
|
|
|
|
private function getBlankAvatarSourceContentPath()
|
|
{
|
|
return 'avatars/blank.png';
|
|
}
|
|
}
|