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