Security.php
1.88 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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: Security.php 29263 2012-03-31 05:45:08Z yexinhao $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
Cloud::loadFile('Service_Client_Restful');
class Cloud_Service_Client_Security extends Cloud_Service_Client_Restful {
protected static $_instance;
public static function getInstance($debug = false) {
if (!(self::$_instance instanceof self)) {
self::$_instance = new self($debug);
}
return self::$_instance;
}
public function __construct($debug = false) {
return parent::__construct($debug);
}
function securityReportUserRegister($batchData) {
return $this->_callMethod('security.user.register', array('sId' => $this->_sId, 'data' => $batchData));
}
function securityReportUserLogin($batchData) {
return $this->_callMethod('security.user.login', array('sId' => $this->_sId, 'data' => $batchData));
}
function securityReportBanUser($batchData) {
return $this->_callMethod('security.user.ban', array('sId' => $this->_sId, 'data' => $batchData));
}
function securityReportPost($batchData) {
return $this->_callMethod('security.post.handlePost', array('sId' => $this->_sId, 'data' => $batchData));
}
function securityReportDelPost($batchData) {
return $this->_callMethod('security.post.del', array('sId' => $this->_sId, 'data' => $batchData));
}
function securityReportOperation($operateType, $results, $operateTime = TIMESTAMP, $extra = array()) {
$data = array(
'sId' => $this->_sId,
'sSiteUid' => $this->siteUid,
'operateType' => $operateType,
'operateTime' => $operateTime,
'results' => $results,
'extra' => $extra
);
return $this->_callMethod('security.sitemaster.handleOperation', $data);
}
}