user_token field (from REL1_3A)
[lhc/web/wiklou.git] / install-utils.inc
1 <?php
2
3 function install_version_checks() {
4 # We dare not turn output buffer _off_ since this will break completely
5 # if PHP is globally configured to run through a gzip filter.
6 @ob_implicit_flush( true );
7
8 if( !function_exists( "version_compare" ) ) {
9 # version_compare was introduced in 4.1.0
10 die( "Your PHP version is much too old; 4.0.x will _not_ work. 4.3.2 or higher is recommended. ABORTING.\n" );
11 }
12 if( version_compare( phpversion(), "4.3.2" ) < 0 ) {
13 echo "WARNING: PHP 4.3.2 or higher is recommended. Older versions from 4.1.x up may work but are not actively supported.\n\n";
14 }
15
16 if (!extension_loaded('mysql')) {
17 if (!dl('mysql.so')) {
18 print "Could not load MySQL driver! Please compile ".
19 "php --with-mysql or install the mysql.so module.\n";
20 exit;
21 }
22 }
23
24 global $wgCommandLineMode;
25 $wgCommandLineMode = true;
26 umask( 000 );
27 set_time_limit( 0 );
28 }
29
30 function copyfile( $sdir, $name, $ddir, $perms = 0664 ) {
31 copyfileto( $sdir, $name, $ddir, $name, $perms );
32 }
33
34 function copyfileto( $sdir, $sname, $ddir, $dname, $perms = 0664 ) {
35 global $wgInstallOwner, $wgInstallGroup;
36
37 $d = "{$ddir}/{$dname}";
38 if ( copy( "{$sdir}/{$sname}", $d ) ) {
39 if ( isset( $wgInstallOwner ) ) { chown( $d, $wgInstallOwner ); }
40 if ( isset( $wgInstallGroup ) ) { chgrp( $d, $wgInstallGroup ); }
41 chmod( $d, $perms );
42 # print "Copied \"{$sname}\" to \"{$d}\".\n";
43 } else {
44 print "Failed to copy file \"{$sname}\" to \"{$ddir}/{$dname}\".\n";
45 exit();
46 }
47 }
48
49 function copydirectory( $source, $dest ) {
50 $handle = opendir( $source );
51 while ( false !== ( $f = readdir( $handle ) ) ) {
52 $fullname = "$source/$f";
53 if ( $f{0} !="." && is_file( $fullname ) ) {
54 copyfile( $source, $f, $dest );
55 }
56 }
57 }
58
59 function readconsole( $prompt = "" ) {
60 if ( function_exists( "readline" ) ) {
61 return readline( $prompt );
62 } else {
63 print $prompt;
64 $fp = fopen( "php://stdin", "r" );
65 $resp = trim( fgets( $fp, 1024 ) );
66 fclose( $fp );
67 return $resp;
68 }
69 }
70
71 function replacevars( $ins ) {
72 $varnames = array(
73 "wgDBserver", "wgDBname", "wgDBintlname", "wgDBuser",
74 "wgDBpassword", "wgDBsqluser", "wgDBsqlpassword",
75 "wgDBadminuser", "wgDBadminpassword"
76 );
77
78 foreach ( $varnames as $var ) {
79 global $$var;
80 $ins = str_replace( '{$' . $var . '}', $$var, $ins );
81 }
82 return $ins;
83 }
84
85 #
86 # Read and execute SQL commands from a file
87 #
88 function dbsource( $fname, $database = false ) {
89 $fp = fopen( $fname, "r" );
90 if ( false === $fp ) {
91 print "Could not open \"{$fname}\".\n";
92 exit();
93 }
94
95 $cmd = "";
96 $done = false;
97
98 while ( ! feof( $fp ) ) {
99 $line = trim( fgets( $fp, 1024 ) );
100 $sl = strlen( $line ) - 1;
101
102 if ( $sl < 0 ) { continue; }
103 if ( "-" == $line{0} && "-" == $line{1} ) { continue; }
104
105 if ( ";" == $line{$sl} ) {
106 $done = true;
107 $line = substr( $line, 0, $sl );
108 }
109
110 if ( "" != $cmd ) { $cmd .= " "; }
111 $cmd .= $line;
112
113 if ( $done ) {
114 $cmd = replacevars( $cmd );
115 if( $database )
116 $res = $database->query( $cmd );
117 else
118 $res = mysql_query( $cmd );
119
120 if ( false === $res ) {
121 $err = mysql_error();
122 print "Query \"{$cmd}\" failed with error code \"$err\".\n";
123 exit();
124 }
125
126 $cmd = "";
127 $done = false;
128 }
129 }
130 fclose( $fp );
131 }
132
133 # Obsolete, use Database::fieldExists()
134 function field_exists( $table, $field ) {
135 $fname = "Update script: field_exists";
136 $db =& wfGetDB( DB_SLAVE );
137 $res = $db->query( "DESCRIBE $table", $fname );
138 $found = false;
139
140 while ( $row = $db->fetchObject( $res ) ) {
141 if ( $row->Field == $field ) {
142 $found = true;
143 break;
144 }
145 }
146 return $found;
147 }
148
149 # Obsolete Database::tableExists()
150 function table_exists( $db ) {
151 global $wgDBname;
152 $res = mysql_list_tables( $wgDBname );
153 if( !$res ) {
154 echo "** " . mysql_error() . "\n";
155 return false;
156 }
157 for( $i = mysql_num_rows( $res ) - 1; $i--; $i > 0 ) {
158 if( mysql_tablename( $res, $i ) == $db ) return true;
159 }
160 return false;
161 }
162
163 # Obsolete, use Database:fieldInfo()
164 function field_info( $table, $field ) {
165 $res = mysql_query( "SELECT * FROM $table LIMIT 1" );
166 $n = mysql_num_fields( $res );
167 for( $i = 0; $i < $n; $i++ ) {
168 $meta = mysql_fetch_field( $res, $i );
169 if( $field == $meta->name ) {
170 return $meta;
171 }
172 }
173 return false;
174 }
175
176 ?>