Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 16 | Ir a la última revisión | | 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
68
     * @return CompanyMicrolearningUserLog[]
69
     */
70
    public function fetchBatchLastByUserId($user_id, $max_records = 20)
71
    {
72
        $prototype = new CompanyMicrolearningUserLog();
73
 
74
        $select = $this->sql->select(self::_TABLE);
75
        $select->where->equalTo('user_id', $user_id);
76
        $select->order(['id desc']);
77
        $select->limit($max_records);
78
 
79
        return $this->executeFetchAllObject($select, $prototype);
80
    }
81
 
82
    /**
83
     *
84
     * @param int $company_id
85
     * @param int $user_id
86
     * @return string
87
     */
88
    public function fetchFirstDateByCompanyIdAndUserId($company_id, $user_id)
89
    {
90
        $select = $this->sql->select();
91
        $select->columns(['date' => new Expression('MIN(added_on)') ] );
92
        $select->from(self::_TABLE);
93
        $select->where->equalTo('company_id', $company_id);
94
        $select->where->equalTo('user_id', $user_id);
95
        $select->where->in('activity', [
96
            CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
97
            CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
98
            CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE,
99
            CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
100
            CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
101
            CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
102
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
103
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC,
104
        ]);
105
 
106
        $record = $this->executeFetchOneArray($select);
107
        return empty($record['date']) ? '' :   $record['date'];
108
    }
109
 
110
    /**
111
     *
112
     * @param int $company_id
113
     * @param int $user_id
114
     * @return string
115
     */
116
    public function fetchLastDateByCompanyIdAndUserId($company_id, $user_id)
117
    {
118
        $select = $this->sql->select();
119
        $select->columns(['date' => new Expression('MAX(added_on)') ] );
120
        $select->from(self::_TABLE);
121
        $select->where->equalTo('company_id', $company_id);
122
        $select->where->equalTo('user_id', $user_id);
123
        $select->where->in('activity', [
124
            CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
125
            CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
126
            CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE,
127
            CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
128
            CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
129
            CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
130
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
131
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC,
132
        ]);
133
 
134
        $record = $this->executeFetchOneArray($select);
135
        return empty($record['date']) ? '' :  $record['date'];
136
    }
137
 
138
    /**
139
     *
140
     * @param int $company_id
141
     * @param string $min
142
     * @param string $max
143
     * @return int[]
144
     */
145
    public function fetchAllUserIdsLastWeekByCompanyId($company_id, $min, $max)
146
    {
147
 
148
        $select = $this->sql->select();
149
        $select->columns(['user_id' => new Expression('DISTINCT(user_id)') ]);
150
        $select->from(self::_TABLE);
151
 
152
        $select->where->equalTo('company_id', $company_id);
153
        $select->where->in('activity', [
154
            CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
155
            CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
156
            CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE,
157
            CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
158
            CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
159
            CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
160
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
161
            CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC,
162
        ]);
163
        $select->where->between(new Expression('added_on'), $min, $max);
164
 
165
 
166
        $user_ids = [];
167
        $records = $this->executeFetchAllArray($select);
168
        foreach($records as $record)
169
        {
170
            array_push($user_ids, $record['user_id']);
171
        }
172
        return $user_ids;
173
 
174
    }
175
 
176
    /**
177
     *
178
     * @param CompanyMicrolearningUserLog $userLog
179
     * return true
180
     */
181
    public function insert($userLog)
182
    {
183
        $hydrator = new ObjectPropertyHydrator();
184
        $values = $hydrator->extract($userLog);
185
        $values = $this->removeEmpty($values);
186
 
187
        $insert = $this->sql->insert(self::_TABLE);
188
        $insert->values($values);
189
 
190
        //echo $insert->getSqlString($this->adapter->platform); exit;
191
 
192
        $result = $this->executeInsert($insert);
193
        if($result) {
194
            $userLog->id = $this->lastInsertId;
195
        }
196
        return $result;
197
    }
198
 
199
 
200
    /**
201
     *
202
     * @param int $user_id
203
     * @param int $topic_id
204
     * @return int
205
     */
206
    public function fetchCountTotalCountViewSlideForUserIdAndTopic($user_id, $topic_id)
