-
Notifications
You must be signed in to change notification settings - Fork 27
/
install.php
105 lines (81 loc) · 2.55 KB
/
install.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
<?php
/* ----------------------------------------------------------------------------
Open DMARC Analyzer - Open Source DMARC Analyzer
Copyright (C) 2023 - John Bradley (userjack6880)
install.php
installer to aid with setting up a new installation
Available at: https://github.com/userjack6880/Open DMARC Analyzer
-------------------------------------------------------------------------------
This file is part of Open DMARC Analyzer.
Open DMARC Analyzer 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 3 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.
You should have received a copy of the GNU General Public License along with
this program. If not, see <https://www.gnu.org/licenses/>.
---------------------------------------------------------------------------- */
// Includes
include_once 'includes.php';
// Connect to database
echo "connecting to database...";
$pdo = dbConn();
echo " success<br>";
// Read in file and build statement
$statement ='';
echo "opening file...";
$lines = file(DB_TYPE.'.sql');
echo " success<br>";
foreach ($lines as $line)
{
echo "→ $line<br>";
// skip comments
if (substr($line, 0, 2) == '--' || $line == '') { continue; }
// add line to statement
$statement .= $line;
// check for end of query and run it
if (substr(trim($line), -1, 1) == ';') {
try {
echo "performing query...";
$query = $pdo->prepare($statement);
$query->execute();
if($query->errorCode() != 0) {
$errors = $query->errorInfo();
echo " failed: ".$errors[2]."<br>";
exit();
}
}
catch (PDOException $e) {
echo " failed: ".$e->getMessage()."<br>";
exit();
}
echo " success<br>";
$query = NULL;
$statement = '';
}
}
echo "database successfully updated<br>";
// kill the PDO
$pdo = NULL;
echo "deleting installation files<br>";
if (unlink('mysql.sql') == true) {
echo "DELETED → mysql.sql<br>";
}
else {
echo "FAILED → mysql.sql<br>";
}
if (unlink('pgsql.sql') == true) {
echo "DELETED → pgsql.sql<br>";
}
else {
echo "FAILED → pgsql.sql<br>";
}
if (unlink(__FILE__) == true) {
echo "DELETED → install.php<br>";
}
else {
echo "FAILED → install.php<br>";
}
?>