|
| 1 | +<?php |
| 2 | + |
| 3 | +/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */ |
| 4 | + |
| 5 | +namespace Icinga\Module\Reporting\Common; |
| 6 | + |
| 7 | +use Icinga\Authentication\Auth as IcingaAuth; |
| 8 | +use Icinga\Exception\ConfigurationError; |
| 9 | +use ipl\Orm\Query; |
| 10 | +use ipl\Stdlib\Filter; |
| 11 | +use ipl\Web\Filter\QueryString; |
| 12 | + |
| 13 | +trait Auth |
| 14 | +{ |
| 15 | + /** |
| 16 | + * Apply restrictions of this module |
| 17 | + * |
| 18 | + * @param Query $query |
| 19 | + */ |
| 20 | + protected function applyRestrictions(Query $query): void |
| 21 | + { |
| 22 | + $restrictions = IcingaAuth::getInstance()->getRestrictions('reporting/filter/reports'); |
| 23 | + |
| 24 | + $queryFilter = Filter::any(); |
| 25 | + foreach ($restrictions as $restriction) { |
| 26 | + $queryFilter->add($this->parseRestriction($restriction, 'reporting/filter/reports')); |
| 27 | + } |
| 28 | + |
| 29 | + $query->filter($queryFilter); |
| 30 | + } |
| 31 | + |
| 32 | + /** |
| 33 | + * Parse the query string of the given restriction |
| 34 | + * |
| 35 | + * @param string $queryString |
| 36 | + * @param string $restriction |
| 37 | + * |
| 38 | + * @return Filter\Rule |
| 39 | + */ |
| 40 | + protected function parseRestriction(string $queryString, string $restriction): Filter\Rule |
| 41 | + { |
| 42 | + return QueryString::fromString($queryString) |
| 43 | + ->on( |
| 44 | + QueryString::ON_CONDITION, |
| 45 | + function (Filter\Condition $condition) use ($restriction, $queryString) { |
| 46 | + $allowedColumns = ['report.name', 'report.author']; |
| 47 | + if (in_array($condition->getColumn(), $allowedColumns, true)) { |
| 48 | + return; |
| 49 | + } |
| 50 | + |
| 51 | + throw new ConfigurationError( |
| 52 | + t( |
| 53 | + 'Cannot apply restriction %s using the filter %s.' |
| 54 | + . ' You can only use the following columns: %s' |
| 55 | + ), |
| 56 | + $restriction, |
| 57 | + $queryString, |
| 58 | + implode(', ', $allowedColumns) |
| 59 | + ); |
| 60 | + } |
| 61 | + )->parse(); |
| 62 | + } |
| 63 | +} |
0 commit comments