SchedulerService   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 64
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 25
c 2
b 0
f 0
dl 0
loc 64
rs 10
wmc 4

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getTasksList() 0 18 1
A getTasksListForTca() 0 19 2
1
<?php
2
declare(strict_types=1);
3
4
/*
5
 * Copyright (C)
6
 * Nathan Boiron <[email protected]>
7
 * Romain Canon <[email protected]>
8
 *
9
 * This file is part of the TYPO3 NotiZ project.
10
 * It is free software; you can redistribute it and/or modify it
11
 * under the terms of the GNU General Public License, either
12
 * version 3 of the License, or any later version.
13
 *
14
 * For the full copyright and license information, see:
15
 * http://www.gnu.org/licenses/gpl-3.0.html
16
 */
17
18
namespace CuyZ\Notiz\Service\Scheduler;
19
20
use CuyZ\Notiz\Service\LocalizationService;
21
use TYPO3\CMS\Core\Database\ConnectionPool;
22
use TYPO3\CMS\Core\SingletonInterface;
23
use TYPO3\CMS\Core\Utility\GeneralUtility;
24
use TYPO3\CMS\Scheduler\Scheduler as CoreScheduler;
0 ignored issues
show
Bug introduced by
The type TYPO3\CMS\Scheduler\Scheduler was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
use TYPO3\CMS\Scheduler\Task\AbstractTask;
0 ignored issues
show
Bug introduced by
The type TYPO3\CMS\Scheduler\Task\AbstractTask was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
26
27
/**
28
 * Little service to fetch scheduler tasks, because TYPO3 core doesn't provide
29
 * any.
30
 */
31
class SchedulerService implements SingletonInterface
32
{
33
    /**
34
     * @var CoreScheduler
35
     */
36
    protected $scheduler;
37
38
    /**
39
     * Manual dependency injection.
40
     */
41
    public function __construct()
42
    {
43
        $this->scheduler = GeneralUtility::makeInstance(CoreScheduler::class);
44
    }
45
46
    /**
47
     * Too bad we don't have a repository for this.
48
     *
49
     * @return array
50
     */
51
    public function getTasksList(): array
52
    {
53
        /** @var ConnectionPool $connectionPool */
54
        $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
55
56
        $queryBuilder = $connectionPool->getQueryBuilderForTable('tx_scheduler_task');
57
        $queryBuilder->getRestrictions()->removeAll();
58
59
        return $queryBuilder->select('*')
0 ignored issues
show
Deprecated Code introduced by
The function Doctrine\DBAL\Driver\ResultStatement::fetchAll() has been deprecated: Use fetchAllNumeric(), fetchAllAssociative() or fetchFirstColumn() instead. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

59
        return /** @scrutinizer ignore-deprecated */ $queryBuilder->select('*')

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
60
            ->from('tx_scheduler_task')
61
            ->where(
62
                $queryBuilder->expr()->eq(
63
                    'disable',
64
                    $queryBuilder->createNamedParameter(0, \PDO::PARAM_INT)
65
                )
66
            )
67
            ->execute()
68
                ->fetchAll();
69
    }
70
71
    /**
72
     * Adds all existing and enabled scheduler tasks to the given TCA array.
73
     *
74
     * @param array $parameters
75
     */
76
    public function getTasksListForTca(array &$parameters)
77
    {
78
        $parameters['items'] = array_map(
79
            function ($task) {
80
                $uid = $task['uid'];
81
82
                /** @var AbstractTask $taskObject */
83
                $taskObject = unserialize($task['serialized_task_object']);
84
85
                $title = $this->scheduler->isValidTaskObject($taskObject)
86
                    ? $taskObject->getTaskTitle()
87
                    : '*' . LocalizationService::localize('Event/Scheduler:task.flex_form.invalid_task') . '*';
88
89
                return [
90
                    $title . ' [' . $uid . ']',
91
                    $uid,
92
                ];
93
            },
94
            $this->getTasksList()
95
        );
96
    }
97
}
98