forked from joepie91/cphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinclude.mysql.php
More file actions
142 lines (127 loc) · 3.55 KB
/
include.mysql.php
File metadata and controls
142 lines (127 loc) · 3.55 KB
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
<?php
/*
* CPHP is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if($_CPHP !== true) { die(); }
$cphp_mysql_connected = false;
class CachedPDO extends PDO
{
public function CachedQuery($query, $parameters = array(), $expiry = 60)
{
/* TODO: Do type guessing before checking cache, so as to avoid
* different parameter hashes depending on input type for
* numbers. */
$query_hash = md5($query);
$parameter_hash = md5(serialize($parameters));
$cache_hash = $query_hash . $parameter_hash;
$return_object = new stdClass;
if($expiry != 0 && $result = mc_get($cache_hash))
{
$return_object->source = "memcache";
$return_object->data = $result;
}
else
{
$statement = $this->prepare($query);
if(count($parameters) > 0)
{
foreach($parameters as $key => $value)
{
$type = $this->GuessType($value);
if(preg_match("/^[0-9]+$/", $value) && $type == PDO::PARAM_STR)
{
/* PDO library apparently thinks it's part of a strongly typed language and doesn't do any typecasting.
* We'll do it ourselves then. */
$value = (int) $value;
$type = PDO::PARAM_INT;
}
if($type == PDO::PARAM_STR)
{
$value = strval($value);
}
$statement->bindValue($key, $value, $type);
}
}
if($statement->execute() === true)
{
if($result = $statement->fetchAll(PDO::FETCH_ASSOC))
{
if(count($result) > 0)
{
if($expiry != 0)
{
mc_set($cache_hash, $result, $expiry);
}
$return_object->source = "database";
$return_object->data = $result;
}
else
{
return false;
}
}
else
{
/* There were zero results. Return null instead of an object without results, to allow for statements
* of the form if($result = $database->CachedQuery()) . */
return null;
}
}
else
{
/* The query failed. */
$err = $statement->errorInfo();
throw new DatabaseException("The query failed: {$err[2]}", 0, null, array('query' => $query, 'parameters' => $parameters));
}
}
return $return_object;
}
public function GuessType($value)
{
if(is_object($value))
{
throw new DatabaseException("Query parameters must be numeric, boolean, null, a string value, or something that can be auto-cast to a string. You provided an object.");
}
if(is_int($value))
{
return PDO::PARAM_INT;
}
elseif(is_bool($value))
{
return PDO::PARAM_BOOL;
}
elseif(is_null($value))
{
return PDO::PARAM_NULL;
}
else
{
return PDO::PARAM_STR;
}
}
}
if(!empty($cphp_config->database->driver))
{
if(empty($cphp_config->database->database))
{
die("No database was configured. Refer to the CPHP manual for instructions.");
}
try
{
$database = new CachedPDO("mysql:host={$cphp_config->database->hostname};dbname={$cphp_config->database->database}", $cphp_config->database->username, $cphp_config->database->password);
$database->setAttribute(PDO::ATTR_ORACLE_NULLS, PDO::NULL_TO_STRING);
$cphp_mysql_connected = true;
}
catch (Exception $e)
{
die("Could not connect to the specified database. Refer to the CPHP manual for instructions.");
}
}