mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $follower_id
|
|
* @property int $following_id
|
|
* @property array|null $activity
|
|
* @property Carbon|null $handled_at
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
* @property-read Profile $target
|
|
* @property-read Profile $actor
|
|
* @property-read Profile $follower
|
|
* @property-read Profile $following
|
|
*/
|
|
class FollowRequest extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'activity' => 'array',
|
|
];
|
|
}
|
|
|
|
public function actor()
|
|
{
|
|
return $this->belongsTo(Profile::class, 'follower_id', 'id');
|
|
}
|
|
|
|
public function follower()
|
|
{
|
|
return $this->belongsTo(Profile::class, 'follower_id', 'id');
|
|
}
|
|
|
|
public function following()
|
|
{
|
|
return $this->belongsTo(Profile::class, 'following_id', 'id');
|
|
}
|
|
|
|
public function target()
|
|
{
|
|
return $this->belongsTo(Profile::class, 'following_id', 'id');
|
|
}
|
|
|
|
public function permalink($append = null, $namespace = '#accepts')
|
|
{
|
|
$path = $this->target->permalink("{$namespace}/follows/{$this->id}{$append}");
|
|
|
|
return url($path);
|
|
}
|
|
}
|