Toggle favorite working

This commit is contained in:
isUnknown 2024-09-11 07:32:34 +02:00
parent 5e3f4ec621
commit 4ea2871c6d
13 changed files with 300 additions and 169 deletions

View file

@ -0,0 +1,33 @@
<?php
return [
'pattern' => '(:all)toggle-favorite.json',
'method' => 'post',
'action' => function () {
$json = file_get_contents('php://input');
$data = json_decode($json);
$fileName = $data->fileName;
$page = page($data->inspirationUri);
$file = $page->files()->find($fileName);
$user = Find::user($data->userUuid);
$favoriteForUsers = $file->favoriteForUsers()->toUsers();
if ($favoriteForUsers->has($user)) {
$favoriteForUsers->remove($user);
} else {
$favoriteForUsers->add($user);
}
$array = $favoriteForUsers->toArray();
$yaml = Data::encode($array, 'yaml');
$file->update([
'favoriteForUsers' => $yaml
]);
return $favoriteForUsers->toJson();
}
];