Merge branch 'develop' into main
commit
0e427e97c9
|
@ -442,6 +442,12 @@ class CRUDComponent extends Component
|
||||||
if (empty($data)) {
|
if (empty($data)) {
|
||||||
throw new NotFoundException(__('Invalid {0}.', $this->ObjectAlias));
|
throw new NotFoundException(__('Invalid {0}.', $this->ObjectAlias));
|
||||||
}
|
}
|
||||||
|
if (isset($params['beforeSave'])) {
|
||||||
|
$data = $params['beforeSave']($data);
|
||||||
|
if ($data === false) {
|
||||||
|
throw new NotFoundException(__('Could not save {0} due to the input failing to meet expectations. Your input is bad and you should feel bad.', $this->ObjectAlias));
|
||||||
|
}
|
||||||
|
}
|
||||||
$this->Controller->set('id', $data['id']);
|
$this->Controller->set('id', $data['id']);
|
||||||
$this->Controller->set('data', $data);
|
$this->Controller->set('data', $data);
|
||||||
$this->Controller->set('bulkEnabled', false);
|
$this->Controller->set('bulkEnabled', false);
|
||||||
|
@ -453,6 +459,7 @@ class CRUDComponent extends Component
|
||||||
$isBulk = count($ids) > 1;
|
$isBulk = count($ids) > 1;
|
||||||
$bulkSuccesses = 0;
|
$bulkSuccesses = 0;
|
||||||
foreach ($ids as $id) {
|
foreach ($ids as $id) {
|
||||||
|
$skipExecution = false;
|
||||||
$data = $this->Table->find()->where([$this->Table->getAlias() . '.id' => $id]);
|
$data = $this->Table->find()->where([$this->Table->getAlias() . '.id' => $id]);
|
||||||
if (!empty($params['conditions'])) {
|
if (!empty($params['conditions'])) {
|
||||||
$data->where($params['conditions']);
|
$data->where($params['conditions']);
|
||||||
|
@ -460,6 +467,14 @@ class CRUDComponent extends Component
|
||||||
if (!empty($params['contain'])) {
|
if (!empty($params['contain'])) {
|
||||||
$data->contain($params['contain']);
|
$data->contain($params['contain']);
|
||||||
}
|
}
|
||||||
|
if (isset($params['beforeSave'])) {
|
||||||
|
$data = $params['beforeSave']($data);
|
||||||
|
if ($data === false) {
|
||||||
|
$skipExecution = true;
|
||||||
|
$success = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!$skipExecution) {
|
||||||
$data = $data->first();
|
$data = $data->first();
|
||||||
if (!empty($data)) {
|
if (!empty($data)) {
|
||||||
$success = $this->Table->delete($data);
|
$success = $this->Table->delete($data);
|
||||||
|
@ -471,6 +486,7 @@ class CRUDComponent extends Component
|
||||||
$bulkSuccesses++;
|
$bulkSuccesses++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
$message = $this->getMessageBasedOnResult(
|
$message = $this->getMessageBasedOnResult(
|
||||||
$bulkSuccesses == count($ids),
|
$bulkSuccesses == count($ids),
|
||||||
$isBulk,
|
$isBulk,
|
||||||
|
|
|
@ -57,6 +57,7 @@ class EncryptionKeysController extends AppController
|
||||||
|
|
||||||
private function buildBeforeSave(array $params, $currentUser, array &$orgConditions, array &$individualConditions, array &$dropdownData): array
|
private function buildBeforeSave(array $params, $currentUser, array &$orgConditions, array &$individualConditions, array &$dropdownData): array
|
||||||
{
|
{
|
||||||
|
if (empty($currentUser['role']['perm_admin'])) {
|
||||||
$orgConditions = [
|
$orgConditions = [
|
||||||
'id' => $currentUser['organisation_id']
|
'id' => $currentUser['organisation_id']
|
||||||
];
|
];
|
||||||
|
@ -67,7 +68,9 @@ class EncryptionKeysController extends AppController
|
||||||
}
|
}
|
||||||
$params['beforeSave'] = function($entity) use($currentUser) {
|
$params['beforeSave'] = function($entity) use($currentUser) {
|
||||||
if ($entity['owner_model'] === 'organisation') {
|
if ($entity['owner_model'] === 'organisation') {
|
||||||
$entity['owner_id'] = $currentUser['organisation_id'];
|
if ($entity['owner_id'] !== $currentUser['organisation_id']) {
|
||||||
|
throw new MethodNotAllowedException(__('Selected organisation cannot be linked by the current user.'));
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if ($currentUser['role']['perm_org_admin']) {
|
if ($currentUser['role']['perm_org_admin']) {
|
||||||
$this->loadModel('Alignments');
|
$this->loadModel('Alignments');
|
||||||
|
@ -87,17 +90,12 @@ class EncryptionKeysController extends AppController
|
||||||
}
|
}
|
||||||
return $entity;
|
return $entity;
|
||||||
};
|
};
|
||||||
|
}
|
||||||
$this->loadModel('Organisations');
|
$this->loadModel('Organisations');
|
||||||
$this->loadModel('Individuals');
|
$this->loadModel('Individuals');
|
||||||
$dropdownData = [
|
$dropdownData = [
|
||||||
'organisation' => $this->Organisations->find('list', [
|
'organisation' => $this->Organisations->find('list')->order(['name' => 'asc'])->where($orgConditions)->all()->toArray(),
|
||||||
'sort' => ['name' => 'asc'],
|
'individual' => $this->Individuals->find('list')->order(['email' => 'asc'])->where($individualConditions)->all()->toArray()
|
||||||
'conditions' => $orgConditions
|
|
||||||
]),
|
|
||||||
'individual' => $this->Individuals->find('list', [
|
|
||||||
'sort' => ['email' => 'asc'],
|
|
||||||
'conditions' => $individualConditions
|
|
||||||
])
|
|
||||||
];
|
];
|
||||||
return $params;
|
return $params;
|
||||||
}
|
}
|
||||||
|
@ -111,9 +109,7 @@ class EncryptionKeysController extends AppController
|
||||||
$params = [
|
$params = [
|
||||||
'redirect' => $this->referer()
|
'redirect' => $this->referer()
|
||||||
];
|
];
|
||||||
if (empty($currentUser['role']['perm_admin'])) {
|
|
||||||
$params = $this->buildBeforeSave($params, $currentUser, $orgConditions, $individualConditions, $dropdownData);
|
$params = $this->buildBeforeSave($params, $currentUser, $orgConditions, $individualConditions, $dropdownData);
|
||||||
}
|
|
||||||
$this->CRUD->add($params);
|
$this->CRUD->add($params);
|
||||||
$responsePayload = $this->CRUD->getResponsePayload();
|
$responsePayload = $this->CRUD->getResponsePayload();
|
||||||
if (!empty($responsePayload)) {
|
if (!empty($responsePayload)) {
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
namespace CommonConnectorTools;
|
namespace CommonConnectorTools;
|
||||||
use Cake\ORM\Locator\LocatorAwareTrait;
|
use Cake\ORM\Locator\LocatorAwareTrait;
|
||||||
|
use Cake\Log\Log;
|
||||||
|
use Cake\Log\Engine\FileLog;
|
||||||
|
|
||||||
class CommonConnectorTools
|
class CommonConnectorTools
|
||||||
{
|
{
|
||||||
|
@ -20,6 +22,35 @@ class CommonConnectorTools
|
||||||
const STATE_CANCELLED = 'Request cancelled';
|
const STATE_CANCELLED = 'Request cancelled';
|
||||||
const STATE_DECLINED = 'Request declined by remote';
|
const STATE_DECLINED = 'Request declined by remote';
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
Log::setConfig("LocalToolDebug", [
|
||||||
|
'className' => FileLog::class,
|
||||||
|
'path' => LOGS,
|
||||||
|
'file' => "{$this->connectorName}-debug",
|
||||||
|
'scopes' => [$this->connectorName],
|
||||||
|
'levels' => ['notice', 'info', 'debug'],
|
||||||
|
]);
|
||||||
|
Log::setConfig("LocalToolError", [
|
||||||
|
'className' => FileLog::class,
|
||||||
|
'path' => LOGS,
|
||||||
|
'file' => "{$this->connectorName}-error",
|
||||||
|
'scopes' => [$this->connectorName],
|
||||||
|
'levels' => ['warning', 'error', 'critical', 'alert', 'emergency'],
|
||||||
|
]);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function logDebug($message)
|
||||||
|
{
|
||||||
|
Log::debug($message, [$this->connectorName]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function logError($message, $scope=[])
|
||||||
|
{
|
||||||
|
Log::error($message, [$this->connectorName]);
|
||||||
|
}
|
||||||
|
|
||||||
public function addExposedFunction(string $functionName): void
|
public function addExposedFunction(string $functionName): void
|
||||||
{
|
{
|
||||||
$this->exposedFunctions[] = $functionName;
|
$this->exposedFunctions[] = $functionName;
|
||||||
|
|
|
@ -188,6 +188,7 @@ class MispConnector extends CommonConnectorTools
|
||||||
$settings = json_decode($connection->settings, true);
|
$settings = json_decode($connection->settings, true);
|
||||||
$http = $this->genHTTPClient($connection, $options);
|
$http = $this->genHTTPClient($connection, $options);
|
||||||
$url = sprintf('%s%s', $settings['url'], $relativeURL);
|
$url = sprintf('%s%s', $settings['url'], $relativeURL);
|
||||||
|
$this->logDebug(sprintf('%s %s %s', __('Posting data') . PHP_EOL, "POST {$url}" . PHP_EOL, json_encode($data)));
|
||||||
return $http->post($url, $data, $options);
|
return $http->post($url, $data, $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -239,14 +240,18 @@ class MispConnector extends CommonConnectorTools
|
||||||
if (!empty($params['softError'])) {
|
if (!empty($params['softError'])) {
|
||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
throw new NotFoundException(__('Could not retrieve the requested resource.'));
|
$errorMsg = __('Could not post to the requested resource for `{0}`. Remote returned:', $url) . PHP_EOL . $response->getStringBody();
|
||||||
|
$this->logError($errorMsg);
|
||||||
|
throw new NotFoundException($errorMsg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function postData(string $url, array $params): Response
|
private function postData(string $url, array $params): Response
|
||||||
{
|
{
|
||||||
if (empty($params['connection'])) {
|
if (empty($params['connection'])) {
|
||||||
throw new NotFoundException(__('No connection object received.'));
|
$errorMsg = __('No connection object received.');
|
||||||
|
$this->logError($errorMsg);
|
||||||
|
throw new NotFoundException($errorMsg);
|
||||||
}
|
}
|
||||||
$url = $this->urlAppendParams($url, $params);
|
$url = $this->urlAppendParams($url, $params);
|
||||||
if (!is_string($params['body'])) {
|
if (!is_string($params['body'])) {
|
||||||
|
@ -256,7 +261,9 @@ class MispConnector extends CommonConnectorTools
|
||||||
if ($response->isOk()) {
|
if ($response->isOk()) {
|
||||||
return $response;
|
return $response;
|
||||||
} else {
|
} else {
|
||||||
throw new NotFoundException(__('Could not post to the requested resource. Remote returned:') . PHP_EOL . $response->getStringBody());
|
$errorMsg = __('Could not post to the requested resource for `{0}`. Remote returned:', $url) . PHP_EOL . $response->getStringBody();
|
||||||
|
$this->logError($errorMsg);
|
||||||
|
throw new NotFoundException($errorMsg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue