Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 18 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
| SaveStylesheetClassesHandler | |
0.00% |
0 / 18 |
|
0.00% |
0 / 3 |
20 | |
0.00% |
0 / 1 |
| __invoke | |
0.00% |
0 / 9 |
|
0.00% |
0 / 1 |
2 | |||
| validateParams | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| validateCSS | |
0.00% |
0 / 7 |
|
0.00% |
0 / 1 |
6 | |||
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; under version 2 |
| 7 | * of the License (non-upgradable). |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 17 | * |
| 18 | * Copyright (c) 2021 (original work) Open Assessment Technologies SA; |
| 19 | */ |
| 20 | |
| 21 | declare(strict_types=1); |
| 22 | |
| 23 | namespace oat\taoMediaManager\model\sharedStimulus\css\handler; |
| 24 | |
| 25 | use oat\oatbox\service\ConfigurableService; |
| 26 | use Psr\Http\Message\ServerRequestInterface; |
| 27 | use common_exception_Error as ErrorException; |
| 28 | use oat\taoMediaManager\model\validation\RequestValidator; |
| 29 | use common_exception_MissingParameter as MissingParameterException; |
| 30 | use common_exception_InvalidArgumentType as InvalidParameterException; |
| 31 | use oat\taoMediaManager\model\sharedStimulus\css\dto\SaveStylesheetClasses; |
| 32 | |
| 33 | class SaveStylesheetClassesHandler extends ConfigurableService |
| 34 | { |
| 35 | /** |
| 36 | * @throws ErrorException |
| 37 | * @throws MissingParameterException |
| 38 | */ |
| 39 | public function __invoke(ServerRequestInterface $request): SaveStylesheetClasses |
| 40 | { |
| 41 | $params = $request->getParsedBody(); |
| 42 | $this->validateParams($params); |
| 43 | |
| 44 | $css = json_decode($params['cssJson'], true); |
| 45 | $this->validateCSS($css); |
| 46 | |
| 47 | return new SaveStylesheetClasses( |
| 48 | $params['uri'], |
| 49 | $params['stylesheetUri'], |
| 50 | $css |
| 51 | ); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * @throws ErrorException |
| 56 | * @throws MissingParameterException |
| 57 | */ |
| 58 | private function validateParams(array $params): void |
| 59 | { |
| 60 | RequestValidator::validateRequiredParameters($params, ['uri', 'stylesheetUri', 'cssJson']); |
| 61 | RequestValidator::securityCheckPath($params['stylesheetUri']); |
| 62 | } |
| 63 | |
| 64 | private function validateCSS(array $css): void |
| 65 | { |
| 66 | if (!is_array($css)) { |
| 67 | throw new InvalidParameterException( |
| 68 | __CLASS__, |
| 69 | \Context::getInstance()->getActionName(), |
| 70 | 3, |
| 71 | 'json encoded array' |
| 72 | ); |
| 73 | } |
| 74 | } |
| 75 | } |