-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
236 lines (175 loc) · 7.68 KB
/
index.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
<?php
#-------------------------------------------
include_once 'config.php';
include_once 'utils.php';
$config = new ConfigStruct();
#check for existing database
if ( !file_exists( $database ) ) {
header( "Location: setup.php" );
die;
}
$config->db = new PDO( 'sqlite:' . $database );
$config->orderid = getCurrentOrderId();
$config->messageCount = 0;
#check database version
updateDatabase();
$config->userid = -1;
if ( isset( $_SESSION[ 'userid' ] ) ) {
$config->userid = $_SESSION[ 'userid' ];
}
$config->login = getLogin( $config->userid );
$config->isHistory = false;
$template_userpanelTxt = "/\[\%userpanel\%\]/";
$template_ordersTxt = "/\[\%orders\%\]/";
# define templates:
$template = "template/index.html";
#-------------------------------------------
# load template:
$page = file_get_contents( $template );
#-------------------------------------------
if ( $config->userid == -1 ) {
$page = removeSection( "<!-- order finished section -->", $page );
$page = removeSection( "<!-- favourites items section -->", $page );
}
if ( !isset( $_SESSION[ 'userid' ] ) ) {
input_register();
input_login();
$page = removeSection( "<!-- logout section -->", $page );
$page = removeSection( "<!-- new order section -->", $page );
$page = removeSection( "<!-- finish order section -->", $page );
} else if ( $config->userid != getUserWhoIsOrdering() ) {
$page = removeSection( "<!-- finish order section -->", $page );
}
eventUpdateArrivalInfo();
if ( $config->userid > -1 ) {
eventVirtualPay();
input_logout();
input_reopenOrder();
input_discountPayout();
eventOrderKill();
eventOrderAdd();
eventOrderPaid();
eventOrderComment();
eventOrderFinished();
eventOrderRestart();
$page = preg_replace( "/\[\%loginName\%\]/", $config->login, $page );
$page = preg_replace( "/\[\%money\%\]/", countMoney(), $page );
$page = preg_replace( "/\[\%moneySpent\%\]/", getOverallSpentMoneyFromLogin( $config->userid ), $page );
# load userpanel
// hide login / register sections
$page = removeSection( "<!-- login section -->", $page );
$page = removeSection( "<!-- register section -->", $page );
}
$timestamp = getTimeStampFreezingOrder();;
//$timestampNow = time();
//$timestampFreeze = $timestampNow + 3600 * $timeHH + $timeMM * 60;
if ( $timestamp <= time() ) {
$timestamp = "";
$page = preg_replace( "/\[\%orderDeadline\%\]/", $timestamp, $page );
} else {
$page = preg_replace( "/\[\%orderDeadline\%\]/", date( 'd.m.o - H:i:s', $timestamp ) . "h", $page );
}
$page = preg_replace( "/\[\%version\%\]/", getVersion(), $page );
eventButtonStartNewOrder();
# load orders
# filter html
switch ( getOrderState() ) {
case 0:
#---------------------------------------------------------------------------
# START NEW ORDER
#---------------------------------------------------------------------------
$page = removeSection( "<!-- incoming orders section -->", $page );
$page = removeSection( "<!-- order items section -->", $page );
$page = removeSection( "<!-- order finished section -->", $page );
$page = removeSection( "<!-- order deadline -->", $page );
$page = removeSection( "<!-- order arrival info -->", $page );
$page = removeSection( "<!-- order arrival control -->", $page );
$page = removeSection( "<!-- favourites items section row -->", $page );
#----------------- create supplier list ------------------------------------
$page = preg_replace( "/\[\%supplierList\%\]/", getSupplierList(), $page );
#----------------- fill hours ----------------------------------------------
$page = preg_replace( "/\[\%countDwnHH\%\]/", getComboboxHH( 11 ), $page );
#----------------- fill minutes --------------------------------------------
$page = preg_replace( "/\[\%countDwnMM\%\]/", getComboboxMM( 0 ), $page );
break;
case 1:
#---------------------------------------------------------------------------
# ORDER RUNNING
#---------------------------------------------------------------------------
if ( getTimeStampFreezingOrder() < time() ) {
closeCurrentOrder();
header( "Location: index.php" );
} else {
$page = removeSection( "<!-- new order section -->", $page );
$page = removeSection( "<!-- order finished section -->", $page );
$page = removeSection( "<!-- order arrival info -->", $page );
$page = removeSection( "<!-- order arrival info storno-->", $page );
$page = removeSection( "<!-- order arrival control -->", $page );
$page = removeSection( "<!-- order arrived -->", $page );
$table = createIncomingOrdersTable( extractSection( "<!-- incoming orders section -->", $page ) );
$page = replaceSection( "<!-- incoming orders section -->", $table, $page );
if($config->userid > -1 ){
$table = getFavourites(extractSection( "<!-- favourites items section row --> ", $page ));
$page = replaceSection( "<!-- favourites items section row -->", $table, $page );
if($config->favouriteCount == 0){
$page = removeSection( "<!-- favourites items section -->", $page );
}
}
$table = createOrderTable( extractSection( "<!-- order items section row -->", $page ) );
$page = replaceSection( "<!-- order items section row -->", $table, $page );
$page = removeSection( "<!-- order arrival control -->", $page );
$page = checkDiscount($page);
$page = removeSection( "<!-- order discount control -->", $page );
}
break;
case 2:
#---------------------------------------------------------------------------
# ORDER FINISHED
#---------------------------------------------------------------------------
$page = removeSection( "<!-- new order section -->", $page );
$page = removeSection( "<!-- order items section -->", $page );
$page = removeSection( "<!-- finish order section -->", $page );
$page = removeSection( "<!-- order deadline -->", $page );
$page = removeSection( "<!-- favourites items section -->", $page );
$page = preg_replace( "/\[\%phoneNumber\%\]/", getCurrentSupplierPhoneNr(), $page );
if ( getUserWhoIsOrdering() == $config->userid ) {
//$page = removeSection("<!-- order arrival info -->" , $page);
$page = preg_replace( "/\[\%timeArrivalHH\%\]/", getComboboxHH( 12 ), $page );
$page = preg_replace( "/\[\%timeArrivalMM\%\]/", getComboboxMM( 15 ), $page );
} else {
$page = removeSection( "<!-- order arrival control -->", $page );
}
$arrivalInfo = getArrivalInfo();
if ( $arrivalInfo[ 0 ] > 0 ) {
$page = removeSection( "<!-- order arrival info -->", $page );
$page = removeSection( "<!-- order arrival control -->", $page );
$page = preg_replace( "/\[\%orderArrivalTime\%\]/", date( "d.m.Y - H:i", $arrivalInfo[ 0 ] ), $page );
$page = preg_replace( "/\[\%orderArrivalLogin\%\]/", $arrivalInfo[ 1 ], $page );
if ( $config->userid == $arrivalInfo[ 2 ] ) {
eventButtonOrderArrivedStorno();
} else {
$page = removeSection( "<!-- order arrival info storno-->", $page );
}
} else {
eventButtonOrderArrived();
$page = removeSection( "<!-- order arrived -->", $page );
$page = removeSection( "<!-- order arrival info storno-->", $page );
}
$table = createIncomingOrdersTable( extractSection( "<!-- incoming orders section -->", $page ) );
$page = replaceSection( "<!-- incoming orders section -->", $table, $page );
$page = preg_replace( "/\[\%orderArrival\%\]/", date( "d.m.Y - H:i", getTimeStampArrivalOrder() ), $page );
$page = checkDiscount($page);
if(($config->orderDiscountPaid == 0) && ( getUserWhoIsOrdering() == $config->userid )){
}
else{
$page = removeSection( "<!-- order discount control -->", $page );
}
break;
}
eventButtonPrintOrder();
echo $page; # print page to browser
# javascript section here, dynamical content etc..
showMessages();
showDeadline();
//check4arrival();
?>