-
Notifications
You must be signed in to change notification settings - Fork 153
/
agents.php
53 lines (44 loc) · 1.37 KB
/
agents.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* Copyright (c) UNA, Inc - https://una.io
* MIT License - https://opensource.org/licenses/MIT
*
* @defgroup UnaCore UNA Core
* @{
*/
require_once('./inc/header.inc.php');
require_once(BX_DIRECTORY_PATH_INC . "utils.inc.php");
bx_import('BxDolLanguages');
$sTool = bx_process_input(bx_get('t'));
/**
* Work with Providers
*/
if(($iProviderId = bx_get('p')) !== false) {
$iProviderId = bx_process_input($iProviderId, BX_DATA_INT);
if(!$iProviderId)
exit;
$oProvider = BxDolAIProvider::getObjectInstance($iProviderId);
if(!$oProvider)
exit;
if(($sAction = bx_get('a')) !== false) {
$sAction = 'processAction' . bx_gen_method_name(bx_process_input($sAction));
if(method_exists($oProvider, $sAction))
$oProvider->$sAction();
}
else {
$mixedResponce = $oProvider->call('products/7433953116300.json', ['fields' => 'id,title,handle,body_html,tags,variants'], 'get');
print_r($mixedResponce);
}
}
/**
* Work with Assistants
*/
if($sTool == 'asst' && ($iId = bx_get('id')) !== false) {
$oAssistant = BxDolAIAssistant::getObjectInstance((int)$iId);
if(($sAction = bx_get('a')) !== false) {
$sAction = 'processAction' . bx_gen_method_name(bx_process_input($sAction));
if(method_exists($oAssistant, $sAction))
$oAssistant->$sAction();
}
}
/** @} */