-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.inc.php
349 lines (305 loc) · 11.6 KB
/
functions.inc.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?php
//Funkce pro vrácení konkrétní hodnoty z konkrétní tabulky
function GetVariable($id, $table, $category){
if(isset($_SESSION['connection'])){
$sql = "SELECT ".$category." FROM ".$table." WHERE id=?";
if($stmt = $_SESSION['connection']->prepare($sql)){
$stmt->bind_param('d', $id);
if($stmt->execute()){
$stmt->store_result();
if($stmt->num_rows > 0){
$stmt->bind_result($value);
$stmt->fetch();
return $value;
}
}else{
echo $stmt->error;
return null;
}
}
echo $_SESSION['connection']->error;
return null;
}
return null;
}
//Funkce pro vrácení id z konkrétní tabulky
function GetId($table, $category, $value){
if(isset($_SESSION['connection'])){
$stmt = $_SESSION['connection']->prepare("SELECT id FROM ".$table." WHERE ".$category."=? LIMIT 1");
$stmt->bind_param("s", $value);
if($stmt->execute()){
$stmt->store_result();
if($stmt->num_rows > 0){
$stmt->bind_result($id);
$stmt->fetch();
return $id;
}
}else{
echo $_SESSION['connection']->error;
}
return null;
}
return null;
}
//Funkce pro změnění nějakého konkrétního sringu např. Jmena, ip, adresy atd.
function ChangeString($id, $table, $category, $value){
$conn = $_SESSION['connection'];
if(isset($_SESSION['connection'])){
$sql = "UPDATE ".$table." SET ".$category." = ? WHERE id=?";
if ($stmt = $conn->prepare($sql)){
$stmt->bind_param('sd', $value, $id);
if($stmt->execute()){
return true;
}else{
echo $stmt->error;
return false;
}
}
/*
$sql = "UPDATE ".$table." SET ".$category."= ".$value." WHERE id=".$id;
if ($_SESSION['connection']->query($sql) === TRUE) {
return true;
} else {
echo "Error updating record: " . $_SESSION['connection']->error;
return false;
}
*/
}
return false;
}
//Funkce ro zjištění jestli daná hodnota už není použita. Využito pro kontrolu emailu a nicku
function DoesExist($table ,$category, $value){
if(isset($_SESSION['connection'])){
$sql = "SELECT ".$category." FROM ".$table;
$result = $_SESSION['connection']->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
if($row[$category] == $value){
return true;
}
}
return false;
}
return false;
}
header("location: ../error.php");
}
//Funkce pro zkontrolování zalogování na stránce
function IsLogged($title){
global $adresa;
$login_url = $adresa."login/";
if(isset($_SESSION['connection'])){
$conn = $_SESSION['connection'];
if(!isset($_SESSION['id']) && $title != "Přihlášení"){
if(isset($_COOKIE['login-cookie'])){
$cookie = $_COOKIE['login-cookie'];
$content = base64_decode ($cookie);
list($myID, $hashed_password) = explode (':', $content);
$sql = "SELECT * FROM uzivatele WHERE id = '$myID'";
if($result = mysqli_query($conn,$sql)){
$row = mysqli_fetch_array($result,MYSQLI_ASSOC);
// If result matched $myusername and $mypassword, table row must be 1 row
if(md5($row['heslo'], substr(md5($row['heslo']), 1, 9)) == $hashed_password) {
$_SESSION['id'] = $row['id'];
header("Refresh:0");
}
}else
die($conn->error);
}
header("location: ".$login_url);
}
/*
if(!isset($_SESSION['id']) && $title == "Přihlášení"){
header("location: ./index.php");
}
*/
return true;
}else
return false;
}
//Funkce pro vygenerování náodného klíče
function GenerateKey($delka){
$array = array_merge(range('A', 'Z'), range('a', 'z'), range(0, 9), ["!", "@"]);
$key = "";
for($i = 0; $i < $delka; $i++){
$key .= $array{mt_rand(0,sizeof($array)-1)};
}
return $key;
}
function redirect($url){
if (headers_sent()){
die('<script type="text/javascript">window.location=\''.$url.'\';</script>');
}else{
header('Location: ' . $url);
die();
}
}
function vypis($text){
if ($text != null) {
return $text;
} else {
return "-";
}
}
//vytvoří log
function CreateLog($uzivatelId, $log, $ovlivnenyId){
if(isset($_SESSION['connection'])){
$opravneni = GetVariable($uzivatelId, "uzivatele", "opravneni"); //Dostaneme hodnotu opravneni
$celJm = GetVariable($uzivatelId, "uzivatele", "Jmeno")." ".GetVariable($uzivatelId, "uzivatele", "Prijmeni"); //Dostaneme celé jmeno daného uživatele z důvodu pozdějších jmen,aby kdyby někdo se dostal do admin účtu nemohl změnit uživatelovo jméno z logu
$sql = "INSERT INTO `logs`(`uzivatelId`, `ovlivnenyId`, `opravneni`, `druh-logu`, `Jm-a-Pr`) VALUES ($uzivatelId, $ovlivnenyId, $opravneni, $log, $celJm)";
}
}
//funkce pro získání textu z predlohy
function GetPredlohaText($predloha, $array){
if(isset($_SESSION['connection'])){
$text = GetVariable($predloha, "predlohy", "Obsah");
$result = str_replace(array_keys($array), array_values($array), $text);
return $result;
}
return null;
}
// Funkce pro odeslání systémové zprávy
function System_mail($komu_mail, $komu_jmeno, $komu_prijm, $predloha, $Nazev, $array){
global $mail_settings;
echo "<br>";
if(isset($_SESSION['connection'])){
$text = GetPredlohaText($predloha, $array);
$mail = new PHPMailer\PHPMailer\PHPMailer();
//print_r($mail_settings);
try {
//Server settings
$mail->CharSet = 'UTF-8';
$mail->Encoding = 'base64';
$mail->setLanguage('cs', '../plugins/PHPMailer/language/');
//Recipients
$mail->setFrom($mail_settings["From"], 'NoReply');
$mail->addAddress($komu_mail, $komu_jmeno." ".$komu_prijm);
// Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = $Nazev;
$mail->Body = $text;
// SMTP parametrs
$mail->isSMTP();
/* SMTP server address. */
$mail->Host = $mail_settings["Host"];
//Debugger
//$mail->SMTPDebug = 4;
/* Use SMTP authentication. */
$mail->SMTPAuth = true;
$mail->AuthType = 'LOGIN';
/* Set the encryption system. */
$mail->SMTPSecure = $mail_settings["enc"];
/* SMTP authentication username. */
$mail->Username = $mail_settings["User"];
/* SMTP authentication password. */
$mail->Password = $mail_settings["Pass"];
/* Set the SMTP port. */
$mail->Port = $mail_settings["Port"];
$mail->send();
//echo 'Zpráva byla odeslána';
} catch (Exception $e) {
//echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
header("Location: http://spotreba.solarnivyroba.cz/error.php");
}
}else{
echo $_SESSION['connection']->error;
}
}
//Funkce pro převedení číselné hpdnoty měsíce na slovní typ v češtině
function cesky_mesic($mesic_int) {
static $mesice = array(1 => 'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec');
return $mesice[$mesic_int];
}
//Funkce pro převedení měsíce v čětině na číselné datum
function cesky_mesic_int($mesic) {
static $mesice = array(1 => "Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec");
return array_search($mesic,$mesice);
}
//Funkce která nám vrátí čas ve formátu H, m, s
function GetCas($cas){
$array = array(
"Hour" => (int)date('H', $cas),
"minute" => (int)date('i', $cas),
"secund" => (int)date('s', $cas)
);
return $array["Hour"].", ".$array["minute"].", ".$array["secund"];
}
function printSuccess($text){
echo "<div class=\"alert alert-success\" role=\"alert\">";
echo " <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">";
echo " <span aria-hidden=\"true\">×</span>";
echo " </button>";
echo " <div class=\"d-flex align-items-center justify-content-start\">";
echo " <i class=\"icon ion-ios-checkmark alert-icon tx-24 mg-t-5 mg-xs-t-0\"></i>";
echo " <span><strong>Úspěch!</strong> ". $text ."</span>";
echo " </div><!-- d-flex -->";
echo "</div><!-- alert -->";
}
function printWarning($text){
echo "<div class=\"alert alert-warning\" role=\"alert\">";
echo " <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">";
echo " <span aria-hidden=\"true\">×</span>";
echo " </button>";
echo " <div class=\"d-flex align-items-center justify-content-start\">";
echo " <i class=\"icon ion-ios-checkmark alert-icon tx-24 mg-t-5 mg-xs-t-0\"></i>";
echo " <span><strong>Upozornění!</strong> ". $text ."</span>";
echo " </div><!-- d-flex -->";
echo "</div><!-- alert -->";
}
function printError($text){
echo "<div class=\"alert alert-danger\" role=\"alert\">";
echo " <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">";
echo " <span aria-hidden=\"true\">×</span>";
echo " </button>";
echo " <div class=\"d-flex align-items-center justify-content-start\">";
echo " <i class=\"icon ion-ios-checkmark alert-icon tx-24 mg-t-5 mg-xs-t-0\"></i>";
echo " <span><strong>Chyba!</strong> ". $text ."</span>";
echo " </div><!-- d-flex -->";
echo "</div><!-- alert -->";
}
function printInfo($text){
echo "<div class=\"alert alert-info\" role=\"alert\">";
echo " <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">";
echo " <span aria-hidden=\"true\">×</span>";
echo " </button>";
echo " <div class=\"d-flex align-items-center justify-content-start\">";
echo " <i class=\"icon ion-ios-checkmark alert-icon tx-24 mg-t-5 mg-xs-t-0\"></i>";
echo " <span><strong>Info!</strong> ". $text ."</span>";
echo " </div><!-- d-flex -->";
echo "</div><!-- alert -->";
}
function uploadFile($file, $target_dir, $size, $image){
$errors = array();
$target_file = $target_dir . basename($file["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($file["tmp_name"]);
if($check !== false) {
if(!$image)
array_push($errors, "Soubor není obraz");
} else {
if($image)
array_push($errors, "Soubor je obraz");
}
}
// Check file size
if ($file["size"] > ($size*2**20)) {
array_push($errors, "Nahranný soubor je moc velký!");
}
// Check if $uploadOk is set to 0 by an error
if (sizeof($errors) > 0) {
return $errors;
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($file["tmp_name"], $target_file)) {
return $errors;
} else {
array_push($errors, "Při nahrávání došlo k chybě!");
return $errors;
}
}
}
?>