-
Notifications
You must be signed in to change notification settings - Fork 36
/
vk.api.php
88 lines (77 loc) · 2.13 KB
/
vk.api.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
<?php
class VK{
/**
* Токен
* @var string
*/
private $token = '';
/**
* @param string $token Токен
*/
public function __construct($token){
$this->token = $token;
}
/**
* Уведомить об онлайне
*/
public function ping(){
$this->request('account.setOnline');
}
/**
* Получить список диалогов
* @return mixed|null
*/
public function dialogs(){
return $this->request('messages.getDialogs',['count'=>10]);
}
/**
* Получить список не прочитаных диалогов
* @return array
*/
public function unread(){
$response = $this->request('messages.getDialogs',['count'=>10,'unread'=>1]);
if(!property_exists($response,'response')){
return array();
}else{
return $response->response->items;
}
}
/**
* Отметить как прочитаное
* @param int $userID Идентификатор пользователя
* @return mixed|null
*/
public function markAsRead($userID){
return $this->request('messages.markAsRead',['peer_id'=>$userID]);
}
/**
* Показать активность
* @param int $userID Идентификатор пользователя
* @param string $type Тип уведомления
* @return mixed|null
*/
public function setActivity($userID,$type='typing'){
return $this->request('messages.setActivity',['user_id'=>$userID,'type'=>$type]);
}
/**
* Отправить сообщение пользователю
* @param int $userID Идентификатор пользователя
* @param string $message Сообщение
* @return mixed|null
*/
public function sendMessage($userID,$message){
return $this->request('messages.send',['message'=>$message,'user_id'=>$userID]);
}
/**
* Запрос к VK
* @param string $method Метод
* @param array $params Параметры
* @return mixed|null
*/
public function request($method,$params=array()){
$url = 'https://api.vk.com/method/'.$method;
$params['access_token']=$this->token;
//$params['v']='5.14';
return json_decode(file_get_contents($url.'?'.http_build_query($params)), true);
}
}