libarea/app/Controllers/Answer/AddAnswerController.php

98 lines
3.4 KiB
PHP
Raw Normal View History

<?php
namespace App\Controllers\Answer;
use Hleb\Constructor\Handlers\Request;
use App\Controllers\Controller;
2022-12-06 06:44:20 +01:00
use App\Services\Сheck\PostPresence;
use App\Models\{NotificationModel, ActionModel, AnswerModel, PostModel};
use App\Validate\Validator;
use UserData;
class AddAnswerController extends Controller
{
public function create()
{
$post = PostPresence::index(Request::getPostInt('post_id'), 'id');
2023-01-02 14:38:36 +01:00
$url_post = post_slug($post['post_id'], $post['post_slug']);
Validator::Length($content = $_POST['content'], 6, 5000, 'content', $url_post);
// Let's check the stop words, url
2022-09-13 06:24:48 +02:00
// Проверим стоп слова и url
$trigger = (new \App\Services\Audit())->prohibitedContent($content);
$this->union($post, $url_post, $content);
$last_id = AnswerModel::add($post['post_id'], $content, $trigger);
// Add an audit entry and an alert to the admin
// Аудит и оповещение персоналу
2022-01-13 17:59:40 +01:00
if ($trigger === false) {
2022-09-13 06:24:48 +02:00
(new \App\Services\Audit())->create('answer', $last_id, url('admin.audits'));
}
$url = $url_post . '#answer_' . $last_id;
$this->notif($content, $post, $url);
ActionModel::addLogs(
[
'id_content' => $last_id,
'action_type' => 'answer',
'action_name' => 'added',
'url_content' => $url,
]
);
redirect($url);
}
public function union($post, $url_post, $content)
{
if (config('publication.merge_answer_post') == false) {
return true;
}
// Staff can write a response under their post
// Персонал может писать ответ под своим постом
if (UserData::checkAdmin()) {
return true;
}
// If there are no replies to the post and the author of the post = the author of the answer, then add the answer to the end of the post
// Если ответов на пост нет и автор поста = автора ответа, то дописываем ответ в конец поста
if ((AnswerModel::getNumberAnswers($post['post_id']) == null) && ($post['post_user_id'] == $this->user['id'])) {
AnswerModel::mergePost($post['post_id'], $content);
redirect($url_post);
}
return true;
}
// Notifications when adding a answer
// Уведомления при добавлении ответа
public function notif($content, $post, $url)
{
// Contact via @
// Обращение через @
2023-01-27 03:44:55 +01:00
if ($message = \App\Services\Parser\Content::parseUsers($content, true, true)) {
(new \App\Controllers\NotificationController())->mention(NotificationModel::TYPE_ADDRESSED_ANSWER, $message, $url, $post['post_user_id']);
}
2022-01-14 13:59:57 +01:00
// Who is following this question/post
2021-08-03 22:23:02 +02:00
// Кто подписан на данный вопрос / пост
if ($focus_all = PostModel::getFocusUsersPost($post['post_id'])) {
2021-08-03 22:23:02 +02:00
foreach ($focus_all as $focus_user) {
if ($focus_user['signed_user_id'] != $this->user['id']) {
NotificationModel::send($focus_user['signed_user_id'], NotificationModel::TYPE_AMSWER_POST, $url);
2021-08-03 22:23:02 +02:00
}
}
}
}
}