UserCollect.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. namespace app\common\model;
  3. use library\tools\Data;
  4. use think\Model;
  5. // 收藏
  6. class UserCollect extends Model
  7. {
  8. //protected $resultSetType = 'collection';// 设置返回类型
  9. static $type_desc = [
  10. 1=>'平台视频', 2=>'资料', 3=>'图文', 4=>'新闻', 5=>'论坛', 6=>'商品', 7=>'活动', 8=>'招聘',9=>'供应商商品',10=>'需求'
  11. ];
  12. public static function checkCollectByType($user_id,$type,$id,$children_id = 0)
  13. {
  14. $where = [];
  15. $where['user_id'] = $user_id;
  16. $where['coll_type'] = $type;
  17. $where['coll_id'] = $id;
  18. if($children_id) $where['children_id'] = $children_id;
  19. return self::where($where)->value('id') ? 1:0;
  20. }
  21. // 收藏数量
  22. public static function getCollectNum($type,$id,$children_id = 0)
  23. {
  24. $where = [];
  25. $where['coll_type'] = $type;
  26. $where['coll_id'] = $id;
  27. if($children_id) $where['children_id'] = $children_id;
  28. return self::where($where)->count() ;
  29. }
  30. /**
  31. * @param $user_id
  32. * @param $type 1平台视频,2资料,3图文4新闻5论坛6商品7活动
  33. * @param $id
  34. * @param int $children_id
  35. * @return int
  36. * @throws \think\Exception
  37. * @throws \think\exception\PDOException
  38. */
  39. public static function plateCollect($user_id,$type,$id,$children_id = 0)
  40. {
  41. $check_collect = self::checkCollectByType($user_id,$type,$id,$children_id);
  42. $ret_val = 0;
  43. if($check_collect) {
  44. self::where(['user_id'=>$user_id,'coll_type'=>$type,'coll_id'=>$id,'children_id'=>$children_id])->delete();
  45. }else{
  46. Data::save('UserCollect', [
  47. 'user_id'=>$user_id,
  48. 'coll_type'=>$type,
  49. 'coll_id'=>$id,
  50. 'children_id'=>$children_id,
  51. 'create_int'=>time()],'user_id',['user_id'=>$user_id,'coll_type'=>$type, 'coll_id'=>$id,'children_id'=>$children_id]);
  52. $ret_val = 1;
  53. }
  54. return $ret_val;
  55. }
  56. public function videoItem()
  57. {
  58. return $this->belongsTo('VideoUrl','children_id')->field('id,video_id,cover,url,title,create_at');
  59. }
  60. public function datumItem()
  61. {
  62. return $this->belongsTo('DatumUrl','children_id')->field('id,datum_id,url,title,create_at');
  63. }
  64. public function articleItem()
  65. {
  66. return $this->belongsTo('DatumUrl','children_id')->field('id,article_id,cover,images,content,create_at');
  67. }
  68. }