2018-08-10 09:10:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs\AvatarPipeline;
|
|
|
|
|
2019-04-06 22:45:32 +00:00
|
|
|
use Cache;
|
2018-08-28 03:07:36 +00:00
|
|
|
use App\Avatar;
|
|
|
|
use App\Profile;
|
|
|
|
use Carbon\Carbon;
|
2018-08-10 09:10:05 +00:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
2018-08-28 03:07:36 +00:00
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2019-04-06 22:20:00 +00:00
|
|
|
use Illuminate\Support\Str;
|
2018-08-28 03:07:36 +00:00
|
|
|
use Image as Intervention;
|
2018-08-10 09:10:05 +00:00
|
|
|
|
|
|
|
class AvatarOptimize implements ShouldQueue
|
|
|
|
{
|
2021-05-11 03:04:23 +00:00
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
2018-08-10 09:10:05 +00:00
|
|
|
|
2021-05-11 03:04:23 +00:00
|
|
|
protected $profile;
|
|
|
|
protected $current;
|
2018-08-10 09:10:05 +00:00
|
|
|
|
2021-05-11 03:04:23 +00:00
|
|
|
/**
|
|
|
|
* Delete the job if its models no longer exist.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $deleteWhenMissingModels = true;
|
2019-01-12 22:24:20 +00:00
|
|
|
|
2021-05-11 03:04:23 +00:00
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Profile $profile, $current)
|
|
|
|
{
|
|
|
|
$this->profile = $profile;
|
|
|
|
$this->current = $current;
|
|
|
|
}
|
2018-08-10 09:10:05 +00:00
|
|
|
|
2021-05-11 03:04:23 +00:00
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$avatar = $this->profile->avatar;
|
|
|
|
$file = storage_path("app/$avatar->media_path");
|
2018-08-10 09:10:05 +00:00
|
|
|
|
2021-05-11 03:04:23 +00:00
|
|
|
try {
|
|
|
|
$img = Intervention::make($file)->orientate();
|
|
|
|
$img->fit(200, 200, function ($constraint) {
|
|
|
|
$constraint->upsize();
|
|
|
|
});
|
|
|
|
$quality = config_cache('pixelfed.image_quality');
|
|
|
|
$img->save($file, $quality);
|
2018-08-10 09:10:05 +00:00
|
|
|
|
2021-05-11 03:04:23 +00:00
|
|
|
$avatar = Avatar::whereProfileId($this->profile->id)->firstOrFail();
|
|
|
|
$avatar->change_count = ++$avatar->change_count;
|
|
|
|
$avatar->last_processed_at = Carbon::now();
|
|
|
|
$avatar->save();
|
|
|
|
Cache::forget('avatar:' . $avatar->profile_id);
|
|
|
|
$this->deleteOldAvatar($avatar->media_path, $this->current);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
}
|
|
|
|
}
|
2018-08-10 09:10:05 +00:00
|
|
|
|
2021-05-11 03:04:23 +00:00
|
|
|
protected function deleteOldAvatar($new, $current)
|
|
|
|
{
|
|
|
|
if ( storage_path('app/'.$new) == $current ||
|
|
|
|
Str::endsWith($current, 'avatars/default.png') ||
|
|
|
|
Str::endsWith($current, 'avatars/default.jpg'))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (is_file($current)) {
|
|
|
|
@unlink($current);
|
|
|
|
}
|
|
|
|
}
|
2018-08-10 09:10:05 +00:00
|
|
|
}
|