87 lines
3.2 KiB
PHP
87 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace routes;
|
|
|
|
use classes\authentication;
|
|
use classes\customer_rule_product_restriction_exception;
|
|
use classes\customer_rule_product_restriction_service;
|
|
use Throwable;
|
|
use traits\route_t;
|
|
|
|
class superuserCustomerRuleProductRestrictionsRoute
|
|
{
|
|
use route_t;
|
|
|
|
public function run(): void
|
|
{
|
|
$this->get('/superuser/customer-rules/product-restrictions', function () {
|
|
global $response;
|
|
$this->requireClassicSuperuserAnyPermission([
|
|
'superuser_customer_rules_view',
|
|
'superuser_customer_rules_manage',
|
|
]);
|
|
$response->success((new customer_rule_product_restriction_service())->listConfiguration());
|
|
}, [
|
|
'superuser_customer_rules_view' => 'View global customer-rule product restrictions',
|
|
]);
|
|
|
|
$this->put('/superuser/customer-rules/product-restrictions/{attribute}', function () {
|
|
global $response;
|
|
$this->requireClassicSuperuserPermission('superuser_customer_rules_manage');
|
|
$attribute = trim((string)$this->fromRoute('attribute'));
|
|
try {
|
|
$response->success((new customer_rule_product_restriction_service())->replaceRuleConfiguration(
|
|
$attribute,
|
|
$this->getParametersAsArray(),
|
|
$this->actorUserId()
|
|
));
|
|
} catch (customer_rule_product_restriction_exception $exception) {
|
|
$response->error([
|
|
'code' => $exception->restrictionCode(),
|
|
'message' => $exception->getMessage(),
|
|
], $exception->httpStatus());
|
|
} catch (Throwable $throwable) {
|
|
error_log('[customer_rule_product_restrictions] save failed: ' . $throwable->getMessage());
|
|
$response->error([
|
|
'code' => 'CUSTOMER_RULE_CONFIGURATION_SAVE_FAILED',
|
|
'message' => 'Unable to save customer rule configuration',
|
|
], 500);
|
|
}
|
|
}, [
|
|
'superuser_customer_rules_manage' => 'Manage global customer-rule product restrictions',
|
|
]);
|
|
}
|
|
|
|
private function requireClassicSuperuserPermission(string $permission): bool
|
|
{
|
|
global $response;
|
|
if ((new authentication())->get_subuser() !== false) {
|
|
$response->error('Subuser sessions cannot manage customer rules.', 403);
|
|
}
|
|
$this->requirePermission('superuser');
|
|
return $this->requirePermission($permission);
|
|
}
|
|
|
|
/** @param list<string> $permissions */
|
|
private function requireClassicSuperuserAnyPermission(array $permissions): bool
|
|
{
|
|
global $response;
|
|
if ((new authentication())->get_subuser() !== false) {
|
|
$response->error('Subuser sessions cannot manage customer rules.', 403);
|
|
}
|
|
$this->requirePermission('superuser');
|
|
foreach ($permissions as $permission) {
|
|
if ($this->hasPermission($permission)) {
|
|
return true;
|
|
}
|
|
}
|
|
return $this->requirePermission($permissions[0]);
|
|
}
|
|
|
|
private function actorUserId(): int
|
|
{
|
|
$user = (new authentication())->get_user();
|
|
return $user !== false && $user->exists() ? (int)$user->id : 0;
|
|
}
|
|
}
|