uawdijnntqw1x1x1
IP : 216.73.216.207
Hostname : xhost1.intravision.ru
Kernel : Linux xhost1.intravision.ru 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
tiskom
/
data
/
www
/
tiskom.xhost.intravision.ru
/
bitrix
/
modules
/
.
/
.
/
forum
/
lib
/
comments
/
feed.php
/
/
<?php namespace Bitrix\Forum\Comments; use \Bitrix\Main\Localization\Loc; use \Bitrix\Forum\Internals\Error\Error; Loc::loadMessages(__FILE__); class Feed extends BaseObject { const ERROR_PARAMS_MESSAGE = 'params0004'; const ERROR_PERMISSION = 'params0005'; private function checkTopic() { if (empty($this->topic)) { $this->topic = $this->createTopic(); } return ($this->topic !== null); } /** * Returns true if entity allows adding * @return bool */ public function canAdd() { return $this->getEntity()->canAdd($this->getUser()->getId()); } /** * Returns true if entity allows reading * @return bool */ public function canRead() { return $this->getEntity()->canRead($this->getUser()->getId()); } /** * Returns true if entity allows editing * @return bool */ public function canEdit() { return $this->getEntity()->canEdit($this->getUser()->getId()); } /** * @param integer $commentId Message ID in b_forum_message to edit. * @return bool */ public function canEditComment($commentId) { return Comment::createFromId($this, $commentId)->canEdit(); } /** * Returns true if entity allows deleting. * @return bool */ public function canDelete() { return $this->getEntity()->canEdit($this->getUser()->getId()); } /** * @param integer $commentId Message ID in b_forum_message to delete. * @return bool */ public function canDeleteComment($commentId) { return Comment::createFromId($this, $commentId)->canEdit(); } /** * @return bool */ public function canModerate() { return $this->getEntity()->canModerate($this->getUser()->getId()); } /** * @return bool */ public function canEditOwn() { return $this->getEntity()->canEditOwn($this->getUser()->getId()); } /** * Add a comment * @param array $params Fields for new message to add in table b_forum_message. * @return array|bool */ public function add(array $params) { if (!$this->canAdd()) $this->errorCollection->addOne(new Error(Loc::getMessage("FORUM_CM_RIGHTS1"), self::ERROR_PERMISSION)); else if ($this->checkTopic()) { $comment = Comment::create($this); $comment->add($params); if ($comment->hasErrors()) $this->errorCollection->add($comment->getErrors()); else return $comment->getComment(); } return false; } /** * Edit a comment * @param integer $id Message id. * @param array $params Fields to edit message. * @return array|bool */ public function edit($id, array $params) { $comment = Comment::createFromId($this, $id); if (!$this->canEdit() && !$comment->canEdit()) $this->errorCollection->addOne(new Error(Loc::getMessage("FORUM_CM_RIGHTS2"), self::ERROR_PERMISSION)); else { $comment->edit($params); if ($comment->hasErrors()) $this->errorCollection->add($comment->getErrors()); else return $comment->getComment(); } return false; } /** * Delete a comment * @param integer $id Message id. * @return array|bool */ public function delete($id) { $comment = Comment::createFromId($this, $id); if (!$this->canDelete() && !$comment->canDelete()) $this->errorCollection->addOne(new Error(Loc::getMessage("FORUM_CM_RIGHTS3"), self::ERROR_PERMISSION)); else { $comment->delete(); if ($comment->hasErrors()) $this->errorCollection->add($comment->getErrors()); else return $comment->getComment(); } return false; } /** * Moderate comment with id * @param integer $id Message id. * @param boolean $show State for moderating: true - show, false - hide. * @return array|bool */ public function moderate($id, $show) { $comment = Comment::createFromId($this, $id); if (!$this->canModerate()) $this->errorCollection->addOne(new Error(Loc::getMessage("FORUM_CM_RIGHTS4"), self::ERROR_PERMISSION)); else { $comment->moderate($show); if ($comment->hasErrors()) $this->errorCollection->add($comment->getErrors()); else return $comment->getComment(); } return false; } /** * Render comment through the component and send into pull * @param integer $id Message id. * @param array $params Params for component including. * @return bool */ public function send($id, array $params) { ob_start(); try{ global $APPLICATION; $APPLICATION->IncludeComponent( "bitrix:forum.comments", "bitrix24", [ "FORUM_ID" => $this->getForum()["ID"], "ENTITY_TYPE" => $this->getEntity()->getType(), "ENTITY_ID" => $this->getEntity()->getId(), "ENTITY_XML_ID" => $this->getEntity()->getXmlId(), "MID" => $id, "ACTION" => "SEND", "SHOW_POST_FORM" => "N"] + $params + [ "SHOW_RATING" => "Y", "URL_TEMPLATES_PROFILE_VIEW" => "", "CHECK_ACTIONS" => "N", "RECIPIENT_ID" => $this->getUser()->getId()], null, array("HIDE_ICONS" => "Y") ); $result = true; } catch (\Throwable $e) { $result = false; } ob_get_clean(); return $result; } /** * Mainly this function for forum entity. In this case params have to from the list: A < E < I < M < Q < U < Y * A - NO ACCESS E - READ I - ANSWER * M - NEW TOPIC Q - MODERATE U - EDIT Y - FULL_ACCESS * @param string $permission A,E,I,M,Q,U,Y. * @return $this */ public function setPermission($permission) { $this->getEntity()->setPermission($this->getUser()->getId(), $permission); return $this; } /** * @param boolean $allow True or false. * @return $this */ public function setEditOwn($allow) { $this->getEntity()->setEditOwn($allow); return $this; } /** * Returns permission From list: A < E < I < M < Q < U < Y. * @return string */ public function getPermission() { return $this->getEntity()->getPermission($this->getUser()->getId()); } }
/var/www/tiskom/data/www/tiskom.xhost.intravision.ru/bitrix/modules/././forum/lib/comments/feed.php