-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
144 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\StudioApiBundle\Exception; | ||
|
||
use RuntimeException; | ||
|
||
|
||
final class NoRequestException extends RuntimeException | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\StudioApiBundle\Security\Trait; | ||
|
||
use Pimcore\Bundle\StudioApiBundle\Util\Constants\PublicTranslations; | ||
use Symfony\Component\HttpFoundation\InputBag; | ||
|
||
trait PublicTranslationTrait | ||
{ | ||
private const ARRAY_KEYS_INDEX = 'keys'; | ||
private function voteOnTranslation(InputBag $payload): bool | ||
{ | ||
$parameters = $payload->all(); | ||
if(!array_key_exists(self::ARRAY_KEYS_INDEX, $parameters)) { | ||
return false; | ||
} | ||
|
||
foreach($parameters[self::ARRAY_KEYS_INDEX] as $key) { | ||
// Allow only public keys | ||
if(!in_array($key, PublicTranslations::PUBLIC_KEYS, true)) { | ||
return false; | ||
} | ||
} | ||
|
||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\StudioApiBundle\Security\Voter; | ||
|
||
use Pimcore\Bundle\StudioApiBundle\Exception\NoRequestException; | ||
use Pimcore\Bundle\StudioApiBundle\Security\Trait\PublicTranslationTrait; | ||
use Symfony\Component\HttpFoundation\Request; | ||
use Symfony\Component\HttpFoundation\RequestStack; | ||
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; | ||
use Symfony\Component\Security\Core\Authorization\Voter\Voter; | ||
|
||
final class PublicTokenVoter extends Voter | ||
{ | ||
use PublicTranslationTrait; | ||
|
||
private const SUPPORTED_ATTRIBUTE = 'PUBLIC_API_PLATFORM'; | ||
|
||
private const SUPPORTED_SUBJECTS = ['translation']; | ||
|
||
public function __construct( | ||
private readonly RequestStack $requestStack, | ||
) { | ||
} | ||
|
||
protected function supports(string $attribute, mixed $subject): bool | ||
{ | ||
return $attribute === self::SUPPORTED_ATTRIBUTE && in_array((string)$subject, self::SUPPORTED_SUBJECTS, true); | ||
} | ||
|
||
protected function voteOnAttribute(string $attribute, mixed $subject, TokenInterface $token): bool | ||
{ | ||
|
||
$request = $this->getCurrentRequest(); | ||
|
||
// TODO Add security service once merged with PR#5 | ||
return $this->voteOnRequest($request, $subject); | ||
} | ||
|
||
private function getCurrentRequest(): Request | ||
{ | ||
$request = $this->requestStack->getCurrentRequest(); | ||
if(!$request) { | ||
throw new NoRequestException('No request found'); | ||
} | ||
|
||
return $request; | ||
} | ||
|
||
private function voteOnRequest(Request $request, string $subject): bool | ||
{ | ||
return match ($subject) { | ||
'translation' => $this->voteOnTranslation($request->getPayload()), | ||
default => false, | ||
}; | ||
} | ||
} |