libarea/app/Controllers/Answer/AddAnswerController.php

87 lines
2.8 KiB
PHP
Raw Normal View History

<?php
namespace App\Controllers\Answer;
use Hleb\Constructor\Handlers\Request;
use App\Controllers\Controller;
use App\Models\{NotificationModel, ActionModel, AnswerModel, PostModel};
use App\Validate\Validator;
use Content;
class AddAnswerController extends Controller
{
public function create()
{
$post = self::getPost($this->user);
$url_post = url('post', ['id' => $post['post_id'], 'slug' => $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);
$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);
}
// Notifications when adding a answer
// Уведомления при добавлении ответа
public function notif($content, $post, $url)
{
// Contact via @
// Обращение через @
if ($message = \App\Services\Parser\Content::parseUser($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(
[
'sender_id' => $this->user['id'],
'recipient_id' => $focus_user['signed_user_id'],
'action_type' => NotificationModel::TYPE_AMSWER_POST,
'url' => $url,
]
);
2021-08-03 22:23:02 +02:00
}
}
}
}
public static function getPost($user)
{
$post_id = Request::getPostInt('post_id');
$post = PostModel::getPost($post_id, 'id', $user);
self::error404($post);
return $post;
}
}