���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/alphpwcp/public_html/us/alphachat/modules/lhrestapi/department.php
���ѧ٧ѧ�
<?php try { erLhcoreClassRestAPIHandler::validateRequest(); $rawAttributes = false; // To use this we need to change how form components works and check do we have post variable in general // This part is used by mobile App if (isset($_POST['post_body'])) { $requestBody = json_decode($_POST['post_body'],true); if (isset($_POST['request_method'])) { $_SERVER['REQUEST_METHOD'] = $_POST['request_method']; } if (isset($_POST['raw_attr'])) { $rawAttributes = true; } } else { $requestBody = json_decode(file_get_contents('php://input'),true); if (isset($requestBody['raw_attr']) && $requestBody['raw_attr'] == true) { $rawAttributes = true; } } if ($_SERVER['REQUEST_METHOD'] == 'POST') { if (!erLhcoreClassRestAPIHandler::hasAccessTo('lhdepartment', 'create')) { throw new Exception('You do not have permission. `lhdepartment`, `create` is required.'); } $dep = new erLhcoreClassModelDepartament(); } elseif ($_SERVER['REQUEST_METHOD'] == 'GET') { if (!erLhcoreClassRestAPIHandler::hasAccessTo('lhdepartment', 'list')) { throw new Exception('You do not have permission. `lhdepartment`, `list` is required.'); } $dep = erLhcoreClassModelDepartament::fetch((int)$Params['user_parameters']['id']); if (!($dep instanceof erLhcoreClassModelDepartament)) { throw new Exception('Department could not be found!'); } erLhcoreClassRestAPIHandler::outputResponse(array('error' => false, 'result' => $dep)); exit; } elseif ($_SERVER['REQUEST_METHOD'] == 'PUT') { if (!erLhcoreClassRestAPIHandler::hasAccessTo('lhdepartment', 'edit')) { throw new Exception('You do not have permission. `lhdepartment`, `edit` is required.'); } $dep = erLhcoreClassModelDepartament::fetch((int)$Params['user_parameters']['id']); if (!($dep instanceof erLhcoreClassModelDepartament)) { throw new Exception('Department could not be found!'); } } elseif ($_SERVER['REQUEST_METHOD'] == 'DELETE') { $dep = erLhcoreClassModelDepartament::fetch((int)$Params['user_parameters']['id']); if (!($dep instanceof erLhcoreClassModelDepartament)) { throw new Exception('Department could not be found!'); } if (!erLhcoreClassRestAPIHandler::hasAccessTo('lhdepartment', 'delete')) { throw new Exception('You do not have permission. `lhdepartment`, `delete` is required.'); } if ($dep->can_delete = true) { $dep->removeThis(); } else { throw new Exception('You can not delete department because they have chats!'); } erLhcoreClassRestAPIHandler::outputResponse(array('error' => false,'result' => true)); exit; } if ($rawAttributes == true){ $Errors = []; foreach ($requestBody as $attr => $value) { if ($attr != 'id') { $dep->{$attr} = $value; } } } else { $Errors = erLhcoreClassDepartament::validateDepartment($dep, array('payload_data' => $requestBody)); } if (count($Errors) == 0) { $dep->saveThis(); $DepartamentCustomWorkHours = erLhcoreClassModelDepartamentCustomWorkHours::getList(array('filter' => array('dep_id' => $dep->id),'sort' => 'date_from ASC')); $DepartamentCustomWorkHours = erLhcoreClassDepartament::validateDepartmentCustomWorkHours($dep, $DepartamentCustomWorkHours); erLhcoreClassDepartament::validateDepartmentProducts($dep); erLhcoreClassChatEventDispatcher::getInstance()->dispatch('department.modified',array('department' => $dep, 'payload_data' => $requestBody)); } else { throw new Exception(implode("\n",$Errors)); } erLhcoreClassRestAPIHandler::outputResponse(array ( 'error' => false, 'result' => $dep ) ); } catch (Exception $e) { http_response_code(400); echo erLhcoreClassRestAPIHandler::outputResponse(array( 'error' => true, 'result' => $e->getMessage() )); } exit();
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