forked from asxzy/Program-O
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditSRAI.php
More file actions
284 lines (243 loc) · 7.63 KB
/
editSRAI.php
File metadata and controls
284 lines (243 loc) · 7.63 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<?php
/***************************************
* http://www.program-o.com
* PROGRAM O
* Version: 2.6.11
* FILE: editSRAI.php
* AUTHOR: Elizabeth Perreau and Dave Morton
* DATE: 05-26-2014
* DETAILS: Search the AIML table of the DB for desired categories
***************************************/
$thisFile = __FILE__;
/** @noinspection PhpIncludeInspection */
require_once('../config/global_config.php');
/** @noinspection PhpIncludeInspection */
require_once(_LIB_PATH_ . 'PDO_functions.php');
/** @noinspection PhpIncludeInspection */
require_once(_LIB_PATH_ . 'error_functions.php');
/** @noinspection PhpIncludeInspection */
require_once(_LIB_PATH_ . 'misc_functions.php');
$e_all = defined('E_DEPRECATED') ? E_ALL & ~E_DEPRECATED : E_ALL;
error_reporting($e_all);
ini_set('log_errors', true);
ini_set('error_log', _LOG_PATH_ . 'editSRAI.error.log');
ini_set('html_errors', false);
ini_set('display_errors', false);
$session_name = 'PGO_Admin';
session_name($session_name);
session_start();
$form_vars = clean_inputs();
$bot_id = (isset ($_SESSION['poadmin']['bot_id'])) ? $_SESSION['poadmin']['bot_id'] : 1;
if (empty ($_SESSION) || !isset ($_SESSION['poadmin']['uid']) || $_SESSION['poadmin']['uid'] == "")
{
error_log('Session vars: ' . print_r($_SESSION, true), 3, _LOG_PATH_ . 'session.txt');
exit (json_encode(array('error' => "No session found")));
}
// Open the DB
$action = (isset($form_vars['action'])) ? $form_vars['action'] : 'runSearch';
switch ($action)
{
case 'add':
exit (insertSRAI());
break;
case 'update':
exit (updateSRAI());
break;
case 'del':
exit (delSRAI($form_vars['id']));
break;
default:
exit (runSearch());
}
/**
* Function delSRAI
*
* * @param $id
* @return string
*/
function delSRAI($id)
{
if ($id != "")
{
/** @noinspection SqlDialectInspection */
$sql = "DELETE FROM `srai_lookup` WHERE `id` = :id LIMIT 1";
$params = array(':id' => $id);
$affectedRows = db_write($sql, $params, false, __FILE__, __FUNCTION__, __LINE__);
if ($affectedRows == 0)
{
$msg = 'Error SRAI couldn\'t be deleted - no changes made.</div>';
}
else {
$msg = 'Lookup entry has been deleted.';
}
}
else {
$msg = 'Error" Lookup entry couldn\'t be deleted - no changes made.';
}
return $msg;
}
/**
* Function runSearch
*
* @return mixed|string
*/
function runSearch()
{
global $bot_id, $form_vars, $group;
//file_put_contents(_LOG_PATH_ . "editSRAI.runSearch.form_vars.txt", print_r($form_vars, true));
extract($form_vars);
$search_fields = array('id', 'bot_id', 'pattern', 'template_id');
$searchTerms = array();
$searchParams = array(':bot_id' => $bot_id);
$where = array();
// parse column searches
foreach ($columns as $index => $column)
{
if ($column['data'] == 'Delete')
{
$column['data'] = 'id';
}
if (!empty($column['search']['value']))
{
$tmpSearch = $column['search']['value'];
$tmpSearch = str_replace('_', '\\_', $tmpSearch);
$tmpSearch = str_replace('%', '\\$', $tmpSearch);
$tmpName = $column['data'];
$addWhere = "`$tmpName` like '%$tmpSearch%'";
$where[] = $addWhere;
}
}
$searchTerms = (!empty($where)) ? implode(' AND ', $where) : 'TRUE';
// get search order
$oBy = array();
foreach ($order as $row)
{
$name = $columns[$row['column']]['data'];
if ($name == 'Delete') {
$name = 'id';
}
$dir = $row['dir'];
$tmpOrder = "$name $dir";
$oBy[] = $tmpOrder;
}
$orderBy = implode(', ', $oBy);
if (empty($oBy))
{
$orderBy = 'id';
}
/** @noinspection SqlDialectInspection */
$countSQL = "SELECT count(id) FROM `srai_lookup` WHERE `bot_id` = :bot_id AND ($searchTerms);";
$count = db_fetch($countSQL, $searchParams, __FILE__, __FUNCTION__, __LINE__);
$total = $count['count(id)'];
/** @noinspection SqlDialectInspection */
$sql = "SELECT id, bot_id, pattern, template_id FROM `srai_lookup` " . "WHERE `bot_id` = $bot_id AND ($searchTerms) ORDER BY $orderBy limit $start, $length;";
//file_put_contents(_LOG_PATH_ . "editSRAI.runSearch.sql.txt", print_r($sql, true));
$result = db_fetchAll($sql, $searchParams, __FILE__, __FUNCTION__, __LINE__);
$out = array(
'draw' => $draw,
'recordsTotal' => $total,
'recordsFiltered' => $total,
'data' => array()
);
//file_put_contents(_LOG_PATH_ . "editSRAI.runSearch.out1.txt", print_r($out, true));
if (empty($result))
{
exit(json_encode($out));
}
foreach ($result as $index => $row)
{
$row['template_id'] = htmlentities($row['template_id']);
$row['DT_RowId'] = $row['id'];
$out['data'][] = $row;
}
//file_put_contents(_LOG_PATH_ . "editSRAI.runSearch.out.txt", print_r($out, true));
return json_encode($out);
}
/**
* Function updateSRAI
*
* @return string
*/
function updateSRAI()
{
global $form_vars;
$id = trim($form_vars['id']);
$bot_id = trim($form_vars['bot_id']);
$pattern = _strtoupper(trim($form_vars['pattern']));
$template_id = trim($form_vars['template_id']);
if (empty($bot_id) || empty($pattern) || empty($template_id))
{
$msg = 'Please make sure that no fields are empty.([fields])';
$fArray = array();
switch (true)
{
/** @noinspection PhpMissingBreakStatementInspection */
case (empty($bot_id)):
$fields[] = 'bot_id';
/** @noinspection PhpMissingBreakStatementInspection */
case (empty($pattern)):
$fields[] = 'pattern';
case (empty($template_id)):
$fields[] = 'template_id';
}
$fields = implode(', ', $fArray);
$msg = str_replace('[fields]', $fields, $msg);
}
else
{
$params = array(
':id' => $id,
':bot_id' => $bot_id,
':pattern' => $pattern,
':template_id' => $template_id
);
/** @noinspection SqlDialectInspection */
$sql = "UPDATE `srai_lookup` SET `bot_id` = :bot_id, `pattern` = :pattern, `template_id` = :template_id WHERE `id` = :id;";
$affectedRows = db_write($sql, $params, false, __FILE__, __FUNCTION__, __LINE__);
if ($affectedRows > 0)
{
$msg = 'SRAI Updated.';
}
else {
$msg = 'There was an error updating the SRAI - no changes made.';
}
}
return $msg;
}
/**
* Function insertSRAI
*
* @return string
*/
function insertSRAI()
{
//db globals
global $msg, $form_vars;
$bot_id = trim($form_vars['bot_id']);
$pattern = trim($form_vars['pattern']);
$pattern = _strtoupper($pattern);
$template_id = trim($form_vars['template_id']);
/** @noinspection SqlDialectInspection */
$sql = 'INSERT INTO `srai_lookup` (`id`, `bot_id`, `pattern`, `template_id`) VALUES (NULL, :bot_id, :pattern, :template_id);';
$params = array(
':bot_id' => $bot_id,
':pattern' => $pattern,
':template_id' => $template_id
);
if ((empty($bot_id) || empty($pattern) || empty($template_id)))
{
$msg = 'No fields can be empty.';
}
else
{
$affectedRows = db_write($sql, $params, false, __FILE__, __FUNCTION__, __LINE__);
if ($affectedRows > 0)
{
$msg = "SRAI added.";
}
else {
$msg = "SRAI not updated - no changes made.";
}
}
return $msg;
}