| @@ 368-376 (lines=9) @@ | ||
| 365 | * @throws InvalidShareException |
|
| 366 | * @throws Share\Exceptions\ShareNotFound |
|
| 367 | */ |
|
| 368 | protected function getValidShare($id, $sharedSecret) { |
|
| 369 | $share = $this->federatedShareProvider->getShareById($id); |
|
| 370 | if ($share->getShareType() !== FederatedShareProvider::SHARE_TYPE_REMOTE |
|
| 371 | || $share->getToken() !== $sharedSecret |
|
| 372 | ) { |
|
| 373 | throw new InvalidShareException(); |
|
| 374 | } |
|
| 375 | return $share; |
|
| 376 | } |
|
| 377 | } |
|
| 378 | ||
| @@ 393-402 (lines=10) @@ | ||
| 390 | * @throws Share\Exceptions\ShareNotFound |
|
| 391 | * @throws InvalidShareException |
|
| 392 | */ |
|
| 393 | protected function getValidShare($id) { |
|
| 394 | $share = $this->federatedShareProvider->getShareById($id); |
|
| 395 | $token = $this->request->getParam('token', null); |
|
| 396 | if ($share->getShareType() !== FederatedShareProvider::SHARE_TYPE_REMOTE |
|
| 397 | || $share->getToken() !== $token |
|
| 398 | ) { |
|
| 399 | throw new InvalidShareException(); |
|
| 400 | } |
|
| 401 | return $share; |
|
| 402 | } |
|
| 403 | ||
| 404 | /** |
|
| 405 | * Make sure that incoming shares are enabled |
|