2018-11-04 03:45:44 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
2019-01-12 20:14:22 +00:00
|
|
|
use Auth;
|
2018-11-04 03:45:44 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-11-11 00:25:28 +00:00
|
|
|
use Pixelfed\Snowflake\HasSnowflakePrimary;
|
2018-11-04 03:45:44 +00:00
|
|
|
|
|
|
|
class Story extends Model
|
|
|
|
{
|
2019-11-11 00:25:28 +00:00
|
|
|
use HasSnowflakePrimary;
|
|
|
|
|
2020-01-29 04:32:32 +00:00
|
|
|
public const MAX_PER_DAY = 20;
|
2020-01-03 04:20:55 +00:00
|
|
|
|
2019-11-11 00:25:28 +00:00
|
|
|
/**
|
|
|
|
* Indicates if the IDs are auto-incrementing.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $incrementing = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be mutated to dates.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dates = ['published_at', 'expires_at'];
|
|
|
|
|
2019-12-31 09:33:54 +00:00
|
|
|
protected $fillable = ['profile_id'];
|
|
|
|
|
2019-01-12 19:38:09 +00:00
|
|
|
protected $visible = ['id'];
|
2019-01-12 20:14:22 +00:00
|
|
|
|
2020-01-21 22:09:21 +00:00
|
|
|
protected $hidden = ['json'];
|
|
|
|
|
2019-01-12 19:38:09 +00:00
|
|
|
public function profile()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Profile::class);
|
|
|
|
}
|
|
|
|
|
2019-01-12 07:42:26 +00:00
|
|
|
public function views()
|
|
|
|
{
|
|
|
|
return $this->hasMany(StoryView::class);
|
|
|
|
}
|
2019-01-12 20:14:22 +00:00
|
|
|
|
|
|
|
public function seen($pid = false)
|
|
|
|
{
|
2019-12-31 09:33:54 +00:00
|
|
|
return StoryView::whereStoryId($this->id)
|
|
|
|
->whereProfileId(Auth::user()->profile->id)
|
|
|
|
->exists();
|
2019-01-12 20:14:22 +00:00
|
|
|
}
|
2020-01-06 04:53:09 +00:00
|
|
|
|
|
|
|
public function permalink()
|
|
|
|
{
|
|
|
|
return url("/story/$this->id");
|
|
|
|
}
|
2018-11-04 03:45:44 +00:00
|
|
|
}
|