-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathUser.php
109 lines (90 loc) · 2.29 KB
/
User.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password', 'avatar', 'cover', 'username'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token', 'email'
];
/**
* The attributes casting for serialization.
*
* @var array
*/
protected $casts = ['id' => 'int'];
/**
* The accessors to append to the model's array form.
*
* @var array
*/
// protected $appends = ['getIsFollowedAttribute'];
/**
* Accessors
*/
public function getAvatarAttribute($val)
{
return is_null($val) ? asset('img/avatar-placeholder.svg') : $val;
}
public function getCoverAttribute($val)
{
return is_null($val) ? asset('img/cover-placeholder.jpg') : $val;
}
/**
* Relations
*/
public function tweets()
{
return $this->hasMany(Tweet::class)->withCount('replies', 'likes');
}
public function likes()
{
return $this->hasMany(Like::class);
}
public function replies()
{
return $this->hasMany(Reply::class);
}
public function profile()
{
return $this->hasOne(Profile::class);
}
public function followers()
{
return $this->belongsToMany(User::class, 'followers', 'follow_id', 'user_id')
->withPivot('follow_id', 'user_id')
->withTimestamps();
}
public function following()
{
return $this->belongsToMany(User::class, 'followers', 'user_id', 'follow_id')
->withPivot('follow_id', 'user_id')
->withTimestamps();
}
public function isFollowing($user_id = null)
{
return $this->following()
->where('follow_id', $user_id ?: auth()->id() )
->exists();
}
public function getIsFollowedAttribute()
{
return $this->followers()
->where('follow_id', $this->getKey() )
->exists();
}
}