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

@@ 380-388 (lines=9) @@
377
	 * @throws InvalidShareException
378
	 * @throws Share\Exceptions\ShareNotFound
379
	 */
380
	protected function getValidShare($id, $sharedSecret) {
381
		$share = $this->federatedShareProvider->getShareById($id);
382
		if ($share->getShareType() !== FederatedShareProvider::SHARE_TYPE_REMOTE
383
			|| $share->getToken() !== $sharedSecret
384
		) {
385
			throw new InvalidShareException();
386
		}
387
		return $share;
388
	}
389
}
390