Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 42 | 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
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Mapper;
5
 
6
use LeadersLinked\Mapper\Common\MapperCommon;
7
use Laminas\Db\Adapter\AdapterInterface;
8
use LeadersLinked\Model\CompanyMicrolearningUserLog;
9
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
10
use Laminas\Db\Sql\Expression;
11
use Laminas\Db\ResultSet\HydratingResultSet;
12
use Laminas\Paginator\Adapter\DbSelect;
13
use Laminas\Paginator\Paginator;
14
 
15
 
16
class CompanyMicrolearningUserLogMapper extends MapperCommon
17
{
18
    const _TABLE = 'tbl_company_microlearning_user_log';
19
 
20
    /**
21
     *
22
     * @var CompanyMicrolearningUserLogMapper
23
     */
24
    private static $_instance;
25
 
26
    /**
27
     *
28
     * @param AdapterInterface $adapter
29
     */
30
    private function __construct($adapter)
31
    {
32
        parent::__construct($adapter);
33
    }
34
 
35
    /**
36
     *
37
     * @param AdapterInterface $adapter
38
     * @return CompanyMicrolearningUserLogMapper
39
     */
40
    public static function getInstance($adapter)
41
    {
42
        if(self::$_instance == null) {
43
            self::$_instance = new CompanyMicrolearningUserLogMapper($adapter);
44
        }
45
        return self::$_instance;
46
    }
47
 
48
    /**
49
     *
50
     * @param int $user_id
51
     * @return CompanyMicrolearningUserLog[]
52
     */
53
    public function fetchLast20ByUserId($user_id)
54
    {
55
        $prototype = new CompanyMicrolearningUserLog();
56
 
57
        $select = $this->sql->select(self::_TABLE);
58
        $select->where->equalTo('user_id', $user_id);
59
        $select->order(['id desc']);
60
        $select->limit(20);
61
 
62
        return $this->executeFetchAllObject($select, $prototype);
63
    }
64
 
65
    /**
66
     *
67
     * @param int $user_id
16 efrain 68
     * @return CompanyMicrolearningUserLog
69
     */
70
    public function fetchLastBy($user_id)
71
    {
72
        $prototype = new CompanyMicrolearningUserLog();
73
 
74
        $select = $this->sql->select(self::_TABLE);
75
        $select->where->equalTo('user_id', $user_id);
42 efrain 76
        $select->order(['added_on desc']);
16 efrain 77
        $select->limit(1);
78
 
79
        return $this->executeFetchOneObject($select, $prototype);
80
    }
81
 
82
    /**
83
     *
84
     * @param int $user_id
1 www 85
     * @return CompanyMicrolearningUserLog[]
86
     */
87
    public function fetchBatchLastByUserId($user_id, $max_records = 20)
88
    {
89
        $prototype = new CompanyMicrolearningUserLog();
90
 
91
        $select = $this->sql->select(self::_TABLE);
92
        $select->where->equalTo('user_id', $user_id);
93
        $select->order(['id desc']);
94
        $select->limit($max_records);
95
 
96
        return $this->executeFetchAllObject($select, $prototype);
97
    }
98
 
99
    /**
100
     *
101
     * @param int $company_id
102
     * @param int $user_id
103
     * @return string
104
     */
105
    public function fetchFirstDateByCompanyIdAndUserId($company_id, $user_id)
106
    {
107
        $select = $this->sql->select();
108
        $select->columns(['date' => new Expression('MIN(added_on)') ] );
109
        $select->from(self::_TABLE);
110
        $select->where->equalTo('company_id', $company_id);
111
        $select->where->equalTo('user_id', $user_id);
112
        $select->where->in('activity', [
113
            CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
114
            CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
115
            CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE,
116
            CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
117
            CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
118
            CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
119
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
120
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC,
121
        ]);
122
 
123
        $record = $this->executeFetchOneArray($select);
124
        return empty($record['date']) ? '' :   $record['date'];
125
    }
126
 
127
    /**
128
     *
129
     * @param int $company_id
130
     * @param int $user_id
131
     * @return string
132
     */
133
    public function fetchLastDateByCompanyIdAndUserId($company_id, $user_id)
134
    {
135
        $select = $this->sql->select();
136
        $select->columns(['date' => new Expression('MAX(added_on)') ] );
137
        $select->from(self::_TABLE);
138
        $select->where->equalTo('company_id', $company_id);
139
        $select->where->equalTo('user_id', $user_id);
140
        $select->where->in('activity', [
141
            CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
142
            CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
143
            CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE,
144
            CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
145
            CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
146
            CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
147
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
148
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC,
149
        ]);
150
 
151
        $record = $this->executeFetchOneArray($select);
152
        return empty($record['date']) ? '' :  $record['date'];
153
    }
154
 
155
    /**
156
     *
157
     * @param int $company_id
158
     * @param string $min
159
     * @param string $max
160
     * @return int[]
161
     */
162
    public function fetchAllUserIdsLastWeekByCompanyId($company_id, $min, $max)
163
    {
164
 
165
        $select = $this->sql->select();
166
        $select->columns(['user_id' => new Expression('DISTINCT(user_id)') ]);
167
        $select->from(self::_TABLE);
168
 
169
        $select->where->equalTo('company_id', $company_id);
170
        $select->where->in('activity', [
171
            CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
172
            CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
173
            CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE,
174
            CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
175
            CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
176
            CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
177
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
178
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC,
179
        ]);
180
        $select->where->between(new Expression('added_on'), $min, $max);
181
 
182
 
183
        $user_ids = [];
184
        $records = $this->executeFetchAllArray($select);
185
        foreach($records as $record)
186
        {
187
            array_push($user_ids, $record['user_id']);
188
        }
189
        return $user_ids;
190
 
191
    }
192
 
193
    /**
194
     *
195
     * @param CompanyMicrolearningUserLog $userLog
196
     * return true
197
     */
198
    public function insert($userLog)
199
    {
200
        $hydrator = new ObjectPropertyHydrator();
201
        $values = $hydrator->extract($userLog);
202
        $values = $this->removeEmpty($values);
203
 
43 efrain 204
        $values['added_on'] = $userLog->added_on;
205
 
1 www 206
        $insert = $this->sql->insert(self::_TABLE);
207
        $insert->values($values);
208
 
209
        //echo $insert->getSqlString($this->adapter->platform); exit;
210
 
211
        $result = $this->executeInsert($insert);
212
        if($result) {
213
            $userLog->id = $this->lastInsertId;
214
        }
215
        return $result;
216
    }
217
 
218
 
219
    /**
220
     *
221
     * @param int $user_id
222
     * @param int $topic_id
223
     * @return int
224
     */
225
    public function fetchCountTotalCountViewSlideForUserIdAndTopic($user_id, $topic_id)
226
    {
227
        $select = $this->sql->select(self::_TABLE);
228
        $select->columns(['total' => new Expression('COUNT(DISTINCT(slide_id))')]);
229
        $select->where->equalTo('user_id', $user_id);
230
        $select->where->equalTo('topic_id', $topic_id);
231
        $select->where->equalTo('activity', 'VIEW-SLIDE');
232
 
233
        $record = $this->executeFetchOneArray($select);
234
        return $record['total'];
235
    }
236
 
237
 
238
    /**
239
     *
240
     * @param int $user_id
241
     * @param int $topic_id
242
     * @param int $capsule_id
243
     * @return int
244
     */
245
    public function fetchCountTotalCountViewSlideForUserIdAndTopicAndCapsuleId($user_id, $topic_id, $capsule_id)
246
    {
247
        $select = $this->sql->select(self::_TABLE);
248
        $select->columns(['total' => new Expression('COUNT(DISTINCT(slide_id))')]);
249
        $select->where->equalTo('user_id', $user_id);
250
        $select->where->equalTo('topic_id', $topic_id);
251
        $select->where->equalTo('capsule_id', $capsule_id);
252
        $select->where->equalTo('activity', 'VIEW-SLIDE');
253
 
254
        $record = $this->executeFetchOneArray($select);
255
        return $record['total'];
256
    }
257
 
258
    /**
259
     *
260
     * @param int $user_id
261
     * @param int $page
262
     * @param int $records_per_page
263
     * @return Paginator
264
     */
265
    public function getAllMessagesPaginatorByUserId($user_id, $page = 1, $records_per_page = 10)
266
    {
267
        $select = $this->sql->select(self::_TABLE);
268
        $select->where->equalTo('user_id', $user_id);
269
        $select->order('id DESC');
270
 
271
 
272
        //echo $select->getSqlString($this->adapter->getPlatform()); exit;
273
 
274
        $prototype  = new CompanyMicrolearningUserLog();
275
        $hydrator   = new ObjectPropertyHydrator();
276
        $resultset  = new HydratingResultSet($hydrator, $prototype);
277
 
278
        $adapter    = new DbSelect($select, $this->sql, $resultset);
279
        $paginator  = new Paginator($adapter);
280
        $paginator->setCurrentPageNumber($page);
281
        $paginator->setItemCountPerPage($records_per_page);
282
 
283
        return $paginator;
284
    }
285
 
286
 
287
    /**
288
     *
289
     * @param int $user_id
290
     * @param int $company_id
291
     * @param int $page
292
     * @param int $records_per_page
293
     * @return Paginator
294
     */
295
    public function getAllMessagesPaginatorByUserIdAndCompanyId($user_id, $company_id, $page = 1, $records_per_page = 10)
296
    {
297
        $select = $this->sql->select(self::_TABLE);
298
        $select->where->nest()
299
            ->equalTo('user_id', $user_id)
300
            ->in('activity', [
301
                CompanyMicrolearningUserLog::ACTIVITY_SIGNIN,
302
                CompanyMicrolearningUserLog::ACTIVITY_SIGNOUT,
303
            ])
304
        ->unnest()->or->nest()
305
            ->equalTo('user_id', $user_id)
306
            ->equalTo('company_id', $company_id)
307
            ->in('activity', [
308
                CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
309
                CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
310
                CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC,
311
                CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
312
                CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
313
                CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
314
                CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
315
                CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE
316
            ])
317
        ->unnest();
318
        $select->order('id DESC');
319
 
320
 
321
        //echo $select->getSqlString($this->adapter->getPlatform()); exit;
322
 
323
        $prototype  = new CompanyMicrolearningUserLog();
324
        $hydrator   = new ObjectPropertyHydrator();
325
        $resultset  = new HydratingResultSet($hydrator, $prototype);
326
 
327
        $adapter    = new DbSelect($select, $this->sql, $resultset);
328
        $paginator  = new Paginator($adapter);
329
        $paginator->setCurrentPageNumber($page);
330
        $paginator->setItemCountPerPage($records_per_page);
331
 
332
        return $paginator;
333
    }
334
 
335
 
336
}