2018-04-18 02:17:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
2021-08-31 06:42:14 +00:00
|
|
|
use Auth, Cache, DB, Storage;
|
2018-05-31 22:03:31 +00:00
|
|
|
use App\Util\Lexer\PrettyNumber;
|
2021-09-02 04:46:57 +00:00
|
|
|
use App\HasSnowflakePrimary;
|
2018-12-18 06:28:46 +00:00
|
|
|
use Illuminate\Database\Eloquent\{Model, SoftDeletes};
|
2021-07-25 11:56:35 +00:00
|
|
|
use App\Services\FollowerService;
|
2018-04-18 02:17:42 +00:00
|
|
|
|
|
|
|
class Profile extends Model
|
|
|
|
{
|
2021-09-02 04:46:57 +00:00
|
|
|
use HasSnowflakePrimary, SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates if the IDs are auto-incrementing.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $incrementing = false;
|
|
|
|
|
|
|
|
protected $dates = [
|
|
|
|
'deleted_at',
|
|
|
|
'last_fetched_at'
|
|
|
|
];
|
|
|
|
protected $hidden = ['private_key'];
|
|
|
|
protected $visible = ['id', 'user_id', 'username', 'name'];
|
|
|
|
protected $fillable = ['user_id'];
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function url($suffix = null)
|
|
|
|
{
|
|
|
|
return $this->remote_url ?? url($this->username . $suffix);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function localUrl($suffix = null)
|
|
|
|
{
|
|
|
|
return url($this->username . $suffix);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function permalink($suffix = null)
|
|
|
|
{
|
|
|
|
return $this->remote_url ?? url('users/' . $this->username . $suffix);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function emailUrl()
|
|
|
|
{
|
|
|
|
if($this->domain) {
|
|
|
|
return $this->username;
|
|
|
|
}
|
|
|
|
|
|
|
|
$domain = parse_url(config('app.url'), PHP_URL_HOST);
|
|
|
|
|
|
|
|
return $this->username.'@'.$domain;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function statuses()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Status::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function followingCount($short = false)
|
|
|
|
{
|
2021-09-06 06:29:06 +00:00
|
|
|
$count = Cache::remember('profile:following_count:'.$this->id, now()->addMonths(1), function() {
|
2021-09-02 04:46:57 +00:00
|
|
|
if($this->domain == null && $this->user->settings->show_profile_following_count == false) {
|
|
|
|
return 0;
|
|
|
|
}
|
2021-09-04 09:17:54 +00:00
|
|
|
$count = DB::table('followers')->where('profile_id', $this->id)->count();
|
2021-09-02 04:46:57 +00:00
|
|
|
if($this->following_count != $count) {
|
|
|
|
$this->following_count = $count;
|
|
|
|
$this->save();
|
|
|
|
}
|
|
|
|
return $count;
|
|
|
|
});
|
|
|
|
|
|
|
|
return $short ? PrettyNumber::convert($count) : $count;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function followerCount($short = false)
|
|
|
|
{
|
2021-09-06 06:29:06 +00:00
|
|
|
$count = Cache::remember('profile:follower_count:'.$this->id, now()->addMonths(1), function() {
|
2021-09-02 04:46:57 +00:00
|
|
|
if($this->domain == null && $this->user->settings->show_profile_follower_count == false) {
|
|
|
|
return 0;
|
|
|
|
}
|
2021-09-04 09:17:54 +00:00
|
|
|
$count = DB::table('followers')->where('following_id', $this->id)->count();
|
2021-09-02 04:46:57 +00:00
|
|
|
if($this->followers_count != $count) {
|
|
|
|
$this->followers_count = $count;
|
|
|
|
$this->save();
|
|
|
|
}
|
|
|
|
return $count;
|
|
|
|
});
|
|
|
|
return $short ? PrettyNumber::convert($count) : $count;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function statusCount()
|
|
|
|
{
|
|
|
|
return $this->status_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function following()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(
|
|
|
|
self::class,
|
|
|
|
'followers',
|
|
|
|
'profile_id',
|
|
|
|
'following_id'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function followers()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(
|
|
|
|
self::class,
|
|
|
|
'followers',
|
|
|
|
'following_id',
|
|
|
|
'profile_id'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function follows($profile) : bool
|
|
|
|
{
|
|
|
|
return Follower::whereProfileId($this->id)->whereFollowingId($profile->id)->exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function followedBy($profile) : bool
|
|
|
|
{
|
|
|
|
return Follower::whereProfileId($profile->id)->whereFollowingId($this->id)->exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bookmarks()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(
|
|
|
|
Status::class,
|
|
|
|
'bookmarks',
|
|
|
|
'profile_id',
|
|
|
|
'status_id'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function likes()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Like::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function avatar()
|
|
|
|
{
|
|
|
|
return $this->hasOne(Avatar::class)->withDefault([
|
|
|
|
'media_path' => 'public/avatars/default.jpg',
|
|
|
|
'change_count' => 0
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function avatarUrl()
|
|
|
|
{
|
|
|
|
$url = Cache::remember('avatar:'.$this->id, now()->addYears(1), function () {
|
|
|
|
$avatar = $this->avatar;
|
|
|
|
|
|
|
|
if($avatar->cdn_url) {
|
|
|
|
return $avatar->cdn_url ?? url('/storage/avatars/default.jpg');
|
|
|
|
}
|
|
|
|
|
|
|
|
if($avatar->is_remote) {
|
|
|
|
return $avatar->cdn_url ?? url('/storage/avatars/default.jpg');
|
|
|
|
}
|
|
|
|
|
|
|
|
$path = $avatar->media_path;
|
|
|
|
$path = "{$path}?v={$avatar->change_count}";
|
|
|
|
|
|
|
|
return config('app.url') . Storage::url($path);
|
|
|
|
});
|
|
|
|
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
// deprecated
|
|
|
|
public function recommendFollowers()
|
|
|
|
{
|
|
|
|
return collect([]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function keyId()
|
|
|
|
{
|
|
|
|
if ($this->remote_url) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->permalink('#main-key');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function mutedIds()
|
|
|
|
{
|
|
|
|
return UserFilter::whereUserId($this->id)
|
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
->whereFilterType('mute')
|
|
|
|
->pluck('filterable_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function blockedIds()
|
|
|
|
{
|
|
|
|
return UserFilter::whereUserId($this->id)
|
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
->whereFilterType('block')
|
|
|
|
->pluck('filterable_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function mutedProfileUrls()
|
|
|
|
{
|
|
|
|
$ids = $this->mutedIds();
|
|
|
|
return $this->whereIn('id', $ids)->get()->map(function($i) {
|
|
|
|
return $i->url();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function blockedProfileUrls()
|
|
|
|
{
|
|
|
|
$ids = $this->blockedIds();
|
|
|
|
return $this->whereIn('id', $ids)->get()->map(function($i) {
|
|
|
|
return $i->url();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function reports()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Report::class, 'profile_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function media()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Media::class, 'profile_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function inboxUrl()
|
|
|
|
{
|
|
|
|
return $this->inbox_url ?? $this->permalink('/inbox');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function outboxUrl()
|
|
|
|
{
|
|
|
|
return $this->outbox_url ?? $this->permalink('/outbox');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function sharedInbox()
|
|
|
|
{
|
|
|
|
return $this->sharedInbox ?? $this->inboxUrl();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDefaultScope()
|
|
|
|
{
|
|
|
|
return $this->is_private == true ? 'private' : 'public';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAudience($scope = false)
|
|
|
|
{
|
|
|
|
if($this->remote_url) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
$scope = $scope ?? $this->getDefaultScope();
|
|
|
|
$audience = [];
|
|
|
|
switch ($scope) {
|
|
|
|
case 'public':
|
|
|
|
$audience = [
|
|
|
|
'to' => [
|
|
|
|
'https://www.w3.org/ns/activitystreams#Public'
|
|
|
|
],
|
|
|
|
'cc' => [
|
|
|
|
$this->permalink('/followers')
|
|
|
|
]
|
|
|
|
];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return $audience;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAudienceInbox($scope = 'public')
|
|
|
|
{
|
|
|
|
return FollowerService::audience($this->id, $scope);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function circles()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Circle::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hashtags()
|
|
|
|
{
|
|
|
|
return $this->hasManyThrough(
|
|
|
|
Hashtag::class,
|
|
|
|
StatusHashtag::class,
|
|
|
|
'profile_id',
|
|
|
|
'id',
|
|
|
|
'id',
|
|
|
|
'hashtag_id'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hashtagFollowing()
|
|
|
|
{
|
|
|
|
return $this->hasMany(HashtagFollow::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function collections()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Collection::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasFollowRequestById(int $id)
|
|
|
|
{
|
|
|
|
return FollowRequest::whereFollowerId($id)
|
|
|
|
->whereFollowingId($this->id)
|
|
|
|
->exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function stories()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Story::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function reported()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Report::class, 'object_id');
|
|
|
|
}
|
2018-04-18 02:17:42 +00:00
|
|
|
}
|