-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathback_funcs_database.php
142 lines (124 loc) · 3.89 KB
/
back_funcs_database.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
<?php
/*
* File: back_funcs_database.php
* Author: Alex Kot
* Copyright: 2018 Alex Kot
* Date: 2018/11/09
* EMail: [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details:
* http://www.gnu.org/licenses/gpl.html
*
*/
// =====================================
// DATABASE FUNCTIONS ==================
// =====================================
function ConnectToHost(DatabaseVars $db): bool
{
$db->link = new mysqli($db->host, $db->user, $db->pass);
if (!$db->link) {
$_SESSION['msgDB'] = 'Connect error: ' . $db->link->connect_errno . '.' . $db->link->connect_error;
die('Connect error: ' . $db->link->connect_errno . '.' . $db->link->connect_error);
}
$_SESSION['msgDB'] = 'Connection is OK!';
return true;
}
function CheckConnectionToHost(DatabaseVars $db): bool
{
if (!$db->link->stat()) {
$_SESSION['msgDB'] = 'Server is offline. ' . $db->link->error;
return false;
}
$_SESSION['msgDB'] = 'Server is online.';
return true;
}
function SelectDB(DatabaseVars $db): bool
{
if (!$db->link->select_db($db->dbName)) {
$_SESSION['msgDB'] = 'Sorry, Select DB failed. ' . $db->link->error;
return false;
}
$_SESSION['msgDB'] = 'DB selected.';
return true;
}
function CreateDB(DatabaseVars $db): bool
{
$sql = "CREATE DATABASE IF NOT EXISTS $db->dbName CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci";
$result = $db->link->query($sql); //OBJECT, TRUE or FALSE
if ($result === FALSE) {
$_SESSION['msgDB'] = "Error creating database '$db->dbName': " . $db->link->error;
return false;
}
$_SESSION['msgDB'] = "Database '$db->dbName' created.";
return true;
}
function CreateTable(DatabaseVars $db): bool
{
$sql = "CREATE TABLE IF NOT EXISTS $db->dbName.$db->dbTable (
id INT(11) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
firstname VARCHAR(100) NOT NULL,
lastname VARCHAR(100) NOT NULL,
email VARCHAR(255) NOT NULL,
pass VARCHAR(255) NOT NULL,
about VARCHAR(255) NOT NULL,
city VARCHAR(60) NOT NULL,
country VARCHAR(60) NOT NULL,
gender VARCHAR(60) NOT NULL,
userimage VARCHAR(255) NOT NULL DEFAULT '_default.jpg',
active BOOLEAN NOT NULL DEFAULT FALSE
)";
if ($db->link->query($sql) === FALSE) {
$_SESSION['msgDB'] = 'Error creating table: ' . $db->dbTable . '. ' . $db->link->error;
return false;
}
return true;
}
function CreateTableIndex(DatabaseVars $db): bool
{
$sql = "CREATE INDEX email_index ON $db->dbName.$db->dbTable ($db->dbIndex) USING BTREE;";
$result = $db->link->query($sql);
if ($result === FALSE) {
$_SESSION['msgDB'] = 'Error creating Index for ' . $db->dbTable . ': ' . $db->link->error;
return false;
}
$_SESSION['msgDB'] = "Index for 'email' created.";
return true;
}
function InitDB(DatabaseVars $db): bool
{
$_SESSION['dbCreated'] = 0;
$cdb = CreateDB($db);
$ctb = CreateTable($db);
$cti = CreateTableIndex($db);
if (!$cdb && !$ctb && $cti) {
$_SESSION['msgDB'] = 'Can not access database or create tables in it';
return false;
}
$_SESSION['msgDB'] = "Database '$db->dbName' with indexed table '$db->dbTable' created.";
$_SESSION['dbCreated'] = 1;
return true;
}
function ResetDB(DatabaseVars $db): bool
{
if (!SelectDB($db)) { return false; }
$sql = "DROP DATABASE $db->dbName";
$result = $db->link->query($sql);
if (!$result) {
$_SESSION['msgDB'] = 'Could not DROP database ' . $db->dbName;
return false;
}
$_SESSION[] = array();
session_unset();
$_SESSION['logged_in'] = false;
$_SESSION['dbCreated'] = 0;
$_SESSION['msgDB'] = "Database '$db->dbName' dropped.";
return true;
}