Merge pull request #411 from pixelfed/frontend-ui-refactor

Update Status model
This commit is contained in:
daniel 2018-08-26 21:32:22 -06:00 committed by GitHub
commit d229ef4144
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,9 +32,18 @@ class Status extends Model
return $this->hasMany(Media::class)->orderBy('order', 'asc')->first();
}
public function thumb()
public function viewType()
{
if($this->media->count() == 0 || $this->is_nsfw) {
$media = $this->firstMedia();
$type = explode('/', $media->mime);
return $type[0];
}
public function thumb($showNsfw = false)
{
$type = $this->viewType();
$is_nsfw = !$showNsfw ? $this->is_nsfw : false;
if($this->media->count() == 0 || $is_nsfw || $type != 'image') {
return "data:image/gif;base64,R0lGODlhAQABAIAAAMLCwgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==";
}
return url(Storage::url($this->firstMedia()->thumbnail_path));