123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- namespace App;
- use App\Util\Lexer\Bearcap;
- use Auth;
- use Illuminate\Database\Eloquent\Model;
- use Storage;
- class Story extends Model
- {
- use HasSnowflakePrimary;
- public const MAX_PER_DAY = 20;
- /**
- * Indicates if the IDs are auto-incrementing.
- *
- * @var bool
- */
- public $incrementing = false;
- protected $casts = [
- 'story' => 'json',
- 'expires_at' => 'datetime',
- 'view_count' => 'integer',
- ];
- protected $fillable = ['profile_id', 'view_count'];
- protected $visible = ['id'];
- protected $hidden = ['json'];
- public function profile()
- {
- return $this->belongsTo(Profile::class);
- }
- public function views()
- {
- return $this->hasMany(StoryView::class);
- }
- public function seen($pid = false)
- {
- return StoryView::whereStoryId($this->id)
- ->whereProfileId(Auth::user()->profile->id)
- ->exists();
- }
- public function permalink()
- {
- $username = $this->profile->username;
- return url("/stories/{$username}/{$this->id}/activity");
- }
- public function url()
- {
- $username = $this->profile->username;
- return url("/stories/{$username}/{$this->id}");
- }
- public function mediaUrl()
- {
- return url(Storage::url($this->path));
- }
- public function bearcapUrl()
- {
- return Bearcap::encode($this->url(), $this->bearcap_token);
- }
- public function scopeToAudience($scope)
- {
- $res = [];
- switch ($scope) {
- case 'to':
- $res = [
- $this->profile->permalink('/followers'),
- ];
- break;
- default:
- $res = [];
- break;
- }
- return $res;
- }
- public function toAdminEntity()
- {
- return [
- 'id' => $this->id,
- 'profile_id' => $this->profile_id,
- 'media_src' => $this->mediaUrl(),
- 'url' => $this->url(),
- 'type' => $this->type,
- 'duration' => $this->duration,
- 'mime' => $this->mime,
- 'size' => $this->size,
- 'local' => $this->local,
- ];
- }
- }
|