Skip to content
Snippets Groups Projects
Verified Commit eeb4edd7 authored by Damien's avatar Damien
Browse files

FEAT #8156 Send resource to external app

parent 0d381e83
No related branches found
No related tags found
No related merge requests found
...@@ -1487,7 +1487,7 @@ function get_value_fields($values, $field) ...@@ -1487,7 +1487,7 @@ function get_value_fields($values, $field)
* @param $table String Table * @param $table String Table
* @param $formValues String Values of the form to load * @param $formValues String Values of the form to load
* *
* @return false or an array * @return array
* $data['result'] : res_id of the new file followed by # * $data['result'] : res_id of the new file followed by #
* $data['history_msg'] : Log complement (empty by default) * $data['history_msg'] : Log complement (empty by default)
* $data['page_result'] : Page to load when action is done and modal closed * $data['page_result'] : Page to load when action is done and modal closed
...@@ -2005,17 +2005,31 @@ function manage_form($arrId, $history, $actionId, $label_action, $status, $collI ...@@ -2005,17 +2005,31 @@ function manage_form($arrId, $history, $actionId, $label_action, $status, $collI
include_once 'modules'.DIRECTORY_SEPARATOR.'tags'.DIRECTORY_SEPARATOR.'tags_update.php'; include_once 'modules'.DIRECTORY_SEPARATOR.'tags'.DIRECTORY_SEPARATOR.'tags_update.php';
} }
// $_SESSION['indexing'] = array();
unset($_SESSION['upfile']); unset($_SESSION['upfile']);
unset($_SESSION['data']); unset($_SESSION['data']);
$_SESSION['action_error'] = _NEW_DOC_ADDED; $_SESSION['action_error'] = _NEW_DOC_ADDED;
$_SESSION['indexation'] = true; $_SESSION['indexation'] = true;
return array( if (\SrcCore\models\CurlModel::isEnabled(['curlCallId' => 'sendResourceToExternalApplication'])) {
$config = \SrcCore\models\CurlModel::getConfigByCallId(['curlCallId' => 'sendResourceToExternalApplication']);
$select = [];
foreach ($config['data'] as $value) {
$select[] = $value;
}
$document = \Resource\models\ResModel::getOnView(['select' => $select, 'where' => ['res_id = ?'], 'data' => [$resId]]);
$response = \SrcCore\models\CurlModel::exec(['curlCallId' => 'sendResourceToExternalApplication', 'bodyData' => $document[0]]);
// \Resource\models\ResModel::update(['set' => ['custom_t1' => $response['publikId']], 'where' => ['res_id = ?'], 'data' => [$document['res_id']]]);
}
return [
'result' => $resId.'#', 'result' => $resId.'#',
'history_msg' => '', 'history_msg' => '',
'page_result' => $_SESSION['config']['businessappurl'] 'page_result' => $_SESSION['config']['businessappurl']
.'index.php?page=details&dir=indexing_searching' .'index.php?page=details&dir=indexing_searching'
.'&coll_id='.$collId.'&id='.$resId, .'&coll_id='.$collId.'&id='.$resId,
); ];
} }
...@@ -16,4 +16,18 @@ ...@@ -16,4 +16,18 @@
<value>custom_t1</value> <value>custom_t1</value>
</data> </data>
</call> </call>
<call>
<id>sendResourceToExternalApplication</id>
<enabled>false</enabled>
<url></url>
<method>POST</method>
<data>
<key>res_id</key>
<value>res_id</value>
</data>
<data>
<key>status</key>
<value>status</value>
</data>
</call>
</ROOT> </ROOT>
...@@ -127,4 +127,23 @@ class CurlModel ...@@ -127,4 +127,23 @@ class CurlModel
return $curlConfig; return $curlConfig;
} }
public static function isEnabled(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['curlCallId']);
ValidatorModel::stringType($aArgs, ['curlCallId']);
$loadedXml = CoreConfigModel::getXmlLoaded(['path' => 'apps/maarch_entreprise/xml/curlCall.xml']);
if ($loadedXml) {
foreach ($loadedXml->call as $call) {
if ((string)$call->id == $aArgs['curlCallId']) {
if (!empty((string)$call->enabled) && (string)$call->enabled == 'true') {
return true;
}
}
}
}
return false;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment