mirror of
https://github.com/flarum/core.git
synced 2025-10-11 23:14:29 +02:00
60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\User;
|
|
|
|
use Illuminate\Support\Str;
|
|
use Intervention\Image\Image;
|
|
use League\Flysystem\FilesystemInterface;
|
|
|
|
class AvatarUploader
|
|
{
|
|
protected $uploadDir;
|
|
|
|
public function __construct(FilesystemInterface $uploadDir)
|
|
{
|
|
$this->uploadDir = $uploadDir;
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @param Image $image
|
|
*/
|
|
public function upload(User $user, Image $image)
|
|
{
|
|
if (extension_loaded('exif')) {
|
|
$image->orientate();
|
|
}
|
|
|
|
$encodedImage = $image->fit(100, 100)->encode('png');
|
|
|
|
$avatarPath = Str::random().'.png';
|
|
|
|
$this->remove($user);
|
|
$user->changeAvatarPath($avatarPath);
|
|
|
|
$this->uploadDir->put($avatarPath, $encodedImage);
|
|
}
|
|
|
|
public function remove(User $user)
|
|
{
|
|
$avatarPath = $user->avatar_path;
|
|
|
|
$user->afterSave(function () use ($avatarPath) {
|
|
if ($this->uploadDir->has($avatarPath)) {
|
|
$this->uploadDir->delete($avatarPath);
|
|
}
|
|
});
|
|
|
|
$user->changeAvatarPath(null);
|
|
}
|
|
}
|