7 function wrReportParserInit() {
9 $wgParser->setHook('bahnberichtformular', 'bahnberichtformularParserHook');
10 $wgParser->setHook('bahnberichte', 'bahnberichteParserHook');
11 $wgParser->setHook('bahnbewertung', 'bahnbewertungParserHook');
19 /// \brief This function is used to translate WikiText to HTML. Normally it should be avoided to do this
20 /// but I found situations where I did not find an other possibility.
21 function wrReportSandboxParse($wikiText) {
22 global $wgTitle, $wgUser;
23 $myParser = new Parser();
24 $myParserOptions = new ParserOptions();
25 $myParserOptions->initialiseFromUser($wgUser);
26 $result = $myParser->parse($wikiText, $wgTitle, $myParserOptions);
27 return $result->getText();
31 /// List of markers - used by the functions replaceByMarker and wrReportAfterTidy
32 $wrReportMarkerList = array();
35 /// Returns a marker for a text and back-replaces the text in wrReportAfterTidy
36 function replaceByMarker($text, $marker = 'marker') {
37 $marker = $marker . mt_rand(1e5, 1e7);
38 global $wrReportMarkerList;
39 $wrReportMarkerList[$marker] = $text;
44 /// Replaces the markers by its contents
45 function wrReportAfterTidy(&$parser, &$text) {
46 // find markers in $text
47 // replace markers with actual output
48 global $wrReportMarkerList;
49 foreach ($wrReportMarkerList as $marker => $html) $text = str_replace($marker, $html, $text);
58 /// \brief Returns a form to enter a report (string containing HTML).
60 /// All parameters have to be UTF-8 encoded.
61 /// \param $page_title Name of the sledding run.
62 /// \return UTF-8 encoded HTML form
63 function wrReportFormRender($hide_save_button = TRUE, $page_title = NULL, $date_report = NULL, $condition = NULL, $description = NULL, $author_name = NULL, $page_title_list = NULL) {
64 if ($page_title) $page_title = htmlspecialchars($page_title);
66 $daynames = array('Heute', 'Gestern', 'Vorgestern', 'Vor 3 Tagen', 'Vor 4 Tagen');
68 $date_selected = false;
69 $time = time(); // number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)
70 for ($day=0; $day!=5; ++$day) {
71 $date = strtotime("-$day days", $time);
72 $date_f = strftime("%Y-%m-%d", $date); // Formats it according to locale, that is set to CET.
73 $date_options .= '<option value="' . $date_f . '"';
74 if ((is_null($date_report) && $day == 0) || (!is_null($date_report) && $date_report == $date_f)) {
75 $date_options .= ' selected="selected"';
76 $date_selected = true;
78 $date_options .= '>' . htmlspecialchars($daynames[$day]) . ' (' . strftime('%d.%m.', $date) . ')</option>' . "\n";
80 if (!$date_selected) {
81 $date_options = '<option value="' . $date_report . '" selected="selected">' . htmlspecialchars($date_report) . "</option>\n" . $date_options;
85 $condition_options = '';
86 global $wrConditions; // $wrConditions = array(1 => 'Sehr gut', 2 => 'Gut', 3 => utf8_encode('Mittelmäßig'), 4 => 'Schlecht', 5 => 'Geht nicht');
87 $condition_options .= utf8_encode('<option value="">(keine Beurteilung)</option>') . "\n";
88 foreach ($wrConditions as $condition_num => $condition_text) {
89 $condition_options .= "<option value=\"$condition_num\"";
90 if ($condition == $condition_num) $condition_options .= ' selected="selected"';
91 $condition_options .= '>' . htmlspecialchars($condition_text) . "</option>\n";
93 $description_html = htmlspecialchars($description);
96 // I would like to do it this way, but due to a bug of internet explorer, the <button> element is not useable.
97 // $buttons = '<button name="action" type="submit" value="preview">Vorschau';
98 // if ($hide_save_button) $buttons .= ' & Speichern';
99 // $buttons .= '</button>';
100 // if (!$hide_save_button) $buttons .= '<button name="action" type="submit" value="store">Speichern</button>';
101 // Workaround: User <input type="submit"/>
102 $buttons = '<input name="preview" type="submit" value="Vorschau';
103 if ($hide_save_button) $buttons .= ' & Speichern';
105 if (!$hide_save_button) $buttons .= '<input name="store" type="submit" value="Speichern"/>';
107 // TODO: Get rid of absolute URL
109 <form action="/wiki/Spezial:Bahnberichte" method="post">
110 <table class="wrreportform" summary="Formular zum Eintragen eines Rodelbahnberichtes">
111 <tr class="oddrow"><th>Rodelbahn</th><td>$page_title<input type="hidden" name="page_title" value="$page_title"/></td></tr>
112 <tr class="evenrow"><th>Datum des Rodelns</th>
114 <select name="date_report">
119 <tr class="oddrow"><th>Bahnzustand*</th><td><select name="condition">
122 <tr class="evenrow"><th>Meinung</th><td><textarea name="description" cols="50" rows="7">$description_html</textarea></td></tr>
123 <tr class="oddrow"><th>Autor/in</th><td><input name="author_name" maxlength="30" size="30" value="$author_name" /></td></tr>
124 <tr class="evenrow"><th>Bericht abschicken</th><td>$buttons</td></tr>
132 /// \brief Renders the form to delete a report
134 /// All in and output strings should be/are UTF-8 encoded.
135 function wrDeleteReportFormRender($reportid, $delete_person_name, $delete_reason_public, $delete_invisible) {
137 $buttons = '<input name="deletepreview" type="submit" value="Vorschau" /> ';
138 $buttons .= utf8_encode('<input name="delete" type="submit" value="Löschen"/>');
139 $buttons .= '<input name="reportid" type="hidden" value="' . $reportid . '"/>';
140 // $buttons .= '<input name="delete_invisible" type="hidden" value="' . $delete_invisible . '"/>'; // who is allowed to do so?
141 $summary = utf8_encode('Formular zum Löschen eines Schneelageberichtes');
142 $reason = utf8_encode('Begründung');
143 $delete_reason_public_html = htmlspecialchars($delete_reason_public);
144 $delete_person_name_html = htmlspecialchars($delete_person_name);
146 // TODO: Get rid of absolute URL
148 <form action="/wiki/Spezial:Bahnberichte" method="post">
149 <table class="wrreportform" summary="$summary">
150 <tr class="evenrow"><th>$reason</th><td><textarea name="delete_reason_public" cols="50" rows="7">$delete_reason_public_html</textarea></td></tr>
151 <tr class="oddrow"><th>Name</th><td><input name="delete_person_name" maxlength="30" size="30" value="$delete_person_name" /></td></tr>
152 <tr class="evenrow"><th>Aktion</th><td>$buttons</td></tr>
161 // Constants for wrReportTableRender2
162 define(WRREPORT_COMPACT_PAGE, 1); ///< includes the page name
163 define(WRREPORT_COMPACT, 2); ///< shown on a single page
164 define(WRREPORT_DETAIL, 3); ///< more columns
166 /// \brief Renders a table header ("private" sub-function of wrReportTableRender2)
168 /// \param $format row format like WRREPORT_COMPACT
169 /// \param $showActions boolean to indicate whether an actions column should be created
170 /// \return UTF-8 encoded titles of HTML table
171 function wrReportTableTitleRender2($format, $showActions) {
173 if ($format == WRREPORT_DETAIL) $out .= '<th>ID</th>';
174 if ($format != WRREPORT_COMPACT) $out .= '<th>Bahn</th>';
175 $out .= '<th>Datum</th>';
176 if ($format == WRREPORT_DETAIL) $out .= '<th>Datum Eintrag</th>';
177 if ($format == WRREPORT_DETAIL) $out .= '<th>Datum Ungültig</th>';
178 $out .= '<th>Zustand</th>';
179 $out .= '<th>Beschreibung</th>';
180 $out .= '<th>Autor</th>';
181 if ($showActions) $out .= '<th>Aktion</th>';
182 return utf8_encode($out . "</tr>\n");
186 /// \brief Renders a table row ("private" sub-function of wrReportTableRender2)
188 /// \param $row associative array of table columns like one row in the wrreport table
189 /// \param $format row format like WRREPORT_COMPACT
190 /// \param $showActions boolean to indicate whether an actions column should be created
191 /// \return UTF-8 encoded titles of HTML table
192 function wrReportTableRowRender2($row, $format, $showActions) {
197 if ($format == WRREPORT_DETAIL) $out .= '<td>' . $id . '</td>';
199 if ($format != WRREPORT_COMPACT) $out .= '<td>' . wrReportSandboxParse('[[' . $page_title . ']]') . '</td>';
201 $dayOfWeek = array('Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa', 'So');
202 $date_report = strtotime($date_report);
203 $date_report = $dayOfWeek[strftime('%u', $date_report)-1] . strftime(', %d.%m.', $date_report);
204 $out .= '<td>' . $date_report . '</td>';
206 if ($format == WRREPORT_DETAIL) $out .= '<td>' . date('Y-m-d, H:i', strtotime($date_entry)) . '</td>';
208 if ($format == WRREPORT_DETAIL) $out .= '<td>' . date('Y-m-d, H:i', strtotime($date_invalid)) . '</td>';
210 global $wrConditions;
211 $condition_text = '---';
212 if (isset($wrConditions[$condition])) $condition_text = $wrConditions[$condition];
214 if ($delete_date) $out .= utf8_encode('<em>Gelöscht</em>');
215 else $out .= htmlspecialchars($condition_text);
218 $out .= '<td class="wrreportdescription">';
219 if ($delete_date) $out .= utf8_encode('<em>Gelöscht</em>');
220 else $out .= wrReportSandboxParse($description);
224 if ($delete_date) $out .= utf8_encode('<em>Gelöscht</em>');
225 else $out .= htmlspecialchars($author_name);
228 // wiki/Spezial:Bahnberichte?action=deletepreview&reportid=42
231 if (!isset($row['delete_date'])) $out .= '<a href="/wiki/Spezial:Bahnberichte?action=deletepreview&reportid=' . $row['id'] . '">' . utf8_encode('Löschen...') . '</a>'; // TODO: Get rid of absolute URL
234 return $out . "</tr>\n";
238 /// \brief Renders the report table. Call wrReportGetReports for the $rows parameter.
240 /// \param $rows array of associative row arrays
241 /// \param $format row format like WRREPORT_TABLE_SHORT
242 function wrReportTableRender2($rows, $format, $showActions) {
243 $out = "<table class=\"wrreporttable\">\n" . wrReportTableTitleRender2($format, $showActions);
244 foreach ($rows as $key => $row) $out .= wrReportTableRowRender2($row, $format, $showActions);
245 return $out . "</table>\n";
249 /// Returns an array with column names
250 function wrReportGetColumnNames() {
251 return array('id', 'page_id', 'page_title', 'date_report', 'date_entry', 'date_invalid', 'condition', 'description', 'author_name', 'author_username', 'delete_date', 'delete_person_name', 'delete_person_ip', 'delete_person_userid', 'delete_person_username', 'delete_reason_public', 'delete_invisible');
255 /// \brief Returns reports as associative array.
258 /// $conditions = array('page_title' => 'Birgitzer Alm', 'date_invalid > now()');
259 /// $order = 'date_report desc, date_entry desc';
260 function wrReportGetReports($conditions, $order) {
261 $dbr = wfGetDB(DB_SLAVE);
262 $res = $dbr->select('wrreport', wrReportGetColumnNames(), $conditions, $fname = 'Database::select', $options = array('ORDER BY' => 'date_report desc, date_entry desc'));
264 while ($row = $dbr->fetchRow($res)) $result[] = $row;
265 $dbr->freeResult($res);
271 /// \brief It returns an array of the "condition" (as number) and the date of the "most recent" report of the specified page (to decode as list($condition, $date);
273 /// If no condition is present, array(NULL, NULL) is returned
274 function wrReportConditionRender($page_title) {
275 $dbr = wfGetDB(DB_SLAVE);
276 $res = $dbr->select('wrreport', array('max(wrreport.id) as max'), array('page_title' => $page_title, 'condition is not null', 'date_invalid > now()'));
277 // select condition, date_report from wrreport where id = (select max(wrreport.id) as max from wrreport where page_title='Birgitzer Alm (vom Adelshof)' and date_invalid > now() and condition is not null);
278 if ($res->numRows() <= 0) return array(NULL, NULL);
279 $row = $dbr->fetchObject($res);
280 $res = $dbr->select('wrreport', array('condition', 'date_report'), array('id' => $row->max));
281 if ($res->numRows() <= 0) return array(NULL, NULL);
282 $row = $dbr->fetchObject($res);
283 $date = $row->date_report;
284 if ($date) $date = strtotime($date);
285 return array($row->condition, $date);
289 // Parser Hook Functions
290 // ---------------------
292 /// \brief Is called when the tag <bahnberichtformular/> is encountered.
294 /// The current page name is taken.
295 function bahnberichtformularParserHook($input, $args, $parser) {
299 if ($wgUser->isLoggedIn()) {
300 $author_name = $wgUser->getRealName();
301 if (!$author_name) $author_name = $wgUser->getName();
304 global $wgWrReportMode;
305 global $wgWrReportBlackListAll;
306 global $wgWrReportBlackListStrangers;
307 if ($wgWrReportMode == 'summer') return wrReportSandboxParse(utf8_encode("''An dieser Stelle kann während des Winters die Schneelage von Rodelbahnen eingetragen werden.''\n\n"));
308 if ($wgWrReportMode == 'deny') return wrReportSandboxParse(utf8_encode("''Rodelbahnberichte sind derzeit leider nicht erlaubt.''\n\n"));
310 if ($wgWrReportMode == 'loggedin' && !$wgUser->isLoggedIn()) return wrReportSandboxParse(utf8_encode("''Derzeit sind Rodelbahnberichte nur für angemeldete Benutzer erlaubt.''\n\n"));
312 if (in_array($parser->getTitle()->getText(), $wgWrReportBlackListAll)) return wrReportSandboxParse(utf8_encode("''Bei dieser Rodelbahn dürfen derzeit leider keine Rodelbahnberichte abgegeben werden.''\n"));
313 if (!$wgUser->isLoggedIn() && in_array($parser->getTitle()->getText(), $wgWrReportBlackListStrangers)) return wrReportSandboxParse(utf8_encode("''Bei der angegebenen Rodelbahn dürfen derzeit nur angemeldete Benutzer Rodelbahnberichte abgebe.''\n\n"));
314 return replaceByMarker(wrReportFormRender(TRUE, $parser->getTitle()->getText(), NULL, NULL, NULL, $author_name));
318 /// \brief Is called when the tag <bahnberichte/> is encountered.
320 /// The current page name is taken.
321 function bahnberichteParserHook($input, $args, &$parser) {
322 $page_title = $parser->getTitle()->getText();
323 $conditions = array('page_title' => $page_title, 'date_invalid > now()');
324 $order = 'date_report desc, date_entry desc';
325 $rows = wrReportGetReports($conditions, $order);
326 if (count($rows) == 0) return wrReportSandboxParse("''Es wurden keine Bahnberichte in der Datenbank gefunden.''\n\n");
327 return wrReportTableRender2($rows, WRREPORT_COMPACT, true);
331 /// \brief Is called when the tag <bahnbewertung/> is encountered.
333 /// * <bahnbewertung/>: The current page name is taken.
334 /// * <bahnbewertung>page_name</bahnbewertung>: The given page name is taken.
335 function bahnbewertungParserHook($input, $args, &$parser) {
337 if (!$titleText) $titleText = $parser->getTitle()->getText();
338 list($condition, $date) = wrReportConditionRender($titleText);
339 if ($date) $date = strftime('%d.%m.', $date);
340 global $wrConditions;
341 global $wrNewReportSection; // = utf8_encode('Eintragen');
342 global $wrShowReportsSection; // = utf8_encode('Einträge');
344 global $wgWrReportMode; // e.g. 'summer'
345 global $wgWrReportBlackListAll;
346 global $wgWrReportBlackListStrangers;
348 // Determine, whether the user is allowed to make a new report
349 $userMayReport = ($wgWrReportMode == 'allow' || ($wgWrReportMode == 'loggedin' && $wgUser->isLoggedIn()));
350 if ($userMayReport) {
351 if (in_array($titleText, $wgWrReportBlackListAll)) $userMayReport = false;
352 if (!$wgUser->isLoggedIn() && in_array($titleText, $wgWrReportBlackListStrangers)) $userMayReport = false;
355 // Get the condition and create the response wiki text
356 if (isset($wrConditions[$condition])) {
357 $wikiText = '[['. $titleText . '#' . $wrShowReportsSection . '|'. $wrConditions[$condition] . "]] <small>$date";
358 if ($userMayReport) $wikiText .= " ''[[" . $titleText . '#' . $wrNewReportSection . "|Neu]]''";
359 $wikiText .= "</small>";
361 if ($userMayReport) $wikiText = "<small>''[[" . $titleText . '#' . $wrNewReportSection . "|Bitte eintragen]]''</small>";
362 else $wikiText = '--';
364 return wrReportSandboxParse($wikiText);
372 /// Specal Page to show reports
373 class WrReport extends SpecialPage {
374 function WrReport() {
375 SpecialPage::SpecialPage('WrReport');
376 wfLoadExtensionMessages('WrReport');
380 /// \param $par Possibilities:
381 /// - action == 'view' (default)
382 /// - action == 'preview': Preview new report
383 /// - action == 'store': Store new report
384 /// - action == 'deletepreview': Preview the deleted record
385 /// - action == 'delete': Delete an existing report
386 /// - action == 'showerror': Shows the error and exits
387 /// \param $override_action If not NULL (default), it overrides the action in $par
388 /// \param $errorMsg UFT-8 encoded error message (in WikiText) to show on top of the page or NULL (default):
389 function execute($par, $override_action = NULL, $errorMsg = NULL) {
390 global $wgRequest, $wgOut;
395 $action = $wgRequest->getText('action');
397 if ($wgRequest->getVal('preview')) $action = 'preview';
398 elseif ($wgRequest->getVal('store')) $action = 'store';
399 elseif ($wgRequest->getVal('deletepreview')) $action = 'deletepreview';
400 elseif ($wgRequest->getVal('delete')) $action = 'delete';
401 else $action = 'view';
403 if ($override_action) $action = $override_action;
405 // Show error message
406 if ($errorMsg || $action == 'showerror') {
407 $wgOut->addWikiText('<div class="errorbox">' . $errorMsg . "</div>\n");
408 if ($action == 'showerror') return;
412 if ($action == 'view') {
413 $conditions = array('date_invalid > now()');
414 $order = 'date_entry desc, date_report desc';
415 $rows = wrReportGetReports($conditions, $order);
416 if (count($rows) == 0) $wgOut->addWikiText("''Es wurden keine Bahnberichte in der Datenbank gefunden.''\n\n");
417 $wgOut->addHTML(wrReportTableRender2($rows, WRREPORT_DETAIL, True));
420 // Action deletepreview or delete
421 elseif ($action == 'deletepreview' || $action == 'delete') {
422 $reportid = (int) $wgRequest->getText('reportid');
423 if ($reportid == 0) {
424 $this->execute($par, 'showerror', utf8_encode('Es wurde kein Bericht zum Löschen ausgewählt.'));
427 $rows = wrReportGetReports(array('id' => $reportid), '');
428 if (count($rows) != 1) {
429 $this->execute($par, 'showerror', utf8_encode('Es wurde ein ungültiger Bericht zum Löschen ausgewählt.'));
433 if (!is_null($row['delete_date'])) {
434 $this->execute($par, 'showerror', utf8_encode('Der angegebende Bericht ist bereits gelöscht.'));
437 $delete_reason_public = $wgRequest->getText('delete_reason_public');
438 $delete_person_name = $wgRequest->getText('delete_person_name');
439 $delete_invisible = $wgRequest->getText('delete_invisible') ? TRUE : FALSE;
440 if ($action == 'delete') {
442 $title = Title::newFromId($row['page_id']);
446 $delete_person_userid = $wgUser->getId();
447 if ($delete_person_userid == 0) $delete_person_userid = NULL; // to store a NULL value in the database if no user is logged in instead of 0.
448 $delete_person_username = $wgUser->getName();
452 global $wgWrReportDeleteMode;
453 if ($wgWrReportDeleteMode == 'deny') $errorMsg = utf8_encode('Das Löschen von Rodelbahnberichten ist derzeit leider nicht erlaubt.');
454 elseif ($wgWrReportDeleteMode == 'loggedin' && !$wgUser->isLoggedIn()) $errorMsg = utf8_encode('Derzeit dürfen nur angemeldete Benutzer Rodelbahnberichte löschen.');
455 elseif (!$delete_person_name || !$delete_reason_public) $errorMsg = utf8_encode('Es müssen sowohl die Begründung als auch der Name angegeben werden.');
457 $this->execute($par, 'deletepreview', $errorMsg);
461 // "Delete" (update) entry
462 $dbr = wfGetDB(DB_MASTER);
466 'delete_date' => date('c'),
467 'delete_person_name' => $delete_person_name,
468 'delete_person_ip' => $_SERVER['REMOTE_ADDR'],
469 'delete_person_userid' => $delete_person_userid,
470 'delete_person_username' => $delete_person_username,
471 'delete_reason_public' => $delete_reason_public,
472 'delete_invisible' => $delete_invisible ? 't' : 'f'
474 array('id' => $reportid)
478 $title->invalidateCache();
479 // Show success message
480 global $wrShowReportsSection;
481 $wgOut->addWikiText(utf8_encode('<div class="successbox">Der Bahnbericht für [[') . $row['page_title'] . '#' . $wrShowReportsSection . '|' . $row['page_title'] . utf8_encode("]] wurde erfolgreich gelöscht.</div>\n"));
483 if ($action == 'deletepreview') {
484 $preview_msg = "Bitte nur dann einen Bericht löschen, wenn Gründe vorliegen wie\n" .
485 "* Beschimpfungen, Verleumdungen (wir wollen ''Rodelbahnen'' bewerten, nicht Personen)\n" .
486 "* Werbung oder Spam (wenn jemand allerdings ''werbend'' zu gute Noten vergibt, lieber eigenen Bericht eintragen als löschen).\n\n";
487 $wgOut->addWikiText(utf8_encode($preview_msg));
488 $wgOut->addWikiText(utf8_encode("== Schneelagebericht, um den es beim Löschen geht ==\n"));
489 $format = WRREPORT_COMPACT_PAGE;
490 $wgOut->addHTML(wrReportTableRender2(array($row), $format, FALSE));
491 $wgOut->addWikiText(utf8_encode("\n\n== Vorschau (derzeit noch nicht gelöscht) ==\n"));
492 $row['delete_date'] = date('c');
493 $row['delete_reason_public'] = $delete_reason_public;
494 $row['delete_person_name'] = $delete_person_name;
495 $row['delete_invisible'] = $delete_invisible;
496 $wgOut->addHTML(wrReportTableRender2(array($row), $format, FALSE));
497 $wgOut->addWikiText(utf8_encode("== Löschen ==\n"));
498 $wgOut->addWikiText(utf8_encode("Die Begründung und der Name scheinen nicht in den normalen Listen auf, allerdings dienen sie den Administratoren dazu, sich schnell einen Überblick zu verschaffen, wer was warum gelöscht hat.\n"));
499 $wgOut->addHTML(wrDeleteReportFormRender($reportid, $delete_person_name, $delete_reason_public, $delete_invisible));
503 // Action preview or store
504 elseif ($action == 'preview' || $action == 'store') {
505 $page_title = $wgRequest->getText('page_title');
506 $date_report = $wgRequest->getText('date_report');
507 $condition = $wgRequest->getText('condition');
508 $description = $wgRequest->getText('description');
509 $author_name = $wgRequest->getText('author_name');
510 if ($action == 'store') {
512 $title = Title::newFromText($page_title);
513 $page_id = $title->getArticleId();
514 if ($page_id == 0) $page_id = NULL;
518 $author_userid = $wgUser->getId();
519 if ($author_userid == 0) $author_userid = NULL; // to store a NULL value in the database if no user is logged in instead of 0.
520 $author_username = $wgUser->getName();
523 $condition_int = (int) $condition;
524 if ($condition_int >= 1 and $condition_int <= 5) $condition = $condition_int;
525 else $condition = NULL;
527 // check conditions/permissions
529 global $wgWrReportMode;
530 global $wgWrReportBlackListAll;
531 global $wgWrReportBlackListStrangers;
532 if ($wgWrReportMode == 'summer') $errorMsg = utf8_encode('Rodelbahnberichte sind in der schneefreien Zeit nicht erlaubt.');
533 elseif ($wgWrReportMode == 'deny') $errorMsg = utf8_encode('Rodelbahnberichte sind derzeit leider nicht erlaubt.');
534 elseif ($wgWrReportMode == 'loggedin' && !$wgUser->isLoggedIn()) $errorMsg = utf8_encode('Derzeit sind Rodelbahnberichte nur für angemeldete Benutzer erlaubt.');
535 elseif (!$page_id) $errorMsg = utf8_encode('Die angegebene Seite wurde nicht gefunden.');
536 elseif (in_array($page_title, $wgWrReportBlackListAll)) $errorMsg = utf8_encode('Bei der angegebenen Rodelbahn dürfen derzeit keine Rodelbahnberichte abgegeben werden.');
537 elseif (!$wgUser->isLoggedIn() && in_array($page_title, $wgWrReportBlackListStrangers)) $errorMsg = utf8_encode('Bei der angegebenen Rodelbahn dürfen derzeit nur angemeldete Benutzer Rodelbahnberichte abgebe.');
538 elseif (!$condition && !$description) $errorMsg = utf8_encode('Es sind sowohl die Beschreibung als auch die Bewertung leer/nicht vergeben.');
539 elseif (!$wgUser->isLoggedIn()) {
540 if (!$description) $errorMsg = utf8_encode('Bitte bei der Beschreibung eine kurze Begründung für die Bewertung abgeben.');
541 elseif (!(stripos($description, 'http') === FALSE)) $errorMsg = utf8_encode('Der Text "http" ist leider für nicht-angemeldete Benutzer nicht erlaubt, weil wir in der Vergangenheit Fälle hatten, bei denen externe Werbelinks automatisiert eingetragen wurden.');
544 $this->execute($par, 'preview', $errorMsg);
549 $dbr = wfGetDB(DB_MASTER);
553 'page_id' => $page_id,
554 'page_title' => $page_title,
555 'date_report' => $date_report,
556 // 'date_entry' => '', // use database default
557 // 'date_invalid' => '', // use database default
558 'condition' => $condition,
559 'description' => $description,
560 'author_name' => $author_name,
561 'author_ip' => $_SERVER['REMOTE_ADDR'],
562 'author_userid' => $author_userid,
563 'author_username' => $author_username
564 // 'delete_*' => // use database defaults (NULL)
569 $title->invalidateCache();
570 // Show success message
571 global $wrShowReportsSection;
572 $wgOut->addWikiText(utf8_encode('<div class="successbox">Der Bahnbericht für [[') . $page_title . '#' . $wrShowReportsSection . '|' . $page_title . utf8_encode("]] wurde erfolgreich gespeichert.</div>\n"));
573 // We could redirect to result with the following line but we don't want to.
574 // $wgOut->redirect($title->getFullURL() . '#Eintr.C3.A4ge');
576 if ($action == 'preview') {
577 $wgOut->addWikiText(utf8_encode("== Vorschau (noch nicht gespeichert) ==\n"));
578 $format = WRREPORT_COMPACT_PAGE;
579 $row = array_fill_keys(wrReportGetColumnNames(), NULL);
580 $row['page_title'] = $page_title;
581 $row['date_report'] = $date_report;
582 $row['condition'] = $condition;
583 $row['description'] = $description;
584 $row['author_name'] = $author_name;
585 $wgOut->addHTML(wrReportTableRender2(array($row), $format, FALSE));
586 $wgOut->addWikiText(utf8_encode("== Speichern oder Ändern ==\n"));
587 $wgOut->addHTML(wrReportFormRender(FALSE, $page_title, $date_report, $condition, $description, $author_name));
592 else die('Wrong action');