-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpliteadmin.php
4903 lines (4668 loc) · 177 KB
/
phpliteadmin.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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
//
// Project: phpLiteAdmin (http://phpliteadmin.googlecode.com)
// Version: 1.9.3.3
// Summary: PHP-based admin tool to manage SQLite2 and SQLite3 databases on the web
// Last updated: 2013-01-14
// Developers:
// Dane Iracleous (daneiracleous@gmail.com)
// Ian Aldrighetti (ian.aldrighetti@gmail.com)
// George Flanagin & Digital Gaslight, Inc (george@digitalgaslight.com)
// Christopher Kramer (crazy4chrissi@gmail.com)
//
//
// Copyright (C) 2013 phpLiteAdmin
//
// 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/>.
//
///////////////////////////////////////////////////////////////////////////
//please report any bugs you encounter to http://code.google.com/p/phpliteadmin/issues/list
//BEGIN USER-DEFINED VARIABLES
//////////////////////////////
//password to gain access
$password = "admin";
//directory relative to this file to search for databases (if false, manually list databases in the $databases variable)
$directory = ".";
//whether or not to scan the subdirectories of the above directory infinitely deep
$subdirectories = false;
//if the above $directory variable is set to false, you must specify the databases manually in an array as the next variable
//if any of the databases do not exist as they are referenced by their path, they will be created automatically
$databases = array
(
array
(
"path"=> "database1.sqlite",
"name"=> "Database 1"
),
array
(
"path"=> "database2.sqlite",
"name"=> "Database 2"
)
);
//a list of custom functions that can be applied to columns in the databases
//make sure to define every function below if it is not a core PHP function
$custom_functions = array('md5', 'md5rev', 'sha1', 'sha1rev', 'time', 'mydate', 'strtotime', 'myreplace');
//define all the non-core custom functions
function md5rev($value)
{
return strrev(md5($value));
}
function sha1rev($value)
{
return strrev(sha1($value));
}
function mydate($value)
{
return date("g:ia n/j/y", intval($value));
}
function myreplace($value)
{
return ereg_replace("[^A-Za-z0-9]", "", strval($value));
}
//changing the following variable allows multiple phpLiteAdmin installs to work under the same domain.
$cookie_name = 'pla3412';
//whether or not to put the app in debug mode where errors are outputted
$debug = false;
// the user is allowed to create databases with only these extensions
$allowed_extensions = array('db','db3','sqlite','sqlite3');
////////////////////////////
//END USER-DEFINED VARIABLES
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
//there is no reason for the average user to edit anything below this comment
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
session_start(); //don't mess with this - required for the login session
date_default_timezone_set(date_default_timezone_get()); //needed to fix STRICT warnings about timezone issues
if($debug==true)
{
ini_set("display_errors", 1);
error_reporting(E_STRICT | E_ALL);
}
$startTimeTot = microtime(true); //start the timer to record page load time
//the salt and password encrypting is probably unnecessary protection but is done just for the sake of being very secure
//create a random salt for this session if a cookie doesn't already exist for it
if(!isset($_SESSION[$cookie_name.'_salt']) && !isset($_COOKIE[$cookie_name.'_salt']))
{
$n = rand(10e16, 10e20);
$_SESSION[$cookie_name.'_salt'] = base_convert($n, 10, 36);
}
else if(!isset($_SESSION[$cookie_name.'_salt']) && isset($_COOKIE[$cookie_name.'_salt'])) //session doesn't exist, but cookie does so grab it
{
$_SESSION[$cookie_name.'_salt'] = $_COOKIE[$cookie_name.'_salt'];
}
//constants
define("PROJECT", "phpLiteAdmin");
define("VERSION", "1.9.3.3");
define("PAGE", basename(__FILE__));
define("COOKIENAME", $cookie_name);
define("SYSTEMPASSWORD", $password); // Makes things easier.
define("SYSTEMPASSWORDENCRYPTED", md5($password."_".$_SESSION[$cookie_name.'_salt'])); //extra security - salted and encrypted password used for checking
define("FORCETYPE", false); //force the extension that will be used (set to false in almost all circumstances except debugging)
//data types array
$types = array("INTEGER", "REAL", "TEXT", "BLOB");
define("DATATYPES", serialize($types));
//available SQLite functions array (don't add anything here or there will be problems)
$functions = array("abs", "hex", "length", "lower", "ltrim", "random", "round", "rtrim", "trim", "typeof", "upper");
define("FUNCTIONS", serialize($functions));
define("CUSTOM_FUNCTIONS", serialize($custom_functions));
//function that allows SQL delimiter to be ignored inside comments or strings
function explode_sql($delimiter, $sql)
{
$ign = array('"' => '"', "'" => "'", "/*" => "*/", "--" => "\n"); // Ignore sequences.
$out = array();
$last = 0;
$slen = strlen($sql);
$dlen = strlen($delimiter);
$i = 0;
while($i < $slen)
{
// Split on delimiter
if($slen - $i >= $dlen && substr($sql, $i, $dlen) == $delimiter)
{
array_push($out, substr($sql, $last, $i - $last));
$last = $i + $dlen;
$i += $dlen;
continue;
}
// Eat comments and string literals
foreach($ign as $start => $end)
{
$ilen = strlen($start);
if($slen - $i >= $ilen && substr($sql, $i, $ilen) == $start)
{
$i+=strlen($start);
$elen = strlen($end);
while($i < $slen)
{
if($slen - $i >= $elen && substr($sql, $i, $elen) == $end)
{
// SQL comment characters can be escaped by doubling the character. This recognizes and skips those.
if($start == $end && $slen - $i >= $elen*2 && substr($sql, $i, $elen*2) == $end.$end)
{
$i += $elen * 2;
continue;
}
else
{
$i += $elen;
continue 3;
}
}
$i++;
}
continue 2;
}
}
$i++;
}
if($last < $slen)
array_push($out, substr($sql, $last, $slen - $last));
return $out;
}
//function to scan entire directory tree and subdirectories
function dir_tree($dir)
{
$path = '';
$stack[] = $dir;
while($stack)
{
$thisdir = array_pop($stack);
if($dircont = scandir($thisdir))
{
$i=0;
while(isset($dircont[$i]))
{
if($dircont[$i] !== '.' && $dircont[$i] !== '..')
{
$current_file = $thisdir.DIRECTORY_SEPARATOR.$dircont[$i];
if(is_file($current_file))
{
$path[] = $thisdir.DIRECTORY_SEPARATOR.$dircont[$i];
}
elseif (is_dir($current_file))
{
$path[] = $thisdir.DIRECTORY_SEPARATOR.$dircont[$i];
$stack[] = $current_file;
}
}
$i++;
}
}
}
return $path;
}
//the function echo the help [?] links to the documentation
function helpLink($name)
{
return "<a href='javascript:void' onclick='openHelp(\"".$name."\");' class='helpq' title='Help: ".$name."'>[?]</a>";
}
// function to encode value into HTML just like htmlentities, but with adjusted default settings
function htmlencode($value, $flags=ENT_QUOTES, $encoding ="UTF-8")
{
return htmlentities($value, $flags, $encoding);
}
// 22 August 2011: gkf added this function to support display of
// default values in the form used to INSERT new data.
function deQuoteSQL($s)
{
return trim(trim($s), "'");
}
// checks the (new) name of a database file
function checkDbName($name)
{
global $allowed_extensions;
$info = pathinfo($name);
if(isset($info['extension']) && !in_array($info['extension'], $allowed_extensions))
{
return false;
} else
{
return (!is_file($name) && !is_dir($name));
}
}
// check whether a path is a db managed by this tool
// requires that $databases is already filled!
// returns the key of the db if managed, false otherwise.
function isManagedDB($path)
{
global $databases;
foreach($databases as $db_key => $database)
{
if($path == $database['path'])
{
// a db we manage. Thats okay.
// return the key.
return $db_key;
}
}
// not a db we manage!
return false;
}
//
// Authorization class
// Maintains user's logged-in state and security of application
//
class Authorization
{
public function grant($remember)
{
if($remember) //user wants to be remembered, so set a cookie
{
$expire = time()+60*60*24*30; //set expiration to 1 month from now
setcookie(COOKIENAME, SYSTEMPASSWORD, $expire);
setcookie(COOKIENAME."_salt", $_SESSION[COOKIENAME.'_salt'], $expire);
}
else
{
//user does not want to be remembered, so destroy any potential cookies
setcookie(COOKIENAME, "", time()-86400);
setcookie(COOKIENAME."_salt", "", time()-86400);
unset($_COOKIE[COOKIENAME]);
unset($_COOKIE[COOKIENAME.'_salt']);
}
$_SESSION[COOKIENAME.'password'] = SYSTEMPASSWORDENCRYPTED;
}
public function revoke()
{
//destroy everything - cookies and session vars
setcookie(COOKIENAME, "", time()-86400);
setcookie(COOKIENAME."_salt", "", time()-86400);
unset($_COOKIE[COOKIENAME]);
unset($_COOKIE[COOKIENAME.'_salt']);
session_unset();
session_destroy();
}
public function isAuthorized()
{
// Is this just session long? (What!?? -DI)
if((isset($_SESSION[COOKIENAME.'password']) && $_SESSION[COOKIENAME.'password'] == SYSTEMPASSWORDENCRYPTED) || (isset($_COOKIE[COOKIENAME]) && isset($_COOKIE[COOKIENAME.'_salt']) && md5($_COOKIE[COOKIENAME]."_".$_COOKIE[COOKIENAME.'_salt']) == SYSTEMPASSWORDENCRYPTED))
return true;
else
{
return false;
}
}
}
//
// Database class
// Generic database abstraction class to manage interaction with database without worrying about SQLite vs. PHP versions
//
class Database
{
protected $db; //reference to the DB object
protected $type; //the extension for PHP that handles SQLite
protected $data;
protected $lastResult;
protected $fns;
public function __construct($data)
{
$this->data = $data;
$this->fns = array();
try
{
if(!file_exists($this->data["path"]) && !is_writable(dirname($this->data["path"]))) //make sure the containing directory is writable if the database does not exist
{
echo "<div class='confirm' style='margin:20px;'>";
echo "The database, '".htmlencode($this->data["path"])."', does not exist and cannot be created because the containing directory, '".htmlencode(dirname($this->data["path"]))."', is not writable. The application is unusable until you make it writable.";
echo "<form action='".PAGE."' method='post'>";
echo "<input type='submit' value='Log Out' name='logout' class='btn'/>";
echo "</form>";
echo "</div><br/>";
exit();
}
$ver = $this->getVersion();
switch(true)
{
case (FORCETYPE=="PDO" || ((FORCETYPE==false || $ver!=-1) && class_exists("PDO") && ($ver==-1 || $ver==3))):
$this->db = new PDO("sqlite:".$this->data['path']);
if($this->db!=NULL)
{
$this->type = "PDO";
$cfns = unserialize(CUSTOM_FUNCTIONS);
for($i=0; $i<sizeof($cfns); $i++)
{
$this->db->sqliteCreateFunction($cfns[$i], $cfns[$i], 1);
$this->addUserFunction($cfns[$i]);
}
break;
}
case (FORCETYPE=="SQLite3" || ((FORCETYPE==false || $ver!=-1) && class_exists("SQLite3") && ($ver==-1 || $ver==3))):
$this->db = new SQLite3($this->data['path']);
if($this->db!=NULL)
{
$cfns = unserialize(CUSTOM_FUNCTIONS);
for($i=0; $i<sizeof($cfns); $i++)
{
$this->db->createFunction($cfns[$i], $cfns[$i], 1);
$this->addUserFunction($cfns[$i]);
}
$this->type = "SQLite3";
break;
}
case (FORCETYPE=="SQLiteDatabase" || ((FORCETYPE==false || $ver!=-1) && class_exists("SQLiteDatabase") && ($ver==-1 || $ver==2))):
$this->db = new SQLiteDatabase($this->data['path']);
if($this->db!=NULL)
{
$cfns = unserialize(CUSTOM_FUNCTIONS);
for($i=0; $i<sizeof($cfns); $i++)
{
$this->db->createFunction($cfns[$i], $cfns[$i], 1);
$this->addUserFunction($cfns[$i]);
}
$this->type = "SQLiteDatabase";
break;
}
default:
$this->showError();
exit();
}
}
catch(Exception $e)
{
$this->showError();
exit();
}
}
public function getUserFunctions()
{
return $this->fns;
}
public function addUserFunction($name)
{
array_push($this->fns, $name);
}
public function getError()
{
if($this->type=="PDO")
{
$e = $this->db->errorInfo();
return $e[2];
}
else if($this->type=="SQLite3")
{
return $this->db->lastErrorMsg();
}
else
{
return sqlite_error_string($this->db->lastError());
}
}
public function showError()
{
$classPDO = class_exists("PDO");
$classSQLite3 = class_exists("SQLite3");
$classSQLiteDatabase = class_exists("SQLiteDatabase");
if($classPDO)
$strPDO = "installed";
else
$strPDO = "not installed";
if($classSQLite3)
$strSQLite3 = "installed";
else
$strSQLite3 = "not installed";
if($classSQLiteDatabase)
$strSQLiteDatabase = "installed";
else
$strSQLiteDatabase = "not installed";
echo "<div class='confirm' style='margin:20px;'>";
echo "There was a problem setting up your database, ".$this->getPath().". An attempt will be made to find out what's going on so you can fix the problem more easily.<br/><br/>";
echo "<i>Checking supported SQLite PHP extensions...<br/><br/>";
echo "<b>PDO</b>: ".$strPDO."<br/>";
echo "<b>SQLite3</b>: ".$strSQLite3."<br/>";
echo "<b>SQLiteDatabase</b>: ".$strSQLiteDatabase."<br/><br/>...done.</i><br/><br/>";
if(!$classPDO && !$classSQLite3 && !$classSQLiteDatabase)
echo "It appears that none of the supported SQLite library extensions are available in your installation of PHP. You may not use ".PROJECT." until you install at least one of them.";
else
{
if(!$classPDO && !$classSQLite3 && $this->getVersion()==3)
echo "It appears that your database is of SQLite version 3 but your installation of PHP does not contain the necessary extensions to handle this version. To fix the problem, either delete the database and allow ".PROJECT." to create it automatically or recreate it manually as SQLite version 2.";
else if(!$classSQLiteDatabase && $this->getVersion()==2)
echo "It appears that your database is of SQLite version 2 but your installation of PHP does not contain the necessary extensions to handle this version. To fix the problem, either delete the database and allow ".PROJECT." to create it automatically or recreate it manually as SQLite version 3.";
else
echo "The problem cannot be diagnosed properly. Please file an issue report at http://phpliteadmin.googlecode.com.";
}
echo "</div><br/>";
}
public function __destruct()
{
if($this->db)
$this->close();
}
//get the exact PHP extension being used for SQLite
public function getType()
{
return $this->type;
}
//get the name of the database
public function getName()
{
return $this->data["name"];
}
//get the filename of the database
public function getPath()
{
return $this->data["path"];
}
//get the version of the database
public function getVersion()
{
if(file_exists($this->data['path'])) //make sure file exists before getting its contents
{
$content = strtolower(file_get_contents($this->data['path'], NULL, NULL, 0, 40)); //get the first 40 characters of the database file
$p = strpos($content, "** this file contains an sqlite 2"); //this text is at the beginning of every SQLite2 database
if($p!==false) //the text is found - this is version 2
return 2;
else
return 3;
}
else //return -1 to indicate that it does not exist and needs to be created
{
return -1;
}
}
//get the size of the database
public function getSize()
{
return round(filesize($this->data["path"])*0.0009765625, 1)." KB";
}
//get the last modified time of database
public function getDate()
{
return date("g:ia \o\\n F j, Y", filemtime($this->data["path"]));
}
//get number of affected rows from last query
public function getAffectedRows()
{
if($this->type=="PDO")
return $this->lastResult->rowCount();
else if($this->type=="SQLite3")
return $this->db->changes();
else if($this->type=="SQLiteDatabase")
return $this->db->changes();
}
public function close()
{
if($this->type=="PDO")
$this->db = NULL;
else if($this->type=="SQLite3")
$this->db->close();
else if($this->type=="SQLiteDatabase")
$this->db = NULL;
}
public function beginTransaction()
{
$this->query("BEGIN");
}
public function commitTransaction()
{
$this->query("COMMIT");
}
public function rollbackTransaction()
{
$this->query("ROLLBACK");
}
//generic query wrapper
public function query($query, $ignoreAlterCase=false)
{
global $debug;
if(strtolower(substr(ltrim($query),0,5))=='alter' && $ignoreAlterCase==false) //this query is an ALTER query - call the necessary function
{
preg_match("/^\s*ALTER\s+TABLE\s+\"((?:[^\"]|\"\")+)\"\s+(.*)$/i",$query,$matches);
if(!isset($matches[1]) || !isset($matches[2]))
{
if($debug) echo "<span title='".htmlencode($query)."' onclick='this.innerHTML=\"".htmlencode(str_replace('"','\"',$query))."\"' style='cursor:pointer'>SQL?</span><br />";
return false;
}
$tablename = str_replace('""','"',$matches[1]);
$alterdefs = $matches[2];
if($debug) echo "ALTER TABLE QUERY=(".htmlencode($query)."), tablename=($tablename), alterdefs=($alterdefs)<hr>";
$result = $this->alterTable($tablename, $alterdefs);
}
else //this query is normal - proceed as normal
{
$result = $this->db->query($query);
if($debug) echo "<span title='".htmlencode($query)."' onclick='this.innerHTML=\"".htmlencode(str_replace('"','\"',$query))."\"' style='cursor:pointer'>SQL?</span><br />";
}
if(!$result)
return false;
$this->lastResult = $result;
return $result;
}
//wrapper for an INSERT and returns the ID of the inserted row
public function insert($query)
{
$result = $this->query($query);
if($this->type=="PDO")
return $this->db->lastInsertId();
else if($this->type=="SQLite3")
return $this->db->lastInsertRowID();
else if($this->type=="SQLiteDatabase")
return $this->db->lastInsertRowid();
}
//returns an array for SELECT
public function select($query, $mode="both")
{
$result = $this->query($query);
if(!$result) //make sure the result is valid
return NULL;
if($this->type=="PDO")
{
if($mode=="assoc")
$mode = PDO::FETCH_ASSOC;
else if($mode=="num")
$mode = PDO::FETCH_NUM;
else
$mode = PDO::FETCH_BOTH;
return $result->fetch($mode);
}
else if($this->type=="SQLite3")
{
if($mode=="assoc")
$mode = SQLITE3_ASSOC;
else if($mode=="num")
$mode = SQLITE3_NUM;
else
$mode = SQLITE3_BOTH;
return $result->fetchArray($mode);
}
else if($this->type=="SQLiteDatabase")
{
if($mode=="assoc")
$mode = SQLITE_ASSOC;
else if($mode=="num")
$mode = SQLITE_NUM;
else
$mode = SQLITE_BOTH;
return $result->fetch($mode);
}
}
//returns an array of arrays after doing a SELECT
public function selectArray($query, $mode="both")
{
$result = $this->query($query);
if(!$result) //make sure the result is valid
return NULL;
if($this->type=="PDO")
{
if($mode=="assoc")
$mode = PDO::FETCH_ASSOC;
else if($mode=="num")
$mode = PDO::FETCH_NUM;
else
$mode = PDO::FETCH_BOTH;
return $result->fetchAll($mode);
}
else if($this->type=="SQLite3")
{
if($mode=="assoc")
$mode = SQLITE3_ASSOC;
else if($mode=="num")
$mode = SQLITE3_NUM;
else
$mode = SQLITE3_BOTH;
$arr = array();
$i = 0;
while($res = $result->fetchArray($mode))
{
$arr[$i] = $res;
$i++;
}
return $arr;
}
else if($this->type=="SQLiteDatabase")
{
if($mode=="assoc")
$mode = SQLITE_ASSOC;
else if($mode=="num")
$mode = SQLITE_NUM;
else
$mode = SQLITE_BOTH;
return $result->fetchAll($mode);
}
}
// SQlite supports multiple ways of surrounding names in quotes:
// single-quotes, double-quotes, backticks, square brackets.
// As sqlite does not keep this strict, we also need to be flexible here.
// This function generates a regex that matches any of the possibilities.
private function sqlite_surroundings_preg($name,$preg_quote=true,$notAllowedIfNone="'\"")
{
if($name=="*" || $name=="+")
{
$nameSingle = "(?:[^']|'')".$name;
$nameDouble = "(?:[^\"]|\"\")".$name;
$nameBacktick = "(?:[^`]|``)".$name;
$nameSquare = "(?:[^\]]|\]\])".$name;
$nameNo = "[^".$notAllowedIfNone."]".$name;
}
else
{
if($preg_quote) $name = preg_quote($name,"/");
$nameSingle = str_replace("'","''",$name);
$nameDouble = str_replace('"','""',$name);
$nameBacktick = str_replace('`','``',$name);
$nameSquare = str_replace(']',']]',$name);
$nameNo = $name;
}
$preg = "(?:'".$nameSingle."'|". // single-quote surrounded or not in quotes (correct SQL for values/new names)
$nameNo."|". // not surrounded (correct SQL if not containing reserved words, spaces or some special chars)
"\"".$nameDouble."\"|". // double-quote surrounded (correct SQL for identifiers)
"`".$nameBacktick."`|". // backtick surrounded (MySQL-Style)
"\[".$nameSquare."\])"; // square-bracket surrounded (MS Access/SQL server-Style)
return $preg;
}
// function that is called for an alter table statement in a query
// code borrowed with permission from http://code.jenseng.com/db/
// this has been completely debugged / rewritten by Christopher Kramer
public function alterTable($table, $alterdefs)
{
global $debug;
if($debug) echo "ALTER TABLE: table=($table), alterdefs=($alterdefs)<hr>";
if($alterdefs != '')
{
$recreateQueries = array();
$tempQuery = "SELECT sql,name,type FROM sqlite_master WHERE tbl_name = ".$this->quote($table)." ORDER BY type DESC";
$result = $this->query($tempQuery);
$resultArr = $this->selectArray($tempQuery);
if($this->type=="PDO")
$result->closeCursor();
if(sizeof($resultArr)<1)
return false;
for($i=0; $i<sizeof($resultArr); $i++)
{
$row = $resultArr[$i];
if($row['type'] != 'table')
{
// store the CREATE statements of triggers and indexes to recreate them later
$recreateQueries[] = $row['sql']."; ";
if($debug) echo "recreate=(".$row['sql'].";)<hr />";
}
else
{
// ALTER the table
$tmpname = 't'.time();
$origsql = $row['sql'];
$createtemptableSQL = "CREATE TEMPORARY TABLE ".$this->quote($tmpname)." ".
preg_replace("/^\s*CREATE\s+TABLE\s+".$this->sqlite_surroundings_preg($table)."\s*(\(.*)$/i", '$1', $origsql, 1);
if($debug) echo "createtemptableSQL=($createtemptableSQL)<hr>";
$createindexsql = array();
preg_match_all("/(?:DROP|ADD|CHANGE|RENAME TO)\s+(?:\"(?:[^\"]|\"\")+\"|'(?:[^']|'')+')((?:[^,')]|'[^']*')+)?/i",$alterdefs,$matches);
$defs = $matches[0];
$get_oldcols_query = "PRAGMA table_info(".$this->quote_id($table).")";
$result_oldcols = $this->selectArray($get_oldcols_query);
$newcols = array();
$coltypes = array();
foreach($result_oldcols as $column_info)
{
$newcols[$column_info['name']] = $column_info['name'];
$coltypes[$column_info['name']] = $column_info['type'];
}
$newcolumns = '';
$oldcolumns = '';
reset($newcols);
while(list($key, $val) = each($newcols))
{
$newcolumns .= ($newcolumns?', ':'').$this->quote_id($val);
$oldcolumns .= ($oldcolumns?', ':'').$this->quote_id($key);
}
$copytotempsql = 'INSERT INTO '.$this->quote_id($tmpname).'('.$newcolumns.') SELECT '.$oldcolumns.' FROM '.$this->quote_id($table);
$dropoldsql = 'DROP TABLE '.$this->quote_id($table);
$createtesttableSQL = $createtemptableSQL;
if(count($defs)<1)
{
if($debug) echo "ERROR: defs<1<hr />";
return false;
}
foreach($defs as $def)
{
if($debug) echo "def=$def<hr />";
$parse_def = preg_match("/^(DROP|ADD|CHANGE|RENAME TO)\s+(?:\"((?:[^\"]|\"\")+)\"|'((?:[^']|'')+)')((?:\s+'((?:[^']|'')+)')?\s+(TEXT|INTEGER|BLOB|REAL).*)?\s*$/i",$def,$matches);
if($parse_def===false)
{
if($debug) echo "ERROR: !parse_def<hr />";
return false;
}
if(!isset($matches[1]))
{
if($debug) echo "ERROR: !isset(matches[1])<hr />";
return false;
}
$action = strtolower($matches[1]);
if($action == 'add' || $action == 'rename to')
$column = str_replace("''","'",$matches[3]); // enclosed in ''
else
$column = str_replace('""','"',$matches[2]); // enclosed in ""
$column_escaped = str_replace("'","''",$column);
if($debug) echo "action=($action), column=($column), column_escaped=($column_escaped)<hr />";
/* we build a regex that devides the CREATE TABLE statement parts:
Part example Group Explanation
1. CREATE TABLE t... ( $1
2. 'col1' ..., 'col2' ..., 'colN' ..., $3 (with col1-colN being columns that are not changed and listed before the col to change)
3. 'colX' ..., - (with colX being the column to change/drop)
4. 'colX+1' ..., ..., 'colK') $5 (with colX+1-colK being columns after the column to change/drop)
*/
$preg_create_table = "\s*(CREATE\s+TEMPORARY\s+TABLE\s+'?".preg_quote($tmpname,"/")."'?\s*\()"; // This is group $1 (keep unchanged)
$preg_column_definiton = "\s*".$this->sqlite_surroundings_preg("+",false," '\"\[`")."(?:\s+".$this->sqlite_surroundings_preg("*",false,"'\",`\[) ").")+"; // catches a complete column definition, even if it is
// 'column' TEXT NOT NULL DEFAULT 'we have a comma, here and a double ''quote!'
if($debug) echo "preg_column_definition=(".$preg_column_definiton.")<hr />";
$preg_columns_before = // columns before the one changed/dropped (keep)
"(?:".
"(". // group $2. Keep this one unchanged!
"(?:".
"$preg_column_definiton,\s*". // column definition + comma
")*". // there might be any number of such columns here
$preg_column_definiton. // last column definition
")". // end of group $2
",\s*" // the last comma of the last column before the column to change. Do not keep it!
.")?"; // there might be no columns before
if($debug) echo "preg_columns_before=(".$preg_columns_before.")<hr />";
$preg_columns_after = "(,\s*([^)]+))?"; // the columns after the column to drop. This is group $3 (drop) or $4(change) (keep!)
// we could remove the comma using $6 instead of $5, but then we might have no comma at all.
// Keeping it leaves a problem if we drop the first column, so we fix that case in another regex.
$table_new = $table;
switch($action)
{
case 'add':
if(!isset($matches[4]))
{
return false;
}
$new_col_definition = "'$column_escaped' ".$matches[4];
$preg_pattern_add = "/^".$preg_create_table."(.*)\\)\s*$/";
// append the column definiton in the CREATE TABLE statement
$newSQL = preg_replace($preg_pattern_add, '$1$2, ', $createtesttableSQL).$new_col_definition.')';
if($debug)
{
echo $createtesttableSQL."<hr>";
echo $newSQL."<hr>";
echo $preg_pattern_add."<hr>";
}
if($newSQL==$createtesttableSQL) // pattern did not match, so column removal did not succed
return false;
$createtesttableSQL = $newSQL;
break;
case 'change':
if(!isset($matches[5]) || !isset($matches[6]))
{
return false;
}
$new_col_name = $matches[5];
$new_col_type = $matches[6];
$new_col_definition = "'$new_col_name' $new_col_type";
$preg_column_to_change = "\s*".$this->sqlite_surroundings_preg($column)."(?:\s+".preg_quote($coltypes[$column]).")?(\s+(?:".$this->sqlite_surroundings_preg("*",false,",'\")`\[").")+)?";
// replace this part (we want to change this column)
// group $3 contains the column constraints (keep!). the name & data type is replaced.
$preg_pattern_change = "/^".$preg_create_table.$preg_columns_before.$preg_column_to_change.$preg_columns_after."\s*\\)\s*$/";
// replace the column definiton in the CREATE TABLE statement
$newSQL = preg_replace($preg_pattern_change, '$1$2,'.strtr($new_col_definition, array('\\' => '\\\\', '$' => '\$')).'$3$4)', $createtesttableSQL);
// remove comma at the beginning if the first column is changed
// probably somebody is able to put this into the first regex (using lookahead probably).
$newSQL = preg_replace("/^\s*(CREATE\s+TEMPORARY\s+TABLE\s+'".preg_quote($tmpname,"/")."'\s+\(),\s*/",'$1',$newSQL);
if($debug)
{
echo "preg_column_to_change=(".$preg_column_to_change.")<hr />";
echo $createtesttableSQL."<hr />";
echo $newSQL."<hr />";
echo $preg_pattern_change."<hr />";
}
if($newSQL==$createtesttableSQL || $newSQL=="") // pattern did not match, so column removal did not succed
return false;
$createtesttableSQL = $newSQL;
$newcols[$column] = str_replace("''","'",$new_col_name);
break;
case 'drop':
$preg_column_to_drop = "\s*".$this->sqlite_surroundings_preg($column)."\s+(?:".$this->sqlite_surroundings_preg("*",false,",')\"\[`").")+"; // delete this part (we want to drop this column)
$preg_pattern_drop = "/^".$preg_create_table.$preg_columns_before.$preg_column_to_drop.$preg_columns_after."\s*\\)\s*$/";
// remove the column out of the CREATE TABLE statement
$newSQL = preg_replace($preg_pattern_drop, '$1$2$3)', $createtesttableSQL);
// remove comma at the beginning if the first column is removed
// probably somebody is able to put this into the first regex (using lookahead probably).
$newSQL = preg_replace("/^\s*(CREATE\s+TEMPORARY\s+TABLE\s+'".preg_quote($tmpname,"/")."'\s+\(),\s*/",'$1',$newSQL);
if($debug)
{
echo $createtesttableSQL."<hr>";
echo $newSQL."<hr>";
echo $preg_pattern_drop."<hr>";
}
if($newSQL==$createtesttableSQL || $newSQL=="") // pattern did not match, so column removal did not succed
return false;
$createtesttableSQL = $newSQL;
unset($newcols[$column]);
break;
case 'rename to':
// don't change column definition at all
$newSQL = $createtesttableSQL;
// only change the name of the table
$table_new = $column;
break;
default:
if($default) echo 'ERROR: unknown alter operation!<hr />';
return false;
}
}
$droptempsql = 'DROP TABLE '.$this->quote_id($tmpname);
$createnewtableSQL = "CREATE TABLE ".$this->quote($table_new)." ".preg_replace("/^\s*CREATE\s+TEMPORARY\s+TABLE\s+'?".str_replace("'","''",preg_quote($tmpname,"/"))."'?\s+(.*)$/i", '$1', $createtesttableSQL, 1);
$newcolumns = '';
$oldcolumns = '';
reset($newcols);
while(list($key,$val) = each($newcols))
{
$newcolumns .= ($newcolumns?', ':'').$this->quote_id($val);
$oldcolumns .= ($oldcolumns?', ':'').$this->quote_id($key);
}
$copytonewsql = 'INSERT INTO '.$this->quote_id($table_new).'('.$newcolumns.') SELECT '.$oldcolumns.' FROM '.$this->quote_id($tmpname);
}
}
$alter_transaction = 'BEGIN; ';
$alter_transaction .= $createtemptableSQL.'; '; //create temp table
$alter_transaction .= $copytotempsql.'; '; //copy to table
$alter_transaction .= $dropoldsql.'; '; //drop old table
$alter_transaction .= $createnewtableSQL.'; '; //recreate original table
$alter_transaction .= $copytonewsql.'; '; //copy back to original table
$alter_transaction .= $droptempsql.'; '; //drop temp table
$preg_index="/^\s*(CREATE\s+(?:UNIQUE\s+)?INDEX\s+(?:".$this->sqlite_surroundings_preg("+",false," '\"\[`")."\s*)*ON\s+)(".$this->sqlite_surroundings_preg($table).")(\s*\((?:".$this->sqlite_surroundings_preg("+",false," '\"\[`")."\s*)*\)\s*;)\s*$/i";
for($i=0; $i<sizeof($recreateQueries); $i++)
{
// recreate triggers / indexes
if($table == $table_new)
{
// we had no RENAME TO, so we can recreate indexes/triggers just like the original ones
$alter_transaction .= $recreateQueries[$i];
} else
{
// we had a RENAME TO, so we need to exchange the table-name in the CREATE-SQL of triggers & indexes
// first let's try if it's an index...
$recreate_queryIndex = preg_replace($preg_index, '$1'.$this->quote_id(strtr($table_new, array('\\' => '\\\\', '$' => '\$'))).'$3 ', $recreateQueries[$i]);
if($recreate_queryIndex!=$recreateQueries[$i] && $recreate_queryIndex != NULL)
{
// the CREATE INDEX regex did match
$alter_transaction .= $recreate_queryIndex;
} else
{
// the CREATE INDEX regex did not match, so we try if it's a CREATE TRIGGER
$recreate_queryTrigger = $recreateQueries[$i];
// TODO: IMPLEMENT
$alter_transaction .= $recreate_queryTrigger;
}
}
}
$alter_transaction .= 'COMMIT;';
if($debug) echo $alter_transaction;
return $this->multiQuery($alter_transaction);
}
}
//multiple query execution
public function multiQuery($query)
{
$error = "Unknown error.";
if($this->type=="PDO")
{
$success = $this->db->exec($query);
if(!$success) $error = implode(" - ", $this->db->errorInfo());
}
else if($this->type=="SQLite3")
{
$success = $this->db->exec($query);
if(!$success) $error = $this->db->lastErrorMsg();
}
else
{
$success = $this->db->queryExec($query, $error);
}
if(!$success)
{