| @@ 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 |
|
| @@ 419-427 (lines=9) @@ | ||
| 416 | * @throws InvalidShareException |
|
| 417 | * @throws Share\Exceptions\ShareNotFound |
|
| 418 | */ |
|
| 419 | protected function getValidShare($id, $sharedSecret) { |
|
| 420 | $share = $this->federatedShareProvider->getShareById($id); |
|
| 421 | if ($share->getShareType() !== FederatedShareProvider::SHARE_TYPE_REMOTE |
|
| 422 | || $share->getToken() !== $sharedSecret |
|
| 423 | ) { |
|
| 424 | throw new InvalidShareException(); |
|
| 425 | } |
|
| 426 | return $share; |
|
| 427 | } |
|
| 428 | ||
| 429 | /** |
|
| 430 | * @param string $resourceType |
|