forked from asxzy/Program-O
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
148 lines (137 loc) · 4.72 KB
/
index.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
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
<?php
/***************************************
* http://www.program-o.com
* PROGRAM O
* Version: 2.6.8
* FILE: gui/plain/index.php
* AUTHOR: Elizabeth Perreau and Dave Morton
* DATE: MAY 17TH 2014
* DETAILS: simple example gui
***************************************/
$display = "";
$thisFile = __FILE__;
if (!file_exists('../../config/global_config.php'))
{
header('Location: ../../install/install_programo.php');
}
/** @noinspection PhpIncludeInspection */
require_once('../../config/global_config.php');
/** @noinspection PhpIncludeInspection */
require_once('../../chatbot/conversation_start.php');
$debug_div = '';
$hideSP = '';
$get_vars = (!empty($_GET)) ? filter_input_array(INPUT_GET) : array();
$post_vars = (!empty($_POST)) ? filter_input_array(INPUT_POST) : array();
$form_vars = array_merge($post_vars, $get_vars); // POST overrides and overwrites GET
$bot_id = (!empty($form_vars['bot_id'])) ? $form_vars['bot_id'] : 1;
$say = (!empty($form_vars['say'])) ? $form_vars['say'] : '';
$convo_id = session_id();
$format = (!empty($form_vars['format'])) ? _strtolower($form_vars['format']) : 'html';
if (ERROR_DEBUGGING)
{
$convo_id = 'DEBUG';
$debug_content = (!empty($form_vars)) ? file_get_contents(_DEBUG_PATH_ . "{$convo_id}.txt") : '';
$debug_div = <<<endDebugDiv
<div id="debugDiv" placeholder="debug content">Current Debug File:\n\n$debug_content</div>
endDebugDiv;
$hideSP = 'display: none;';
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Program O AIML PHP Chatbot</title>
<link rel="icon" href="./favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
<meta name="Description" content="A Free Open Source AIML PHP MySQL Chatbot called Program-O. Version2"/>
<meta name="keywords" content="Open Source, AIML, PHP, MySQL, Chatbot, Program-O, Version2"/>
<style type="text/css">
body {
height: 100%;
margin: 0;
padding: 0;
}
#responses {
width: 90%;
min-width: 515px;
height: auto;
min-height: 150px;
max-height: 500px;
overflow: auto;
border: 3px inset #666;
margin-left: auto;
margin-right: auto;
margin-bottom: 1em;
padding: 5px;
box-sizing: border-box;
}
#debugDiv {
width: 90%;
min-height: 1.2em;
max-height: 55vh;
border: 3px inset #666;
margin-left: auto;
margin-right: auto;
white-space: pre;
font-family: "Lucida Console", Monaco, monospace;
font-size: large;
padding: 1em;
overflow: auto;
}
#input {
width: 90%;
min-width: 535px;
margin-bottom: 15px;
margin-left: auto;
margin-right: auto;
}
#shameless_plug {
position: absolute;
right: 10px;
bottom: 10px;
border: 1px solid red;
box-sizing: border-box;
-moz-box-sizing: border-box;
box-shadow: 2px 2px 2px 0 #808080;
padding: 5px;
border-radius: 5px;
<?php echo $hideSP ?>
}
#convo_id {
position: absolute;
top: 10px;
right: 10px;
border: 1px solid red;
box-sizing: border-box;
-moz-box-sizing: border-box;
box-shadow: 2px 2px 2px 0 #808080;
padding: 5px;
border-radius: 5px;
}
</style>
</head>
<body onload="document.getElementById('say').focus()">
<h3>Program O Example GUI Page - HTML</h3>
<!-- The DIV below is for debugging purposes, and can be safely removed, if desired. -->
<div id="convo_id">Conversion ID: <?php echo $convo_id; ?></div>
<form name="chatform" method="post" action="index.php#end"
onsubmit="if(document.getElementById('say').value == '') return false;">
<div id="input">
<label for="say">Say:</label>
<input type="text" name="say" id="say" size="70"/>
<input type="submit" name="submit" id="btn_say" value="say"/>
<input type="hidden" name="convo_id" id="convo_id" value="<?php echo $convo_id; ?>"/>
<input type="hidden" name="bot_id" id="bot_id" value="<?php echo $bot_id; ?>"/>
<input type="hidden" name="format" id="format" value="<?php echo $format; ?>"/>
</div>
</form>
<div id="responses">
<?php echo $display . '<div id="end"> </div>' . PHP_EOL ?>
</div>
<?php echo $debug_div ?>
<div id="shameless_plug">
To get your very own chatbot, visit <a href="http://www.program-o.com">program-o.com</a>!
</div>
</body>
</html>