Code Duplication    Length = 9-10 lines in 2 locations

apps/federatedfilesharing/lib/Controller/RequestHandlerController.php 1 location

@@ 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

apps/federatedfilesharing/lib/Controller/OcmController.php 1 location

@@ 372-380 (lines=9) @@
369
	 * @throws InvalidShareException
370
	 * @throws Share\Exceptions\ShareNotFound
371
	 */
372
	protected function getValidShare($id, $sharedSecret) {
373
		$share = $this->federatedShareProvider->getShareById($id);
374
		if ($share->getShareType() !== FederatedShareProvider::SHARE_TYPE_REMOTE
375
			|| $share->getToken() !== $sharedSecret
376
		) {
377
			throw new InvalidShareException();
378
		}
379
		return $share;
380
	}
381
}
382