Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | Rev 6849 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
/**
3
 *
4
 * Controlador: Microlearning
5
 *
6
 */
7
declare(strict_types=1);
8
 
9
namespace LeadersLinked\Controller;
10
 
11
use Laminas\Db\Adapter\AdapterInterface;
6749 efrain 12
use LeadersLinked\Cache\CacheInterface;
1 www 13
use Laminas\Mvc\Controller\AbstractActionController;
14
use Laminas\Log\LoggerInterface;
15
use Laminas\View\Model\ViewModel;
16
use Laminas\View\Model\JsonModel;
17
use LeadersLinked\Mapper\CompanyMicrolearningUserLogMapper;
18
use LeadersLinked\Model\CompanyMicrolearningUserLog;
19
use LeadersLinked\Mapper\CompanyMicrolearningCapsuleUserMapper;
20
use LeadersLinked\Mapper\CompanyMicrolearningUserProgressMapper;
21
use LeadersLinked\Mapper\CompanyMicrolearningSlideMapper;
22
 
23
class ProfileMicrolearningController extends AbstractActionController
24
{
25
    /**
26
     *
27
     * @var AdapterInterface
28
     */
29
    private $adapter;
30
 
31
 
32
    /**
33
     *
6749 efrain 34
     * @var CacheInterface
1 www 35
     */
36
    private $cache;
37
 
38
    /**
39
     *
40
     * @var  LoggerInterface
41
     */
42
    private $logger;
43
 
44
 
45
    /**
46
     *
47
     * @var array
48
     */
49
    private $config;
50
 
51
    /**
52
     *
53
     * @param AdapterInterface $adapter
6749 efrain 54
     * @param CacheInterface $cache
1 www 55
     * @param LoggerInterface $logger
56
     * @param array $config
57
     */
58
    public function __construct($adapter, $cache , $logger,  $config)
59
    {
60
        $this->adapter      = $adapter;
61
        $this->cache        = $cache;
62
        $this->logger       = $logger;
63
        $this->config       = $config;
64
 
65
    }
66
 
67
    /**
68
     *
69
     * Generación del listado de perfiles
70
     * {@inheritDoc}
71
     * @see \Laminas\Mvc\Controller\AbstractActionController::indexAction()
72
     */
73
    public function indexAction()
74
    {
75
        //$currentUserPlugin = $this->plugin('currentUserPlugin');
76
        //$currentUser = $currentUserPlugin->getUser();
77
 
78
        $request = $this->getRequest();
79
        if($request->isGet()) {
80
 
81
 
82
 
83
            $this->layout()->setTemplate('layout/layout.phtml');
84
            $viewModel = new ViewModel();
85
            $viewModel->setTemplate('leaders-linked/profile/microlearning.phtml');
86
            $viewModel->setVariables([
87
                'activities' => [
88
                    'ACTIVITY_SIGNIN' =>  CompanyMicrolearningUserLog::ACTIVITY_SIGNIN,
89
                    'ACTIVITY_SIGNOUT' => CompanyMicrolearningUserLog::ACTIVITY_SIGNOUT,
90
                    'ACTIVITY_START_TOPIC' => CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
91
                    'ACTIVITY_START_CAPSULE' => CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
92
                    'ACTIVITY_VIEW_SLIDE' => CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE,
93
                    'ACTIVITY_TAKE_A_TEST' => CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
94
                    'ACTIVITY_RETAKE_A_TEST' => CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
95
                    'ACTIVITY_APPROVED_TEST' => CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
96
                    'ACTIVITY_COMPLETED_CAPSULE' => CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
97
                    'ACTIVITY_COMPLETED_TOPIC' => CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC
98
                ]
99
            ]);
100
            return $viewModel ;
101
 
102
 
103
        } else {
104
            return new JsonModel([
105
                'success' => false,
106
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
107
            ]);
108
        }
109
    }
110
 
111
 
112
    /**
113
     *
114
     * Generación del timeline de microaprendizaje para el usuario actual
115
     * solo con agregar ?page=XX
116
     *
117
     * Para las repuesta afirmativa
118
     * [
119
     *    'success' => true,
120
     *    'data' => [
121
     *      'total' => [
122
     *          'count' => cantidad de registros totales,
123
     *          'pages' => cantidad de páginas totales,
124
     *      ],
125
     *      'current' => [
126
     *          'items'    => [
127
     *              [
128
     *                  'activity' => actividad realizada,
129
     *                  'added_on' => fecha en la que fué realizada
130
     *              ]
131
     *           ] ,
132
     *          'page'     => página actual,
133
     *          'count'    => cantidad de registros de la página actual,
134
     *       ]
135
     *    ]
136
     *
137
     *  En caso contrario
138
     *  [
139
     *      'success' => false,
140
     *      'data' => mensaje de error
141
     *  ]
142
     *
143
     *
144
     * @return \Laminas\View\Model\JsonModel
145
     */
146
    public function timelineAction()
147
    {
148
 
149
        $request = $this->getRequest();
150
        if($request->isGet()) {
151
            $currentUserPlugin = $this->plugin('currentUserPlugin');
152
            $currentUser = $currentUserPlugin->getUser();
153
 
154
 
155
            $page = intval($this->params()->fromQuery('page'), 10);
156
 
157
            $companyMicrolearningUserLogMapper = CompanyMicrolearningUserLogMapper::getInstance($this->adapter);
158
            $paginator = $companyMicrolearningUserLogMapper->getAllMessagesPaginatorByUserId($currentUser->id, $page);
159
 
160
            $items = [];
161
            foreach($paginator as $record)
162
            {
163
                $dt = \DateTime::createFromFormat('Y-m-d H:i:s', $record->added_on);
164
 
165
                array_push($items, [
166
                    'activity' => $record->activity,
167
                    'added_on' => $dt->format('d/m/Y H:i a')
168
                ]);
169
            }
170
 
171
 
172
            return new JsonModel([
173
                    'success' => true,
174
                    'data' => [
175
                        'total' => [
176
                            'count' => $paginator->getTotalItemCount(),
177
                            'pages' => $paginator->getPages()->pageCount,
178
                        ],
179
                        'current' => [
180
                            'items'    => $items,
181
                            'page'     => $paginator->getCurrentPageNumber(),
182
                            'count'    => $paginator->getCurrentItemCount(),
183
                        ]
184
                    ]
185
            ]);
186
 
187
 
188
        } else {
189
            return new JsonModel([
190
                'success' => false,
191
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
192
            ]);
193
        }
194
    }
195
 
196
    /**
197
     * Valores para la generación de los gráficos de progreso
198
     * Para las repuesta afirmativa
199
     * [
200
     *  'success' => true,
201
     *      'data' => [
202
     *          'topicTotal' => cantidad total de tópicos,
203
     *          'topicStarted' => cantidad de tópicos iniciados,
204
     *          'topicIncompleted' => cantidad de tópicos incompletos,
205
     *          'topicCompleted' => cantidad de tópicos completos,
206
     *          'percentCompleted' => % de diapositivas completados ,
207
     *          'percentIncompleted' => % de diapositivas incompletos ,
208
     *          'percentWithoutReturning' => % de cápsulas sin retorno después de completada,
209
     *          'percentWithReturning' => % de cápsulas con retorno después de completada,
210
     *       ],
211
     * ]
212
     *
213
     *
214
     *  En caso contrario
215
     *  [
216
     *      'success' => false,
217
     *      'data' => mensaje de error
218
     *  ]
219
     *
220
     *
221
     * @return \Laminas\View\Model\JsonModel
222
     */
223
    public function progressAction()
224
    {
225
 
226
        $request = $this->getRequest();
227
        if($request->isGet()) {
228
            $currentUserPlugin = $this->plugin('currentUserPlugin');
229
            $currentUser = $currentUserPlugin->getUser();
230
 
231
            $topicIdsUsers = [];
232
            $capsuleIdsUser = [];
233
 
234
            $topicTotal = 0;
235
            $topicStarted = 0;
236
            $topicIncompleted = 0;
237
            $topicCompleted =  0;
238
            $totalSlides = 0;
239
            $totalSlidesCompleted = 0;
240
            //$totalSlideWithReturning = 0;
241
 
242
            $totalCapsules = 0;
243
            $totalCapsulesCompleted = 0;
244
            $totalCapsulesCompletedWithReturn = 0;
245
            $totalCapsulesCompletedWithoutReturn = 0;
246
 
247
            //$companyMicrolearningTopicMapper = CompanyMicrolearningTopicMapper::getInstance($this->adapter);
248
            $companyMicrolearningSlideMapper = CompanyMicrolearningSlideMapper::getInstance($this->adapter);
249
 
250
            $companyMicrolearningUserProgressMapper = CompanyMicrolearningUserProgressMapper::getInstance($this->adapter);
251
 
252
 
253
            $companyMicrolearningCapsuleUserMapper = CompanyMicrolearningCapsuleUserMapper::getInstance($this->adapter);
254
            $capsulesUser = $companyMicrolearningCapsuleUserMapper->fetchAllActiveByUserId($currentUser->id);
255
 
256
            foreach($capsulesUser as $capsuleUser)
257
            {
258
                $company_id = $capsuleUser->company_id;
259
                $topic_id   = $capsuleUser->topic_id;
260
                $capsule_id = $capsuleUser->capsule_id;
261
 
262
                if(!in_array($topic_id, $topicIdsUsers)) {
263
                    $topicTotal++;
264
                    array_push($topicIdsUsers, $topic_id);
265
 
266
                    $progress = $companyMicrolearningUserProgressMapper->fetchOneByUserIdAndTopicId($currentUser->id, $topic_id);
267
                    if($progress) {
268
                        $topicStarted++;
269
                        if(100 > $progress->progress) {
270
                            $topicIncompleted++;
271
                        } else {
272
                            $topicCompleted++;
273
                        }
274
 
275
                    }
276
                }
277
 
278
                if(!in_array($capsule_id, $capsuleIdsUser)) {
279
 
280
                    $totalSlides += $companyMicrolearningSlideMapper->fetchTotalCountByCompanyIdAndTopicIdAndCapsuleId($company_id, $topic_id, $capsule_id);
281
                    $totalSlidesCompleted += $companyMicrolearningUserProgressMapper->fetchCountAllSlideCompletedByUserIdAndCapsuleId($currentUser->id, $capsule_id);
282
 
283
                    array_push($capsuleIdsUser, $capsule_id);
284
 
285
                    $totalCapsules++;
286
                    $progress = $companyMicrolearningUserProgressMapper->fetchOneByUseridAndCapsuleId($currentUser->id, $capsule_id);
287
                    if($progress && $progress->completed) {
288
 
289
                        $totalCapsulesCompleted++;
290
                        if($progress->returning_after_completed) {
291
                            $totalCapsulesCompletedWithReturn++;
292
                        } else {
293
                            $totalCapsulesCompletedWithoutReturn++;
294
                        }
295
 
296
                    }
297
 
298
 
299
                }
300
 
301
 
302
            }
303
 
304
            $percentCompleted = 0;
305
            $percentIncompleted = 100;
306
 
307
            if( $totalSlides > 0) {
308
                $percentCompleted = ($totalSlidesCompleted  * 100) /  $totalSlides;
309
                $percentIncompleted = 100 - $percentCompleted;
310
            }
311
 
312
 
313
            $percentWithoutReturning  = 0;
314
            $percentWithReturning = 0;
315
 
316
            if($totalCapsulesCompleted > 0) {
317
                $percentWithReturning = ($totalCapsulesCompletedWithReturn  * 100) / $totalCapsulesCompleted;
318
                $percentWithoutReturning = ($totalCapsulesCompletedWithoutReturn  * 100) / $totalCapsulesCompleted;
319
            }
320
 
321
 
322
 
323
            return new JsonModel([
324
                'success' => true,
325
                'data' => [
326
                    'topicTotal' => $topicTotal,
327
                    'topicStarted' => $topicStarted,
328
                    'topicIncompleted' => $topicIncompleted,
329
                    'topicCompleted' => $topicCompleted,
330
                    'percentCompleted' => number_format($percentCompleted, 2, '.', ','),
331
                    'percentIncompleted' => number_format($percentIncompleted, 2, '.', ','),
332
                    'percentWithoutReturning' => number_format($percentWithoutReturning, 2, '.', ','),
333
                    'percentWithReturning' => number_format($percentWithReturning, 2, '.', ','),
334
                ],
335
            ]);
336
 
337
 
338
        } else {
339
            return new JsonModel([
340
                'success' => false,
341
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
342
            ]);
343
        }
344
    }
345
 
346
 
347
 
348
}