nowiki button for toolbar
[lhc/web/wiklou.git] / update.php
1 <?
2
3 # Update already-installed software
4 #
5
6 include( "./install-utils.inc" );
7 install_version_checks();
8
9 if ( ! ( is_readable( "./LocalSettings.php" )
10 && is_readable( "./AdminSettings.php" ) ) ) {
11 print "A copy of your installation's LocalSettings.php\n" .
12 "and AdminSettings.php must exist in this source directory.\n";
13 exit();
14 }
15
16 $IP = "./includes";
17 include_once( "./LocalSettings.php" );
18 include_once( "./AdminSettings.php" );
19
20 include( "$IP/Version.php" );
21
22 if ( $wgUseTeX && ( ! is_executable( "./math/texvc" ) ) ) {
23 print "To use math functions, you must first compile texvc by\n" .
24 "running \"make\" in the math directory.\n";
25 exit();
26 }
27
28 #
29 # Copy files into installation directories
30 #
31 do_update_files();
32
33 $wgDBuser = $wgDBadminuser;
34 $wgDBpassword = $wgDBadminpassword;
35
36 include_once( "{$IP}/Setup.php" );
37 include_once( "./maintenance/InitialiseMessages.inc" );
38
39 $wgTitle = Title::newFromText( "Update script" );
40
41 #
42 # Check the database for things that need to be fixed...
43 #
44 print "Checking database for necessary updates...\n";
45
46 $wgDatabase = Database::newFromParams( $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname,
47 1, false, true, false);
48 if ( !$wgDatabase->isOpen() ) {
49 print "Unable to connect to database: " . $wgDatabase->lastError() . "\n";
50 exit();
51 }
52
53 do_revision_updates();
54
55 do_ipblocks_update();
56 do_interwiki_update();
57 do_index_update();
58 do_linkscc_update();
59 do_hitcounter_update();
60 do_recentchanges_update();
61
62 initialiseMessages();
63
64 $wgDatabase->close();
65
66 print "Done.\n";
67 exit();
68
69 #
70 #
71 #
72
73 function do_update_files() {
74 global $IP, $wgStyleSheetDirectory, $wgUploadDirectory, $wgLanguageCode, $wgDebugLogFile;
75 print "Copying files... ";
76
77 copyfile( ".", "wiki.phtml", $IP );
78 copyfile( ".", "redirect.phtml", $IP );
79 copyfile( ".", "texvc.phtml", $IP );
80
81 copydirectory( "./includes", $IP );
82 copydirectory( "./stylesheets", $wgStyleSheetDirectory );
83
84 copyfile( "./images", "wiki.png", $wgUploadDirectory );
85 copyfile( "./images", "button_bold.gif", $wgUploadDirectory );
86 copyfile( "./images", "button_extlink.gif", $wgUploadDirectory );
87 copyfile( "./images", "button_headline.gif", $wgUploadDirectory );
88 copyfile( "./images", "button_hr.gif", $wgUploadDirectory );
89 copyfile( "./images", "button_image.gif", $wgUploadDirectory );
90 copyfile( "./images", "button_italic.gif", $wgUploadDirectory );
91 copyfile( "./images", "button_link.gif", $wgUploadDirectory );
92 copyfile( "./images", "button_math.gif", $wgUploadDirectory );
93 copyfile( "./images", "button_media.gif", $wgUploadDirectory );
94 copyfile( "./images", "button_sig.gif", $wgUploadDirectory );
95 copyfile( "./images", "button_template.gif", $wgUploadDirectory );
96
97 copyfile( "./languages", "Language.php", $IP );
98 copyfile( "./languages", "Language" . ucfirst( $wgLanguageCode ) . ".php", $IP );
99
100 if( !empty( $wgDebugLogFile ) ) {
101 $fp = fopen( $wgDebugLogFile, "w" );
102 if ( false === $fp ) {
103 print "Could not create log file \"{$wgDebugLogFile}\".\n";
104 exit();
105 }
106 $d = date( "Y-m-d H:i:s" );
107 fwrite( $fp, "Wiki debug log file created {$d}\n\n" );
108 fclose( $fp );
109 }
110
111 if ( $wgUseTeX ) {
112 copyfile( "./math", "texvc", "{$IP}/math", 0775 );
113 copyfile( "./math", "texvc_test", "{$IP}/math", 0775 );
114 copyfile( "./math", "texvc_tex", "{$IP}/math", 0775 );
115 }
116
117 copyfile( ".", "Version.php", $IP );
118
119 print "ok\n";
120 }
121
122 function do_revision_updates() {
123 global $wgSoftwareRevision;
124 if ( $wgSoftwareRevision < 1001 ) {
125 update_passwords();
126 }
127 }
128
129 function update_passwords() {
130 global $wgDatabase;
131 $fname = "Update script: update_passwords()";
132 print "\nIt appears that you need to update the user passwords in your\n" .
133 "database. If you have already done this (if you've run this update\n" .
134 "script once before, for example), doing so again will make all your\n" .
135 "user accounts inaccessible, so be sure you only do this once.\n" .
136 "Update user passwords? (yes/no)";
137
138 $resp = readconsole();
139 if ( ! ( "Y" == $resp{0} || "y" == $resp{0} ) ) { return; }
140
141 $sql = "SELECT user_id,user_password FROM user";
142 $source = $wgDatabase->query( $sql, $fname );
143
144 while ( $row = $wgDatabase->fetchObject( $source ) ) {
145 $id = $row->user_id;
146 $oldpass = $row->user_password;
147 $newpass = md5( "{$id}-{$oldpass}" );
148
149 $sql = "UPDATE user SET user_password='{$newpass}' " .
150 "WHERE user_id={$id}";
151 $wgDatabase->query( $sql, $fname );
152 }
153 }
154
155 function do_ipblocks_update() {
156 global $wgDatabase;
157 if ( $wgDatabase->fieldExists( "ipblocks", "ipb_id" ) ) {
158 echo "...ipblocks table is up to date.\n";
159 } else {
160 echo "Updating ipblocks table... ";
161 dbsource( "maintenance/archives/patch-ipblocks.sql", $wgDatabase );
162 echo "ok\n";
163 }
164 }
165
166
167 function do_interwiki_update() {
168 # Check that interwiki table exists; if it doesn't source it
169 global $wgDatabase;
170 if( $wgDatabase->tableExists( "interwiki" ) ) {
171 echo "...already have interwiki table\n";
172 return true;
173 }
174 echo "Creating interwiki table: ";
175 dbsource( "maintenance/archives/patch-interwiki.sql" );
176 echo "ok\n";
177 echo "Adding default interwiki definitions: ";
178 dbsource( "maintenance/interwiki.sql" );
179 echo "ok\n";
180 }
181
182 function do_index_update() {
183 # Check that proper indexes are in place
184 global $wgDatabase;
185 $meta = $wgDatabase->fieldInfo( "recentchanges", "rc_timestamp" );
186 if( $meta->multiple_key == 0 ) {
187 echo "Updating indexes to 20031107: ";
188 dbsource( "maintenance/archives/patch-indexes.sql" );
189 echo "ok\n";
190 return true;
191 }
192 echo "...indexes seem up to 20031107 standards\n";
193 return false;
194 }
195
196 function do_linkscc_update() {
197 // Create linkscc if necessary
198 global $wgDatabase;
199 if( $wgDatabase->tableExists( "linkscc" ) ) {
200 echo "...have linkscc table.\n";
201 } else {
202 echo "Adding linkscc table... ";
203 dbsource( "maintenance/archives/patch-linkscc.sql", $wgDatabase );
204 echo "ok\n";
205 }
206 }
207
208 function do_hitcounter_update() {
209 // Create hitcounter if necessary
210 global $wgDatabase;
211 if( $wgDatabase->tableExists( "hitcounter" ) ) {
212 echo "...have hitcounter table.\n";
213 } else {
214 echo "Adding hitcounter table... ";
215 dbsource( "maintenance/archives/patch-hitcounter.sql", $wgDatabase );
216 echo "ok\n";
217 }
218 }
219
220 function do_recentchanges_update() {
221 global $wgDatabase;
222 if ( !$wgDatabase->fieldExists( "recentchanges", "rc_type" ) ) {
223 echo "Adding rc_type, rc_moved_to_ns, rc_moved_to_title...";
224 dbsource( "maintenance/archives/patch-rc_type.sql" , $wgDatabase );
225 echo "ok\n";
226 }
227 }
228
229 ?>