cf54502a10b16c985ea28db17885d377226b6145
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) 
17) require_once('inc/base.php');
18) require_once('inc/error.php');
19) require_once('inc/debug.php');
20) 
21) 
22) class DB extends PDO {
23)   function __construct() {
schokokeks.org web services Ermögliche Socket-Angabe fü...

schokokeks.org web services authored 10 years ago

24)     $dsn = "mysql:host=".config('db_host', true);
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

25)     if (config('db_port', true)) {
26)       $dsn .= ';port='.config('db_port', true);
27)     }
schokokeks.org web services Ermögliche Socket-Angabe fü...

schokokeks.org web services authored 10 years ago

28)     if (config('db_socket', true)) {
29)       $dsn = "mysql:unix_socket=".config('db_socket', true);
30)     }
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

31)     $username = config('db_user', true);
32)     $password = config('db_pass', true);
Bernd Wurst kürzerer Datenbank-Timeout...

Bernd Wurst authored 10 years ago

33)     parent::__construct($dsn, $username, $password, array(PDO::ATTR_TIMEOUT => "30"));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

34)   }
35) 
36) 
37)   /*
38)     Wenn Parameter übergeben werden, werden Queries immer als Prepared statements übertragen
39)   */
40)   function query($stmt, $params = NULL) {
41)     if (is_array($params)) {
Bernd Wurst Weitere Umstellungen auf pr...

Bernd Wurst authored 10 years ago

42)       if (config("enable_debug")) {
43)         foreach (array_values($params) as $p) {
44)           if ($p === '') {
Bernd Wurst String 'NULL' eliminiert

Bernd Wurst authored 10 years ago

45)             DEBUG("Potential bug, empty string found in database parameters");
Bernd Wurst Weitere Umstellungen auf pr...

Bernd Wurst authored 10 years ago

46)             warning("Potential bug, empty string found in database parameters");
47)           }
48)         }
49)       }
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

50)       $response = parent::prepare($stmt);
51)       $response->execute($params);
52)       return $response;
53)     } else {
Bernd Wurst Warnung im dev-branch bzgl....

Bernd Wurst authored 10 years ago

54)       if (strtoupper(substr($stmt, 0, 6)) == "INSERT" ||
Bernd Wurst Einige Statements auf Prepa...

Bernd Wurst authored 10 years ago

55)           strtoupper(substr($stmt, 0, 7)) == "REPLACE" ||
Bernd Wurst Warnung im dev-branch bzgl....

Bernd Wurst authored 10 years ago

56)           strpos(strtoupper($stmt), "WHERE") > 0) { // Das steht nie am Anfang
57)         $backtrace = debug_backtrace();
Bernd Wurst Zeige Warnung für unsichere...

Bernd Wurst authored 7 years ago

58)         $wherepart = substr(strtoupper($stmt), strpos(strtoupper($stmt), "WHERE"));
59)         if ((strpos($wherepart, '"') > 0 || strpos($wherepart, "'") > 0) && config("enable_debug")) {
60)           warning("Possibly unsafe SQL statement in {$backtrace[1]['file']} line {$backtrace[1]['line']}:\n$stmt");
Bernd Wurst Warnung im dev-branch bzgl....

Bernd Wurst authored 10 years ago

61)         }
62)       }
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

63)       return parent::query($stmt);
64)     }
65)   }
66) }
67) 
68) 
69) /* FIXME 
70)    Das ist etwas unelegant. Soll nur übergangsweise verwendet werden bis alles auf prepared statements umgestellt ist
71) */
72) function db_escape_string($string)
73) {
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

74)   if (config("enable_debug")) {
75)     $backtrace = debug_backtrace();
Bernd Wurst String 'NULL' eliminiert

Bernd Wurst authored 10 years ago

76)     warning("call to db_escape_string() in {$backtrace[0]['file']} line {$backtrace[0]['line']}");
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

77)   }
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

78)   global $_db;
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

79)   __ensure_connected();
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

80)   $quoted = $_db->quote($string);
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

81)   // entferne die quotes, damit wird es drop-in-Kompatibel zu db_escape_string()
82)   $ret = substr($quoted, 1, -1);
83)   return $ret;
84) }
85) 
86) 
87) function db_insert_id()
88) {
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

89)   global $_db;
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

90)   __ensure_connected();
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

91)   return $_db->lastInsertId();
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

92) }
93) 
94) 
95) function __ensure_connected()
96) {
97)   /*
98)     Dieses Kontrukt ist vermultich noch schlimmer als ein normales singleton
99)     aber es hilft uns in unserem prozeduralen Kontext
100)   */
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

101)   global $_db;
102)   if (! isset($_db)) {
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

103)     try {
104)       DEBUG("Neue Datenbankverbindung!");
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

105)       $_db = new DB();
Bernd Wurst Ermögliche die Verwendung v...

Bernd Wurst authored 6 years ago

106)       $_db->query("SET NAMES utf8mb4");
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

107)       $_db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
108)       $_db->setAttribute(PDO::ATTR_AUTOCOMMIT, true);
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

109)     } catch (PDOException $e) {
110)       global $debugmode;
111)       if ($debugmode) {
Bernd Wurst kürzerer Datenbank-Timeout...

Bernd Wurst authored 10 years ago

112)         die("MySQL-Fehler: ".$e->getMessage());
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

113)       } else {
Bernd Wurst kürzerer Datenbank-Timeout...

Bernd Wurst authored 10 years ago

114)         die("Fehler bei der Datenbankverbindung!");
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

115)       }
116)     }
117)   }
118) }
119) 
120) 
121) function db_query($stmt, $params = NULL)
122) {
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

123)   global $_db;
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

124)   __ensure_connected();
Bernd Wurst Bugfix: E-Mail-User konnte...

Bernd Wurst authored 10 years ago

125)   $backtrace = debug_backtrace();
126)   DEBUG($backtrace[0]['file'].':'.$backtrace[0]['line'].': '.$stmt);
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

127)   if ($params) {
128)     DEBUG($params);
129)   }
130)   try {
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

131)     $result = $_db->query($stmt, $params);
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

132)     DEBUG('=> '.$result->rowCount().' rows');
133)   } catch (PDOException $e) {
134)     global $debugmode;
135)     if ($debugmode) {
Bernd Wurst Zeige Warnung für unsichere...

Bernd Wurst authored 7 years ago

136)       system_failure("MySQL-Fehler: ".$e->getMessage()."\nQuery:\n".$stmt."\nParameters:\n".print_r($params, true));