forked from Hanson/vbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSync.php
100 lines (84 loc) · 2.57 KB
/
Sync.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
<?php
/**
* Created by PhpStorm.
* User: HanSon
* Date: 2017/1/14
* Time: 11:21.
*/
namespace Hanson\Vbot\Core;
use Hanson\Vbot\Exceptions\WebSyncException;
use Hanson\Vbot\Foundation\Vbot;
class Sync
{
/**
* @var Vbot
*/
private $vbot;
public function __construct(Vbot $vbot)
{
$this->vbot = $vbot;
}
/**
* check if got a new message.
*
* @return array|bool
*/
public function checkSync()
{
$content = $this->vbot->http->get($this->vbot->config['server.uri.push'].'/synccheck', ['timeout' => 35, 'query' => [
'r' => time(),
'sid' => $this->vbot->config['server.sid'],
'uin' => $this->vbot->config['server.uin'],
'skey' => $this->vbot->config['server.skey'],
'deviceid' => $this->vbot->config['server.deviceId'],
'synckey' => $this->vbot->config['server.syncKeyStr'],
'_' => time(),
]]);
if (!$content) {
$this->vbot->console->log('checkSync no response');
return false;
}
return preg_match('/window.synccheck=\{retcode:"(\d+)",selector:"(\d+)"\}/', $content, $matches) ?
[$matches[1], $matches[2]] : false;
}
/**
* get a message.
*
* @throws WebSyncException
*
* @return mixed|string
*/
public function sync()
{
$url = sprintf($this->vbot->config['server.uri.base'].'/webwxsync?sid=%s&skey=%s&lang=zh_CN&pass_ticket=%s',
$this->vbot->config['server.sid'],
$this->vbot->config['server.skey'],
$this->vbot->config['server.passTicket']
);
$result = $this->vbot->http->json($url, [
'BaseRequest' => $this->vbot->config['server.baseRequest'],
'SyncKey' => $this->vbot->config['server.syncKey'],
'rr' => ~time(),
], true);
if ($result && $result['BaseResponse']['Ret'] == 0) {
$this->generateSyncKey($result);
}
return $result;
}
/**
* generate a sync key.
*
* @param $result
*/
public function generateSyncKey($result)
{
$this->vbot->config['server.syncKey'] = $result['SyncKey'];
$syncKey = [];
if (is_array($this->vbot->config['server.syncKey.List'])) {
foreach ($this->vbot->config['server.syncKey.List'] as $item) {
$syncKey[] = $item['Key'].'_'.$item['Val'];
}
}
$this->vbot->config['server.syncKeyStr'] = implode('|', $syncKey);
}
}