guild/frontend/modules/api/controllers/TaskController.php

700 lines
23 KiB
PHP
Raw Normal View History

2021-11-25 12:33:08 +03:00
<?php
namespace frontend\modules\api\controllers;
use common\models\ProjectTask;
use common\models\ProjectTaskUser;
use common\models\User;
2023-11-10 15:55:01 +03:00
use frontend\modules\api\models\project\ProjectColumn;
use frontend\modules\api\services\TaskService;
2021-11-25 12:33:08 +03:00
use Yii;
use yii\base\InvalidConfigException;
2023-11-10 15:55:01 +03:00
use yii\data\ActiveDataProvider;
use yii\web\BadRequestHttpException;
2021-11-25 12:33:08 +03:00
use yii\web\NotFoundHttpException;
use yii\web\ServerErrorHttpException;
2022-01-16 23:54:13 +03:00
class TaskController extends ApiController
2021-11-25 12:33:08 +03:00
{
2023-11-20 11:39:44 +03:00
/**
* @var TaskService
*/
2023-11-10 15:55:01 +03:00
private TaskService $taskService;
/**
* @param $id
* @param $module
* @param TaskService $taskService
* @param array $config
*/
public function __construct($id, $module, TaskService $taskService, $config = [])
2021-11-25 12:33:08 +03:00
{
2023-11-10 15:55:01 +03:00
$this->taskService = $taskService;
parent::__construct($id, $module, $config);
2021-11-25 12:33:08 +03:00
}
/**
2023-04-26 01:22:02 +03:00
*
* @OA\Post(path="/task/create-task",
* summary="Добавить задачу",
* description="Метод для создания задачи, если не передан параметр <b>user_id</b>, то будет получен текущий пользователь",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
*
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="multipart/form-data",
* @OA\Schema(
* required={"project_id", "status", "title", "description"},
* @OA\Property(
* property="project_id",
* type="string",
* description="Идентификатор проекта",
* ),
* @OA\Property(
* property="title",
* type="string",
* description="Заголовок задачи",
* ),
* @OA\Property(
* property="description",
* type="string",
* description="Описание задачи",
* ),
* @OA\Property(
* property="status",
* type="integer",
* description="статус",
* ),
* @OA\Property(
2023-06-30 18:13:40 +03:00
* property="dead_line",
* type="string",
* description="Срок выполнения задачи",
* ),
* @OA\Property(
2023-05-12 02:12:43 +03:00
* property="priority",
* type="integer",
2023-10-13 17:00:01 +03:00
* description="Приоритет задачи.",
2023-05-12 02:12:43 +03:00
* ),
* @OA\Property(
2023-10-13 17:58:58 +03:00
* property="execution_priority",
* type="integer",
* description="Приоритет выполнения задачи (0 - low, 1 - medium, 2 - high)",
* ),
* @OA\Property(
2023-04-26 01:22:02 +03:00
* property="column_id",
* type="integer",
* description="Колонка к которой относится задача",
* ),
* @OA\Property(
* property="user_id",
* type="integer",
* description="Идентификатор создателя задачи",
* ),
2023-05-23 14:05:09 +03:00
* @OA\Property(
* property="executor_id",
* type="integer",
* description="Идентификатор исполнителя задачи",
* ),
2023-04-26 01:22:02 +03:00
* ),
* ),
* ),
* @OA\Response(
* response=200,
* description="Возвращает объект задачи",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectTask"),
* ),
* ),
* )
*
2021-11-25 12:33:08 +03:00
* @throws InvalidConfigException
* @throws ServerErrorHttpException
*/
public function actionCreateTask(): ProjectTask
2021-11-25 12:33:08 +03:00
{
2023-04-26 01:22:02 +03:00
$request = Yii::$app->getRequest()->getBodyParams();
if (!isset($request['user_id']) or $request['user_id'] == null) {
2023-04-26 01:22:02 +03:00
$request['user_id'] = Yii::$app->user->id;
}
2023-11-10 15:55:01 +03:00
$taskModel = $this->taskService->createTask($request);
2022-01-16 23:54:13 +03:00
if ($taskModel->errors) {
throw new ServerErrorHttpException(json_encode($taskModel->errors));
}
return $taskModel;
2021-11-25 12:33:08 +03:00
}
/**
2023-04-25 01:32:15 +03:00
*
* @OA\Get(path="/task/get-task-list",
* summary="Получить список задач по проекту",
* description="Метод для получения задач по проекту",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
* @OA\Parameter(
* name="project_id",
* in="query",
* required=true,
* @OA\Schema(
* type="integer",
* )
* ),
2023-10-09 23:57:01 +03:00
* @OA\Parameter(
2023-11-22 16:39:51 +03:00
* name="user_id",
* description="При передаче этого параметера вернёт все задачи на проекте для пользователя с заданным id",
* in="query",
* required=false,
* @OA\Schema(
* type="integer",
* )
* ),
* @OA\Parameter(
2023-10-09 23:57:01 +03:00
* name="expand",
* in="query",
* example="column,timers,mark",
* description="В этом параметре по необходимости передаются поля, которые нужно добавить в ответ сервера, сейчас доступно только поля <b>column</b>, <b>timers</b> и <b>mark</b>",
2023-10-09 23:57:01 +03:00
* @OA\Schema(
* type="string",
* )
* ),
2023-04-25 01:32:15 +03:00
* @OA\Response(
* response=200,
* description="Возвращает массив объектов Задач",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectTaskExample"),
* ),
* ),
* )
*
2022-01-16 23:54:13 +03:00
* @throws NotFoundHttpException
2021-11-25 12:33:08 +03:00
*/
2023-11-22 16:39:51 +03:00
public function actionGetTaskList($project_id, $user_id = null): array
2021-11-25 12:33:08 +03:00
{
2023-11-22 16:39:51 +03:00
$tasks = $this->taskService->getTaskListByProject($project_id, $user_id);
2021-11-25 12:33:08 +03:00
2022-03-21 14:57:15 +03:00
if (empty($tasks)) {
2021-11-25 12:33:08 +03:00
throw new NotFoundHttpException('The project does not exist or there are no tasks for it');
}
return $tasks;
}
2023-11-20 11:39:44 +03:00
/**
*
* @OA\Get(path="/task/get-archive-task",
* summary="Получить список архивных задач по проекту",
* description="Метод для получения архивных задач по проекту",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
* @OA\Parameter(
* name="project_id",
* in="query",
* required=true,
* @OA\Schema(
* type="integer",
* )
* ),
* @OA\Parameter(
* name="user_id",
* in="query",
* required=false,
* @OA\Schema(
* type="integer",
* )
* ),
* @OA\Parameter(
* name="expand",
* in="query",
* example="column,timers,mark",
* description="В этом параметре по необходимости передаются поля, которые нужно добавить в ответ сервера, сейчас доступно только поля <b>column</b>, <b>timers</b> и <b>mark</b>",
* @OA\Schema(
* type="string",
* )
* ),
* @OA\Response(
* response=200,
* description="Возвращает массив объектов Задач",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectTaskExample"),
* ),
* ),
* )
*
* @param $project_id
* @param null $user_id
* @return array
*/
public function actionGetArchiveTask($project_id, $user_id = null): array
{
return $this->taskService->getArchiveTask($project_id, $user_id);
}
2023-04-25 01:32:15 +03:00
/**
*
* @OA\Get(path="/task/get-user-tasks",
* summary="Получить список задач по пользователю",
* description="Метод для получения задач по пользователю",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
* @OA\Parameter(
* name="user_id",
* in="query",
* required=true,
* @OA\Schema(
* type="integer",
* )
* ),
2023-10-09 23:57:01 +03:00
* @OA\Parameter(
* name="expand",
* in="query",
* example="column,timers,mark",
* description="В этом параметре по необходимости передаются поля, которые нужно добавить в ответ сервера, сейчас доступно только поля <b>column</b>, <b>timers</b> и <b>mark</b>",
2023-10-09 23:57:01 +03:00
* @OA\Schema(
* type="string",
* )
* ),
2023-04-25 01:32:15 +03:00
* @OA\Response(
* response=200,
* description="Возвращает массив объектов Задач",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectTaskExample"),
* ),
* ),
* )
*
* @param $user_id
* @return array
* @throws NotFoundHttpException
*/
public function actionGetUserTasks($user_id): array
{
2023-11-20 11:39:44 +03:00
$tasks = $this->taskService->getTaskListByUser($user_id);
2023-04-25 01:32:15 +03:00
if (empty($tasks)) {
throw new NotFoundHttpException('The project does not exist or there are no tasks for it');
}
return $tasks;
}
2022-01-16 23:54:13 +03:00
/**
2023-04-26 01:22:02 +03:00
*
* @OA\Get(path="/task/get-task",
* summary="Получить информацию по задаче",
* description="Метод для получения данных по задаче",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
* @OA\Parameter(
* name="task_id",
* in="query",
* required=true,
* @OA\Schema(
* type="integer",
* )
* ),
2023-10-09 23:57:01 +03:00
* @OA\Parameter(
* name="expand",
* in="query",
* example="column,timers,mark",
* description="В этом параметре по необходимости передаются поля, которые нужно добавить в ответ сервера, сейчас доступно только поля <b>column</b>, <b>timers</b> и <b>mark</b>",
2023-10-09 23:57:01 +03:00
* @OA\Schema(
* type="string",
* )
* ),
2023-04-26 01:22:02 +03:00
* @OA\Response(
* response=200,
* description="Возвращает объект Задачи",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectTask"),
* ),
* ),
* )
*
2022-01-16 23:54:13 +03:00
* @throws NotFoundHttpException
*/
public function actionGetTask($task_id): ProjectTask
2021-11-25 12:33:08 +03:00
{
2022-03-21 14:57:15 +03:00
if (empty($task_id) or !is_numeric($task_id)) {
2021-11-25 12:33:08 +03:00
throw new NotFoundHttpException('Incorrect task ID');
}
2023-11-10 15:55:01 +03:00
$task = $this->taskService->getTask($task_id);
2022-03-21 14:57:15 +03:00
if (empty($task)) {
2021-11-25 12:33:08 +03:00
throw new NotFoundHttpException('The task does not exist');
}
return $task;
}
2022-01-16 23:54:13 +03:00
/**
2023-04-26 01:22:02 +03:00
*
* @OA\Put(path="/task/update-task",
* summary="Редактировать задачу",
* description="Метод для редактирования задачи",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
*
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="application/x-www-form-urlencoded",
* @OA\Schema(
* required={"task_id"},
* @OA\Property(
* property="user_id",
* type="integer",
* description="Идентификатор пользователя",
* nullable=false,
* ),
* @OA\Property(
2023-05-23 14:05:09 +03:00
* property="executor_id",
* type="integer",
* description="Идентификатор исполнителя задачи",
* ),
* @OA\Property(
2023-04-26 01:22:02 +03:00
* property="task_id",
* type="integer",
* description="Идентификатор задачи",
* ),
* @OA\Property(
* property="title",
* type="string",
* description="Заголовок задачи",
* ),
* @OA\Property(
* property="column_id",
* type="integer",
* description="Идентификатор колонки",
* ),
* @OA\Property(
2023-05-12 02:12:43 +03:00
* property="priority",
* type="integer",
* description="Приоритет задачи",
* ),
* @OA\Property(
2023-04-26 01:22:02 +03:00
* property="status",
* type="integer",
2023-05-12 02:12:43 +03:00
* description="Статус задачи",
2023-04-26 01:22:02 +03:00
* ),
* @OA\Property(
2023-06-30 18:13:40 +03:00
* property="dead_line",
* type="string",
* description="Срок выполнения задачи",
* ),
* @OA\Property(
2023-04-26 01:22:02 +03:00
* property="description",
* type="string",
* description="Описание запроса",
* ),
* ),
* ),
* ),
* @OA\Response(
* response=200,
* description="Возвращает объект Задачи",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectTask"),
* ),
* ),
* )
*
2022-01-16 23:54:13 +03:00
* @throws InvalidConfigException
* @throws ServerErrorHttpException
* @throws NotFoundHttpException
*/
2023-04-26 01:22:02 +03:00
public function actionUpdateTask(): ?ProjectTask
2021-11-25 12:33:08 +03:00
{
2023-04-26 01:22:02 +03:00
$params = array_diff(\Yii::$app->request->getBodyParams(), [null, '']);
2023-11-10 15:55:01 +03:00
if (empty ($params['task_id']) or !$this->taskService->taskExists($params['task_id'])) {
2022-01-16 23:54:13 +03:00
throw new NotFoundHttpException('The task does not exist');
}
2021-11-25 12:33:08 +03:00
2023-11-10 15:55:01 +03:00
$modelTask = $this->taskService->updateTask($params);
2022-01-16 23:54:13 +03:00
if (!empty($modelTask->hasErrors())) {
2023-04-26 01:22:02 +03:00
throw new ServerErrorHttpException(json_encode($modelTask->errors));
2022-01-16 23:54:13 +03:00
}
return $modelTask;
2021-11-25 12:33:08 +03:00
}
/**
*
* @OA\Post(path="/task/add-user-to-task",
* summary="Добавить пользователя в задачу",
* description="Метод для добавления пользователя в задачу",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
*
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="multipart/form-data",
* @OA\Schema(
* required={"user_id", "task_id"},
* @OA\Property(
* property="user_id",
* type="integer",
* description="Идентификатор пользователя",
* ),
* @OA\Property(
* property="task_id",
* type="integer",
* description="Идентификатор задачи",
* ),
* ),
* ),
* ),
* @OA\Response(
* response=200,
* description="Возвращает объект связи задачи и пользователя",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectTaskUser"),
* ),
* ),
* )
*
* @return ProjectTaskUser
* @throws NotFoundHttpException
* @throws ServerErrorHttpException
*/
public function actionAddUserToTask(): ProjectTaskUser
{
$request = \Yii::$app->request->post();
$user = User::findOne($request['user_id']);
if (!$user) {
throw new NotFoundHttpException('User not found');
}
2023-11-10 15:55:01 +03:00
if (empty ($request['task_id']) or !$this->taskService->taskExists($request['task_id'])) {
throw new NotFoundHttpException('The task does not exist');
}
if (ProjectTaskUser::find()->where(['user_id' => $request['user_id'], 'task_id' => $request['task_id']])->exists()) {
throw new ServerErrorHttpException('The user has already been added');
}
$model = new ProjectTaskUser();
$model->load($request, '');
if (!$model->validate()) {
throw new ServerErrorHttpException($model->errors);
}
$model->save();
return $model;
}
/**
*
* @OA\Delete(path="/task/del-user",
* summary="Удаление пользователя из задачи",
* description="Метод для Удаления пользователя из задачи",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
*
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="application/x-www-form-urlencoded",
* @OA\Schema(
* required={"task_id", "user_id"},
* @OA\Property(
* property="task_id",
* type="integer",
* description="Идентификатор задачи",
* ),
* @OA\Property(
* property="user_id",
* type="integer",
* description="Идентификатор пользователя",
* ),
* ),
* ),
* ),
* @OA\Response(
* response=200,
* description="Возвращает объект задачи",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectTask"),
* ),
* ),
* )
*
* @return ProjectTask|null
* @throws InvalidConfigException
* @throws NotFoundHttpException
*/
public function actionDelUser(): ?ProjectTask
{
$request = Yii::$app->request->getBodyParams();
$user = User::findOne($request['user_id']);
if (!$user) {
throw new NotFoundHttpException('User not found');
}
2023-11-10 15:55:01 +03:00
if (empty ($request['task_id']) or !$this->taskService->taskExists($request['task_id'])) {
throw new NotFoundHttpException('The task does not exist');
}
ProjectTaskUser::deleteAll(['task_id' => $request['task_id'], 'user_id' => $request['user_id']]);
2023-11-10 15:55:01 +03:00
return $this->taskService->getTask($request['task_id']);
}
/**
*
* @OA\Post(path="/task/set-priority",
* summary="Установить приоритет задач",
* description="Метод для установления приоритета задач в колонке",
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
*
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="multipart/form-data",
* @OA\Schema(
* required={"column_id", "data"},
* @OA\Property(
* property="column_id",
* type="integer",
* description="Идентификатор проекта",
* ),
* @OA\Property(
* property="data",
* type="string",
* description="Данные для обновления приоритета. Пример: [{&quot;task_id&quot;:3,&quot;priority&quot;:2},{&quot;task_id&quot;:4,&quot;priority&quot;:3}]",
* ),
* ),
* ),
* ),
* @OA\Response(
* response=200,
* description="Возвращает объект колонки",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(ref="#/components/schemas/ProjectColumn"),
* ),
* ),
* )
*
* @return ProjectColumn
* @throws BadRequestHttpException
* @throws NotFoundHttpException
*/
public function actionSetPriority(): ProjectColumn
{
$request = \Yii::$app->request->post();
$data = $request['data'];
if (!$data = json_decode($data, true)) {
throw new BadRequestHttpException('No valid JSON');
}
$column = ProjectColumn::findOne($request['column_id']);
if (empty($column)) {
throw new NotFoundHttpException('The column not found');
}
foreach ($data as $datum) {
$model = ProjectTask::findOne($datum['task_id']);
$model->priority = $datum['priority'];
if (!$model->validate()){
throw new BadRequestHttpException($model->errors);
}
$model->save();
}
return $column;
}
2023-11-10 15:55:01 +03:00
/**
*
* @OA\Get(path="/task/import",
* summary="Экспорт задач",
2023-11-10 15:57:39 +03:00
* description="Метод импорта задач в xlsx",
2023-11-10 15:55:01 +03:00
* security={
* {"bearerAuth": {}}
* },
* tags={"TaskManager"},
* @OA\Parameter(
* name="companyId",
* in="query",
* description="ID компании",
* @OA\Schema(
* type="integer",
* )
* ),
* @OA\Parameter(
* name="userId",
* in="query",
* description="ID исполнителя задачи",
* @OA\Schema(
* type="integer",
* )
* ),
* @OA\Parameter(
* name="projectId",
* in="query",
* description="ID проекта",
* @OA\Schema(
* type="integer",
* )
* ),
* @OA\Parameter(
* name="fromDate",
* in="query",
* example="2023-11-09",
* description="Поиск задач с указанной даты",
* @OA\Schema(
* type="string",
* )
* ),
* @OA\Parameter(
* name="toDate",
* in="query",
* example="2023-11-09",
* description="Поиск задач до указанной даты",
* @OA\Schema(
* type="string",
* )
* ),
* @OA\Response(
* response=200,
* description="Возвращает задачи в xlsx файле",
* ),
* )
*
* @return string|void
* @throws BadRequestHttpException
*/
public function actionImport()
{
return $this->taskService->importTasks(Yii::$app->request->get());
}
2021-11-25 12:33:08 +03:00
}