-
Notifications
You must be signed in to change notification settings - Fork 2
/
admin.php
197 lines (185 loc) · 8.67 KB
/
admin.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<?php
error_reporting(0);
include('autoloader.php');
ob_start();
$admin=false;
$user=array();
$menu_addon='';
if(isset($_COOKIE['my_vizplus_login'])){
if($_COOKIE['my_vizplus_password']==md5($users_arr[$_COOKIE['my_vizplus_login']])){
$admin=true;
$user=$_COOKIE['my_vizplus_login'];
$menu_addon='<a class="menu-el color1" href="/admin.php?action=logout">Выход</a>';
}
}
$ip='';
if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])){
$ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
}
else{
if(isset($_SERVER['REMOTE_ADDR'])){
$ip=$_SERVER['REMOTE_ADDR'];
}
}
$title='Администрирование';
$action=$_GET['action'];
if($admin){
if('paid_subscriptions'==$action){
$title='Записи в таблице «Платные подписки»';
if($_GET['hide']){
$db->sql('UPDATE `paid_subscriptions` SET `status`=1 WHERE `creator`=\''.$db->prepare($_GET['hide']).'\' LIMIT 1');
header('location:/admin.php?action=paid_subscriptions&caption=ok');
exit;
}
if($_GET['show']){
$db->sql('UPDATE `paid_subscriptions` SET `status`=0 WHERE `creator`=\''.$db->prepare($_GET['show']).'\' LIMIT 1');
header('location:/admin.php?action=paid_subscriptions&caption=ok');
exit;
}
print '<a class="right" href="/admin.php">← вернуться</a>';
if('ok'==$_GET['caption'])
print '<p class="green">Операция успешно выполнена</p>';
print 'Список скрытых подписок:';
$q=$db->sql('SELECT * FROM `paid_subscriptions` WHERE `status`=1 ORDER BY `creator` ASC');
while($m=$db->row($q)){
print '<div style="margin-top:5px;line-height:25px;"><a href="/admin.php?action='.$action.'&show='.$m['creator'].'" class="inline-button small no-margin" style="font-size:14px;margin-right:10px !important;">показывать</a> '.$m['creator'].($m['sub_count']?'<span class="green"> — подписчиков: '.$m['sub_count'].'</span>':'').'</div>';
}
print '<hr>Список отображаемых подписок:';
$q=$db->sql('SELECT * FROM `paid_subscriptions` WHERE `status`=0 ORDER BY `creator` ASC');
while($m=$db->row($q)){
print '<div style="margin-top:5px;line-height:25px;"><a href="/admin.php?action='.$action.'&hide='.$m['creator'].'" class="inline-button small no-margin red" style="font-size:14px;margin-right:10px !important;">скрыть</a> '.$m['creator'].($m['sub_count']?'<span class="green"> — подписчиков: '.$m['sub_count'].'</span>':'').'</div>';
}
}
else
if('accounts_on_sale'==$action){
$title='Записи в таблице «Аккаунты на продаже»';
if($_GET['hide']){
$db->sql('UPDATE `accounts_on_sale` SET `status`=1 WHERE `account`=\''.$db->prepare($_GET['hide']).'\' LIMIT 1');
header('location:/admin.php?action=accounts_on_sale&caption=ok');
exit;
}
if($_GET['show']){
$db->sql('UPDATE `accounts_on_sale` SET `status`=0 WHERE `account`=\''.$db->prepare($_GET['show']).'\' LIMIT 1');
header('location:/admin.php?action=accounts_on_sale&caption=ok');
exit;
}
print '<a class="right" href="/admin.php">← вернуться</a>';
if('ok'==$_GET['caption'])
print '<p class="green">Операция успешно выполнена</p>';
print 'Список скрытых аккаунтов:';
$q=$db->sql('SELECT * FROM `accounts_on_sale` WHERE `status`=1 ORDER BY `account` ASC');
while($m=$db->row($q)){
print '<div style="margin-top:5px;line-height:25px;"><a href="/admin.php?action='.$action.'&show='.$m['account'].'" class="inline-button small no-margin" style="font-size:14px;margin-right:10px !important;">показывать</a> '.$m['account'].($m['length']<8?'<span class="green"> — длина '.$m['length'].' символов</span>':'').'</div>';
}
print '<hr>Список отображаемых аккаунтов:';
$q=$db->sql('SELECT * FROM `accounts_on_sale` WHERE `status`=0 ORDER BY `account` ASC');
while($m=$db->row($q)){
print '<div style="margin-top:5px;line-height:25px;"><a href="/admin.php?action='.$action.'&hide='.$m['account'].'" class="inline-button small no-margin red" style="font-size:14px;margin-right:10px !important;">скрыть</a> '.$m['account'].($m['length']>8?'<span class="red"> — длина '.$m['length'].' символов</span>':'').'</div>';
}
}
else
if('subaccounts_on_sale'==$action){
$title='Записи в таблице «Субаккаунты на продаже»';
if($_GET['hide']){
$db->sql('UPDATE `subaccounts_on_sale` SET `status`=1 WHERE `account`=\''.$db->prepare($_GET['hide']).'\' LIMIT 1');
header('location:/admin.php?action=subaccounts_on_sale&caption=ok');
exit;
}
if($_GET['show']){
$db->sql('UPDATE `subaccounts_on_sale` SET `status`=0 WHERE `account`=\''.$db->prepare($_GET['show']).'\' LIMIT 1');
header('location:/admin.php?action=subaccounts_on_sale&caption=ok');
exit;
}
print '<a class="right" href="/admin.php">← вернуться</a>';
if('ok'==$_GET['caption'])
print '<p class="green">Операция успешно выполнена</p>';
print 'Список скрытых субаккаунтов:';
$q=$db->sql('SELECT * FROM `subaccounts_on_sale` WHERE `status`=1 ORDER BY `account` ASC');
while($m=$db->row($q)){
print '<div style="margin-top:5px;line-height:25px;"><a href="/admin.php?action='.$action.'&show='.$m['account'].'" class="inline-button small no-margin" style="font-size:14px;margin-right:10px !important;">показывать</a> '.$m['account'].($m['length']<8?'<span class="green"> — длина '.$m['length'].' символов</span>':'').'</div>';
}
print '<hr>Список отображаемых субаккаунтов:';
$q=$db->sql('SELECT * FROM `subaccounts_on_sale` WHERE `status`=0 ORDER BY `account` ASC');
while($m=$db->row($q)){
print '<div style="margin-top:5px;line-height:25px;"><a href="/admin.php?action='.$action.'&hide='.$m['account'].'" class="inline-button small no-margin red" style="font-size:14px;margin-right:10px !important;">скрыть</a> '.$m['account'].($m['length']>8?'<span class="red"> — длина '.$m['length'].' символов</span>':'').'</div>';
}
}
else
if('logout'==$action){
@setcookie('my_vizplus_login','',time()+8*3600,'/');
@setcookie('my_vizplus_password','',time()+8*3600,'/');
header('location:/admin.php');
exit;
}
else{
print '<p>Привет, '.$user.', ваш IP: '.$ip.'</p>';
print '<p><a href="/admin.php?action=paid_subscriptions">Записи в таблице «Платные подписки»</a></p>';
print '<p><a href="/admin.php?action=accounts_on_sale">Записи в таблице «Аккаунты на продаже»</a></p>';
print '<p><a href="/admin.php?action=subaccounts_on_sale">Записи в таблице «Субаккаунты на продаже»</a></p>';
}
}
else{
$error=false;
if(isset($_POST['my_login'])){
if(isset($users_arr[$_POST['my_login']])){
if($_POST['my_password']==$users_arr[$_POST['my_login']]){
@setcookie('my_vizplus_login',$_POST['my_login'],time()+8*3600,'/');
@setcookie('my_vizplus_password',md5($_POST['my_password']),time()+8*3600,'/');
header('location:/admin.php');
exit;
}
else{
$error='Пароль не подходит';
}
}
else{
$error='Пользователь не найден';
}
}
$title='Вход';
print '<form action="?" method="POST">';
if($error)
print '<p class="red">Ошибка: '.$error.'</p>';
print '<p><input type="text" name="my_login"> — логин</p>';
print '<p><input type="password" name="my_password"> — пароль</p>';
print '<p><input type="submit" value="Выполнить вход"></p>';
print '</form>';
}
$content=ob_get_contents();
ob_end_clean();
print '<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>'.$title.' — VIZ+</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="/app.css?'.filemtime('app.css').'">
</head>
<body>
<div class="header shadow unselectable">
<div class="horizontal-view">
<div class="menu-button menu-button-action"><img class="menu-button-action" src="/menu.svg"></div>
<div class="logo">
<a href="/" class="prefix">my.</a><a href="https://viz.plus/"><img src="/logo_20.png" alt="VIZ+"></a>
</div>
<div class="menu-list captions">
<div class="menu-bg">
<a class="menu-el color1 selected" href="/admin.php">Администрирование</a>
'.$menu_addon.'
</div>
</div>
</div>
</div>
<div class="horizontal-view vertical-view">
<div class="cards-view">
<div class="cards-container">
<div class="card captions">
<h3>'.$title.'</h3>';
print $content;
print '
</div>
</div>
</div>
</div>
';