xmrmemes/app/Models/Meme.php

75 lines
1.9 KiB
PHP
Raw Normal View History

2021-07-16 06:35:54 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
2021-07-16 06:35:54 +00:00
use Illuminate\Support\Facades\Storage;
use Illuminate\Database\Eloquent\SoftDeletes;
2021-07-16 06:35:54 +00:00
class Meme extends Model
{
use HasFactory;
use SoftDeletes;
2021-07-16 06:35:54 +00:00
protected $guarded = ['id'];
protected $appends = ['meme_tips_total', 'image_url'];
protected $hidden = [
'payment_pending',
'account_index',
'is_approved',
'deleted_at',
];
2021-07-16 06:35:54 +00:00
protected static function booted()
{
static::addGlobalScope('approved', function (Builder $builder) {
$builder->where('is_approved', 1);
});
}
2021-07-16 06:35:54 +00:00
public function user()
{
return $this->belongsTo(User::class);
}
public function tips()
{
return $this->hasMany(Tip::class)->orderByDesc('created_at');
2021-07-16 06:35:54 +00:00
}
public function getMemeTipsTotalAttribute()
{
return $this->tips->where('is_deposit', 1)->sum('amount_formatted');
2021-07-16 06:35:54 +00:00
}
public function getImageUrlAttribute()
{
return url($this->image);
}
2021-07-16 06:35:54 +00:00
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;
}
}