-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnr_ip.php
256 lines (203 loc) · 8.75 KB
/
nr_ip.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<?php
//--- dolaczenie plikow
if(file_exists('config.php')) {
include('config.php');
include('inc/baza_polacz.php');
}
include('funkcje/funkcje.php');
include('funkcje/funkcje_odczytu.php');
include("inc/sesje.php");
//######## STRONNICOWANIE
function wskaznik($strona, $liczba_stron)
{
$wynik = "<span class='text-muted small'><center>strona $strona/$liczba_stron</center></span><nav aria-label='Page navigation example'><ul class='pagination justify-content-center'>";
if ($strona > 1) {
$wynik .= " <li class='page-item'><a class='page-link' href='nr_ip.php?strona=1'><i class='material-icons'>first_page</i></a></li> ";
} else {
$wynik .= " <li class='page-item disabled'><a class='page-link' href='' tabindex='-1' aria-disabled='true'><i class='material-icons'>first_page</i></a></li> ";
}
$poprzednia = $strona - 1;
if ($poprzednia > 0) {
$wynik .= " <li class='page-item'><a class='page-link' href='nr_ip.php?strona=$poprzednia'><i class='material-icons'>navigate_before</i></a></li> ";
} else {
$wynik .= " <li class='page-item disabled'><a class='page-link' href=''><i class='material-icons'>navigate_before</i></a></li> ";
}
$nastepna = $strona + 1;
if ($nastepna <= $liczba_stron) {
$wynik .= " <li class='page-item'><a class='page-link' href='nr_ip.php?strona=$nastepna'><i class='material-icons'>navigate_next</i></a></li> ";
} else {
$wynik .= " <li class='page-item disabled'><a class='page-link' href=''><i class='material-icons'>navigate_next</i></a></li> ";
}
if ($strona < $liczba_stron) {
$wynik .= " <li class='page-item'><a class='page-link' href='nr_ip.php?strona=$liczba_stron'><i class='material-icons'>last_page</i></a></li> ";
} else {
$wynik .= " <li class='page-item disabled'><a class='page-link'><i class='material-icons'>last_page</i></a></li> ";
}
$wynik .= "</ul></nav>";
return $wynik;
}
?>
<!doctype html>
<html lang="pl">
<head>
<?php
//--- dolaczenie plikow
include('inc/head.php');
?>
<!-- datepicker kalendarz -->
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
$(function() {
$( "#data_ip" ).datepicker({dateFormat: "d-m-yy", duration: 300, showWeek: false, dayNamesMin: ["Nd", "Pn", "Wt", "Śr", "Cz", "Pt", "Sb"], monthNames: [ "Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień" ], showAnim: "slideDown" });
});
</script>
<!--/ datepicker kalendarz -->
</head>
<body>
<?php
//--- dolaczenie plikow
if(file_exists('config.php')) {
include('inc/menu.php');
include('inc/baner.php');
include('operacje/!_spis.php');
include('inc/pole_alerts.php');
}
?>
<?php
if(file_exists('config.php')) {
//zainstalowany
?>
<div class="container tresc">
<?php
if(isset($_SESSION['sesja_uzyt']['zalogowany'])){
?>
<div class="page-header">
<h1>Numery IP <span></span></h1>
</div>
<form action="nr_ip.php" method="get" class="form-inline">
<div class="row">
<div class="form-group">
<label for="data_ip" class="col-md-2 col-form-label"><i class="material-icons">calendar_today</i> </label>
<div class="col-md-6">
<input type="text" class="form-control input-sm" id="data_ip" name="data_ip" placeholder="d-m-rrrr" required>
</div>
</div>
<div class="form-group">
<div class="col-md-4">
<button type="submit" class="btn btn-primary btn-sm" name="wyslij" title="Pokaż wejścia dla nr IP w wybranym dniu">wyślij</button>
</div>
</div>
</div>
</form>
<hr />
<?php
if(isset($_GET['data_ip'])){
$dni_w_tygodniu = new DateTime($_GET['data_ip']);
$rok = $dni_w_tygodniu->format("Y"); //rok
$miesiac = $dni_w_tygodniu->format("n"); //miesiac 1-12
$dzien_mies = $dni_w_tygodniu->format("j"); //dzien miesiaca 1-31
$dzien_tyg = $dni_w_tygodniu->format("w"); //dzien tygodnia jako cyfra 0 to niedziela
// $data_unix = $dni_w_tygodniu->format("U"); //Sekundy liczone od ery UNIX-a
$dzien_roku = $dni_w_tygodniu->format("z"); //Dzień roku (Zaczynając od 0) 0 aż do 365
$nr_tyg = $dni_w_tygodniu->format("W"); //Numer tygodnia w roku, zgodny z normą ISO-8601, Tygodnie rozpoczynają Poniedziałki. Przykład: 42
if($dzien_tyg == 0){$dzien_tyg = 'Niedziela';}else
if($dzien_tyg == 1){$dzien_tyg = 'Poniedziałek';}else
if($dzien_tyg == 2){$dzien_tyg = 'Wtorek';}else
if($dzien_tyg == 3){$dzien_tyg = 'Środa';}else
if($dzien_tyg == 4){$dzien_tyg = 'Czwartek';}else
if($dzien_tyg == 5){$dzien_tyg = 'Piątek';}else
if($dzien_tyg == 6){$dzien_tyg = 'Sobota';}
echo'<p class="lead text-right"><b>Odsłony</b> nr.IP dla dnia: <b>'.$_GET['data_ip'].'</b></p>';
//-------------------------------------------------------------------
//STRONNICOWANIE
$p = array(); //zainiciowanie tablicy $p
$stmt = $db->query("SELECT * FROM ".$rok."_nr_ip WHERE dzien_roku='".$dzien_roku."' AND dzien='".$dzien_mies."' AND miesiac='".$miesiac."'");
while($wiersz = $stmt->fetch(PDO::FETCH_ASSOC)){$id_art = $wiersz['id']; $p[]=$id_art;}
$liczba_rekordow = count($p); //liczba wszystkich rekordow
$rekordow_na_stronie = 20; //liczba rekordow na stronie
$liczba_stron = (int) (($liczba_rekordow + $rekordow_na_stronie - 1) / $rekordow_na_stronie);
if (isset($_GET['strona']) && str_ievpifr($_GET['strona'], 1, $liczba_stron)) {
$strona = $_GET['strona'];
}else{
$strona = 1;
}
$start = ($strona - 1) * $rekordow_na_stronie;
echo'
<div class="table-responsive">
<table class="table table-striped table-hover small table-sm">
<tr>
<th>nr. IP</th> <th>odsłony</th> <th>wykres</th> <th>ostatnio widziany</th> <th>dzień tygodnia</th> <th>nr.tyg</th> <th>dzień roku</th>
</tr>';
//szukanie NAJ
$stmt = $db->query("SELECT * FROM ".$rok."_nr_ip WHERE dzien_roku='".$dzien_roku."' AND dzien='".$dzien_mies."' AND miesiac='".$miesiac."' ORDER BY ".$rok."_nr_ip.ods DESC LIMIT 1");
while($wiersz = $stmt->fetch(PDO::FETCH_ASSOC)){
$naj = $wiersz['ods'];
}
//end szukanie NAJ
$stmt = $db->query("SELECT * FROM ".$rok."_nr_ip WHERE dzien_roku='".$dzien_roku."' AND dzien='".$dzien_mies."' AND miesiac='".$miesiac."' ORDER BY ".$rok."_nr_ip.ods DESC LIMIT $start ,$rekordow_na_stronie");
if($stmt->rowCount() > 0){
while($wiersz = $stmt->fetch(PDO::FETCH_ASSOC)){
$nr_ip = $wiersz['nr_ip'];
$ods = $wiersz['ods'];
$data_utw = $wiersz['data_utw']; $data_utw = date('G:i', $data_utw);
if($ods != 0){
// obliczanie wysokosci slupka
$szer = ($ods / $naj) * 200; $szer = round($szer, 0);
}else{$szer = 1;}
echo'
<tr>
<td class="text-muted">'.$nr_ip.'</td> <td><span class="label-dane">'.$ods.'</span></td> <td><div class="row_slupki_poziom ttt" style="width: '.$szer.'px;" title="'.$ods.' ods."></div></td> <td class="text-muted">god. '.$data_utw.'</td> <td class="text-muted">'.$dzien_tyg.'</td> <td class="text-muted">'.$nr_tyg.'</td> <td class="text-muted">'.$dzien_roku.'</td>
</tr>';
}//end while
}else{
echo'
<tr>
<td colspan="7" class="text-muted"><span class="label-dane"> - w dniu: <b>'.$_GET['data_ip'].'</b> brak wejść na stronie - </span></td>
</tr>';
}
echo'
</table>
</div>';
echo wskaznik($strona, $liczba_stron); //stronnicowanie
echo'<hr />';
}
?>
<p>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
<i class="material-icons">live_help</i> Numer IP - Co to znaczy ?
</button>
</p>
<div class="collapse" id="collapseExample">
<div class="card card-body">
Numer IP to numeryczny identyfikator serwera podłączonego do sieci o protokole TCP/IP. Adres jest ciągiem liczb od 0 do 255, oddzielonych kropkami np. 36.192.55.234. Dzięki temu narzędziu dowiemy się o ilości odsłon w wybranym dniu dla poszczególnych Nr.Ip odwiedzających stronę monitorowaną.
</div>
</div>
</div><!-- /tresc -->
<?php
}else{
include('inc/form_logowania.php');
}
?>
</div>
<?php
if(isset($_SESSION['sesja_uzyt']['zalogowany'])){
include('inc/zalogowany_jako.php');
}
}else{
//instalacja
include('instalacja/index.php');
}
?>
<?php
if(file_exists('config.php')) {
include('inc/stopka.php');
}
include('inc/stopka_bootstrap.php');
?>
<!-- datepicker kalendarz -->
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<!--/ datepicker kalendarz -->
</body>
</html>