-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup_operators.php
229 lines (222 loc) · 8.18 KB
/
setup_operators.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?
// ===================================================================
// License: GPL v3 (http://www.gnu.org/licenses/gpl.html)
// Copyright (c) 2016-2020 Xzero Systems, http://sim-roulette.com
// Author: Nikita Zabelin
// ===================================================================
include("_func.php");
$status=1;
if ($_GET['delete']) // Deleting the operator | Удаление оператора
{
$qry="DELETE FROM `operators` WHERE `id`=".(int)$_GET['delete'];
mysqli_query($db,$qry);
}
if ($_GET['edit']) // Editing the operator | Редактирование оператора
{
if ($_POST['save'] && $_POST['title'] && $_POST['name'][0])
{
$_POST['color']=trim($_POST['color'],'#');
if (!$_POST['color']){$_POST['color']='000000';}
$qry='';
if ($_GET['edit']!='new')
{
if ($result = mysqli_query($db, 'SELECT * FROM `operators` WHERE `id`='.(int)$_GET['edit']))
{
if ($row = mysqli_fetch_assoc($result))
{
$qry="UPDATE `operators` SET
`title`='".mysqli_real_escape_string($db,$_POST['title'])."',
`prefix`='".(int)$_POST['prefix']."',
`name`='".mysqli_real_escape_string($db,';'.implode(';',$_POST['name']).';')."',
`get_number`='".mysqli_real_escape_string($db,trim($_POST['get_number']))."',
`get_number_type`='".mysqli_real_escape_string($db,$_POST['get_number_type'])."',
`get_balance`='".mysqli_real_escape_string($db,trim($_POST['get_balance']))."',
`get_balance_type`='".mysqli_real_escape_string($db,$_POST['get_balance_type'])."',
`color`='".mysqli_real_escape_string($db,$_POST['color'])."',
`time`='".time()."'
WHERE `id`=".(int)$_GET['edit'];
}
}
if (!$qry){$_GET['edit']='new';}
}
if ($_GET['edit']=='new')
{
$qry="INSERT `operators` SET
`title`='".$_POST['title']."',
`prefix`='".$_POST['prefix']."',
`name`='".mysqli_real_escape_string($db,';'.implode(';',$_POST['name']).';')."',
`get_number`='".mysqli_real_escape_string($db,trim($_POST['get_number']))."',
`get_number_type`='".mysqli_real_escape_string($db,$_POST['get_number_type'])."',
`get_balance`='".mysqli_real_escape_string($db,trim($_POST['get_balance']))."',
`get_balance_type`='".mysqli_real_escape_string($db,$_POST['get_balance_type'])."',
`color`='".mysqli_real_escape_string($db,$_POST['color'])."',
`time`='".time()."'";
}
if (mysqli_query($db,$qry))
{
operator_select();
header('location:setup_operators.php');
exit();
}
}
elseif ($_POST['save'])
{
$status=0;
}
sr_header("Редактирование оператора"); // Output page title and title | Вывод титул и заголовок страницы
if ($_GET['edit']!='new')
{
if ($result = mysqli_query($db, 'SELECT * FROM `operators` WHERE `id`='.(int)$_GET['edit']))
{
while ($row = mysqli_fetch_assoc($result))
{
$title=$row['title'];
$prefix=$row['prefix'];
$name=explode(';',trim($row['name'],';'));
$get_number=$row['get_number'];
$get_number_type=$row['get_number_type'];
$get_balance=$row['get_balance'];
$get_balance_type=$row['get_balance_type'];
$color=$row['color'];
}
}
}
if (!$status)
{
?>
<div class="status_error">При сохранении данных произошла ошибка, проверьте правильность заполнения полей!</div>
<?
}
?>
<form method="post">
Название оператора
<br>
<input type="text" name="title" value="<?=$title?>" maxlength="60">
<br><br>
Цвет оператора <input type="color" name="color" value="#<?=$color?>">
<br><br><br>
Имя оператора на карте или в сети (обязательное поле)
<br>
<select name="name[]" size="5" multiple>
<?
$my=array();
$s='';
$s2='';
if ($result = mysqli_query($db, 'SELECT * FROM `operators_uniq` GROUP BY `name` ORDER BY `name`'))
{
while ($row = mysqli_fetch_assoc($result))
{
$my[]=$row['name'];
$s.='<option value="'.$row['name'].'"';
if (in_array($row['name'],$name)){$s.=' selected';}
$s.='>'.$row['name'].'</option>';
}
}
if ($s){$s='<optgroup label="На ваших СИМ-картах">'.$s;}
if ($result = mysqli_query($db, 'SELECT * FROM `operators_uniq` GROUP BY `name` ORDER BY `name`'))
{
while ($row = mysqli_fetch_assoc($result))
{
if (!in_array($row['name'],$my))
{
$s2.='<option value="'.$row['name'].'"';
if (in_array($row['name'],$name)){$s2.=' selected';}
$s2.='>'.$row['name'].'</option>';
}
}
if ($s2){$s2='<optgroup label="Системные">'.$s2;}
echo $s.$s2;
}
?>
</select>
<div class="hint" style="margin-top: -4px;">Выберите все подходящие имена. Если в списке нет нужного значения, просканируйте карту оператора, которого хотите добавить. После этого оператор появится в списке.</div>
Префикс телефонного номера, например 7 (без +)
<br>
<input type="number" name="prefix" value="<?=$prefix?>" maxlength="6">
<br><br>
Команда для запроса номера
<br>
<input type="text" name="get_number" value="<?=$get_number?>" maxlength="32">
<div class="hint" style="margin-top: -4px;">Пример: *110*10# (для выбора из меню используйте "|", <em>например: *111*6#|1</em>)</div>
Тип получения номера
<br>
<select name="get_number_type">
<option value="none">- выберите из списка -</option>
<option value="ussd"<? if ($get_number_type=='ussd'){echo ' selected=1';}?>>USSD</option>
<option value="sms"<? if ($get_number_type=='sms'){echo ' selected=1';}?>>SMS</option>
</select>
<br><br>
Команда для запроса баланса
<br>
<input type="text" name="get_balance" value="<?=$get_balance?>" maxlength="32">
<div class="hint" style="margin-top: -4px;">Пример: #102# (для выбора из меню используйте "|")</div>
Тип получения баланса
<br>
<select name="get_balance_type">
<option value="none">- выберите из списка -</option>
<option value="ussd"<? if ($get_balance_type=='ussd'){echo ' selected=1';}?>>USSD</option>
<option value="sms"<? if ($get_balance_type=='sms'){echo ' selected=1';}?>>SMS</option>
</select>
<br><br>
<input type="submit" name="save" value="Сохранить" style="padding: 10px;">
</form>
<?
}
else // List of operators | Список операторов
{
sr_header("Операторы сотовой связи");
$table=array();
if ($result = mysqli_query($db, 'SELECT * FROM `operators` ORDER BY `name`'))
{
while ($row = mysqli_fetch_assoc($result))
{
if (hexdec($row['color'])>8388607 || !$row['color']){$color='000';} else {$color='FFF';}
$table[]=array(
'id'=>$row['id'],
'title'=>$row['title'],
'name'=>$row['name'],
'prefix'=>$row['prefix'],
'bg'=>$row['color'],
'color'=>$color,
);
}
}
if (count($table))
{
?>
<div class="table_box">
<table class="table table_adaptive">
<thead>
<tr><th>Оператор</th><th>Имя в сети</th><th>Префикс</th><th></th></tr>
</thead>
<?
$def=0;
foreach ($table as $data)
{
?>
<tr>
<td<? if ($data['color']){?> style="color: #<?=$data['color']?>; background:#<?=$data['bg']?>"<? } ?>><?=$data['title']?></td><td><? $a=explode(';',trim($data['name'],';')); echo implode(', ',$a);?></td><td><? if ($data['prefix']){echo '+'.$data['prefix'];} ?></td>
<td><a href="setup_operators.php?edit=<?=$data['id']?>" title="Редактировать настройки оператора"><i class="icon-pencil"></i></a> <a href="javascript:void();" onclick="if (confirm('Вы готовы удалить индивидуальные настройки?')){document.location='setup_operators.php?delete=<?=$data['id']?>';}" title="Удалить индивидуальные настройки"><i class="icon-trash"></i></a> </td>
</tr>
<?
}
?>
</table>
</div>
<?
}
else
{
?>
<br>
<em>— Список операторов пуст!</em>
<br>
<?
}
?>
<br>
<a href="setup_operators.php?edit=new" class="link">Добавить оператора</a>
<?
}
sr_footer();
?>