Passed
Pull Request — 1.11.x (#4900)
by Angel Fernando Quiroz
16:28
created

findResults()   C

Complexity

Conditions 10
Paths 192

Size

Total Lines 77
Code Lines 43

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 43
c 1
b 0
f 0
dl 0
loc 77
rs 6.9
cc 10
nc 192
nop 3

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/* For licensing terms, see /license.txt */
4
5
use Chamilo\CoreBundle\Entity\TrackEAttempt;
6
use Chamilo\CoreBundle\Entity\TrackEExercises;
7
use Chamilo\CourseBundle\Entity\CQuiz;
8
use Chamilo\PluginBundle\ExerciseFocused\Entity\Log as FocusedLog;
9
use Chamilo\PluginBundle\ExerciseMonitoring\Entity\Log as MonitoringLog;
10
use Chamilo\UserBundle\Entity\User;
11
use Doctrine\ORM\EntityManagerInterface;
12
use Doctrine\ORM\Query\Expr\Join;
13
use Symfony\Component\HttpFoundation\Request as HttpRequest;
0 ignored issues
show
Bug introduced by
This use statement conflicts with another class in this namespace, HttpRequest. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
14
15
require_once __DIR__.'/../../../main/inc/global.inc.php';
16
17
api_protect_course_script(true);
18
19
if (!api_is_allowed_to_edit()) {
20
    api_not_allowed(true);
21
}
22
23
$plugin = ExerciseFocusedPlugin::create();
24
$monitoringPlugin = ExerciseMonitoringPlugin::create();
25
$monitoringPluginIsEnabled = $monitoringPlugin->isEnabled(true);
26
$request = HttpRequest::createFromGlobals();
27
$em = Database::getManager();
28
$focusedLogRepository = $em->getRepository(FocusedLog::class);
29
$attempsRepository = $em->getRepository(TrackEAttempt::class);
30
31
if (!$plugin->isEnabled(true)) {
32
    api_not_allowed(true);
33
}
34
35
$params = $request->query->all();
36
37
$results = findResults($params, $em, $plugin);
38
39
$data = [];
40
41
/** @var array<string, mixed> $result */
42
foreach ($results as $result) {
43
    /** @var TrackEExercises $trackExe */
44
    $trackExe = $result['exe'];
45
    $user = api_get_user_entity($trackExe->getExeUserId());
46
47
    $outfocusedLimitCount = $focusedLogRepository->countByActionInExe($trackExe, FocusedLog::TYPE_OUTFOCUSED_LIMIT);
48
    $timeLimitCount = $focusedLogRepository->countByActionInExe($trackExe, FocusedLog::TYPE_TIME_LIMIT);
49
50
    $exercise = new Exercise($trackExe->getCId());
51
    $exercise->read($trackExe->getExeExoId());
52
53
    $quizType = (int) $exercise->selectType();
54
55
    $data[] = [
56
        get_lang('Student'),
57
        $user->getUsername(),
58
        $user->getFirstname(),
59
        $user->getLastname(),
60
    ];
61
62
    if ($trackExe->getSessionId()) {
63
        $data[] = [
64
            get_lang('SessionName'),
65
            api_get_session_entity($trackExe->getSessionId())->getName(),
66
        ];
67
    }
68
69
    $data[] = [
70
        get_lang('CourseTitle'),
71
        api_get_course_entity($trackExe->getCId())->getTitle(),
72
    ];
73
    $data[] = [
74
        get_lang('ExerciseName'),
75
        $exercise->getUnformattedTitle(),
76
    ];
77
    $data[] = [
78
        $plugin->get_lang('ExerciseStartDateAndTime'),
79
        api_get_local_time($result['exe']->getStartDate(), null, null, true, true, true),
80
    ];
81
    $data[] = [
82
        $plugin->get_lang('ExerciseEndDateAndTime'),
83
        api_get_local_time($result['exe']->getExeDate(), null, null, true, true, true),
84
    ];
85
    $data[] = [
86
        get_lang('IP'),
87
        $result['exe']->getUserIp(),
88
    ];
89
    $data[] = [
90
        $plugin->get_lang('Motive'),
91
        $plugin->calculateMotive($outfocusedLimitCount, $timeLimitCount),
92
    ];
93
    $data[] = [];
94
95
    $data[] = [
96
        $plugin->get_lang('LevelReached'),
97
        get_lang('DateExo'),
98
        get_lang('Score'),
99
        $plugin->get_lang('Outfocused'),
100
        $plugin->get_lang('Returns'),
101
        $monitoringPluginIsEnabled ? $monitoringPlugin->get_lang('Snapshots') : '',
102
    ];
103
104
    if (ONE_PER_PAGE === $quizType) {
105
        $questionList = explode(',', $trackExe->getDataTracking());
106
107
        foreach ($questionList as $idx => $questionId) {
108
            $attempt = $attempsRepository->findOneBy(
109
                ['exeId' => $trackExe->getExeId(), 'questionId' => $questionId],
110
                ['tms' => 'DESC']
111
            );
112
113
            if (!$attempt) {
114
                continue;
115
            }
116
117
            $result = $exercise->manage_answer(
118
                $trackExe->getExeId(),
119
                $questionId,
120
                null,
121
                'exercise_result',
122
                false,
123
                false,
124
                true,
125
                false,
126
                $exercise->selectPropagateNeg()
127
            );
128
129
            $row = [
130
                get_lang('QuestionNumber').' '.($idx + 1),
131
                api_get_local_time($attempt->getTms()),
132
                $result['score'].' / '.$result['weight'],
133
                $focusedLogRepository->countByActionAndLevel($trackExe, FocusedLog::TYPE_OUTFOCUSED, $questionId),
134
                $focusedLogRepository->countByActionAndLevel($trackExe, FocusedLog::TYPE_RETURN, $questionId),
135
                getSnapshotListForLevel($questionId, $trackExe),
136
            ];
137
138
            $data[] = $row;
139
        }
140
    } elseif (ALL_ON_ONE_PAGE === $quizType) {
141
    }
142
143
    $data[] = [];
144
    $data[] = [];
145
}
146
147
//var_dump($data);
148
Export::arrayToXls($data);
149
150
function getSessionIdFromFormValues(array $formValues, array $fieldVariableList): array
151
{
152
    $fieldItemIdList = [];
153
    $objFieldValue = new ExtraFieldValue('session');
154
155
    foreach ($fieldVariableList as $fieldVariable) {
156
        if (!isset($formValues["extra_$fieldVariable"])) {
157
            continue;
158
        }
159
160
        $itemValue = $objFieldValue->get_item_id_from_field_variable_and_field_value(
161
            $fieldVariable,
162
            $formValues["extra_$fieldVariable"]
163
        );
164
165
        if ($itemValue) {
166
            $fieldItemIdList[] = (int) $itemValue['item_id'];
167
        }
168
    }
169
170
    return array_unique($fieldItemIdList);
171
}
172
173
function findResults(array $formValues, EntityManagerInterface $em, ExerciseFocusedPlugin $plugin)
174
{
175
    $cId = api_get_course_int_id();
176
177
    $qb = $em->createQueryBuilder();
178
    $qb
179
        ->select('te AS exe, q.title, te.startDate , u.firstname, u.lastname, u.username')
180
        ->from(TrackEExercises::class, 'te')
181
        ->innerJoin(CQuiz::class, 'q', Join::WITH, 'te.exeExoId = q.iid')
182
        ->innerJoin(User::class, 'u', Join::WITH, 'te.exeUserId = u.id');
183
184
    $params = [];
185
186
    if ($cId) {
187
        $qb->andWhere($qb->expr()->eq('te.cId', ':cId'));
188
189
        $params['cId'] = $cId;
190
    }
191
192
    $sessionItemIdList = getSessionIdFromFormValues(
193
        $formValues,
194
        $plugin->getSessionFieldList()
195
    );
196
197
    if ($sessionItemIdList) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $sessionItemIdList of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
198
        $qb->andWhere($qb->expr()->in('te.sessionId', ':sessionItemIdList'));
199
200
        $params['sessionItemIdList'] = $sessionItemIdList;
201
    } else {
202
        $qb->andWhere($qb->expr()->isNull('te.sessionId'));
203
    }
204
205
    if (!empty($formValues['username'])) {
206
        $qb->andWhere($qb->expr()->eq('u.username', ':username'));
207
208
        $params['username'] = $formValues['username'];
209
    }
210
211
    if (!empty($formValues['firstname'])) {
212
        $qb->andWhere($qb->expr()->eq('u.firstname', ':firstname'));
213
214
        $params['firstname'] = $formValues['firstname'];
215
    }
216
217
    if (!empty($formValues['lastname'])) {
218
        $qb->andWhere($qb->expr()->eq('u.lastname', ':lastname'));
219
220
        $params['lastname'] = $formValues['lastname'];
221
    }
222
223
    if (!empty($formValues['start_date'])) {
224
        $qb->andWhere(
225
            $qb->expr()->andX(
226
                $qb->expr()->gte('te.startDate', ':start_date'),
227
                $qb->expr()->lte('te.exeDate', ':end_date')
228
            )
229
        );
230
231
        $params['start_date'] = api_get_utc_datetime($formValues['start_date'].' 00:00:00', false, true);
232
        $params['end_date'] = api_get_utc_datetime($formValues['start_date'].' 23:59:59', false, true);
233
    }
234
235
    if (empty($params)) {
236
        return [];
237
    }
238
239
    if ($cId && !empty($formValues['id'])) {
240
        $qb->andWhere($qb->expr()->eq('q.iid', ':q_id'));
241
242
        $params['q_id'] = $formValues['id'];
243
    }
244
245
    $qb->setParameters($params);
246
247
    $query = $qb->getQuery();
248
249
    return $query->getResult();
250
}
251
252
function getSnapshotListForLevel(int $level, TrackEExercises $trackExe): string
253
{
254
    $monitoringPluginIsEnabled = ExerciseMonitoringPlugin::create()->isEnabled(true);
255
256
    if (!$monitoringPluginIsEnabled) {
257
        return '';
258
    }
259
260
    $user = api_get_user_entity($trackExe->getExeUserId());
261
    $monitoringLogRepository = Database::getManager()->getRepository(MonitoringLog::class);
262
263
    $monitoringLogsByQuestion = $monitoringLogRepository->findByLevelAndExe($level, $trackExe);
264
    $snapshotList = [];
265
266
    /** @var MonitoringLog $logByQuestion */
267
    foreach ($monitoringLogsByQuestion as $logByQuestion) {
268
        $snapshotUrl = ExerciseMonitoringPlugin::generateSnapshotUrl(
269
            $user->getId(),
270
            $logByQuestion->getImageFilename()
271
        );
272
        $snapshotList[] = api_get_local_time($logByQuestion->getCreatedAt()).' '.$snapshotUrl;
273
    }
274
275
    return implode(PHP_EOL, $snapshotList);
276
}
277