thumbnail tweaks
[lhc/web/wiklou.git] / includes / EditPage.php
1 <?php
2
3 # Splitting edit page/HTML interface from Article...
4 # The actual database and text munging is still in Article,
5 # but it should get easier to call those from alternate
6 # interfaces.
7
8 class EditPage {
9 var $mArticle;
10 var $mTitle;
11
12 # Form values
13 var $save = false, $preview = false;
14 var $minoredit = false, $watchthis = false;
15 var $textbox1 = "", $textbox2 = "", $summary = "";
16 var $edittime = "", $section = "";
17 var $oldid = 0;
18
19 function EditPage( $article ) {
20 $this->mArticle =& $article;
21 global $wgTitle;
22 $this->mTitle =& $wgTitle;
23 }
24
25 # This is the function that gets called for "action=edit".
26
27 function edit()
28 {
29 global $wgOut, $wgUser, $wgWhitelistEdit, $wgRequest;
30 // this is not an article
31 $wgOut->setArticleFlag(false);
32
33 $this->importFormData( $wgRequest );
34
35 if ( ! $this->mTitle->userCanEdit() ) {
36 $wgOut->readOnlyPage( $this->mArticle->getContent(), true );
37 return;
38 }
39 if ( $wgUser->isBlocked() ) {
40 $this->blockedIPpage();
41 return;
42 }
43 if ( !$wgUser->getID() && $wgWhitelistEdit ) {
44 $this->userNotLoggedInPage();
45 return;
46 }
47 if ( wfReadOnly() ) {
48 if( $this->save || $this->preview ) {
49 $this->editForm( "preview" );
50 } else {
51 $wgOut->readOnlyPage( $this->mArticle->getContent() );
52 }
53 return;
54 }
55 if ( $this->save ) {
56 $this->editForm( "save" );
57 } else if ( $this->preview ) {
58 $this->editForm( "preview" );
59 } else { # First time through
60 $this->editForm( "initial" );
61 }
62 }
63
64 function importFormData( &$request ) {
65 # These fields need to be checked for encoding.
66 # Also remove trailing whitespace, but don't remove _initial_
67 # whitespace from the text boxes. This may be significant formatting.
68 $this->textbox1 = rtrim( $request->getText( "wpTextbox1" ) );
69 $this->textbox2 = rtrim( $request->getText( "wpTextbox2" ) );
70 $this->summary = trim( $request->getText( "wpSummary" ) );
71
72 $this->edittime = $request->getVal( 'wpEdittime' );
73 if( !preg_match( '/^\d{14}$/', $this->edittime ) ) $this->edittime = "";
74
75 $this->preview = $request->getCheck( 'wpPreview' );
76 $this->save = $request->wasPosted() && !$this->preview;
77 $this->minoredit = $request->getCheck( 'wpMinoredit' );
78 $this->watchthis = $request->getCheck( 'wpWatchthis' );
79
80 $this->oldid = $request->getInt( 'oldid' );
81
82 # Section edit can come from either the form or a link
83 $this->section = $request->getVal( 'wpSection', $request->getVal( 'section' ) );
84 }
85
86 # Since there is only one text field on the edit form,
87 # pressing <enter> will cause the form to be submitted, but
88 # the submit button value won't appear in the query, so we
89 # Fake it here before going back to edit(). This is kind of
90 # ugly, but it helps some old URLs to still work.
91
92 function submit()
93 {
94 if( !$this->preview ) $this->save = true;
95
96 $this->edit();
97 }
98
99 # The edit form is self-submitting, so that when things like
100 # preview and edit conflicts occur, we get the same form back
101 # with the extra stuff added. Only when the final submission
102 # is made and all is well do we actually save and redirect to
103 # the newly-edited page.
104
105 function editForm( $formtype )
106 {
107 global $wgOut, $wgUser;
108 global $wgLang, $wgParser, $wgTitle;
109 global $wgAllowAnonymousMinor;
110 global $wgWhitelistEdit;
111
112 $sk = $wgUser->getSkin();
113 $isConflict = false;
114
115 if(!$this->mTitle->getArticleID()) { # new article
116 $wgOut->addWikiText(wfmsg("newarticletext"));
117 }
118
119 if( Namespace::isTalk( $this->mTitle->getNamespace() ) ) {
120 $wgOut->addWikiText(wfmsg("talkpagetext"));
121 }
122
123 # Attempt submission here. This will check for edit conflicts,
124 # and redundantly check for locked database, blocked IPs, etc.
125 # that edit() already checked just in case someone tries to sneak
126 # in the back door with a hand-edited submission URL.
127
128 if ( "save" == $formtype ) {
129 if ( $wgUser->isBlocked() ) {
130 $this->blockedIPpage();
131 return;
132 }
133 if ( !$wgUser->getID() && $wgWhitelistEdit ) {
134 $this->userNotLoggedInPage();
135 return;
136 }
137 if ( wfReadOnly() ) {
138 $wgOut->readOnlyPage();
139 return;
140 }
141
142 # If article is new, insert it.
143 $aid = $this->mTitle->getArticleID();
144 if ( 0 == $aid ) {
145 # Don't save a new article if it's blank.
146 if ( ( "" == $this->textbox1 ) ||
147 ( wfMsg( "newarticletext" ) == $this->textbox1 ) ) {
148 $wgOut->redirect( $this->mTitle->getFullURL() );
149 return;
150 }
151 $this->mArticle->insertNewArticle( $this->textbox1, $this->summary, $this->minoredit, $this->watchthis );
152 return;
153 }
154
155 # Article exists. Check for edit conflict.
156
157 $this->mArticle->clear(); # Force reload of dates, etc.
158
159 if( ( $this->section != "new" ) &&
160 ($this->mArticle->getTimestamp() != $this->edittime ) ) {
161 $isConflict = true;
162 }
163 $userid = $wgUser->getID();
164
165 $text = $this->mArticle->getTextOfLastEditWithSectionReplacedOrAdded(
166 $this->section, $this->textbox1, $this->summary);
167 # Suppress edit conflict with self
168
169 if ( ( 0 != $userid ) && ( $this->mArticle->getUser() == $userid ) ) {
170 $isConflict = false;
171 } else {
172 # switch from section editing to normal editing in edit conflict
173 if($isConflict) {
174 # Attempt merge
175 if( $this->mergeChangesInto( $text ) ){
176 // Successful merge! Maybe we should tell the user the good news?
177 $isConflict = false;
178 } else {
179 $this->section = "";
180 $this->textbox1 = $text;
181 }
182 }
183 }
184 if ( ! $isConflict ) {
185 # All's well: update the article here
186 if($this->mArticle->updateArticle( $text, $this->summary, $this->minoredit, $this->watchthis ))
187 return;
188 else
189 $isConflict = true;
190 }
191 }
192 # First time through: get contents, set time for conflict
193 # checking, etc.
194
195 if ( "initial" == $formtype ) {
196 $this->edittime = $this->mArticle->getTimestamp();
197 $this->textbox1 = $this->mArticle->getContent(true);
198 $this->summary = "";
199 $this->proxyCheck();
200 }
201 $wgOut->setRobotpolicy( "noindex,nofollow" );
202
203 # Enabled article-related sidebar, toplinks, etc.
204 $wgOut->setArticleRelated( true );
205
206 if ( $isConflict ) {
207 $s = wfMsg( "editconflict", $this->mTitle->getPrefixedText() );
208 $wgOut->setPageTitle( $s );
209 $wgOut->addHTML( wfMsg( "explainconflict" ) );
210
211 $this->textbox2 = $this->textbox1;
212 $this->textbox1 = $this->mArticle->getContent(true);
213 $this->edittime = $this->mArticle->getTimestamp();
214 } else {
215 $s = wfMsg( "editing", $this->mTitle->getPrefixedText() );
216
217 if( $this->section != "" ) {
218 if( $this->section == "new" ) {
219 $s.=wfMsg("commentedit");
220 } else {
221 $s.=wfMsg("sectionedit");
222 }
223 if(!$this->preview) {
224 $sectitle=preg_match("/^=+(.*?)=+/mi",
225 $this->textbox1,
226 $matches);
227 if( !empty( $matches[1] ) ) {
228 $this->summary = "/* ". trim($matches[1])." */ ";
229 }
230 }
231 }
232 $wgOut->setPageTitle( $s );
233 if ( $this->oldid ) {
234 $this->mArticle->setOldSubtitle();
235 $wgOut->addHTML( wfMsg( "editingold" ) );
236 }
237 }
238
239 if( wfReadOnly() ) {
240 $wgOut->addHTML( "<strong>" .
241 wfMsg( "readonlywarning" ) .
242 "</strong>" );
243 }
244 if( $this->mTitle->isProtected() ) {
245 $wgOut->addHTML( "<strong>" . wfMsg( "protectedpagewarning" ) .
246 "</strong><br />\n" );
247 }
248
249 $kblength = (int)(strlen( $this->textbox1 ) / 1024);
250 if( $kblength > 29 ) {
251 $wgOut->addHTML( "<strong>" .
252 wfMsg( "longpagewarning", $kblength )
253 . "</strong>" );
254 }
255
256 $rows = $wgUser->getOption( "rows" );
257 $cols = $wgUser->getOption( "cols" );
258
259 $ew = $wgUser->getOption( "editwidth" );
260 if ( $ew ) $ew = " style=\"width:100%\"";
261 else $ew = "" ;
262
263 $q = "action=submit";
264 #if ( "no" == $redirect ) { $q .= "&redirect=no"; }
265 $action = $this->mTitle->escapeLocalURL( $q );
266
267 $summary = wfMsg( "summary" );
268 $subject = wfMsg("subject");
269 $minor = wfMsg( "minoredit" );
270 $watchthis = wfMsg ("watchthis");
271 $save = wfMsg( "savearticle" );
272 $prev = wfMsg( "showpreview" );
273
274 $cancel = $sk->makeKnownLink( $this->mTitle->getPrefixedURL(),
275 wfMsg( "cancel" ) );
276 $edithelp = $sk->makeKnownLink( wfMsg( "edithelppage" ),
277 wfMsg( "edithelp" ) );
278 $copywarn = wfMsg( "copyrightwarning", $sk->makeKnownLink(
279 wfMsg( "copyrightpage" ) ) );
280
281 if( $wgUser->getOption("showtoolbar") ) {
282 # prepare toolbar for edit buttons
283 $toolbar = $sk->getEditToolbar();
284 } else {
285 $toolbar = "";
286 }
287
288 // activate checkboxes if user wants them to be always active
289 if( !$this->preview ) {
290 if( $wgUser->getOption( "watchdefault" ) ) $this->watchthis = true;
291 if( $wgUser->getOption( "minordefault" ) ) $this->minoredit = true;
292
293 // activate checkbox also if user is already watching the page,
294 // require wpWatchthis to be unset so that second condition is not
295 // checked unnecessarily
296 if( !$this->watchthis && $this->mTitle->userIsWatching() ) $this->watchthis = true;
297 }
298
299 $minoredithtml = "";
300
301 if ( 0 != $wgUser->getID() || $wgAllowAnonymousMinor ) {
302 $minoredithtml =
303 "<input tabindex='3' type='checkbox' value='1' name='wpMinoredit'".($this->minoredit?" checked='checked'":"").
304 " accesskey='".wfMsg('accesskey-minoredit')."' id='wpMinoredit' />".
305 "<label for='wpMinoredit' title='".wfMsg('tooltip-minoredit')."'>{$minor}</label>";
306 }
307
308 $watchhtml = "";
309
310 if ( 0 != $wgUser->getID() ) {
311 $watchhtml = "<input tabindex='4' type='checkbox' name='wpWatchthis'".($this->watchthis?" checked='checked'":"").
312 " accesskey='".wfMsg('accesskey-watch')."' id='wpWatchthis' />".
313 "<label for='wpWatchthis' title='".wfMsg('tooltip-watch')."'>{$watchthis}</label>";
314 }
315
316 $checkboxhtml = $minoredithtml . $watchhtml . "<br />";
317
318 if ( "preview" == $formtype) {
319 $previewhead="<h2>" . wfMsg( "preview" ) . "</h2>\n<p><large><center><font color=\"#cc0000\">" .
320 wfMsg( "note" ) . wfMsg( "previewnote" ) . "</font></center></large></p>\n";
321 if ( $isConflict ) {
322 $previewhead.="<h2>" . wfMsg( "previewconflict" ) .
323 "</h2>\n";
324 }
325 $previewtext = wfUnescapeHTML( $this->textbox1 );
326
327 $parserOptions = ParserOptions::newFromUser( $wgUser );
328 $parserOptions->setUseCategoryMagic( false );
329 $parserOptions->setEditSection( false );
330 $parserOptions->setEditSectionOnRightClick( false );
331 $parserOutput = $wgParser->parse( $this->mArticle->preSaveTransform( $previewtext ) ."\n\n",
332 $wgTitle, $parserOptions );
333 $previewHTML = $parserOutput->mText;
334
335 if($wgUser->getOption("previewontop")) {
336 $wgOut->addHTML($previewhead);
337 $wgOut->addHTML($previewHTML);
338 }
339 $wgOut->addHTML( "<br clear=\"all\" />\n" );
340 }
341
342 # if this is a comment, show a subject line at the top, which is also the edit summary.
343 # Otherwise, show a summary field at the bottom
344 $summarytext = htmlspecialchars( $wgLang->recodeForEdit( $this->summary ) ); # FIXME
345 if( $this->section == "new" ) {
346 $commentsubject="{$subject}: <input tabindex='1' type='text' value=\"$summarytext\" name=\"wpSummary\" maxlength='200' size='60' /><br />";
347 $editsummary = "";
348 } else {
349 $commentsubject = "";
350 $editsummary="{$summary}: <input tabindex='3' type='text' value=\"$summarytext\" name=\"wpSummary\" maxlength='200' size='60' /><br />";
351 }
352
353 if( !$this->preview ) {
354 # Don't select the edit box on preview; this interferes with seeing what's going on.
355 $wgOut->setOnloadHandler( "document.editform.wpTextbox1.focus()" );
356 }
357 $wgOut->addHTML( "
358 {$toolbar}
359 <form id=\"editform\" name=\"editform\" method=\"post\" action=\"$action\"
360 enctype=\"application/x-www-form-urlencoded\">
361 {$commentsubject}
362 <div id=\"tawrapper\"><textarea tabindex='1' accesskey=\",\" name=\"wpTextbox1\" rows='{$rows}'
363 cols='{$cols}'{$ew}>" .
364 htmlspecialchars( $wgLang->recodeForEdit( $this->textbox1 ) ) .
365 "
366 </textarea></div>
367 <br />{$editsummary}
368 {$checkboxhtml}
369 <input tabindex='5' type='submit' value=\"{$save}\" name=\"wpSave\" accesskey=\"".wfMsg('accesskey-save')."\"".
370 " title=\"".wfMsg('tooltip-save')."\"/>
371 <input tabindex='6' type='submit' value=\"{$prev}\" name=\"wpPreview\" accesskey=\"".wfMsg('accesskey-preview')."\"".
372 " title=\"".wfMsg('tooltip-preview')."\"/>
373 <em>{$cancel}</em> | <em>{$edithelp}</em>
374 <br /><br />{$copywarn}
375 <input type='hidden' value=\"" . htmlspecialchars( $this->section ) . "\" name=\"wpSection\" />
376 <input type='hidden' value=\"{$this->edittime}\" name=\"wpEdittime\" />\n" );
377
378 if ( $isConflict ) {
379 $wgOut->addHTML( "<h2>" . wfMsg( "yourdiff" ) . "</h2>\n" );
380 DifferenceEngine::showDiff( $this->textbox2, $this->textbox1,
381 wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
382
383 $wgOut->addHTML( "<h2>" . wfMsg( "yourtext" ) . "</h2>
384 <textarea tabindex=6 name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}' wrap='virtual'>"
385 . htmlspecialchars( $wgLang->recodeForEdit( $this->textbox2 ) ) .
386 "
387 </textarea>" );
388 }
389 $wgOut->addHTML( "</form>\n" );
390 if($formtype =="preview" && !$wgUser->getOption("previewontop")) {
391 $wgOut->addHTML($previewhead);
392 $wgOut->addHTML($previewHTML);
393 }
394
395 }
396
397 function blockedIPpage()
398 {
399 global $wgOut, $wgUser, $wgLang, $wgIP;
400
401 $wgOut->setPageTitle( wfMsg( "blockedtitle" ) );
402 $wgOut->setRobotpolicy( "noindex,nofollow" );
403 $wgOut->setArticleRelated( false );
404
405 $id = $wgUser->blockedBy();
406 $reason = $wgUser->blockedFor();
407 $ip = $wgIP;
408
409 $name = User::whoIs( $id );
410 $link = "[[" . $wgLang->getNsText( Namespace::getUser() ) .
411 ":{$name}|{$name}]]";
412
413 $wgOut->addWikiText( wfMsg( "blockedtext", $link, $reason, $ip ) );
414 $wgOut->returnToMain( false );
415 }
416
417
418
419 function userNotLoggedInPage()
420 {
421 global $wgOut, $wgUser, $wgLang;
422
423 $wgOut->setPageTitle( wfMsg( "whitelistedittitle" ) );
424 $wgOut->setRobotpolicy( "noindex,nofollow" );
425 $wgOut->setArticleRelated( false );
426
427 $wgOut->addWikiText( wfMsg( "whitelistedittext" ) );
428 $wgOut->returnToMain( false );
429 }
430
431 # Forks processes to scan the originating IP for an open proxy server
432 # MemCached can be used to skip IPs that have already been scanned
433 function proxyCheck()
434 {
435 global $wgBlockOpenProxies, $wgProxyPorts, $wgProxyScriptPath;
436 global $wgIP, $wgUseMemCached, $wgMemc, $wgDBname, $wgProxyMemcExpiry;
437
438 if ( !$wgBlockOpenProxies ) {
439 return;
440 }
441
442 # Get MemCached key
443 $skip = false;
444 if ( $wgUseMemCached ) {
445 $mcKey = "$wgDBname:proxy:ip:$wgIP";
446 $mcValue = $wgMemc->get( $mcKey );
447 if ( $mcValue ) {
448 $skip = true;
449 }
450 }
451
452 # Fork the processes
453 if ( !$skip ) {
454 $title = Title::makeTitle( NS_SPECIAL, "Blockme" );
455 $iphash = md5( $wgIP . $wgProxyKey );
456 $url = $title->getFullURL( "ip=$iphash" );
457
458 foreach ( $wgProxyPorts as $port ) {
459 $params = implode( " ", array(
460 escapeshellarg( $wgProxyScriptPath ),
461 escapeshellarg( $wgIP ),
462 escapeshellarg( $port ),
463 escapeshellarg( $url )
464 ));
465 exec( "php $params &>/dev/null &" );
466 }
467 # Set MemCached key
468 if ( $wgUseMemCached ) {
469 $wgMemc->set( $mcKey, 1, $wgProxyMemcExpiry );
470 }
471 }
472 }
473
474 /* private */ function mergeChangesInto( &$text ){
475 $oldDate = $this->edittime;
476 $res = wfQuery("SELECT cur_text FROM cur WHERE cur_id=" .
477 $this->mTitle->getArticleID() . " FOR UPDATE", DB_WRITE);
478 $obj = wfFetchObject($res);
479
480 $yourtext = $obj->cur_text;
481 $ns = $this->mTitle->getNamespace();
482 $title = wfStrencode( $this->mTitle->getDBkey() );
483 $res = wfQuery("SELECT old_text FROM old WHERE old_namespace = $ns AND ".
484 "old_title = '{$title}' AND old_timestamp = '{$oldDate}'", DB_WRITE);
485 $obj = wfFetchObject($res);
486 if(wfMerge($obj->old_text, $text, $yourtext, $result)){
487 $text = $result;
488 return true;
489 } else {
490 return false;
491 }
492 }
493 }
494
495 ?>