i for 'minor edit'...
[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 }
285
286 // activate checkboxes if user wants them to be always active
287 if( !$this->preview ) {
288 if( $wgUser->getOption( "watchdefault" ) ) $this->watchthis = true;
289 if( $wgUser->getOption( "minordefault" ) ) $this->minoredit = true;
290
291 // activate checkbox also if user is already watching the page,
292 // require wpWatchthis to be unset so that second condition is not
293 // checked unnecessarily
294 if( !$this->watchthis && $this->mTitle->userIsWatching() ) $this->watchthis = true;
295 }
296
297 $minoredithtml = "";
298
299 if ( 0 != $wgUser->getID() || $wgAllowAnonymousMinor ) {
300 $minoredithtml =
301 "<input tabindex='3' type='checkbox' value='1' name='wpMinoredit'".($this->minoredit?" checked='checked'":"").
302 " accesskey='i' id='wpMinoredit' />".
303 "<label for='wpMinoredit'>{$minor}</label>";
304 }
305
306 $watchhtml = "";
307
308 if ( 0 != $wgUser->getID() ) {
309 $watchhtml = "<input tabindex='4' type='checkbox' name='wpWatchthis'".($this->watchthis?" checked='checked'":"").
310 " accesskey='w' id='wpWatchthis' />".
311 "<label for='wpWatchthis'>{$watchthis}</label>";
312 }
313
314 $checkboxhtml = $minoredithtml . $watchhtml . "<br />";
315
316 if ( "preview" == $formtype) {
317 $previewhead="<h2>" . wfMsg( "preview" ) . "</h2>\n<p><large><center><font color=\"#cc0000\">" .
318 wfMsg( "note" ) . wfMsg( "previewnote" ) . "</font></center></large></p>\n";
319 if ( $isConflict ) {
320 $previewhead.="<h2>" . wfMsg( "previewconflict" ) .
321 "</h2>\n";
322 }
323 $previewtext = wfUnescapeHTML( $this->textbox1 );
324
325 $parserOptions = ParserOptions::newFromUser( $wgUser );
326 $parserOptions->setUseCategoryMagic( false );
327 $parserOptions->setEditSection( false );
328 $parserOptions->setEditSectionOnRightClick( false );
329 $parserOutput = $wgParser->parse( $this->mArticle->preSaveTransform( $previewtext ) ."\n\n",
330 $wgTitle, $parserOptions );
331 $previewHTML = $parserOutput->mText;
332
333 if($wgUser->getOption("previewontop")) {
334 $wgOut->addHTML($previewhead);
335 $wgOut->addHTML($previewHTML);
336 }
337 $wgOut->addHTML( "<br clear=\"all\" />\n" );
338 }
339
340 # if this is a comment, show a subject line at the top, which is also the edit summary.
341 # Otherwise, show a summary field at the bottom
342 $summarytext = htmlspecialchars( $wgLang->recodeForEdit( $this->summary ) ); # FIXME
343 if( $this->section == "new" ) {
344 $commentsubject="{$subject}: <input tabindex='1' type='text' value=\"$summarytext\" name=\"wpSummary\" maxlength='200' size='60' /><br />";
345 $editsummary = "";
346 } else {
347 $commentsubject = "";
348 $editsummary="{$summary}: <input tabindex='3' type='text' value=\"$summarytext\" name=\"wpSummary\" maxlength='200' size='60' /><br />";
349 }
350
351 if( !$this->preview ) {
352 # Don't select the edit box on preview; this interferes with seeing what's going on.
353 $wgOut->setOnloadHandler( "document.editform.wpTextbox1.focus()" );
354 }
355 $wgOut->addHTML( "
356 {$toolbar}
357 <form id=\"editform\" name=\"editform\" method=\"post\" action=\"$action\"
358 enctype=\"application/x-www-form-urlencoded\">
359 {$commentsubject}
360 <textarea tabindex='1' accesskey=\",\" name=\"wpTextbox1\" rows='{$rows}'
361 cols='{$cols}'{$ew}>" .
362 htmlspecialchars( $wgLang->recodeForEdit( $this->textbox1 ) ) .
363 "
364 </textarea>
365 <br />{$editsummary}
366 {$checkboxhtml}
367 <input tabindex='5' type='submit' value=\"{$save}\" name=\"wpSave\" accesskey=\"s\" />
368 <input tabindex='6' type='submit' value=\"{$prev}\" name=\"wpPreview\" accesskey=\"p\" />
369 <em>{$cancel}</em> | <em>{$edithelp}</em>
370 <br /><br />{$copywarn}
371 <input type='hidden' value=\"" . htmlspecialchars( $this->section ) . "\" name=\"wpSection\" />
372 <input type='hidden' value=\"{$this->edittime}\" name=\"wpEdittime\" />\n" );
373
374 if ( $isConflict ) {
375 $wgOut->addHTML( "<h2>" . wfMsg( "yourdiff" ) . "</h2>\n" );
376 DifferenceEngine::showDiff( $this->textbox2, $this->textbox1,
377 wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
378
379 $wgOut->addHTML( "<h2>" . wfMsg( "yourtext" ) . "</h2>
380 <textarea tabindex=6 name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}' wrap='virtual'>"
381 . htmlspecialchars( $wgLang->recodeForEdit( $this->textbox2 ) ) .
382 "
383 </textarea>" );
384 }
385 $wgOut->addHTML( "</form>\n" );
386 if($formtype =="preview" && !$wgUser->getOption("previewontop")) {
387 $wgOut->addHTML($previewhead);
388 $wgOut->addHTML($previewHTML);
389 }
390
391 }
392
393 function blockedIPpage()
394 {
395 global $wgOut, $wgUser, $wgLang, $wgIP;
396
397 $wgOut->setPageTitle( wfMsg( "blockedtitle" ) );
398 $wgOut->setRobotpolicy( "noindex,nofollow" );
399 $wgOut->setArticleRelated( false );
400
401 $id = $wgUser->blockedBy();
402 $reason = $wgUser->blockedFor();
403 $ip = $wgIP;
404
405 $name = User::whoIs( $id );
406 $link = "[[" . $wgLang->getNsText( Namespace::getUser() ) .
407 ":{$name}|{$name}]]";
408
409 $wgOut->addWikiText( wfMsg( "blockedtext", $link, $reason, $ip ) );
410 $wgOut->returnToMain( false );
411 }
412
413
414
415 function userNotLoggedInPage()
416 {
417 global $wgOut, $wgUser, $wgLang;
418
419 $wgOut->setPageTitle( wfMsg( "whitelistedittitle" ) );
420 $wgOut->setRobotpolicy( "noindex,nofollow" );
421 $wgOut->setArticleRelated( false );
422
423 $wgOut->addWikiText( wfMsg( "whitelistedittext" ) );
424 $wgOut->returnToMain( false );
425 }
426
427 # Forks processes to scan the originating IP for an open proxy server
428 # MemCached can be used to skip IPs that have already been scanned
429 function proxyCheck()
430 {
431 global $wgBlockOpenProxies, $wgProxyPorts, $wgProxyScriptPath;
432 global $wgIP, $wgUseMemCached, $wgMemc, $wgDBname, $wgProxyMemcExpiry;
433
434 if ( !$wgBlockOpenProxies ) {
435 return;
436 }
437
438 # Get MemCached key
439 $skip = false;
440 if ( $wgUseMemCached ) {
441 $mcKey = "$wgDBname:proxy:ip:$wgIP";
442 $mcValue = $wgMemc->get( $mcKey );
443 if ( $mcValue ) {
444 $skip = true;
445 }
446 }
447
448 # Fork the processes
449 if ( !$skip ) {
450 $title = Title::makeTitle( NS_SPECIAL, "Blockme" );
451 $iphash = md5( $wgIP . $wgProxyKey );
452 $url = $title->getFullURL( "ip=$iphash" );
453
454 foreach ( $wgProxyPorts as $port ) {
455 $params = implode( " ", array(
456 escapeshellarg( $wgProxyScriptPath ),
457 escapeshellarg( $wgIP ),
458 escapeshellarg( $port ),
459 escapeshellarg( $url )
460 ));
461 exec( "php $params &>/dev/null &" );
462 }
463 # Set MemCached key
464 if ( $wgUseMemCached ) {
465 $wgMemc->set( $mcKey, 1, $wgProxyMemcExpiry );
466 }
467 }
468 }
469
470 /* private */ function mergeChangesInto( &$text ){
471 $oldDate = $this->edittime;
472 $res = wfQuery("SELECT cur_text FROM cur WHERE cur_id=" .
473 $this->mTitle->getArticleID() . " FOR UPDATE", DB_WRITE);
474 $obj = wfFetchObject($res);
475
476 $yourtext = $obj->cur_text;
477 $ns = $this->mTitle->getNamespace();
478 $title = wfStrencode( $this->mTitle->getDBkey() );
479 $res = wfQuery("SELECT old_text FROM old WHERE old_namespace = $ns AND ".
480 "old_title = '{$title}' AND old_timestamp = '{$oldDate}'", DB_WRITE);
481 $obj = wfFetchObject($res);
482 if(wfMerge($obj->old_text, $text, $yourtext, $result)){
483 $text = $result;
484 return true;
485 } else {
486 return false;
487 }
488 }
489 }
490
491 ?>