forked from sivann/itdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
430 lines (357 loc) · 16 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
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<?php
//ITDB:IT-items database
//sivann at gmail.com 2008-2012
$version="1.8";
$fordbversion=2;
/***********************************************************************
***********************************************************************
***********************************************************************/
$itdb_start=getmicrotime();
function getmicrotime() {
$a = explode (' ',microtime());
return(double) $a[0] + $a[1];
}
$initok=1;
require("init.php");
$head="";
if (!isset($_GET['action']))
$_GET['action']="";
else {
$_GET['action']=str_replace("/","",$_GET['action']);
$_GET['action']=str_replace("%","",$_GET['action']);
$_GET['action']=str_replace(";","",$_GET['action']);
}
if ((isset($_GET['export']) && ($_GET['export']==1))) {
$action = "listitems";
require ("php/listitems.php");
exit;
}
$req="php/{$_GET['action']}.php";
$stitle="";
if ((isset($_GET['dlg']) && ($_GET['dlg']==1))) {
$dlg=1;
}
else {
$dlg=0;
}
switch ($_GET['action']) {
case "listitems2":
$title="Find Item2";
break;
case "listitems":
$title="Find Item";
$head.="<link rel='stylesheet' type='text/css' href='css/jquery.tag.list.css' />\n";
break;
case "listagents":
$title="List Agents";
break;
case "editagent":
$title="Edit Agent";
break;
case "edititem":
$title="Edit Item";
$stitle="Item";
$head.="<script language='javascript' type='text/javascript' src='js/jquery.tag.js'></script>\n".
"<link rel='stylesheet' type='text/css' href='css/jquery.tag.css' />\n".
"<script language='javascript' type='text/javascript' src='js/jquery.metadata.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.front.js'></script>\n";
break;
case "editsoftware":
$title="Edit Software";
$stitle="Software";
$head.="<script language='javascript' type='text/javascript' src='js/jquery.tag.js'></script>\n".
"<link rel='stylesheet' type='text/css' href='css/jquery.tag.css' />\n".
"<script language='javascript' type='text/javascript' src='js/jquery.metadata.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.front.js'></script>\n";
break;
case "listsoftware":
$title="List Software";
$head.="<link rel='stylesheet' type='text/css' href='css/jquery.tag.list.css' />\n";
break;
case "listcontracts":
$title="List Contracts";
break;
case "listinvoices":
$title="List Invoices";
break;
case "editinvoice":
$title="Edit Invoice";
$stitle="Invoice";
$head.="<script language='javascript' type='text/javascript' src='js/jquery.metadata.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.front.js'></script>\n";
break;
case "listfiles":
$title="List Files";
break;
case "editfile":
$title="Edit File";
$stitle="File";
$head.="<script language='javascript' type='text/javascript' src='js/jquery.metadata.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.front.js'></script>\n";
break;
case "listusers":
$title="List Users";
break;
case "listracks":
$title="List Racks";
break;
case "translations":
$title="Translations";
break;
case "settings":
$title="Settings";
break;
case "import":
$title="Import";
break;
case "edituser":
$stitle="User";
$title="Edit User";
$head.="<script language='javascript' type='text/javascript' src='js/jquery.metadata.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.front.js'></script>\n";
break;
case "editrack":
$stitle="Rack";
$title="Edit Rack";
$head.="<script language='javascript' type='text/javascript' src='js/jquery.metadata.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.front.js'></script>\n";
break;
case "edititypes":
$title="Edit Item Types";
break;
case "editcontract":
$title="Edit Contract";
$stitle="Contract";
$head.="<script language='javascript' type='text/javascript' src='js/jquery.metadata.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.js'></script>\n".
"<script language='javascript' type='text/javascript' src='js/jquery.validate.front.js'></script>\n";
break;
case "editcontracttypes":
$title="Edit Contract Types";
break;
case "edittags":
$title="Edit Tags";
break;
case "editusers":
$title="Edit Users";
break;
case "listlocations":
$title="List Locations";
break;
case "editlocation":
$title="Edit Location";
break;
case "editstatustypes":
$title="Edit Item Status Types";
break;
case "editfiletypes":
$title="Edit File Types";
break;
case "printlabels":
$title="Print Labels ";
break;
case "reports":
$title="Reports";
$head.="<script language='javascript' type='text/javascript' src='js/jqplot/jquery.jqplot.js'></script>\n".
"<script type='text/javascript' src='js/jqplot/plugins/jqplot.pieRenderer.js'></script>\n".
"<script type='text/javascript' src='js/jqplot/plugins/jqplot.barRenderer.js'></script>\n".
"<!--[if lt IE 9]><script language='javascript' type='text/javascript' src='js/jqplot/excanvas.js'></script><![endif]-->\n".
"<link rel='stylesheet' type='text/css' href='css/jquery.jqplot.css' />";
break;
case "showhist":
$title="History";
break;
case "browse":
$title="Browse Data";
$head.="<script type='text/javascript' src='js/jstree/jquery.jstree.js'></script>";
break;
case "viewrack":
$title="Rack";
$stitle="Rack";
break;
case "about":
$title="About";
$stitle="About";
$req="php/about.php";
break;
default:
$title="";
$stitle="";
$req="php/home.php";
break;
}
if (isset($_GET['id']))
$id=$_GET['id'];
else
$id="";
if (strlen($stitle)) $stitle.=":".$id;
$x="style_".$_GET['action'];
$$x="color:#BAFF04 ";
require('php/header.php');
if ($authstatus && (dbversion() != $fordbversion)) {
echo "<body>";
require ("php/itdbupdate.php");
echo "</body>\n</html>\n";
exit;
}
if ($dlg && $authstatus) {
echo "<body>";
require($req);
echo "</body>\n</html>\n";
exit;
}
?>
<body onload='BodyLoad()' class='mainbody'>
<!--div id='mainheader'> <?php echo $settings['companytitle']?> </div-->
<div id='leftcolumn' >
<div onclick='self.location.href="<?php echo $scriptname?>"' id='leftlogo' >
<span style='padding-top:5px;'> <a href='<?php echo $scriptname?>'> ITDB </a></span>
</div>
<span id=logo>
IT ITems DataBase
</span>
<hr class='green1'>
<?php
if ($authstatus) {
?>
<table class='thdr' width='90%' border=0>
<tr><td><a style='<?php echo $style_?>' class='ahdr' href="<?php echo $scriptname?>" ><?php echo t("Home") ?></a></td> <td></td> </tr>
<tr><td><a style='<?php echo $style_about?>' class='ahdr' href="<?php echo $scriptname?>?action=about" ><?php te("About")?></a></td> <td></td> </tr>
<tr><td colspan=2><hr class='light1'> </td></tr>
<tr>
<td><a style="<?php echo $style_listitems.$style_edititem; ?>" class='ahdr' title='<?php te("List Items");?>' href="<?php echo $scriptname?>?action=listitems" ><?php te("Items")?></a> </td>
<td><a title='<?php te("Add new Item");?>' class='ahdr' href="<?php echo $scriptname?>?action=edititem&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr>
<td><a style="<?php echo $style_listsoftware.$style_editsoftware; ?>" title='<?php te("List Software");?>' class='ahdr' href="<?php echo $scriptname?>?action=listsoftware" ><?php te("Software");?></a> </td>
<td><a title='<?php te("Add new Software");?>' class='ahdr' href="<?php echo $scriptname?>?action=editsoftware&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr>
<td><a style="<?php echo $style_listinvoices.$style_editinvoice; ?>" title='<?php te("List Invoices");?>' class='ahdr' href="<?php echo $scriptname?>?action=listinvoices" ><?php te("Invoices");?></a> </td>
<td><a title='<?php te("Add new Invoice");?>' class='ahdr' href="<?php echo $scriptname?>?action=editinvoice&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr>
<td><a style="<?php echo $style_listagents.$style_editagent; ?>" title='<?php te("Vendors/Buyers/ Manufacturers");?>' class='ahdr' href="<?php echo $scriptname?>?action=listagents" ><?php te("Agents");?></a> </td>
<td><a title='<?php te("Add new Agent");?>' class='ahdr' href="<?php echo $scriptname?>?action=editagent&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr>
<td><a style="<?php echo $style_listfiles.$style_editfile; ?>" title='<?php te("Documents, Manuals, Offers, Licenses, ...");?>' class='ahdr' href="<?php echo $scriptname?>?action=listfiles" ><?php te("Files");?></a> </td>
<td><a title='<?php te("Add new File");?>' class='ahdr' href="<?php echo $scriptname?>?action=editfile&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr>
<td><a style="<?php echo $style_listcontracts.$style_editcontract; ?>" title='<?php te("Support and Maintanance, Leases, ...");?>' class='ahdr' href="<?php echo $scriptname?>?action=listcontracts" ><?php te("Contracts");?></a> </td>
<td><a title='<?php te("Add new Contract");?>' class='ahdr' href="<?php echo $scriptname?>?action=editcontract&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr>
<td><a style="<?php echo $style_listlocations; ?>" class='ahdr' href="<?php echo $scriptname?>?action=listlocations" ><?php te("Locations");?></a></td>
<td><a style="<?php echo $style_editlocation; ?>" class='ahdr' href="<?php echo $scriptname?>?action=editlocation&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr>
<td><a style="<?php echo $style_listusers; ?>" class='ahdr' href="<?php echo $scriptname?>?action=listusers" ><?php te("Users");?></a></td>
<td><a style="<?php echo $style_edituser; ?>" class='ahdr' href="<?php echo $scriptname?>?action=edituser&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr>
<td><a style="<?php echo $style_listracks; ?>" class='ahdr' href="<?php echo $scriptname?>?action=listracks" ><?php te("Racks");?></a></td>
<td><a style="<?php echo $style_editrack; ?>" class='ahdr' href="<?php echo $scriptname?>?action=editrack&id=new" ><img alt="+" src='images/add.png'></a></td>
</tr>
<tr><td colspan=2><hr class='light1'> </td></tr>
<tr><td colspan=2><a style="<?php echo $style_edititypes; ?>" class='ahdr' href="<?php echo $scriptname?>?action=edititypes" ><?php te("Item Types");?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_editcontracttypes; ?>" class='ahdr' href="<?php echo $scriptname?>?action=editcontracttypes" ><?php te("Contr. Types")?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_editstatustypes; ?>" class='ahdr' href="<?php echo $scriptname?>?action=editstatustypes" ><?php te("Status Types");?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_editfiletypes; ?>" class='ahdr' href="<?php echo $scriptname?>?action=editfiletypes" ><?php te("File Types");?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_edittags; ?>" class='ahdr' href="<?php echo $scriptname?>?action=edittags" ><?php te("Tags")?></a></td></tr>
<tr><td colspan=2><hr class='light1'> </td></tr>
<tr><td colspan=2><a style="<?php echo $style_printlabels; ?>" class='ahdr' href="<?php echo $scriptname?>?action=printlabels" ><?php te("Print Labels")?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_reports; ?>" class='ahdr' href="<?php echo $scriptname?>?action=reports" ><?php te("Reports")?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_browse; ?>" class='ahdr' href="<?php echo $scriptname?>?action=browse" ><?php te("Browse Data")?></a></td></tr>
<tr><td colspan=2><hr class='light1'></td></tr>
<tr><td colspan=2><a style="<?php echo $style_settings; ?>" class='ahdr' href="<?php echo $scriptname?>?action=settings" ><?php te("Settings");?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_import; ?>" class='ahdr' href="<?php echo $scriptname?>?action=import" ><?php te("Import");?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_translations; ?>" class='ahdr' href="<?php echo $scriptname?>?action=translations" ><?php te("Translations");?></a></td></tr>
<tr><td colspan=2><a style="<?php echo $style_showhist; ?>" class='ahdr' href="<?php echo $scriptname?>?action=showhist" >DB Log</a></td></tr>
</table>
<?php
}
else {
if (isset($_COOKIE["itdbuser"])) $itdbuser=$_COOKIE["itdbuser"];
else $itdbuser="username";
echo "\n<form name=itdbloginfrm method=post>".
"<input name=authusername size=10 onfocus=\"this.value='';\" ".
"value='$itdbuser'>\n<br>".
"<input name=authpassword size=10 type=password onfocus=\"this.value='';\" ".
"value=''>\n".
"<br><br><button type=submit><img src='images/key.png'> Login</button>";
"\n";
}
if ($authstatus) {
echo "\n<div style='height:5px'></div>".
"<form method=post><button type='submit'><img width=20 src='images/logout_red.png'> ".t("Logout")."</button>".
"\n<input type=hidden name=logout value='1'></form>";
if (strlen($stitle)) {
$url="$fscriptname?action=$action&id=$id";
$sql="SELECT * FROM viewhist order by id DESC limit 1";
$sth=db_execute($dbh,$sql);
$viewhist=$sth->fetchAll(PDO::FETCH_ASSOC);
if (!$demomode) {
if ($viewhist[0]['url']!=$url) {
$sql="INSERT into viewhist (url,description)".
" VALUEs ('$url','$stitle')";
db_exec($dbh,$sql,1,1,$lastid);
$lastkeep=(int)($lastid)-40;
$sql="DELETE from viewhist where id<$lastkeep";
db_exec($dbh,$sql,1,1);
$sth=$dbh->exec($sql);
}
}
}
$sql="SELECT * FROM viewhist order by id DESC";
$sth=db_execute($dbh,$sql);
$viewhist=$sth->fetchAll(PDO::FETCH_ASSOC);
?>
<div title='<?php te("Recent History");?>' style='font-size:7pt;height:75px;width:100%;overflow:auto;margin-top:5px ;margin-bottom:5px;text-align:left;color:white;border-bottom:1px solid #8FAFE4;'>
<?php
for ($i=0;$i<count($viewhist);$i++){
if (!($i%2)) $bgc="";else$bgc="background-color:#295BAD";
echo "<div style='border-bottom:1px solid #8FAFE4;width:100%;clear:both;$bgc'><a style='color:white' href='".$viewhist[$i]['url']."'>".$viewhist[$i]['description']."</a></div>\n";
}
?>
</div>
<?php
}
if (strstr($authmsg,"elcome") || strstr($authmsg,"thenticated"))
echo "<div class=info>$authmsg</div><br>";
elseif (!strstr($authmsg,"elcome"))
echo "<br><div class=warning>$authmsg</div>";
if ($authstatus) {
?>
<a title='<?php te("Download DataBase file. Contains all data except uploaded files/documents");?>' class='ahdr' href='getdb.php'><img src='images/database_save.png'>DB (SQLite)</a><br>
<a title='<?php te("Download a complete installation backup (much larger)");?>' class='ahdr' href='gettar.php'><img src='images/backup.gif' width=20>Full Backup</a><br>
<?php
}
echo "<br> <small>".
"<a href='CHANGELOG.txt' class='ahdr'>Version $version</a><br><a style='color:white' href='http://www.sivann.gr/software/itdb/'>sivann</a></small>\n";
?>
<br>
<a title='phpinfo' href='phpinfo.php'><img src='images/infosmall.png'></a>
</div>
<!-- END OF #leftcolumn -->
<div id='mainpage'>
<?php
if ($authstatus)
require($req);
else {
echo "<b>Please log in</b>";
require("php/about.php");
}
$itdb_end=getmicrotime();
echo "</div>";// <!-- end of #mainpage -->
echo "<span style='color:#aaa'>server time = ".number_format(($itdb_end - $itdb_start),3)." secs</span>";
?>
</body>
</html>