40 lines
915 B
PHP
40 lines
915 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
final class SharingPostController extends AbstractController
|
|
{
|
|
protected string $route = '/api/v1/sharing';
|
|
|
|
/** @var string[] */
|
|
protected array $mandatoryAttributes = [
|
|
'userId',
|
|
'userSharedId',
|
|
];
|
|
|
|
public function handle(): void
|
|
{
|
|
parent::handle();
|
|
|
|
if ($this->response->getStatus() !== ServerStatus::OK) {
|
|
return;
|
|
}
|
|
|
|
if (!$this->isUserLoggedIn() || !$this->hasUserPermission($this->jsonBody->userId)) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
$sharing = new Sharing();
|
|
$sharing->setUserId($this->jsonBody->userId);
|
|
$sharing->setUserShared($this->jsonBody->userSharedId);
|
|
$sharing->Save();
|
|
|
|
$this->response = new ApiJsonResponse();
|
|
$this->response->setParameter('sharingId', $sharing->getSharingId());
|
|
} catch (Throwable $e) {
|
|
$this->response = new ApiJsonResponse(ServerStatus::BAD_REQUEST);
|
|
$this->response->setMessage($e->getMessage());
|
|
}
|
|
}
|
|
} |