-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathindex.php
172 lines (131 loc) · 5.62 KB
/
index.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
<?php
require_once 'vendor/autoload.php';
require_once 'config.php';
$vk_config = array(
'app_id' => $config['app_id'],
'api_secret' => $config['app_secret'],
'access_token' => $config['token']
);
try {
$vk = new models\API($vk_config);
$accountinfo = $vk->getUserInfo();
$friendsget = $vk->getFriendsRequest();
$vk->setOnline();
} catch (VK\VKException $error) {
echo $error->getMessage();
exit;
}
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Бот - <?= $accountinfo['first_name'] ?> <?= $accountinfo['last_name'] ?></title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
</head>
<body>
<script>
var interval = null;
function updateShouts() {
$('#shoutbox').load('autoupdate.php');
}
function updateNews() {
$('#news').load('autoupdatenews.php');
}
function updateFriends() {
$('#friendsadd').load('autofriends.php');
}
$(document).ready(function () {
$('#check').change(function(){
if ($('#check').is(':checked')) {
$('#status').text('Работает');
$('#preloader').show("slow");
$('#notrunned').hide("slow");
$('#shoutbox').load('autoupdate.php');
interval = setInterval("updateShouts()", 4000);
} else {
$('#status').text('Не работает');
clearInterval(interval);
}})
$('#reposts').change(function(){
if ($('#reposts').is(':checked')) {
$('#preloader2').show("slow");
$('#notrunned2').hide("slow");
$('#news').load('autoupdatenews.php');
interval = setInterval("updateNews()", 1800000);
} else {
clearInterval(interval);
}})
$('#friends').change(function(){
if ($('#friends').is(':checked')) {
$('#friendsadd').load('autofriends.php');
interval = setInterval("updateFriends()", 1800000);
} else {
clearInterval(interval);
}})
});
</script>
<div class="container">
<div class="row">
<div class="col-lg-4">
<h3>Информация</h3>
<b>Автоматический чат?</b> <input type="checkbox" id="check" /><br />
<b>Рандомные репосты?</b> <input type="checkbox" id="reposts" /><br />
<b>Автоподтверждение друзей?</b> <input type="checkbox" id="friends" /><br />
<img width="200px" src="<?= $accountinfo['photo_max'] ?>" class="img-thumbnail"/>
<h3><?= $accountinfo['first_name'] ?> <?= $accountinfo['last_name'] ?></h3>
<h5>Статистика : </h5>
Статус: <? if ($accountinfo['online'] == '1') {
echo '<font color="green">Online</font>';
} else {
echo '<font color="red">Offline</font>';
} ?><br/>
Друзей: <?= $accountinfo['counters']['friends'] ?><br/>
Друзей онлайн: <?= $accountinfo['counters']['online_friends'] ?><br/>
Подписчиков: <?= $accountinfo['counters']['followers'] ?><br/>
Авточат сейчас: <span id="status">Выключен</span><br />
<hr />
<h3>Заявки в друзья</h3>
<?
for ($i = 0; $i < count($friendsget); $i++) {
$friendinfo = curl("https://api.vk.com/method/users.get?fields=photo_max&user_ids=" . $friendsget[$i]);
?>
<div class="media">
<div class="media-left">
<a href="http://vk.com/id<?= $friendsget[$i] ?>">
<img class="media-object" width="50px" src="<?= $friendinfo['response'][0]['photo_max'] ?>"
alt="<?= $friendinfo['response'][0]['first_name'] ?> <?= $friendinfo['response'][0]['last_name'] ?>">
</a>
</div>
<div class="media-body">
<h4 class="media-heading"><?= $friendinfo['response'][0]['first_name'] ?> <?= $friendinfo['response'][0]['last_name'] ?></h4>
</div>
</div>
<?
} ?>
</div>
<div class="col-lg-4" id="shoutbox">
<h3>История сообщений</h3>
<span id="notrunned">Для того, чтобы включить бота - воспользуйтесь кнопкой слева.</span>
<span id="preloader" style="display:none; text-align: center;"><img width="150px"
src="preloader.gif"/></span>
</div>
<div class="col-lg-4" id="news">
<h3>Лента</h3>
<span id="notrunned2">Для того, чтобы включить автоматический репостинг - воспользуйтесь кнопкой слева.</span>
<span id="preloader2" style="display:none; text-align: center;"><img width="150px"
src="preloader.gif"/></span>
</div>
</div>
<div class="row">
<div class="col-lg-4">
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
</div>
</div>
</div>
<div id="friendsadd" style="display:none;"> </div>
</body>
</html>