mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-25 15:55:22 +00:00
Update Status model
This commit is contained in:
parent
bd685cf6f2
commit
bb4e63eb59
1 changed files with 10 additions and 3 deletions
|
@ -18,6 +18,8 @@ class Status extends Model
|
||||||
*/
|
*/
|
||||||
protected $dates = ['deleted_at'];
|
protected $dates = ['deleted_at'];
|
||||||
|
|
||||||
|
protected $fillable = ['profile_id', 'visibility'];
|
||||||
|
|
||||||
public function profile()
|
public function profile()
|
||||||
{
|
{
|
||||||
return $this->belongsTo(Profile::class);
|
return $this->belongsTo(Profile::class);
|
||||||
|
@ -36,16 +38,21 @@ class Status extends Model
|
||||||
public function viewType()
|
public function viewType()
|
||||||
{
|
{
|
||||||
$media = $this->firstMedia();
|
$media = $this->firstMedia();
|
||||||
$type = explode('/', $media->mime);
|
$mime = explode('/', $media->mime)[0];
|
||||||
|
$count = $this->media()->count();
|
||||||
|
$type = ($mime == 'image') ? 'image' : 'video';
|
||||||
|
if($count > 1) {
|
||||||
|
$type = ($type == 'image') ? 'album' : 'video-album';
|
||||||
|
}
|
||||||
|
|
||||||
return $type[0];
|
return $type;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function thumb($showNsfw = false)
|
public function thumb($showNsfw = false)
|
||||||
{
|
{
|
||||||
$type = $this->viewType();
|
$type = $this->viewType();
|
||||||
$is_nsfw = !$showNsfw ? $this->is_nsfw : false;
|
$is_nsfw = !$showNsfw ? $this->is_nsfw : false;
|
||||||
if ($this->media->count() == 0 || $is_nsfw || $type != 'image') {
|
if ($this->media->count() == 0 || $is_nsfw || !in_array($type,['image', 'album'])) {
|
||||||
return 'data:image/gif;base64,R0lGODlhAQABAIAAAMLCwgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==';
|
return 'data:image/gif;base64,R0lGODlhAQABAIAAAMLCwgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue