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
|
<?php
/**
* BusinessAdmin: administrative software for small companies
* Copyright (C) 2015 Camil Staps (ViviSoft)
*
* 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 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 <http://www.gnu.org/licenses/>.
*/
require('../conf.php');
if (isset($_GET['create_tables'])) {
try {
$_pdo->query("CREATE TABLE IF NOT EXISTS `".constants::db_prefix."assignment` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`offerId` smallint(5) unsigned NOT NULL,
`title` tinytext NOT NULL,
`description` text NOT NULL,
`hours` float NOT NULL,
`price_per_hour` float NOT NULL,
`VAT_percentage` float NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `offerId - title` (`offerId`,`title`(255)),
KEY `offerId` (`offerId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1");
$_pdo->query("CREATE TABLE IF NOT EXISTS `".constants::db_prefix."client` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` tinytext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`(255))
) ENGINE=InnoDB DEFAULT CHARSET=latin1");
$_pdo->query("CREATE TABLE IF NOT EXISTS `".constants::db_prefix."contact` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`clientId` smallint(5) unsigned NOT NULL,
`name` tinytext NOT NULL,
`email` varchar(680) NOT NULL,
`address` tinytext NOT NULL,
`address_2` tinytext,
`postal_code` varchar(7) NOT NULL,
`city` tinytext NOT NULL,
`country` tinytext NOT NULL,
`language` varchar(3) NOT NULL DEFAULT 'en',
PRIMARY KEY (`id`),
UNIQUE KEY `clientId-name` (`clientId`,`name`(255)),
KEY `clientId` (`clientId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1");
$_pdo->query("CREATE TABLE IF NOT EXISTS `".constants::db_prefix."discount` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`offerId` smallint(5) unsigned NOT NULL,
`title` tinytext NOT NULL,
`description` text NOT NULL,
`value` float unsigned NOT NULL,
`VAT_percentage` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;");
$_pdo->query("CREATE TABLE IF NOT EXISTS `".constants::db_prefix."file` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`filename` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `filename` (`filename`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1");
$_pdo->query("CREATE TABLE IF NOT EXISTS `".constants::db_prefix."offer` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`contactId` smallint(5) unsigned NOT NULL,
`start_date` date NOT NULL,
`end_date` date NOT NULL,
`invoice_date` date NOT NULL,
`accepted` tinyint(1) unsigned NOT NULL DEFAULT '0',
`invoice_fileId` smallint(5) unsigned DEFAULT NULL,
`payment_received` date DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `invoice_fileId` (`invoice_fileId`),
KEY `contactId` (`contactId`),
KEY `contactId_2` (`contactId`),
KEY `invoice_fileId_2` (`invoice_fileId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1");
$_pdo->query("CREATE TABLE IF NOT EXISTS `".constants::db_prefix."user` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(24) NOT NULL,
`password` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;");
$_pdo->query("ALTER TABLE `".constants::db_prefix."assignment`
ADD CONSTRAINT `assignment_ibfk_1` FOREIGN KEY (`offerId`) REFERENCES `".constants::db_prefix."offer` (`id`)");
$_pdo->query("ALTER TABLE `".constants::db_prefix."contact`
ADD CONSTRAINT `contact_ibfk_1` FOREIGN KEY (`clientId`) REFERENCES `".constants::db_prefix."client` (`id`)");
$_pdo->query("ALTER TABLE `".constants::db_prefix."discount`
ADD CONSTRAINT `discount_ibfk_1` FOREIGN KEY (`offerId`) REFERENCES `".constants::db_prefix."offer` (`id`);");
$_pdo->query("ALTER TABLE `".constants::db_prefix."offer`
ADD CONSTRAINT `offer_ibfk_1` FOREIGN KEY (`invoice_fileId`) REFERENCES `".constants::db_prefix."file` (`id`),
ADD CONSTRAINT `offer_ibfk_2` FOREIGN KEY (`contactId`) REFERENCES `".constants::db_prefix."contact` (`id`)");
echo "Succeeded creating the database tables.";
} catch (PDOException $e) {
echo "Creating the database tables failed with a PDOException ({$e->getCode()}): {$e->getMessage()}<br/>" . $e->getTraceAsString();
}
}
if (isset($_GET['create_folders'])) {
if (!mkdir(constants::files_folder)) {
echo "Creating folder `" . constants::files_folder . "` failed.<br/>";
}
if (!mkdir(constants::files_folder . constants::files_folder_trash)) {
echo "Creating folder `" . constants::files_folder_trash . "` failed.<br/>";
}
}
if (isset($_GET['create_user'])) {
$username = 'admin';
try {
$password = bin2hex(openssl_random_pseudo_bytes(8));
$user = BusinessAdmin::createUser($_pdo, $username, $password);
if ($user !== false) {
echo "Created user '$username' ({$user->getId()}) with password '$password'.";
} else {
echo "Unknown error while creating the admin user.";
}
} catch (PDOException $e) {
echo "Creating an admin user failed (does one exist already?).";
}
}
if (isset($_GET['password_cost'])) {
$target = 1;
$start = $end = 0;
for ($cost = 10; $end - $start < $target; $cost++) {
$start = microtime(true);
user::hash('test', $cost);
$end = microtime(true);
}
echo "Password cost suggestion: $cost.<br/>You can set this in classes/constants.php.";
}
?>
<hr/>
<h1>Available tools:</h1>
<ol>
<li><a href="?create_tables">Create database tables</a></li>
<li><a href="?create_folders">Create folders</a></li>
<li><a href="?create_user">Create a user</a></li>
<li><a href="?password_cost">Finding a good password cost</a></li>
</ol>
<p>When you're done, it would be the neatest to remove the /install folder (even though this whole control panel should not be accessible for the public).</p>
|