1<?php 2/** 3 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 4 * @author Esther Brunner <wikidesign@gmail.com> 5 */ 6 7use dokuwiki\Extension\Event; 8use dokuwiki\Subscriptions\SubscriberManager; 9use dokuwiki\Utf8\PhpString; 10 11/** 12 * Class action_plugin_discussion 13 * 14 * Data format of file metadir/<id>.comments: 15 * array = [ 16 * 'status' => int whether comments are 0=disabled/1=open/2=closed, 17 * 'number' => int number of visible comments, 18 * 'title' => string|null alternative title for discussion section 19 * 'comments' => [ 20 * '<cid>'=> [ 21 * 'cid' => string comment id - long random string 22 * 'raw' => string comment text, 23 * 'xhtml' => string rendered html, 24 * 'parent' => null|string null or empty string at highest level, otherwise comment id of parent 25 * 'replies' => string[] array with comment ids 26 * 'user' => [ 27 * 'id' => string, 28 * 'name' => string, 29 * 'mail' => string, 30 * 'address' => string, 31 * 'url' => string 32 * ], 33 * 'date' => [ 34 * 'created' => int timestamp, 35 * 'modified' => int (not defined if not modified) 36 * ], 37 * 'show' => bool, whether shown (still be moderated, or hidden by moderator or user self) 38 * ], 39 * ... 40 * ] 41 * 'subscribers' => [ 42 * '<mail>' => [ 43 * 'hash' => string unique token, 44 * 'active' => bool, true if confirmed 45 * 'confirmsent' => bool, true if confirmation mail is sent 46 * ], 47 * ... 48 * ] 49 */ 50class action_plugin_discussion extends DokuWiki_Action_Plugin 51{ 52 53 /** @var helper_plugin_avatar */ 54 protected $avatar = null; 55 /** @var null|string */ 56 protected $style = null; 57 /** @var null|bool */ 58 protected $useAvatar = null; 59 /** @var helper_plugin_discussion */ 60 protected $helper = null; 61 62 /** 63 * load helper 64 */ 65 public function __construct() 66 { 67 $this->helper = plugin_load('helper', 'discussion'); 68 } 69 70 /** 71 * Register the handlers 72 * 73 * @param Doku_Event_Handler $controller DokuWiki's event controller object. 74 */ 75 public function register(Doku_Event_Handler $controller) 76 { 77 $controller->register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, 'handleCommentActions'); 78 $controller->register_hook('TPL_ACT_RENDER', 'AFTER', $this, 'renderCommentsSection'); 79 $controller->register_hook('INDEXER_PAGE_ADD', 'AFTER', $this, 'addCommentsToIndex', ['id' => 'page', 'text' => 'body']); 80 $controller->register_hook('FULLTEXT_SNIPPET_CREATE', 'BEFORE', $this, 'addCommentsToIndex', ['id' => 'id', 'text' => 'text']); 81 $controller->register_hook('INDEXER_VERSION_GET', 'BEFORE', $this, 'addIndexVersion', []); 82 $controller->register_hook('FULLTEXT_PHRASE_MATCH', 'AFTER', $this, 'fulltextPhraseMatchInComments', []); 83 $controller->register_hook('PARSER_METADATA_RENDER', 'AFTER', $this, 'update_comment_status', []); 84 $controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'addToolbarToCommentfield', []); 85 $controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 'modifyToolbar', []); 86 $controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'ajaxPreviewComments', []); 87 $controller->register_hook('TPL_TOC_RENDER', 'BEFORE', $this, 'addDiscussionToTOC', []); 88 } 89 90 /** 91 * Preview Comments 92 * 93 * @param Doku_Event $event 94 * @author Michael Klier <chi@chimeric.de> 95 */ 96 public function ajaxPreviewComments(Doku_Event $event) 97 { 98 global $INPUT; 99 if ($event->data != 'discussion_preview') return; 100 101 $event->preventDefault(); 102 $event->stopPropagation(); 103 print p_locale_xhtml('preview'); 104 print '<div class="comment_preview">'; 105 if (!$INPUT->server->str('REMOTE_USER') && !$this->getConf('allowguests')) { 106 print p_locale_xhtml('denied'); 107 } else { 108 print $this->renderComment($INPUT->post->str('comment')); 109 } 110 print '</div>'; 111 } 112 113 /** 114 * Adds a TOC item if a discussion exists 115 * 116 * @param Doku_Event $event 117 * @author Michael Klier <chi@chimeric.de> 118 */ 119 public function addDiscussionToTOC(Doku_Event $event) 120 { 121 global $ACT; 122 if ($this->hasDiscussion($title) && $event->data && $ACT != 'admin') { 123 $tocitem = ['hid' => 'discussion__section', 124 'title' => $title ?: $this->getLang('discussion'), 125 'type' => 'ul', 126 'level' => 1]; 127 128 $event->data[] = $tocitem; 129 } 130 } 131 132 /** 133 * Modify Toolbar for use with discussion plugin 134 * 135 * @param Doku_Event $event 136 * @author Michael Klier <chi@chimeric.de> 137 */ 138 public function modifyToolbar(Doku_Event $event) 139 { 140 global $ACT; 141 if ($ACT != 'show') return; 142 143 if ($this->hasDiscussion($title) && $this->getConf('wikisyntaxok')) { 144 $toolbar = []; 145 foreach ($event->data as $btn) { 146 if ($btn['type'] == 'mediapopup') continue; 147 if ($btn['type'] == 'signature') continue; 148 if ($btn['type'] == 'linkwiz') continue; 149 if ($btn['type'] == 'NewTable') continue; //skip button for Edittable Plugin 150 //FIXME does nothing. Checks for '=' on toplevel, but today it are special buttons and a picker with subarray 151 if (isset($btn['open']) && preg_match("/=+?/", $btn['open'])) continue; 152 153 $toolbar[] = $btn; 154 } 155 $event->data = $toolbar; 156 } 157 } 158 159 /** 160 * Dirty workaround to add a toolbar to the discussion plugin 161 * 162 * @param Doku_Event $event 163 * @author Michael Klier <chi@chimeric.de> 164 */ 165 public function addToolbarToCommentfield(Doku_Event $event) 166 { 167 global $ACT; 168 global $ID; 169 if ($ACT != 'show') return; 170 171 if ($this->hasDiscussion($title) && $this->getConf('wikisyntaxok')) { 172 // FIXME ugly workaround, replace this once DW the toolbar code is more flexible 173 @require_once(DOKU_INC . 'inc/toolbar.php'); 174 ob_start(); 175 print 'NS = "' . getNS($ID) . '";'; // we have to define NS, otherwise we get get JS errors 176 toolbar_JSdefines('toolbar'); 177 $script = ob_get_clean(); 178 $event->data['script'][] = ['type' => 'text/javascript', 'charset' => "utf-8", '_data' => $script]; 179 } 180 } 181 182 /** 183 * Handles comment actions, dispatches data processing routines 184 * 185 * @param Doku_Event $event 186 */ 187 public function handleCommentActions(Doku_Event $event) 188 { 189 global $ID, $INFO, $lang, $INPUT; 190 191 // handle newthread ACTs 192 if ($event->data == 'newthread') { 193 // we can handle it -> prevent others 194 $event->data = $this->newThread(); 195 } 196 197 // enable captchas 198 if (in_array($INPUT->str('comment'), ['add', 'save'])) { 199 $this->captchaCheck(); 200 $this->recaptchaCheck(); 201 } 202 203 // if we are not in show mode or someone wants to unsubscribe, that was all for now 204 if ($event->data != 'show' 205 && $event->data != 'discussion_unsubscribe' 206 && $event->data != 'discussion_confirmsubscribe') { 207 return; 208 } 209 210 if ($event->data == 'discussion_unsubscribe' or $event->data == 'discussion_confirmsubscribe') { 211 if ($INPUT->has('hash')) { 212 $file = metaFN($ID, '.comments'); 213 $data = unserialize(io_readFile($file)); 214 $matchedMail = ''; 215 foreach ($data['subscribers'] as $mail => $info) { 216 // convert old style subscribers just in case 217 if (!is_array($info)) { 218 $hash = $data['subscribers'][$mail]; 219 $data['subscribers'][$mail]['hash'] = $hash; 220 $data['subscribers'][$mail]['active'] = true; 221 $data['subscribers'][$mail]['confirmsent'] = true; 222 } 223 224 if ($data['subscribers'][$mail]['hash'] == $INPUT->str('hash')) { 225 $matchedMail = $mail; 226 } 227 } 228 229 if ($matchedMail != '') { 230 if ($event->data == 'discussion_unsubscribe') { 231 unset($data['subscribers'][$matchedMail]); 232 msg(sprintf($lang['subscr_unsubscribe_success'], $matchedMail, $ID), 1); 233 } else { //$event->data == 'discussion_confirmsubscribe' 234 $data['subscribers'][$matchedMail]['active'] = true; 235 msg(sprintf($lang['subscr_subscribe_success'], $matchedMail, $ID), 1); 236 } 237 io_saveFile($file, serialize($data)); 238 $event->data = 'show'; 239 } 240 241 } 242 return; 243 } 244 245 // do the data processing for comments 246 $cid = $INPUT->str('cid'); 247 switch ($INPUT->str('comment')) { 248 case 'add': 249 if (empty($INPUT->str('text'))) return; // don't add empty comments 250 251 if ($INPUT->server->has('REMOTE_USER') && !$this->getConf('adminimport')) { 252 $comment['user']['id'] = $INPUT->server->str('REMOTE_USER'); 253 $comment['user']['name'] = $INFO['userinfo']['name']; 254 $comment['user']['mail'] = $INFO['userinfo']['mail']; 255 } elseif (($INPUT->server->has('REMOTE_USER') && $this->getConf('adminimport') && $this->helper->isDiscussionModerator()) 256 || !$INPUT->server->has('REMOTE_USER')) { 257 // don't add anonymous comments 258 if (empty($INPUT->str('name')) or empty($INPUT->str('mail'))) { 259 return; 260 } 261 262 if (!mail_isvalid($INPUT->str('mail'))) { 263 msg($lang['regbadmail'], -1); 264 return; 265 } else { 266 $comment['user']['id'] = ''; //prevent overlap with loggedin users, before: 'test<ipadress>' 267 $comment['user']['name'] = hsc($INPUT->str('name')); 268 $comment['user']['mail'] = hsc($INPUT->str('mail')); 269 } 270 } 271 $comment['user']['address'] = ($this->getConf('addressfield')) ? hsc($INPUT->str('address')) : ''; 272 $comment['user']['url'] = ($this->getConf('urlfield')) ? $this->checkURL($INPUT->str('url')) : ''; 273 $comment['subscribe'] = ($this->getConf('subscribe')) ? $INPUT->has('subscribe') : ''; 274 $comment['date'] = ['created' => $INPUT->str('date')]; 275 $comment['raw'] = cleanText($INPUT->str('text')); 276 $reply = $INPUT->str('reply'); 277 if ($this->getConf('moderate') && !$this->helper->isDiscussionModerator()) { 278 $comment['show'] = false; 279 } else { 280 $comment['show'] = true; 281 } 282 $this->add($comment, $reply); 283 break; 284 285 case 'save': 286 $raw = cleanText($INPUT->str('text')); 287 $this->save([$cid], $raw); 288 break; 289 290 case 'delete': 291 $this->save([$cid], ''); 292 break; 293 294 case 'toogle': 295 $this->save([$cid], '', 'toogle'); 296 break; 297 } 298 } 299 300 /** 301 * Main function; dispatches the visual comment actions 302 * 303 * @param Doku_Event $event 304 */ 305 public function renderCommentsSection(Doku_Event $event) 306 { 307 global $INPUT; 308 if ($event->data != 'show') return; // nothing to do for us 309 310 $cid = $INPUT->str('cid'); 311 312 if (!$cid) { 313 $cid = $INPUT->str('reply'); 314 } 315 316 switch ($INPUT->str('comment')) { 317 case 'edit': 318 $this->showDiscussionSection(null, $cid); 319 break; 320 default: //'reply' or no action specified 321 $this->showDiscussionSection($cid); 322 break; 323 } 324 } 325 326 /** 327 * Redirects browser to given comment anchor 328 * 329 * @param string $cid comment id 330 */ 331 protected function redirect($cid) 332 { 333 global $ID; 334 global $ACT; 335 336 if ($ACT !== 'show') return; 337 338 if ($this->getConf('moderate') && !$this->helper->isDiscussionModerator()) { 339 msg($this->getLang('moderation'), 1); 340 @session_start(); 341 global $MSG; 342 $_SESSION[DOKU_COOKIE]['msg'] = $MSG; 343 session_write_close(); 344 $url = wl($ID); 345 } else { 346 $url = wl($ID) . '#comment_' . $cid; 347 } 348 349 if (function_exists('send_redirect')) { 350 send_redirect($url); 351 } else { 352 header('Location: ' . $url); 353 } 354 exit(); 355 } 356 357 /** 358 * Checks config settings to enable/disable discussions 359 * 360 * @return bool true if enabled 361 */ 362 public function isDiscussionEnabled() 363 { 364 global $ID; 365 366 if ($this->getConf('excluded_ns') == '') { 367 $isNamespaceExcluded = false; 368 } else { 369 $ns = getNS($ID); // $INFO['namespace'] is not yet available, if used in update_comment_status() 370 $isNamespaceExcluded = preg_match($this->getConf('excluded_ns'), $ns); 371 } 372 373 if ($this->getConf('automatic')) { 374 if ($isNamespaceExcluded) { 375 return false; 376 } else { 377 return true; 378 } 379 } else { 380 if ($isNamespaceExcluded) { 381 return true; 382 } else { 383 return false; 384 } 385 } 386 } 387 388 /** 389 * Shows all comments of the current page, if no reply or edit requested, then comment form is shown on the end 390 * 391 * @param null|string $reply comment id on which the user requested a reply 392 * @param null|string $edit comment id which the user requested for editing 393 */ 394 protected function showDiscussionSection($reply = null, $edit = null) 395 { 396 global $ID, $INFO, $INPUT; 397 398 // get .comments meta file name 399 $file = metaFN($ID, '.comments'); 400 401 if (!$INFO['exists']) return; 402 if (!@file_exists($file) && !$this->isDiscussionEnabled()) return; 403 if (!$INPUT->server->has('REMOTE_USER') && !$this->getConf('showguests')) return; 404 405 // load data 406 $data = []; 407 if (@file_exists($file)) { 408 $data = unserialize(io_readFile($file, false)); 409 // comments are turned off 410 if (!$data['status']) { 411 return; 412 } 413 } elseif (!@file_exists($file) && $this->isDiscussionEnabled()) { 414 // set status to show the comment form 415 $data['status'] = 1; 416 $data['number'] = 0; 417 } 418 419 // show discussion wrapper only on certain circumstances 420 if (empty($data['comments']) || !is_array($data['comments'])) { 421 $cnt = 0; 422 $keys = []; 423 } else { 424 $cnt = count($data['comments']); 425 $keys = array_keys($data['comments']); 426 } 427 428 $show = false; 429 if ($cnt > 1 || ($cnt == 1 && $data['comments'][$keys[0]]['show'] == 1) 430 || $this->getConf('allowguests') || $INPUT->server->has('REMOTE_USER')) { 431 $show = true; 432 // section title 433 $title = (!empty($data['title']) ? hsc($data['title']) : $this->getLang('discussion')); 434 ptln('<div class="comment_wrapper" id="comment_wrapper">'); // the id value is used for visibility toggling the section 435 ptln('<h2><a name="discussion__section" id="discussion__section">', 2); 436 ptln($title, 4); 437 ptln('</a></h2>', 2); 438 ptln('<div class="level2 hfeed">', 2); 439 } 440 441 // now display the comments 442 if (isset($data['comments'])) { 443 if (!$this->getConf('usethreading')) { 444 $data['comments'] = $this->flattenThreads($data['comments']); 445 uasort($data['comments'], [$this, 'sortThreadsOnCreation']); 446 } 447 if ($this->getConf('newestfirst')) { 448 $data['comments'] = array_reverse($data['comments']); 449 } 450 foreach ($data['comments'] as $cid => $value) { 451 if ($cid == $edit) { // edit form 452 $this->showCommentForm($value['raw'], 'save', $edit); 453 } else { 454 $this->showCommentWithReplies($cid, $data, '', $reply); 455 } 456 } 457 } 458 459 // comment form shown on the end, if no comment form of $reply or $edit is requested before 460 if ($data['status'] == 1 && (!$reply || !$this->getConf('usethreading')) && !$edit) { 461 $this->showCommentForm('', 'add'); 462 } 463 464 if ($show) { 465 ptln('</div>', 2); // level2 hfeed 466 ptln('</div>'); // comment_wrapper 467 } 468 469 // check for toggle print configuration 470 if ($this->getConf('visibilityButton')) { 471 // print the hide/show discussion section button 472 $this->showDiscussionToggleButton(); 473 } 474 } 475 476 /** 477 * Remove the parent-child relation, such that the comment structure becomes flat 478 * 479 * @param array $comments array with all comments 480 * @param null|array $cids comment ids of replies, which should be flatten 481 * @return array returned array with flattened comment structure 482 */ 483 protected function flattenThreads($comments, $cids = null) 484 { 485 if (is_null($cids)) { 486 $cids = array_keys($comments); 487 } 488 489 foreach ($cids as $cid) { 490 if (!empty($comments[$cid]['replies'])) { 491 $rids = $comments[$cid]['replies']; 492 $comments = $this->flattenThreads($comments, $rids); 493 $comments[$cid]['replies'] = []; 494 } 495 $comments[$cid]['parent'] = ''; 496 } 497 return $comments; 498 } 499 500 /** 501 * Adds a new comment and then displays all comments 502 * 503 * @param array $comment with 504 * 'raw' => string comment text, 505 * 'user' => [ 506 * 'id' => string, 507 * 'name' => string, 508 * 'mail' => string 509 * ], 510 * 'date' => [ 511 * 'created' => int timestamp 512 * ] 513 * 'show' => bool 514 * 'subscribe' => bool 515 * @param string $parent comment id of parent 516 * @return bool 517 */ 518 protected function add($comment, $parent) 519 { 520 global $ID, $TEXT, $INPUT; 521 522 $originalTxt = $TEXT; // set $TEXT to comment text for wordblock check 523 $TEXT = $comment['raw']; 524 525 // spamcheck against the DokuWiki blacklist 526 if (checkwordblock()) { 527 msg($this->getLang('wordblock'), -1); 528 return false; 529 } 530 531 if (!$this->getConf('allowguests') 532 && $comment['user']['id'] != $INPUT->server->str('REMOTE_USER') 533 ) { 534 return false; // guest comments not allowed 535 } 536 537 $TEXT = $originalTxt; // restore global $TEXT 538 539 // get discussion meta file name 540 $file = metaFN($ID, '.comments'); 541 542 // create comments file if it doesn't exist yet 543 if (!@file_exists($file)) { 544 $data = ['status' => 1, 'number' => 0]; 545 io_saveFile($file, serialize($data)); 546 } else { 547 $data = unserialize(io_readFile($file, false)); 548 // comments off or closed 549 if ($data['status'] != 1) { 550 return false; 551 } 552 } 553 554 if ($comment['date']['created']) { 555 $date = strtotime($comment['date']['created']); 556 } else { 557 $date = time(); 558 } 559 560 if ($date == -1) { 561 $date = time(); 562 } 563 564 $cid = md5($comment['user']['id'] . $date); // create a unique id 565 566 if (!isset($data['comments'][$parent]) || !is_array($data['comments'][$parent])) { 567 $parent = null; // invalid parent comment 568 } 569 570 // render the comment 571 $xhtml = $this->renderComment($comment['raw']); 572 573 // fill in the new comment 574 $data['comments'][$cid] = [ 575 'user' => $comment['user'], 576 'date' => ['created' => $date], 577 'raw' => $comment['raw'], 578 'xhtml' => $xhtml, 579 'parent' => $parent, 580 'replies' => [], 581 'show' => $comment['show'] 582 ]; 583 584 if ($comment['subscribe']) { 585 $mail = $comment['user']['mail']; 586 if ($data['subscribers']) { 587 if (!$data['subscribers'][$mail]) { 588 $data['subscribers'][$mail]['hash'] = md5($mail . mt_rand()); 589 $data['subscribers'][$mail]['active'] = false; 590 $data['subscribers'][$mail]['confirmsent'] = false; 591 } else { 592 // convert old style subscribers and set them active 593 if (!is_array($data['subscribers'][$mail])) { 594 $hash = $data['subscribers'][$mail]; 595 $data['subscribers'][$mail]['hash'] = $hash; 596 $data['subscribers'][$mail]['active'] = true; 597 $data['subscribers'][$mail]['confirmsent'] = true; 598 } 599 } 600 } else { 601 $data['subscribers'][$mail]['hash'] = md5($mail . mt_rand()); 602 $data['subscribers'][$mail]['active'] = false; 603 $data['subscribers'][$mail]['confirmsent'] = false; 604 } 605 } 606 607 // update parent comment 608 if ($parent) { 609 $data['comments'][$parent]['replies'][] = $cid; 610 } 611 612 // update the number of comments 613 $data['number']++; 614 615 // notify subscribers of the page 616 $data['comments'][$cid]['cid'] = $cid; 617 $this->notify($data['comments'][$cid], $data['subscribers']); 618 619 // save the comment metadata file 620 io_saveFile($file, serialize($data)); 621 $this->addLogEntry($date, $ID, 'cc', '', $cid); 622 623 $this->redirect($cid); 624 return true; 625 } 626 627 /** 628 * Saves the comment with the given ID and then displays all comments 629 * 630 * @param array|string $cids array with comment ids to save, or a single string comment id 631 * @param string $raw if empty comment is deleted, otherwise edited text is stored (note: storing is per one cid!) 632 * @param string|null $act 'toogle', 'show', 'hide', null. If null, it depends on $raw 633 * @return bool succeed? 634 */ 635 public function save($cids, $raw, $act = null) 636 { 637 global $ID, $INPUT; 638 639 if (empty($cids)) return false; // do nothing if we get no comment id 640 641 if ($raw) { 642 global $TEXT; 643 644 $otxt = $TEXT; // set $TEXT to comment text for wordblock check 645 $TEXT = $raw; 646 647 // spamcheck against the DokuWiki blacklist 648 if (checkwordblock()) { 649 msg($this->getLang('wordblock'), -1); 650 return false; 651 } 652 653 $TEXT = $otxt; // restore global $TEXT 654 } 655 656 // get discussion meta file name 657 $file = metaFN($ID, '.comments'); 658 $data = unserialize(io_readFile($file, false)); 659 660 if (!is_array($cids)) { 661 $cids = [$cids]; 662 } 663 foreach ($cids as $cid) { 664 665 if (is_array($data['comments'][$cid]['user'])) { 666 $user = $data['comments'][$cid]['user']['id']; 667 $convert = false; 668 } else { 669 $user = $data['comments'][$cid]['user']; 670 $convert = true; 671 } 672 673 // someone else was trying to edit our comment -> abort 674 if ($user != $INPUT->server->str('REMOTE_USER') && !$this->helper->isDiscussionModerator()) { 675 return false; 676 } 677 678 $date = time(); 679 680 // need to convert to new format? 681 if ($convert) { 682 $data['comments'][$cid]['user'] = [ 683 'id' => $user, 684 'name' => $data['comments'][$cid]['name'], 685 'mail' => $data['comments'][$cid]['mail'], 686 'url' => $data['comments'][$cid]['url'], 687 'address' => $data['comments'][$cid]['address'], 688 ]; 689 $data['comments'][$cid]['date'] = [ 690 'created' => $data['comments'][$cid]['date'] 691 ]; 692 } 693 694 if ($act == 'toogle') { // toogle visibility 695 $now = $data['comments'][$cid]['show']; 696 $data['comments'][$cid]['show'] = !$now; 697 $data['number'] = $this->countVisibleComments($data); 698 699 $type = ($data['comments'][$cid]['show'] ? 'sc' : 'hc'); 700 701 } elseif ($act == 'show') { // show comment 702 $data['comments'][$cid]['show'] = true; 703 $data['number'] = $this->countVisibleComments($data); 704 705 $type = 'sc'; // show comment 706 707 } elseif ($act == 'hide') { // hide comment 708 $data['comments'][$cid]['show'] = false; 709 $data['number'] = $this->countVisibleComments($data); 710 711 $type = 'hc'; // hide comment 712 713 } elseif (!$raw) { // remove the comment 714 $data['comments'] = $this->removeComment($cid, $data['comments']); 715 $data['number'] = $this->countVisibleComments($data); 716 717 $type = 'dc'; // delete comment 718 719 } else { // save changed comment 720 $xhtml = $this->renderComment($raw); 721 722 // now change the comment's content 723 $data['comments'][$cid]['date']['modified'] = $date; 724 $data['comments'][$cid]['raw'] = $raw; 725 $data['comments'][$cid]['xhtml'] = $xhtml; 726 727 $type = 'ec'; // edit comment 728 } 729 } 730 731 // save the comment metadata file 732 io_saveFile($file, serialize($data)); 733 $this->addLogEntry($date, $ID, $type, '', $cid); 734 735 $this->redirect($cid); 736 return true; 737 } 738 739 /** 740 * Recursive function to remove a comment from the data array 741 * 742 * @param string $cid comment id to be removed 743 * @param array $comments array with all comments 744 * @return array returns modified array with all remaining comments 745 */ 746 protected function removeComment($cid, $comments) 747 { 748 if (is_array($comments[$cid]['replies'])) { 749 foreach ($comments[$cid]['replies'] as $rid) { 750 $comments = $this->removeComment($rid, $comments); 751 } 752 } 753 unset($comments[$cid]); 754 return $comments; 755 } 756 757 /** 758 * Prints an individual comment 759 * 760 * @param string $cid comment id 761 * @param array $data array with all comments by reference 762 * @param string $parent comment id of parent 763 * @param string $reply comment id on which the user requested a reply 764 * @param bool $isVisible is marked as visible 765 */ 766 protected function showCommentWithReplies($cid, &$data, $parent = '', $reply = '', $isVisible = true) 767 { 768 // comment was removed 769 if (!isset($data['comments'][$cid])) { 770 return; 771 } 772 $comment = $data['comments'][$cid]; 773 774 // corrupt datatype 775 if (!is_array($comment)) { 776 return; 777 } 778 779 // handle only replies to given parent comment 780 if ($comment['parent'] != $parent) { 781 return; 782 } 783 784 // comment hidden, only shown for moderators 785 if (!$comment['show'] && !$this->helper->isDiscussionModerator()) { 786 return; 787 } 788 789 // print the actual comment 790 $this->showComment($cid, $data, $reply, $isVisible); 791 // replies to this comment entry? 792 $this->showReplies($cid, $data, $reply, $isVisible); 793 // reply form 794 $this->showReplyForm($cid, $reply); 795 } 796 797 /** 798 * Print the comment 799 * 800 * @param string $cid comment id 801 * @param array $data array with all comments 802 * @param string $reply comment id on which the user requested a reply 803 * @param bool $isVisible (grand)parent is marked as visible 804 */ 805 protected function showComment($cid, $data, $reply, $isVisible) 806 { 807 global $conf, $lang, $HIGH, $INPUT; 808 $comment = $data['comments'][$cid]; 809 810 //only moderators can arrive here if hidden 811 $hiddenclass = ''; 812 if (!$comment['show'] || !$isVisible) { 813 $hiddenclass = ' comment_hidden'; 814 } 815 // comment head with date and user data 816 ptln('<div class="hentry' . $hiddenclass . '">', 4); 817 ptln('<div class="comment_head">', 6); 818 ptln('<a name="comment_' . $cid . '" id="comment_' . $cid . '"></a>', 8); 819 $head = '<span class="vcard author">'; 820 821 // prepare variables 822 if (is_array($comment['user'])) { // new format 823 $user = $comment['user']['id']; 824 $name = $comment['user']['name']; 825 $mail = $comment['user']['mail']; 826 $url = $comment['user']['url']; 827 $address = $comment['user']['address']; 828 } else { // old format 829 $user = $comment['user']; 830 $name = $comment['name']; 831 $mail = $comment['mail']; 832 $url = $comment['url']; 833 $address = $comment['address']; 834 } 835 if (is_array($comment['date'])) { // new format 836 $created = $comment['date']['created']; 837 $modified = $comment['date']['modified'] ?? null; 838 } else { // old format 839 $created = $comment['date']; 840 $modified = $comment['edited']; 841 } 842 843 // show username or real name? 844 if (!$this->getConf('userealname') && $user) { 845 //not logged-in users have currently username set to '', but before 'test<Ipaddress>' 846 if(substr($user, 0,4) === 'test' 847 && (strpos($user, ':', 4) !== false || strpos($user, '.', 4) !== false)) { 848 $showname = $name; 849 } else { 850 $showname = $user; 851 } 852 } else { 853 $showname = $name; 854 } 855 856 // show avatar image? 857 if ($this->useAvatar()) { 858 $user_data['name'] = $name; 859 $user_data['user'] = $user; 860 $user_data['mail'] = $mail; 861 $avatar = $this->avatar->getXHTML($user_data, $name, 'left'); 862 if ($avatar) { 863 $head .= $avatar; 864 } 865 } 866 867 if ($this->getConf('linkemail') && $mail) { 868 $head .= $this->email($mail, $showname, 'email fn'); 869 } elseif ($url) { 870 $head .= $this->external_link($this->checkURL($url), $showname, 'urlextern url fn'); 871 } else { 872 $head .= '<span class="fn">' . $showname . '</span>'; 873 } 874 875 if ($address) { 876 $head .= ', <span class="adr">' . $address . '</span>'; 877 } 878 $head .= '</span>, ' . 879 '<abbr class="published" title="' . strftime('%Y-%m-%dT%H:%M:%SZ', $created) . '">' . 880 dformat($created, $conf['dformat']) . '</abbr>'; 881 if ($modified) { 882 $head .= ', <abbr class="updated" title="' . 883 strftime('%Y-%m-%dT%H:%M:%SZ', $modified) . '">' . dformat($modified, $conf['dformat']) . 884 '</abbr>'; 885 } 886 ptln($head, 8); 887 ptln('</div>', 6); // class="comment_head" 888 889 // main comment content 890 ptln('<div class="comment_body entry-content"' . 891 ($this->useAvatar() ? $this->getWidthStyle() : '') . '>', 6); 892 echo ($HIGH ? html_hilight($comment['xhtml'], $HIGH) : $comment['xhtml']) . DOKU_LF; 893 ptln('</div>', 6); // class="comment_body" 894 895 if ($isVisible) { 896 ptln('<div class="comment_buttons">', 6); 897 898 // show reply button? 899 if ($data['status'] == 1 && !$reply && $comment['show'] 900 && ($this->getConf('allowguests') || $INPUT->server->has('REMOTE_USER')) 901 && $this->getConf('usethreading') 902 ) { 903 $this->showButton($cid, $this->getLang('btn_reply'), 'reply', true); 904 } 905 906 // show edit, show/hide and delete button? 907 if (($user == $INPUT->server->str('REMOTE_USER') && $user != '') || $this->helper->isDiscussionModerator()) { 908 $this->showButton($cid, $lang['btn_secedit'], 'edit', true); 909 $label = ($comment['show'] ? $this->getLang('btn_hide') : $this->getLang('btn_show')); 910 $this->showButton($cid, $label, 'toogle'); 911 $this->showButton($cid, $lang['btn_delete'], 'delete'); 912 } 913 ptln('</div>', 6); // class="comment_buttons" 914 } 915 ptln('</div>', 4); // class="hentry" 916 } 917 918 /** 919 * If requested by user, show comment form to write a reply 920 * 921 * @param string $cid current comment id 922 * @param string $reply comment id on which the user requested a reply 923 */ 924 protected function showReplyForm($cid, $reply) 925 { 926 if ($this->getConf('usethreading') && $reply == $cid) { 927 ptln('<div class="comment_replies">', 4); 928 $this->showCommentForm('', 'add', $cid); 929 ptln('</div>', 4); // class="comment_replies" 930 } 931 } 932 933 /** 934 * Show the replies to the given comment 935 * 936 * @param string $cid comment id 937 * @param array $data array with all comments by reference 938 * @param string $reply comment id on which the user requested a reply 939 * @param bool $isVisible is marked as visible by reference 940 */ 941 protected function showReplies($cid, &$data, $reply, &$isVisible) 942 { 943 $comment = $data['comments'][$cid]; 944 if (!count($comment['replies'])) { 945 return; 946 } 947 ptln('<div class="comment_replies"' . $this->getWidthStyle() . '>', 4); 948 $isVisible = ($comment['show'] && $isVisible); 949 foreach ($comment['replies'] as $rid) { 950 $this->showCommentWithReplies($rid, $data, $cid, $reply, $isVisible); 951 } 952 ptln('</div>', 4); 953 } 954 955 /** 956 * Is an avatar displayed? 957 * 958 * @return bool 959 */ 960 protected function useAvatar() 961 { 962 if (is_null($this->useAvatar)) { 963 $this->useAvatar = $this->getConf('useavatar') 964 && ($this->avatar = $this->loadHelper('avatar', false)); 965 } 966 return $this->useAvatar; 967 } 968 969 /** 970 * Calculate width of indent 971 * 972 * @return string 973 */ 974 protected function getWidthStyle() 975 { 976 if (is_null($this->style)) { 977 if ($this->useAvatar()) { 978 $this->style = ' style="margin-left: ' . ($this->avatar->getConf('size') + 14) . 'px;"'; 979 } else { 980 $this->style = ' style="margin-left: 20px;"'; 981 } 982 } 983 return $this->style; 984 } 985 986 /** 987 * Show the button which toggles between show/hide of the entire discussion section 988 */ 989 protected function showDiscussionToggleButton() 990 { 991 ptln('<div id="toggle_button" class="toggle_button" style="text-align: right;">'); 992 ptln('<input type="submit" id="discussion__btn_toggle_visibility" title="Toggle Visibiliy" class="button"' 993 . 'value="' . $this->getLang('toggle_display') . '">'); 994 ptln('</div>'); 995 } 996 997 /** 998 * Outputs the comment form 999 * 1000 * @param string $raw the existing comment text in case of edit 1001 * @param string $act action 'add' or 'save' 1002 * @param string|null $cid comment id to be responded to or null 1003 */ 1004 protected function showCommentForm($raw, $act, $cid = null) 1005 { 1006 global $lang, $conf, $ID, $INPUT; 1007 1008 // not for unregistered users when guest comments aren't allowed 1009 if (!$INPUT->server->has('REMOTE_USER') && !$this->getConf('allowguests')) { 1010 ?> 1011 <div class="comment_form"> 1012 <?php echo $this->getLang('noguests'); ?> 1013 </div> 1014 <?php 1015 return; 1016 } 1017 1018 // fill $raw with $INPUT->str('text') if it's empty (for failed CAPTCHA check) 1019 if (!$raw && $INPUT->str('comment') == 'show') { 1020 $raw = $INPUT->str('text'); 1021 } 1022 ?> 1023 1024 <div class="comment_form"> 1025 <form id="discussion__comment_form" method="post" action="<?php echo script() ?>" 1026 accept-charset="<?php echo $lang['encoding'] ?>"> 1027 <div class="no"> 1028 <input type="hidden" name="id" value="<?php echo $ID ?>"/> 1029 <input type="hidden" name="do" value="show"/> 1030 <input type="hidden" name="comment" value="<?php echo $act ?>"/> 1031 <?php 1032 // for adding a comment 1033 if ($act == 'add') { 1034 ?> 1035 <input type="hidden" name="reply" value="<?php echo $cid ?>"/> 1036 <?php 1037 // for guest/adminimport: show name, e-mail and subscribe to comments fields 1038 if (!$INPUT->server->has('REMOTE_USER') or ($this->getConf('adminimport') && $this->helper->isDiscussionModerator())) { 1039 ?> 1040 <input type="hidden" name="user" value=""/> 1041 <div class="comment_name"> 1042 <label class="block" for="discussion__comment_name"> 1043 <span><?php echo $lang['fullname'] ?>:</span> 1044 <input type="text" 1045 class="edit<?php if ($INPUT->str('comment') == 'add' && empty($INPUT->str('name'))) echo ' error' ?>" 1046 name="name" id="discussion__comment_name" size="50" tabindex="1" 1047 value="<?php echo hsc($INPUT->str('name')) ?>"/> 1048 </label> 1049 </div> 1050 <div class="comment_mail"> 1051 <label class="block" for="discussion__comment_mail"> 1052 <span><?php echo $lang['email'] ?>:</span> 1053 <input type="text" 1054 class="edit<?php if ($INPUT->str('comment') == 'add' && empty($INPUT->str('mail'))) echo ' error' ?>" 1055 name="mail" id="discussion__comment_mail" size="50" tabindex="2" 1056 value="<?php echo hsc($INPUT->str('mail')) ?>"/> 1057 </label> 1058 </div> 1059 <?php 1060 } 1061 1062 // allow entering an URL 1063 if ($this->getConf('urlfield')) { 1064 ?> 1065 <div class="comment_url"> 1066 <label class="block" for="discussion__comment_url"> 1067 <span><?php echo $this->getLang('url') ?>:</span> 1068 <input type="text" class="edit" name="url" id="discussion__comment_url" size="50" 1069 tabindex="3" value="<?php echo hsc($INPUT->str('url')) ?>"/> 1070 </label> 1071 </div> 1072 <?php 1073 } 1074 1075 // allow entering an address 1076 if ($this->getConf('addressfield')) { 1077 ?> 1078 <div class="comment_address"> 1079 <label class="block" for="discussion__comment_address"> 1080 <span><?php echo $this->getLang('address') ?>:</span> 1081 <input type="text" class="edit" name="address" id="discussion__comment_address" 1082 size="50" tabindex="4" value="<?php echo hsc($INPUT->str('address')) ?>"/> 1083 </label> 1084 </div> 1085 <?php 1086 } 1087 1088 // allow setting the comment date 1089 if ($this->getConf('adminimport') && ($this->helper->isDiscussionModerator())) { 1090 ?> 1091 <div class="comment_date"> 1092 <label class="block" for="discussion__comment_date"> 1093 <span><?php echo $this->getLang('date') ?>:</span> 1094 <input type="text" class="edit" name="date" id="discussion__comment_date" 1095 size="50"/> 1096 </label> 1097 </div> 1098 <?php 1099 } 1100 1101 // for saving a comment 1102 } else { 1103 ?> 1104 <input type="hidden" name="cid" value="<?php echo $cid ?>"/> 1105 <?php 1106 } 1107 ?> 1108 <div class="comment_text"> 1109 <?php echo $this->getLang('entercomment'); 1110 echo($this->getConf('wikisyntaxok') ? "" : ":"); 1111 if ($this->getConf('wikisyntaxok')) echo '. ' . $this->getLang('wikisyntax') . ':'; ?> 1112 1113 <!-- Fix for disable the toolbar when wikisyntaxok is set to false. See discussion's script.jss --> 1114 <?php if ($this->getConf('wikisyntaxok')) { ?> 1115 <div id="discussion__comment_toolbar" class="toolbar group"> 1116 <?php } else { ?> 1117 <div id="discussion__comment_toolbar_disabled"> 1118 <?php } ?> 1119 </div> 1120 <textarea 1121 class="edit<?php if ($INPUT->str('comment') == 'add' && empty($INPUT->str('text'))) echo ' error' ?>" 1122 name="text" cols="80" rows="10" id="discussion__comment_text" tabindex="5"><?php 1123 if ($raw) { 1124 echo formText($raw); 1125 } else { 1126 echo hsc($INPUT->str('text')); 1127 } 1128 ?></textarea> 1129 </div> 1130 1131 <?php 1132 /** @var helper_plugin_captcha $captcha */ 1133 $captcha = $this->loadHelper('captcha', false); 1134 if ($captcha && $captcha->isEnabled()) { 1135 echo $captcha->getHTML(); 1136 } 1137 1138 /** @var helper_plugin_recaptcha $recaptcha */ 1139 $recaptcha = $this->loadHelper('recaptcha', false); 1140 if ($recaptcha && $recaptcha->isEnabled()) { 1141 echo $recaptcha->getHTML(); 1142 } 1143 ?> 1144 1145 <input class="button comment_submit" id="discussion__btn_submit" type="submit" name="submit" 1146 accesskey="s" value="<?php echo $lang['btn_save'] ?>" 1147 title="<?php echo $lang['btn_save'] ?> [S]" tabindex="7"/> 1148 <input class="button comment_preview_button" id="discussion__btn_preview" type="button" 1149 name="preview" accesskey="p" value="<?php echo $lang['btn_preview'] ?>" 1150 title="<?php echo $lang['btn_preview'] ?> [P]"/> 1151 1152 <?php if ((!$INPUT->server->has('REMOTE_USER') 1153 || $INPUT->server->has('REMOTE_USER') && !$conf['subscribers']) 1154 && $this->getConf('subscribe')) { ?> 1155 <div class="comment_subscribe"> 1156 <input type="checkbox" id="discussion__comment_subscribe" name="subscribe" 1157 tabindex="6"/> 1158 <label class="block" for="discussion__comment_subscribe"> 1159 <span><?php echo $this->getLang('subscribe') ?></span> 1160 </label> 1161 </div> 1162 <?php } ?> 1163 1164 <div class="clearer"></div> 1165 <div id="discussion__comment_preview"> </div> 1166 </div> 1167 </form> 1168 </div> 1169 <?php 1170 } 1171 1172 /** 1173 * Action button below a comment 1174 * 1175 * @param string $cid comment id 1176 * @param string $label translated label 1177 * @param string $act action 1178 * @param bool $jump whether to scroll to the commentform 1179 */ 1180 protected function showButton($cid, $label, $act, $jump = false) 1181 { 1182 global $ID; 1183 1184 $anchor = ($jump ? '#discussion__comment_form' : ''); 1185 1186 $submitClass = ''; 1187 if($act === 'delete') { 1188 $submitClass = ' dcs_confirmdelete'; 1189 } 1190 ?> 1191 <form class="button discussion__<?php echo $act ?>" method="get" action="<?php echo script() . $anchor ?>"> 1192 <div class="no"> 1193 <input type="hidden" name="id" value="<?php echo $ID ?>"/> 1194 <input type="hidden" name="do" value="show"/> 1195 <input type="hidden" name="comment" value="<?php echo $act ?>"/> 1196 <input type="hidden" name="cid" value="<?php echo $cid ?>"/> 1197 <input type="submit" value="<?php echo $label ?>" class="button<?php echo $submitClass ?>" title="<?php echo $label ?>"/> 1198 </div> 1199 </form> 1200 <?php 1201 } 1202 1203 /** 1204 * Adds an entry to the comments changelog 1205 * 1206 * @param int $date 1207 * @param string $id page id 1208 * @param string $type create/edit/delete/show/hide comment 'cc', 'ec', 'dc', 'sc', 'hc' 1209 * @param string $summary 1210 * @param string $extra 1211 * @author Ben Coburn <btcoburn@silicodon.net> 1212 * 1213 * @author Esther Brunner <wikidesign@gmail.com> 1214 */ 1215 protected function addLogEntry($date, $id, $type = 'cc', $summary = '', $extra = '') 1216 { 1217 global $conf, $INPUT; 1218 1219 $changelog = $conf['metadir'] . '/_comments.changes'; 1220 1221 //use current time if none supplied 1222 if (!$date) { 1223 $date = time(); 1224 } 1225 $remote = $INPUT->server->str('REMOTE_ADDR'); 1226 $user = $INPUT->server->str('REMOTE_USER'); 1227 1228 $strip = ["\t", "\n"]; 1229 $logline = [ 1230 'date' => $date, 1231 'ip' => $remote, 1232 'type' => str_replace($strip, '', $type), 1233 'id' => $id, 1234 'user' => $user, 1235 'sum' => str_replace($strip, '', $summary), 1236 'extra' => str_replace($strip, '', $extra) 1237 ]; 1238 1239 // add changelog line 1240 $logline = implode("\t", $logline) . "\n"; 1241 io_saveFile($changelog, $logline, true); //global changelog cache 1242 $this->trimRecentCommentsLog($changelog); 1243 1244 // tell the indexer to re-index the page 1245 @unlink(metaFN($id, '.indexed')); 1246 } 1247 1248 /** 1249 * Trims the recent comments cache to the last $conf['changes_days'] recent 1250 * changes or $conf['recent'] items, which ever is larger. 1251 * The trimming is only done once a day. 1252 * 1253 * @param string $changelog file path 1254 * @return bool 1255 * @author Ben Coburn <btcoburn@silicodon.net> 1256 * 1257 */ 1258 protected function trimRecentCommentsLog($changelog) 1259 { 1260 global $conf; 1261 1262 if (@file_exists($changelog) 1263 && (filectime($changelog) + 86400) < time() 1264 && !@file_exists($changelog . '_tmp') 1265 ) { 1266 1267 io_lock($changelog); 1268 $lines = file($changelog); 1269 if (count($lines) < $conf['recent']) { 1270 // nothing to trim 1271 io_unlock($changelog); 1272 return true; 1273 } 1274 1275 // presave tmp as 2nd lock 1276 io_saveFile($changelog . '_tmp', ''); 1277 $trim_time = time() - $conf['recent_days'] * 86400; 1278 $out_lines = []; 1279 1280 $num = count($lines); 1281 for ($i = 0; $i < $num; $i++) { 1282 $log = parseChangelogLine($lines[$i]); 1283 if ($log === false) continue; // discard junk 1284 if ($log['date'] < $trim_time) { 1285 $old_lines[$log['date'] . ".$i"] = $lines[$i]; // keep old lines for now (append .$i to prevent key collisions) 1286 } else { 1287 $out_lines[$log['date'] . ".$i"] = $lines[$i]; // definitely keep these lines 1288 } 1289 } 1290 1291 // sort the final result, it shouldn't be necessary, 1292 // however the extra robustness in making the changelog cache self-correcting is worth it 1293 ksort($out_lines); 1294 $extra = $conf['recent'] - count($out_lines); // do we need extra lines do bring us up to minimum 1295 if ($extra > 0) { 1296 ksort($old_lines); 1297 $out_lines = array_merge(array_slice($old_lines, -$extra), $out_lines); 1298 } 1299 1300 // save trimmed changelog 1301 io_saveFile($changelog . '_tmp', implode('', $out_lines)); 1302 @unlink($changelog); 1303 if (!rename($changelog . '_tmp', $changelog)) { 1304 // rename failed so try another way... 1305 io_unlock($changelog); 1306 io_saveFile($changelog, implode('', $out_lines)); 1307 @unlink($changelog . '_tmp'); 1308 } else { 1309 io_unlock($changelog); 1310 } 1311 return true; 1312 } 1313 return true; 1314 } 1315 1316 /** 1317 * Sends a notify mail on new comment 1318 * 1319 * @param array $comment data array of the new comment 1320 * @param array $subscribers data of the subscribers by reference 1321 * 1322 * @author Andreas Gohr <andi@splitbrain.org> 1323 * @author Esther Brunner <wikidesign@gmail.com> 1324 */ 1325 protected function notify($comment, &$subscribers) 1326 { 1327 global $conf, $ID, $INPUT, $auth; 1328 1329 $notify_text = io_readfile($this->localfn('subscribermail')); 1330 $confirm_text = io_readfile($this->localfn('confirmsubscribe')); 1331 $subject_notify = '[' . $conf['title'] . '] ' . $this->getLang('mail_newcomment'); 1332 $subject_subscribe = '[' . $conf['title'] . '] ' . $this->getLang('subscribe'); 1333 1334 $mailer = new Mailer(); 1335 if (!$INPUT->server->has('REMOTE_USER')) { 1336 $mailer->from($conf['mailfromnobody']); 1337 } 1338 1339 $replace = [ 1340 'PAGE' => $ID, 1341 'TITLE' => $conf['title'], 1342 'DATE' => dformat($comment['date']['created'], $conf['dformat']), 1343 'NAME' => $comment['user']['name'], 1344 'TEXT' => $comment['raw'], 1345 'COMMENTURL' => wl($ID, '', true) . '#comment_' . $comment['cid'], 1346 'UNSUBSCRIBE' => wl($ID, 'do=subscribe', true, '&'), 1347 'DOKUWIKIURL' => DOKU_URL 1348 ]; 1349 1350 $confirm_replace = [ 1351 'PAGE' => $ID, 1352 'TITLE' => $conf['title'], 1353 'DOKUWIKIURL' => DOKU_URL 1354 ]; 1355 1356 1357 $mailer->subject($subject_notify); 1358 $mailer->setBody($notify_text, $replace); 1359 1360 // send mail to notify address 1361 if ($conf['notify']) { 1362 $mailer->bcc($conf['notify']); 1363 $mailer->send(); 1364 } 1365 1366 // send email to moderators 1367 if ($this->getConf('moderatorsnotify')) { 1368 $moderatorgrpsString = trim($this->getConf('moderatorgroups')); 1369 if (!empty($moderatorgrpsString)) { 1370 // create a clean mods list 1371 $moderatorgroups = explode(',', $moderatorgrpsString); 1372 $moderatorgroups = array_map('trim', $moderatorgroups); 1373 $moderatorgroups = array_unique($moderatorgroups); 1374 $moderatorgroups = array_filter($moderatorgroups); 1375 // search for moderators users 1376 foreach ($moderatorgroups as $moderatorgroup) { 1377 if (!$auth->isCaseSensitive()) { 1378 $moderatorgroup = PhpString::strtolower($moderatorgroup); 1379 } 1380 // create a clean mailing list 1381 $bccs = []; 1382 if ($moderatorgroup[0] == '@') { 1383 foreach ($auth->retrieveUsers(0, 0, ['grps' => $auth->cleanGroup(substr($moderatorgroup, 1))]) as $user) { 1384 if (!empty($user['mail'])) { 1385 $bccs[] = $user['mail']; 1386 } 1387 } 1388 } else { 1389 //it is an user 1390 $userdata = $auth->getUserData($auth->cleanUser($moderatorgroup)); 1391 if (!empty($userdata['mail'])) { 1392 $bccs[] = $userdata['mail']; 1393 } 1394 } 1395 $bccs = array_unique($bccs); 1396 // notify the users 1397 $mailer->bcc(implode(',', $bccs)); 1398 $mailer->send(); 1399 } 1400 } 1401 } 1402 1403 // notify page subscribers 1404 if (actionOK('subscribe')) { 1405 $data = ['id' => $ID, 'addresslist' => '', 'self' => false]; 1406 //FIXME default callback, needed to mentioned it again? 1407 Event::createAndTrigger( 1408 'COMMON_NOTIFY_ADDRESSLIST', $data, 1409 [new SubscriberManager(), 'notifyAddresses'] 1410 ); 1411 1412 $to = $data['addresslist']; 1413 if (!empty($to)) { 1414 $mailer->bcc($to); 1415 $mailer->send(); 1416 } 1417 } 1418 1419 // notify comment subscribers 1420 if (!empty($subscribers)) { 1421 1422 foreach ($subscribers as $mail => $data) { 1423 $mailer->bcc($mail); 1424 if ($data['active']) { 1425 $replace['UNSUBSCRIBE'] = wl($ID, 'do=discussion_unsubscribe&hash=' . $data['hash'], true, '&'); 1426 1427 $mailer->subject($subject_notify); 1428 $mailer->setBody($notify_text, $replace); 1429 $mailer->send(); 1430 } elseif (!$data['confirmsent']) { 1431 $confirm_replace['SUBSCRIBE'] = wl($ID, 'do=discussion_confirmsubscribe&hash=' . $data['hash'], true, '&'); 1432 1433 $mailer->subject($subject_subscribe); 1434 $mailer->setBody($confirm_text, $confirm_replace); 1435 $mailer->send(); 1436 $subscribers[$mail]['confirmsent'] = true; 1437 } 1438 } 1439 } 1440 } 1441 1442 /** 1443 * Counts the number of visible comments 1444 * 1445 * @param array $data array with all comments 1446 * @return int 1447 */ 1448 protected function countVisibleComments($data) 1449 { 1450 $number = 0; 1451 foreach ($data['comments'] as $comment) { 1452 if ($comment['parent']) continue; 1453 if (!$comment['show']) continue; 1454 1455 $number++; 1456 $rids = $comment['replies']; 1457 if (count($rids)) { 1458 $number = $number + $this->countVisibleReplies($data, $rids); 1459 } 1460 } 1461 return $number; 1462 } 1463 1464 /** 1465 * Count visible replies on the comments 1466 * 1467 * @param array $data 1468 * @param array $rids 1469 * @return int counted replies 1470 */ 1471 protected function countVisibleReplies(&$data, $rids) 1472 { 1473 $number = 0; 1474 foreach ($rids as $rid) { 1475 if (!isset($data['comments'][$rid])) continue; // reply was removed 1476 if (!$data['comments'][$rid]['show']) continue; 1477 1478 $number++; 1479 $rids = $data['comments'][$rid]['replies']; 1480 if (count($rids)) { 1481 $number = $number + $this->countVisibleReplies($data, $rids); 1482 } 1483 } 1484 return $number; 1485 } 1486 1487 /** 1488 * Renders the raw comment (wiki)text to html 1489 * 1490 * @param string $raw comment text 1491 * @return null|string 1492 */ 1493 protected function renderComment($raw) 1494 { 1495 if ($this->getConf('wikisyntaxok')) { 1496 // Note the warning for render_text: 1497 // "very ineffecient for small pieces of data - try not to use" 1498 // in dokuwiki/inc/plugin.php 1499 $xhtml = $this->render_text($raw); 1500 } else { // wiki syntax not allowed -> just encode special chars 1501 $xhtml = hsc(trim($raw)); 1502 $xhtml = str_replace("\n", '<br />', $xhtml); 1503 } 1504 return $xhtml; 1505 } 1506 1507 /** 1508 * Finds out whether there is a discussion section for the current page 1509 * 1510 * @param string $title set to title from metadata or empty string 1511 * @return bool discussion section is shown? 1512 */ 1513 protected function hasDiscussion(&$title) 1514 { 1515 global $ID; 1516 1517 $file = metaFN($ID, '.comments'); 1518 1519 if (!@file_exists($file)) { 1520 if ($this->isDiscussionEnabled()) { 1521 return true; 1522 } else { 1523 return false; 1524 } 1525 } 1526 1527 $data = unserialize(io_readFile($file, false)); 1528 1529 $title = $data['title'] ?? ''; 1530 1531 $num = $data['number']; 1532 if (!$data['status'] || ($data['status'] == 2 && $num == 0)) { 1533 //disabled, or closed and no comments 1534 return false; 1535 } else { 1536 return true; 1537 } 1538 } 1539 1540 /** 1541 * Creates a new thread page 1542 * 1543 * @return string 1544 */ 1545 protected function newThread() 1546 { 1547 global $ID, $INFO, $INPUT; 1548 1549 $ns = cleanID($INPUT->str('ns')); 1550 $title = str_replace(':', '', $INPUT->str('title')); 1551 $back = $ID; 1552 $ID = ($ns ? $ns . ':' : '') . cleanID($title); 1553 $INFO = pageinfo(); 1554 1555 // check if we are allowed to create this file 1556 if ($INFO['perm'] >= AUTH_CREATE) { 1557 1558 //check if locked by anyone - if not lock for my self 1559 if ($INFO['locked']) { 1560 return 'locked'; 1561 } else { 1562 lock($ID); 1563 } 1564 1565 // prepare the new thread file with default stuff 1566 if (!@file_exists($INFO['filepath'])) { 1567 global $TEXT; 1568 1569 $TEXT = pageTemplate(($ns ? $ns . ':' : '') . $title); 1570 if (!$TEXT) { 1571 $data = ['id' => $ID, 'ns' => $ns, 'title' => $title, 'back' => $back]; 1572 $TEXT = $this->pageTemplate($data); 1573 } 1574 return 'preview'; 1575 } else { 1576 return 'edit'; 1577 } 1578 } else { 1579 return 'show'; 1580 } 1581 } 1582 1583 /** 1584 * Adapted version of pageTemplate() function 1585 * 1586 * @param array $data 1587 * @return string 1588 */ 1589 protected function pageTemplate($data) 1590 { 1591 global $conf, $INFO, $INPUT; 1592 1593 $id = $data['id']; 1594 $user = $INPUT->server->str('REMOTE_USER'); 1595 $tpl = io_readFile(DOKU_PLUGIN . 'discussion/_template.txt'); 1596 1597 // standard replacements 1598 $replace = [ 1599 '@NS@' => $data['ns'], 1600 '@PAGE@' => strtr(noNS($id), '_', ' '), 1601 '@USER@' => $user, 1602 '@NAME@' => $INFO['userinfo']['name'], 1603 '@MAIL@' => $INFO['userinfo']['mail'], 1604 '@DATE@' => dformat(time(), $conf['dformat']), 1605 ]; 1606 1607 // additional replacements 1608 $replace['@BACK@'] = $data['back']; 1609 $replace['@TITLE@'] = $data['title']; 1610 1611 // avatar if useavatar and avatar plugin available 1612 if ($this->getConf('useavatar') && !plugin_isdisabled('avatar')) { 1613 $replace['@AVATAR@'] = '{{avatar>' . $user . ' }} '; 1614 } else { 1615 $replace['@AVATAR@'] = ''; 1616 } 1617 1618 // tag if tag plugin is available 1619 if (!plugin_isdisabled('tag')) { 1620 $replace['@TAG@'] = "\n\n{{tag>}}"; 1621 } else { 1622 $replace['@TAG@'] = ''; 1623 } 1624 1625 // perform the replacements in tpl 1626 return str_replace(array_keys($replace), array_values($replace), $tpl); 1627 } 1628 1629 /** 1630 * Checks if the CAPTCHA string submitted is valid, modifies action if needed 1631 */ 1632 protected function captchaCheck() 1633 { 1634 global $INPUT; 1635 /** @var helper_plugin_captcha $captcha */ 1636 if (!$captcha = $this->loadHelper('captcha', false)) { 1637 // CAPTCHA is disabled or not available 1638 return; 1639 } 1640 1641 if ($captcha->isEnabled() && !$captcha->check()) { 1642 if ($INPUT->str('comment') == 'save') { 1643 $INPUT->set('comment', 'edit'); 1644 } elseif ($INPUT->str('comment') == 'add') { 1645 $INPUT->set('comment', 'show'); 1646 } 1647 } 1648 } 1649 1650 /** 1651 * checks if the submitted reCAPTCHA string is valid, modifies action if needed 1652 * 1653 * @author Adrian Schlegel <adrian@liip.ch> 1654 */ 1655 protected function recaptchaCheck() 1656 { 1657 global $INPUT; 1658 /** @var helper_plugin_recaptcha $recaptcha */ 1659 if (!$recaptcha = plugin_load('helper', 'recaptcha')) 1660 return; // reCAPTCHA is disabled or not available 1661 1662 // do nothing if logged in user and no reCAPTCHA required 1663 if (!$recaptcha->getConf('forusers') && $INPUT->server->has('REMOTE_USER')) return; 1664 1665 $response = $recaptcha->check(); 1666 if (!$response->is_valid) { 1667 msg($recaptcha->getLang('testfailed'), -1); 1668 if ($INPUT->str('comment') == 'save') { 1669 $INPUT->str('comment', 'edit'); 1670 } elseif ($INPUT->str('comment') == 'add') { 1671 $INPUT->str('comment', 'show'); 1672 } 1673 } 1674 } 1675 1676 /** 1677 * Add discussion plugin version to the indexer version 1678 * This means that all pages will be indexed again in order to add the comments 1679 * to the index whenever there has been a change that concerns the index content. 1680 * 1681 * @param Doku_Event $event 1682 */ 1683 public function addIndexVersion(Doku_Event $event) 1684 { 1685 $event->data['discussion'] = '0.1'; 1686 } 1687 1688 /** 1689 * Adds the comments to the index 1690 * 1691 * @param Doku_Event $event 1692 * @param array $param with 1693 * 'id' => string 'page'/'id' for respectively INDEXER_PAGE_ADD and FULLTEXT_SNIPPET_CREATE event 1694 * 'text' => string 'body'/'text' 1695 */ 1696 public function addCommentsToIndex(Doku_Event $event, $param) 1697 { 1698 // get .comments meta file name 1699 $file = metaFN($event->data[$param['id']], '.comments'); 1700 1701 if (!@file_exists($file)) return; 1702 $data = unserialize(io_readFile($file, false)); 1703 1704 // comments are turned off or no comments available to index 1705 if (!$data['status'] || $data['number'] == 0) return; 1706 1707 // now add the comments 1708 if (isset($data['comments'])) { 1709 foreach ($data['comments'] as $key => $value) { 1710 $event->data[$param['text']] .= DOKU_LF . $this->addCommentWords($key, $data); 1711 } 1712 } 1713 } 1714 1715 /** 1716 * Checks if the phrase occurs in the comments and return event result true if matching 1717 * 1718 * @param Doku_Event $event 1719 */ 1720 public function fulltextPhraseMatchInComments(Doku_Event $event) 1721 { 1722 if ($event->result === true) return; 1723 1724 // get .comments meta file name 1725 $file = metaFN($event->data['id'], '.comments'); 1726 1727 if (!@file_exists($file)) return; 1728 $data = unserialize(io_readFile($file, false)); 1729 1730 // comments are turned off or no comments available to match 1731 if (!$data['status'] || $data['number'] == 0) return; 1732 1733 $matched = false; 1734 1735 // now add the comments 1736 if (isset($data['comments'])) { 1737 foreach ($data['comments'] as $cid => $value) { 1738 $matched = $this->phraseMatchInComment($event->data['phrase'], $cid, $data); 1739 if ($matched) break; 1740 } 1741 } 1742 1743 if ($matched) { 1744 $event->result = true; 1745 } 1746 } 1747 1748 /** 1749 * Match the phrase in the comment and its replies 1750 * 1751 * @param string $phrase phrase to search 1752 * @param string $cid comment id 1753 * @param array $data array with all comments by reference 1754 * @param string $parent cid of parent 1755 * @return bool if match true, otherwise false 1756 */ 1757 protected function phraseMatchInComment($phrase, $cid, &$data, $parent = '') 1758 { 1759 if (!isset($data['comments'][$cid])) return false; // comment was removed 1760 1761 $comment = $data['comments'][$cid]; 1762 1763 if (!is_array($comment)) return false; // corrupt datatype 1764 if ($comment['parent'] != $parent) return false; // reply to an other comment 1765 if (!$comment['show']) return false; // hidden comment 1766 1767 $text = PhpString::strtolower($comment['raw']); 1768 if (strpos($text, $phrase) !== false) { 1769 return true; 1770 } 1771 1772 if (is_array($comment['replies'])) { // and the replies 1773 foreach ($comment['replies'] as $rid) { 1774 if ($this->phraseMatchInComment($phrase, $rid, $data, $cid)) { 1775 return true; 1776 } 1777 } 1778 } 1779 return false; 1780 } 1781 1782 /** 1783 * Saves the current comment status and title from metadata into the .comments file 1784 * 1785 * @param Doku_Event $event 1786 */ 1787 public function update_comment_status(Doku_Event $event) 1788 { 1789 global $ID; 1790 1791 $meta = $event->data['current']; 1792 $file = metaFN($ID, '.comments'); 1793 $status = ($this->isDiscussionEnabled() ? 1 : 0); 1794 $title = null; 1795 if (isset($meta['plugin_discussion'])) { 1796 $status = $meta['plugin_discussion']['status']; // 0, 1 or 2 1797 $title = $meta['plugin_discussion']['title']; 1798 } elseif ($status == 1) { 1799 // Don't enable comments when automatic comments are on - this already happens automatically 1800 // and if comments are turned off in the admin this only updates the .comments file 1801 return; 1802 } 1803 1804 if ($status || @file_exists($file)) { 1805 $data = []; 1806 if (@file_exists($file)) { 1807 $data = unserialize(io_readFile($file, false)); 1808 } 1809 1810 if (!array_key_exists('title', $data) || $data['title'] !== $title || !isset($data['status']) || $data['status'] !== $status) { 1811 $data['title'] = $title; 1812 $data['status'] = $status; 1813 if (!isset($data['number'])) { 1814 $data['number'] = 0; 1815 } 1816 io_saveFile($file, serialize($data)); 1817 } 1818 } 1819 } 1820 1821 /** 1822 * Return words of a given comment and its replies, suitable to be added to the index 1823 * 1824 * @param string $cid comment id 1825 * @param array $data array with all comments by reference 1826 * @param string $parent cid of parent 1827 * @return string 1828 */ 1829 protected function addCommentWords($cid, &$data, $parent = '') 1830 { 1831 1832 if (!isset($data['comments'][$cid])) return ''; // comment was removed 1833 1834 $comment = $data['comments'][$cid]; 1835 1836 if (!is_array($comment)) return ''; // corrupt datatype 1837 if ($comment['parent'] != $parent) return ''; // reply to an other comment 1838 if (!$comment['show']) return ''; // hidden comment 1839 1840 $text = $comment['raw']; // we only add the raw comment text 1841 if (is_array($comment['replies'])) { // and the replies 1842 foreach ($comment['replies'] as $rid) { 1843 $text .= $this->addCommentWords($rid, $data, $cid); 1844 } 1845 } 1846 return ' ' . $text; 1847 } 1848 1849 /** 1850 * Only allow http(s) URLs and append http:// to URLs if needed 1851 * 1852 * @param string $url 1853 * @return string 1854 */ 1855 protected function checkURL($url) 1856 { 1857 if (preg_match("#^http://|^https://#", $url)) { 1858 return hsc($url); 1859 } elseif (substr($url, 0, 4) == 'www.') { 1860 return hsc('https://' . $url); 1861 } else { 1862 return ''; 1863 } 1864 } 1865 1866 /** 1867 * Sort threads 1868 * 1869 * @param array $a array with comment properties 1870 * @param array $b array with comment properties 1871 * @return int 1872 */ 1873 function sortThreadsOnCreation($a, $b) 1874 { 1875 if (is_array($a['date'])) { 1876 // new format 1877 $createdA = $a['date']['created']; 1878 } else { 1879 // old format 1880 $createdA = $a['date']; 1881 } 1882 1883 if (is_array($b['date'])) { 1884 // new format 1885 $createdB = $b['date']['created']; 1886 } else { 1887 // old format 1888 $createdB = $b['date']; 1889 } 1890 1891 if ($createdA == $createdB) { 1892 return 0; 1893 } else { 1894 return ($createdA < $createdB) ? -1 : 1; 1895 } 1896 } 1897 1898} 1899 1900 1901