PlatformLike.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace app\common\model;
  3. use library\tools\Data;
  4. use think\Model;
  5. // 平台点赞
  6. class PlatformLike extends Model
  7. {
  8. // 点赞类型
  9. static $type_desc = [
  10. 1=>'新闻点赞',
  11. 2=>'新闻评论点赞',
  12. 3=>'论坛回答',
  13. 4=>'活动',
  14. 5=>'招聘',
  15. 6=>'需求评论',
  16. 7=>'供应商商品',
  17. 8=>'论坛评论',
  18. 9=>'需求',
  19. ];
  20. /**
  21. * 验证是否点赞
  22. * @param $user_id
  23. * @param $id
  24. * @param $type
  25. * @return int
  26. */
  27. public static function checkTags($user_id,$id,$type){
  28. return self::where(['user_id'=>$user_id,'like_id'=>$id,'type'=>$type])->value('id') ? 1:0;
  29. }
  30. /**
  31. * @param $user_id
  32. * @param $id
  33. * @param $type
  34. */
  35. public static function userTags($user_id,$id,$type)
  36. {
  37. $ret_val = 0;
  38. $check_tags = self::checkTags($user_id,$id,$type);
  39. if($check_tags) {
  40. static::where(['user_id'=>$user_id,'like_id'=>$id,'type'=>$type])->delete();
  41. }else{
  42. Data::save('PlatformLike',
  43. ['user_id'=>$user_id,'like_id'=>$id,'type'=>$type],'user_id',
  44. ['user_id'=>$user_id,'like_id'=>$id,'type'=>$type]);
  45. $ret_val = 1;
  46. }
  47. return $ret_val;
  48. }
  49. // 点赞数量
  50. public static function getPraiseNum($id,$type)
  51. {
  52. return self::where(['like_id'=>$id,'type'=>$type])->count() ;
  53. }
  54. }