44996558c4cab6203546dfba757717f68b7bd01f
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) 
5) Written 2008-2013 by schokokeks.org Hosting, namely
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);
33)     parent::__construct($dsn, $username, $password);
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)) {
42)       $response = parent::prepare($stmt);
43)       $response->execute($params);
44)       return $response;
45)     } else {
Bernd Wurst Warnung im dev-branch bzgl....

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

48)           strpos(strtoupper($stmt), "WHERE") > 0) { // Das steht nie am Anfang
49)         $backtrace = debug_backtrace();
50)         if (config("enable_debug")) {
51)           warning("Unsafe SQL statement in {$backtrace[1]['file']} line {$backtrace[1]['line']}");
52)         }
53)       }
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

54)       return parent::query($stmt);
55)     }
56)   }
57) }
58) 
59) 
60) /* FIXME 
61)    Das ist etwas unelegant. Soll nur übergangsweise verwendet werden bis alles auf prepared statements umgestellt ist
62) */
63) function db_escape_string($string)
64) {
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

68)   // entferne die quotes, damit wird es drop-in-Kompatibel zu db_escape_string()
69)   $ret = substr($quoted, 1, -1);
70)   return $ret;
71) }
72) 
73) 
74) function db_insert_id()
75) {
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

79) }
80) 
81) 
82) function __ensure_connected()
83) {
84)   /*
85)     Dieses Kontrukt ist vermultich noch schlimmer als ein normales singleton
86)     aber es hilft uns in unserem prozeduralen Kontext
87)   */
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

92)       $_db = new DB();
93)       $_db->query("SET NAMES utf8");
94)       $_db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
95)       $_db->setAttribute(PDO::ATTR_AUTOCOMMIT, true);
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

96)     } catch (PDOException $e) {
97)       global $debugmode;
98)       if ($debugmode) {
99)         system_failure("MySQL-Fehler: ".$e->getMessage());
100)       } else {
101)         system_failure("Fehler bei der Datenbankverbindung!");
102)       }
103)     }
104)   }
105) }
106) 
107) 
108) function db_query($stmt, $params = NULL)
109) {
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

111)   __ensure_connected();
112)   DEBUG($stmt);
113)   if ($params) {
114)     DEBUG($params);
115)   }
116)   try {
Bernd Wurst Interne variabe anders nenn...

Bernd Wurst authored 10 years ago

117)     $result = $_db->query($stmt, $params);