207
    {
208
        $select = $this->sql->select(self::_TABLE);
209
        $select->columns(['total' => new Expression('COUNT(DISTINCT(slide_id))')]);
210
        $select->where->equalTo('user_id', $user_id);
211
        $select->where->equalTo('topic_id', $topic_id);
212
        $select->where->equalTo('activity', 'VIEW-SLIDE');
213
 
214
        $record = $this->executeFetchOneArray($select);
215
        return $record['total'];
216
    }
217
 
218
 
219
    /**
220
     *
221
     * @param int $user_id
222
     * @param int $topic_id
223
     * @param int $capsule_id
224
     * @return int
225
     */
226
    public function fetchCountTotalCountViewSlideForUserIdAndTopicAndCapsuleId($user_id, $topic_id, $capsule_id)
227
    {
228
        $select = $this->sql->select(self::_TABLE);
229
        $select->columns(['total' => new Expression('COUNT(DISTINCT(slide_id))')]);
230
        $select->where->equalTo('user_id', $user_id);
231
        $select->where->equalTo('topic_id', $topic_id);
232
        $select->where->equalTo('capsule_id', $capsule_id);
233
        $select->where->equalTo('activity', 'VIEW-SLIDE');
234
 
235
        $record = $this->executeFetchOneArray($select);
236
        return $record['total'];
237
    }
238
 
239
    /**
240
     *
241
     * @param int $user_id
242
     * @param int $page
243
     * @param int $records_per_page
244
     * @return Paginator
245
     */
246
    public function getAllMessagesPaginatorByUserId($user_id, $page = 1, $records_per_page = 10)
247
    {
248
        $select = $this->sql->select(self::_TABLE);
249
        $select->where->equalTo('user_id', $user_id);
250
        $select->order('id DESC');
251
 
252
 
253
        //echo $select->getSqlString($this->adapter->getPlatform()); exit;
254
 
255
        $prototype  = new CompanyMicrolearningUserLog();
256
        $hydrator   = new ObjectPropertyHydrator();
257
        $resultset  = new HydratingResultSet($hydrator, $prototype);
258
 
259
        $adapter    = new DbSelect($select, $this->sql, $resultset);
260
        $paginator  = new Paginator($adapter);
261
        $paginator->setCurrentPageNumber($page);
262
        $paginator->setItemCountPerPage($records_per_page);
263
 
264
        return $paginator;
265
    }
266
 
267
 
268
    /**
269
     *
270
     * @param int $user_id
271
     * @param int $company_id
272
     * @param int $page
273
     * @param int $records_per_page
274
     * @return Paginator
275
     */
276
    public function getAllMessagesPaginatorByUserIdAndCompanyId($user_id, $company_id, $page = 1, $records_per_page = 10)
277
    {
278
        $select = $this->sql->select(self::_TABLE);
279
        $select->where->nest()
280
            ->equalTo('user_id', $user_id)
281
            ->in('activity', [
282
                CompanyMicrolearningUserLog::ACTIVITY_SIGNIN,
283
                CompanyMicrolearningUserLog::ACTIVITY_SIGNOUT,
284
            ])
285
        ->unnest()->or->nest()
286
            ->equalTo('user_id', $user_id)
287
            ->equalTo('company_id', $company_id)
288
            ->in('activity', [
289
                CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST,
290
                CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE,
291
                CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC,
292
                CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST,
293
                CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE,
294
                CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC,
295
                CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST,
296
                CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE
297
            ])
298
        ->unnest();
299
        $select->order('id DESC');
300
 
301
 
302
        //echo $select->getSqlString($this->adapter->getPlatform()); exit;
303
 
304
        $prototype  = new CompanyMicrolearningUserLog();
305
        $hydrator   = new ObjectPropertyHydrator();
306
        $resultset  = new HydratingResultSet($hydrator, $prototype);
307
 
308
        $adapter    = new DbSelect($select, $this->sql, $resultset);
309
        $paginator  = new Paginator($adapter);
310
        $paginator->setCurrentPageNumber($page);
311
        $paginator->setItemCountPerPage($records_per_page);
312
 
313
        return $paginator;
314
    }
315
 
316
 
317
}