forked from mirror/pixelfed
Merge pull request #1380 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
e999d4be5a
|
@ -48,12 +48,12 @@ class InboxValidator implements ShouldQueue
|
||||||
|
|
||||||
$profile = Profile::whereNull('domain')->whereUsername($username)->first();
|
$profile = Profile::whereNull('domain')->whereUsername($username)->first();
|
||||||
|
|
||||||
if(empty($profile)) {
|
if(empty($profile) || empty($headers) || empty($payload)) {
|
||||||
return;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($profile->status != null) {
|
if($profile->status != null) {
|
||||||
return;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($this->verifySignature($headers, $profile, $payload) == true) {
|
if($this->verifySignature($headers, $profile, $payload) == true) {
|
||||||
|
|
|
@ -10,13 +10,14 @@ class RelationshipTransformer extends Fractal\TransformerAbstract
|
||||||
{
|
{
|
||||||
public function transform(Profile $profile)
|
public function transform(Profile $profile)
|
||||||
{
|
{
|
||||||
$user = Auth::user()->profile;
|
$auth = Auth::check();
|
||||||
|
$user = $auth ? Auth::user()->profile : false;
|
||||||
return [
|
return [
|
||||||
'id' => (string) $profile->id,
|
'id' => (string) $profile->id,
|
||||||
'following' => $user->follows($profile),
|
'following' => $auth ? $user->follows($profile) : false,
|
||||||
'followed_by' => $user->followedBy($profile),
|
'followed_by' => $auth ? $user->followedBy($profile) : false,
|
||||||
'blocking' => $user->blockedIds()->contains($profile->id),
|
'blocking' => $auth ? $user->blockedIds()->contains($profile->id) : false,
|
||||||
'muting' => $user->mutedIds()->contains($profile->id),
|
'muting' => $auth ? $user->mutedIds()->contains($profile->id) : false,
|
||||||
'muting_notifications' => null,
|
'muting_notifications' => null,
|
||||||
'requested' => null,
|
'requested' => null,
|
||||||
'domain_blocking' => null,
|
'domain_blocking' => null,
|
||||||
|
|
Loading…
Reference in New Issue