mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2024-10-01 05:25:34 -04:00
59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class Meme extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = ['id'];
|
|
protected $appends = ['meme_tips_total'];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function address()
|
|
{
|
|
return $this->belongsTo(Address::class);
|
|
}
|
|
|
|
public function tips()
|
|
{
|
|
return $this->hasManyThrough(Tip::class, Address::class, 'id', 'address_id', 'address_id', 'id');
|
|
}
|
|
|
|
public function getMemeTipsTotalAttribute()
|
|
{
|
|
return $this->tips->sum('amount_formatted');
|
|
}
|
|
|
|
public function setImageAttribute($value)
|
|
{
|
|
$attribute_name = "image";
|
|
$disk = "uploads";
|
|
$destination_path = "uploads/memes";
|
|
$image = \Image::make($value)->encode($value->extension(), 90);
|
|
$fix_rotation_issues = $image->orientate();
|
|
$filename = md5($value.time()) . '.' . $value->extension();
|
|
|
|
if ($value->extension() == 'gif') {
|
|
// Work around to get GIFs to work
|
|
copy($value->getRealPath(), $destination_path.'/'.$filename);
|
|
$image->destroy();
|
|
}
|
|
else {
|
|
\Storage::disk($disk)->put($destination_path.'/'.$filename, $image->stream());
|
|
}
|
|
|
|
$this->attributes[$attribute_name] = $destination_path.'/'.$filename;
|
|
}
|
|
|
|
}
|