CourseStudyTimeModel.class.php
20 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
<?php
/**
* Created by PhpStorm.
* User: liyifei2012it
* Date: 17/10/12
* Time: 18:06
*/
namespace Common\Model;
class CourseStudyTimeModel extends \Com\Model
{
// 构造方法
public function __construct()
{
parent::__construct('StudyTime', 'oa_course_');
}
/**
* 获取用户每个课程中最近学习的时间(产品需求变更:原来是首次学习时间)
* @author liyifei
*
* @param string $uid
* @param array $articleIds
*
* @return array
*/
public function listFirstStudyTime($uid, $articleIds)
{
$conds = [
'uid' => $uid,
'article_id' => $articleIds,
];
$wheres = [];
$params = [];
$this->_parse_where($wheres, $params, $conds);
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT `article_id`, MAX(`created`) `created` FROM __TABLE__ WHERE {$wheres_sql} GROUP BY `article_id`";
return $this->_m->fetch_array($sql, $params);
}
/**
* 获取用户课程学习次数
* @author liyifei
*
* @param string $uid 人员UID
* @param array $article_ids 课程ID数组
*
* @return array
*/
public function listCourseStudyTotal($uid, $article_ids)
{
$conds = [
'uid' => $uid,
'article_id' => $article_ids,
];
$wheres = [];
$params = [];
$this->_parse_where($wheres, $params, $conds);
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT `article_id`, count(*) total FROM __TABLE__ WHERE {$wheres_sql} GROUP BY `article_id`";
return $this->_m->fetch_array($sql, $params);
}
/**
* 批量获取人员学习时长
* @author liyifei
*
* @param array $uids 人员UID数组
* @param array $articles 常规课程id集合
*
* @return array
*/
public function listStudyTimeByUids($uids, $articles = [])
{
$conds = [
'uid' => $uids,
// 课程学习时长,需要包含被删除课程的时长
//'article_id' => $articles
];
$wheres = [];
$params = [];
$this->_parse_where($wheres, $params, $conds);
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT `uid`, sum(`study_time`) `study_time` FROM __TABLE__ WHERE {$wheres_sql} GROUP BY `uid`";
return $this->_m->fetch_array($sql, $params);
}
/**
* 根据UID获取各课程学习时长
* @author liyifei
*
* @param string $uid 人员UID
* @param array $articleIds 课程ID数组
*
* @return array
*/
public function listStudyTime($uid, $articleIds)
{
$conds = [
'uid' => $uid,
'article_id' => $articleIds,
];
$wheres = [];
$params = [];
$this->_parse_where($wheres, $params, $conds);
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT `article_id`, sum(`study_time`) `study_time` FROM __TABLE__ WHERE {$wheres_sql} GROUP BY `article_id`";
return $this->_m->fetch_array($sql, $params);
}
/**
* 获取课程已参与学习人数排行
* @author zhonglei
*
* @param array $conds 条件
* @param int $limit 数据总数,0为取所有数据
*
* @return array
*/
public function listCourseStudyRank($conds, $limit = 0)
{
$wheres = [];
$params = [];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT *, COUNT(DISTINCT(`uid`)) `total` FROM __TABLE__ WHERE {$wheres_sql} GROUP BY `article_id` ORDER BY `total` DESC";
if ($limit > 0) {
$sql .= " LIMIT {$limit}";
}
return $this->_m->fetch_array($sql, $params);
}
/**
* 获取用户学习时长排行
* @author zhonglei
*
* @param array $conds 条件
* @param int $limit 数据总数,0为取所有数据
*
* @return array
*/
public function listUserRank($conds, $limit = 0)
{
$wheres = [];
$params = [];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT *, SUM(`study_time`) `total` FROM __TABLE__ WHERE {$wheres_sql} GROUP BY `uid` ORDER BY `total` DESC";
if ($limit > 0) {
$sql .= " LIMIT {$limit}";
}
return $this->_m->fetch_array($sql, $params);
}
/**
* 参与学习的总人数(人员去重,无论学习是否完成)
* @author liyifei
*
* @param int $starttime 开始时间
* @param int $endtime 结束时间
* @param array $articles 常规课程id集合
*
* @return array
*/
public function getStudyUserTotal($starttime, $endtime, $articles = [])
{
$wheres = [];
$params = [];
$conds = [
'created >= ?' => $starttime,
'created <= ?' => $endtime,
'article_id' => $articles
];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT COUNT(DISTINCT `uid`) `study_user_total` FROM __TABLE__ WHERE {$wheres_sql}";
return $this->_m->result($sql, $params);
}
/**
* 获取累计学习时长(单位:秒)
* @author zhonglei
*
* @param array $conds 条件
*
* @return array
*/
public function getTotalStudyTime($conds)
{
$wheres = [];
$params = [];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT SUM(`study_time`) `total` FROM __TABLE__ WHERE {$wheres_sql}";
return $this->_m->result($sql, $params);
}
/**
* 学习课程总数(所有用户累计学习的课程数;每个员工学习课程去重后分别计数,总和)
* @author liyifei
*
* @param int $starttime 开始时间
* @param int $endtime 结束时间
* @param array $articles 常规课程id集合
*
* @return array
*/
public function getUserStudyCourseTotal($starttime, $endtime, $articles = [])
{
$wheres = [];
$params = [];
$conds = [
'created >= ?' => $starttime,
'created <= ?' => $endtime,
'article_id' => $articles
];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT SUM(`course_total`) `total` FROM (SELECT `uid`, COUNT(DISTINCT `article_id`) `course_total` FROM __TABLE__ WHERE {$wheres_sql} GROUP BY `uid`) AS `tab_result`";
return $this->_m->result($sql, $params);
}
/**
* 学习素材总数(所有用户累计学习的素材数;每个员工学习素材去重后分别计数,总和)
* @author liyifei
*
* @param int $starttime 开始时间
* @param int $endtime 结束时间
* @param array $articles 常规课程id集合
*
* @return array
*/
public function getUserStudySourceTotal($starttime, $endtime, $articles = [])
{
$wheres = [];
$params = [];
$conds = [
'created >= ?' => $starttime,
'created <= ?' => $endtime,
'source_id > ?' => 0,
'article_id' => $articles
];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT SUM(`source_total`) `total` FROM (SELECT `uid`, COUNT(DISTINCT `source_id`) `source_total` FROM __TABLE__ WHERE {$wheres_sql} GROUP BY `uid`) AS `tab_result`";
return $this->_m->result($sql, $params);
}
/**
* 多用户可学习的课程列表
* @author liyifei
*
* @param array $conds 条件
* @param array $pages 分页
*
* @return array
*/
public function listUserAllowStudy($conds, $pages = [])
{
$wheres = [];
$params = [];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain` = ?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status` < ?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT article_id, uid, MAX(`created`) as `latest_study_time`
FROM __TABLE__
WHERE {$wheres_sql}
GROUP BY uid, article_id
ORDER BY `created` DESC";
// 分页
if (is_array($pages) && !empty($pages)) {
$sql .= " LIMIT {$pages[0]}, {$pages[1]}";
}
return $this->_m->fetch_array($sql, $params);
}
/**
* 多用户可学习的课程总数
* @author liyifei
*
* @param array $conds 筛选条件
*
* @return mixed
*/
public function totalUserAllowStudy($conds)
{
$wheres = [];
$params = [];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain` = ?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status` < ?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT COUNT(*) FROM (SELECT article_id, uid FROM __TABLE__
WHERE {$wheres_sql}
GROUP BY uid, article_id) AS res_tab";
return $this->_m->result($sql, $params);
}
/**
* 多用户未完成的课程列表
* @author liyifei
*
* @param array $conds 筛选条件
* + array uids 人员UID数组
* + array article_ids 课程ID数组
* @param array $pages 分页
*
* @return array
*/
public function listUserUnCompleteCourse($conds, $pages = [])
{
$domain = QY_DOMAIN;
$status = $this->get_st_delete();
// 人员条件
$where_uids = '';
if (is_array($conds['uids']) && !empty($conds['uids'])) {
$uids = implode("','", $conds['uids']);
$where_uids = " AND st.`uid` IN ('{$uids}') ";
}
// 课程条件
$where_aids = '';
if (is_array($conds['article_ids']) && !empty($conds['article_ids'])) {
$article_ids = implode(",", $conds['article_ids']);
$where_aids = " AND st.`article_id` IN ({$article_ids}) ";
}
$sql = "SELECT st.`uid`, st.`article_id`, MAX(st.`created`) AS `latest_study_time`, cc.`created` AS `complete_time`
FROM __TABLE__ AS st LEFT JOIN `oa_course_complete` AS cc ON st.`article_id`=cc.`article_id` AND st.`uid`=cc.`uid`
WHERE st.`domain` = '{$domain}' AND st.`status` < {$status}
AND cc.`created` IS NULL
{$where_uids}
{$where_aids}
GROUP BY st.`uid`, st.`article_id` ORDER BY `latest_study_time` DESC";
// 分页
if (is_array($pages) && !empty($pages)) {
$sql .= " LIMIT {$pages[0]}, {$pages[1]}";
}
return $this->_m->fetch_array($sql);
}
/**
* 多用户未完成的课程总数
*
* @param array $conds 筛选条件
* + array uids 人员UID数组
* + array article_ids 课程ID数组
*
* @return mixed
*/
public function countUserUnCompleteCourse($conds)
{
// 人员条件
$where_uids = '';
if (is_array($conds['uids']) && !empty($conds['uids'])) {
$uids = implode("','", $conds['uids']);
$where_uids = " AND st.`uid` IN ('{$uids}') ";
}
// 课程条件
$where_aids = '';
if (is_array($conds['article_ids']) && !empty($conds['article_ids'])) {
$article_ids = implode(",", $conds['article_ids']);
$where_aids = " AND st.`article_id` IN ({$article_ids}) ";
}
$domain = QY_DOMAIN;
$status = $this->get_st_delete();
$sql = "SELECT COUNT(*) FROM (SELECT st.`uid`, st.`article_id`, MAX(st.`created`) AS `latest_study_time`
FROM __TABLE__ AS st LEFT JOIN `oa_course_complete` AS cc ON st.`article_id`=cc.`article_id` AND st.`uid`=cc.`uid`
WHERE st.`domain` = '{$domain}' AND st.`status` < {$status}
AND cc.`created` IS NULL
{$where_uids}
{$where_aids}
GROUP BY st.`uid`, st.`article_id`) AS res_tab";
return $this->_m->result($sql);
}
/**
* 根据人员ID、课程ID数组,获取该人员最近学习情况
*
* @param array $datas 人员ID、课程ID数组
* + string $datas[]['uid']
* + string $datas[]['article_id']
*
* @return array
*/
public function listUserStudy($datas)
{
$domain = QY_DOMAIN;
$status = $this->get_st_delete();
$where = "`{$this->prefield}domain`='{$domain}' AND `{$this->prefield}status`<{$status} AND";
foreach ($datas as $data) {
$where .= " (`article_id` = {$data['article_id']} AND `uid` = '{$data['uid']}') OR";
}
$where = substr($where, 0, -3);
$sql = "SELECT `article_id`, `uid`, MAX(`created`) AS `latest_study_time` FROM __TABLE__ WHERE {$where}";
return $this->_m->fetch_array($sql);
}
/**
* 时间区间内,学习人数(按人员去重)、学习次数(按人员不去重)
* @author liyifei
*
* @param int $starttime 开始时间
* @param int $endtime 结束时间
* @param int $is_unique 人员是否去重(1=否;2=是)
* @param array $articles 常规课程id集合
*
* @return array
*/
public function listStudyUserTotal($starttime, $endtime, $is_unique, $articles = [])
{
$wheres = [];
$params = [];
$conds = [
'created >= ?' => $starttime,
'created < ?' => $endtime,
'article_id' => $articles,
];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
// 待搜索数据
$distinct = $is_unique == 2 ? 'DISTINCT' : '';
$sql = "SELECT FROM_UNIXTIME(`created`/1000, '%Y-%m-%d %H:00:00') AS `hours`, COUNT({$distinct} `uid`) as `total`
FROM `oa_course_study_time`
WHERE {$wheres_sql}
GROUP BY `hours`";
return $this->_m->fetch_array($sql, $params);
}
/**
* 时间区间内,人员学习次数(1小时内访问2次同个课程时,按1次计算;访问2个课程时,则按2次计算)
* @author liyifei
*
* @param int $starttime 开始时间
* @param int $endtime 结束时间
* @param array $articles 常规课程id集合
*
* @return array
*/
public function listStudyUserCount($starttime, $endtime, $articles = [])
{
$wheres = [];
$params = [];
$conds = [
'created >= ?' => $starttime,
'created < ?' => $endtime,
'article_id' => $articles,
];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT `hours`, SUM(`course_total`) `total` FROM (
SELECT FROM_UNIXTIME(`created`/1000, '%Y-%m-%d %H:00:00') AS `hours`, COUNT(DISTINCT `article_id`) as `course_total`, `uid`
FROM `oa_course_study_time`
WHERE {$wheres_sql}
GROUP BY `hours`, `uid`) AS res_tab GROUP BY `hours`";
return $this->_m->fetch_array($sql, $params);
}
/**
* 时间区间内,每日学习时长
* @author liyifei
*
* @param int $starttime 开始时间
* @param int $endtime 结束时间
* @param array $articles 常规课程id集合
*
* @return array
*/
public function listStudyTimeTotalByDays($starttime, $endtime, $articles = [])
{
$wheres = [];
$params = [];
$conds = [
'created >= ?' => $starttime,
'created <= ?' => $endtime,
'article_id' => $articles,
];
if (is_array($conds) && !empty($conds)) {
$this->_parse_where($wheres, $params, $conds);
}
// 企业标记
$wheres[] = "`{$this->prefield}domain`=?";
$params[] = QY_DOMAIN;
// 状态条件
$wheres[] = "`{$this->prefield}status`<?";
$params[] = $this->get_st_delete();
$wheres_sql = implode(' AND ', $wheres);
$sql = "SELECT FROM_UNIXTIME(`created`/1000, '%Y-%m-%d') AS `days`, SUM(`study_time`) `total`
FROM `oa_course_study_time`
WHERE {$wheres_sql}
GROUP BY `days`";
return $this->_m->fetch_array($sql, $params);
}
}