Files
api/services/nginx/app/routes/superuserDepartmentRoute.php
T
2025-01-29 14:27:44 +01:00

143 lines
6.6 KiB
PHP

<?php
namespace routes;
use classes\authentication;
use objects\departments_o;
use objects\logs_o;
use objects\products_o;
use traits\route_t;
class superuserDepartmentRoute
{
use route_t;
public function run(): void
{
$this->get('/superuser/department', function () {
// Require the user to be logged in
global $response;
$this->requirePermission('superuser_fetch_department');
// Get the user object
$user = (new authentication())->get_user();
// Check if the request was successful
if ($user) {
// Check if the required fields are set
if ($this->fromRequest('department_id') === null) {
$response->error('Department ID is required', 400);
}
// Check if the department id is a valid number
if (!is_numeric($this->fromRequest('department_id'))) {
$response->error('Department ID must be a number', 400);
}
if (!(new departments_o())->getDepartmentById((int)$this->fromRequest('department_id'))) {
$response->error('Department not found', 404);
}
// Log the incident
(new logs_o())->add('departments', 'global', 1, $user->id, 'SUPERUSER_FETCH_DEPARTMENT', 'Successfully fetched department');
// Return the department
$response->success(
(new departments_o())->getDepartmentById((int)$this->fromRequest('department_id'))
);
} else {
// Log the incident
(new logs_o())->add('departments', 'global', 1, 0, 'SUPERUSER_FETCH_DEPARTMENT', 'No user found, or invalid session');
// Return an error
$response->error('Invalid session', 400);
}
});
$this->post('/superuser/department/prices', function () {
// Require the user to be logged in
global $response;
$this->requirePermission('superuser_set_department_prices');
// Get the user object
$user = (new authentication())->get_user();
// Check if the request was successful
if ($user) {
// Check if the required fields are set
$data = json_decode(file_get_contents('php://input'), true);
if (!isset($data['department_id'])) {
$response->error('Department ID is required', 400);
}
if (!isset($data['price'])) {
$response->error('Price is required', 400);
}
if (!isset($data['product_id'])) {
$response->error('Product ID is required', 400);
}
// Check if the department id is a valid number
if (!is_numeric($data['department_id'])) {
$response->error('Department ID must be a number', 400);
}
// Check if the price is a valid number
if (!is_numeric($data['price'])) {
// Check if the value is an empty string
if ($data['price'] === '') {
$data['price'] = 0;
} else {
$response->error('Price must be a number', 400);
}
}
// Check if the product id is a valid number
if (!is_numeric($data['product_id'])) {
$response->error('Product ID must be a number', 400);
}
// Check if the product exists
if (!(new products_o())->getProductById((int)$data['product_id'])->exists()) {
$response->error('Product not found', 404);
}
// Check if the department exists
if (!(new departments_o())->getDepartmentById((int)$data['department_id'])) {
$response->error('Department not found', 404);
}
// Log the incident
(new logs_o())->add('departments', 'global', 1, $user->id, 'SUPERUSER_SET_DEPARTMENT_PRICES', 'Successfully set department prices');
// Set the department prices
(new departments_o())->setDepartmentProductPrice((int)$data['department_id'], (int)$data['product_id'], (int)$data['price']);
// Return the department
$response->success(
(new departments_o())->getDepartmentById((int)$data['department_id'])
);
} else {
// Log the incident
(new logs_o())->add('departments', 'global', 1, 0, 'SUPERUSER_SET_DEPARTMENT_PRICES', 'No user found, or invalid session');
// Return an error
$response->error('Invalid session', 400);
}
});
$this->get('/superuser/department/prices', function () {
// Require the user to be logged in
global $response;
$this->requirePermission('superuser_fetch_department_prices');
// Get the user object
$user = (new authentication())->get_user();
// Check if the request was successful
if ($user) {
// Check if the required fields are set
if ($this->fromRequest('department_id') === null) {
$response->error('Department ID is required', 400);
}
// Check if the department id is a valid number
if (!is_numeric($this->fromRequest('department_id'))) {
$response->error('Department ID must be a number', 400);
}
if (!(new departments_o())->getDepartmentById((int)$this->fromRequest('department_id'))) {
$response->error('Department not found', 404);
}
// Log the incident
(new logs_o())->add('departments', 'global', 1, $user->id, 'SUPERUSER_FETCH_DEPARTMENT_PRICES', 'Successfully fetched department prices');
// Return the department
$response->success(
(new departments_o())->getDepartmentProductPrices((int)$this->fromRequest('department_id'))
);
} else {
// Log the incident
(new logs_o())->add('departments', 'global', 1, 0, 'SUPERUSER_FETCH_DEPARTMENT_PRICES', 'No user found, or invalid session');
// Return an error
$response->error('Invalid session', 400);
}
});
}
}