-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities.php
218 lines (177 loc) · 4.19 KB
/
utilities.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
<?
require_once 'config.php';
require_once '/home/oc/public_html/recaptcha/recaptchalib.php';
function getRecaptchaCode()
{
global $recaptcha_public_key;
return recaptcha_get_html( $recaptcha_public_key );
}
function recaptchaCheck()
{
global $recaptcha_private_key;
$resp = recaptcha_check_answer ( $recaptcha_private_key,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"] );
if ( !$resp->is_valid )
{
renderError( "Recaptcha failed! (".$resp->error.")" );
return 0;
}
else
{
return 1;
}
}
function redirect( $redirect_page )
{
global $no_redirects;
if( !$no_redirects )
{
echo "<script type='text/javascript'>
<!--
window.location = '".$redirect_page."'
//-->
</script>";
}
//debug( "REDIRECT", $redirect_page );
}
function renderError( $error_message )
{
echo "<div class='error'>ERROR: ".$error_message."</div>";
}
function mysqlGetSingleValue( $query, $database=null )
{
global $mysql_debug;
if( !$database )
{
$database = connectToDatabase();
}
$result = mysqlQuery( $query, $database );
if( !$result || mysql_num_rows( $result ) != 1 || mysql_error() )
{
renderError( "MySQL; ".mysql_error() );
return 0;
}
$result_array = mysql_fetch_array( $result );
if( !$result_array || mysql_error() )
{
renderError( "MySQL; ".mysql_error() );
return 0;
}
if( $mysql_debug )
{
debug( "DONE; result=".$result_array[0] );
}
return ( $result_array[0] );
}
function mysqlQuery( $query, $database=null )
{
global $mysql_debug;
if( $mysql_debug )
{
debug( "DOING QUERY", $query );
}
if( !$database )
{
$database = connectToDatabase();
}
$result = mysql_query( $query, $database );
if( mysql_error() )
{
renderError( "MySQL; ".mysql_error() );
return 0;
}
if( $mysql_debug )
{
debug( "DONE" );
}
return $result;
}
function connectToDatabase()
{
global $database_server, $database_username, $database_password, $database_name;
$database = mysql_connect( $database_server, $database_username, $database_password );
if( !$database )
{
renderError( "Database Server Unreachable" );
return 0;
}
$query_result = mysql_query( "USE ".$database_name, $database );
if( !$query_result )
{
renderError( "Database Unreachable" );
return 0;
}
$query_result = mysql_query( "SET NAMES 'utf8'" );
if( !$query_result )
{
renderError( "Unable to set charset" );
return 0;
}
return $database;
}
function debug( $name, $value=null )
{
if( $value )
{
echo $name." = '".$value."'<br/>";
}
else
{
echo "### ".$name." ###<br/>";
}
}
function debugArray( $name, $array )
{
echo $name." = ";
print_r( $array );
echo "<br/>";
}
function addSpacing()
{
global $spacing;
for( $x = 0; $x < $spacing; $x++ )
{
echo "<br/>";
}
}
function mysql_fetch_alias_array($result)
{
if (!($row = mysql_fetch_array($result)))
{
return null;
}
$assoc = Array();
$rowCount = mysql_num_fields($result);
for ($idx = 0; $idx < $rowCount; $idx++)
{
$table = mysql_field_table($result, $idx);
$field = mysql_field_name($result, $idx);
$assoc["$table.$field"] = $row[$idx];
}
return $assoc;
}
function validate_email($value) {
$chars="ABCDEFGHIJKLMNOPQRSTUVWXYZ".
"abcdefghijklmnopqrstuvwxyz0123456789@._";
$at=0; /* at sign */
$dot=0; /* dot after at */
$end_pos = strlen($value)-1;
for ($i=0;$i<strlen($value);$i++) {
$c = $value[$i];
if (stripos($chars, $c)===false) return false;
if ($c=="@") $at++;
if ($at==1 && $c==".") $dot++;
if ($at>1) return false;
/* Don't start or end with an '@' or a '.'
* No @'s or .'s next to each other.
*/
if (($c=="." || $c=="@") &&
($i==0 || $i==$end_pos || $prev_c=="." || $prev_c=="@"))
return false;
$prev_c=$c;
}
return ($at==1 && $dot>0);
}
?>