forked from kokororin/typecho-plugin-Access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Action.php
97 lines (85 loc) · 2.82 KB
/
Action.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
<?php
require_once __DIR__ . '/Access_Bootstrap.php';
class Access_Action extends Typecho_Widget implements Widget_Interface_Do
{
private $access;
public function __construct($request, $response, $params = null)
{
parent::__construct($request, $response, $params);
$this->access = new Access_Core();
}
public function execute()
{}
public function action()
{}
public function writeLogs()
{
$image = base64_decode('R0lGODlhAQABAIAAAAAAAP///yH5BAQUAP8ALAAAAAABAAEAAAICRAEAOw==');
$this->response->setContentType('image/gif');
if ($this->access->config->writeType == 1) {
$this->access->writeLogs(null, $this->request->u, $this->request->cid, $this->request->mid);
}
echo $image;
}
public function ip()
{
$ip = $this->request->get('ip');
try {
$this->checkAuth();
$response = Access_Ip::find($ip);
if (is_array($response)) {
$response = array(
'code' => 0,
'data' => implode(' ', $response),
);
} else {
throw new Exception('解析ip失败');
}
} catch (Exception $e) {
try {
$http = Typecho_Http_Client::get();
$result = $http->send('https://tools.keycdn.com/geo.json?host=' . $ip);
$result = Json::decode($result, true);
if ($result['status'] == 'success') {
$response = array(
'code' => 0,
'data' => $result['data']['geo']['country_name'] . ' ' . $result['data']['geo']['city'],
);
}
} catch (Exception $e) {
$response = array(
'code' => 100,
'data' => '很抱歉,ipip.net查询无结果,同时你的服务器无法连接fallback接口(tools.keycdn.com)',
);
}
}
$this->response->throwJson($response);
}
public function deleteLogs()
{
try {
$this->checkAuth();
$data = @file_get_contents('php://input');
$data = Json::decode($data, true);
if (!is_array($data)) {
throw new Exception('params invalid');
}
$this->access->deleteLogs($data);
$response = array(
'code' => 0,
);
} catch (Exception $e) {
$response = array(
'code' => 100,
'data' => $e->getMessage(),
);
}
$this->response->throwJson($response);
}
protected function checkAuth()
{
if (!$this->access->isAdmin()) {
throw new Exception('Access Denied');
}
}
}