139 lines
4.1 KiB
PHP
139 lines
4.1 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
declare (strict_types=1);
|
||
|
||
namespace app\services\community;
|
||
|
||
use app\services\BaseServices;
|
||
use crmeb\services\CacheService;
|
||
|
||
|
||
class CommunityCacheServices extends BaseServices
|
||
{
|
||
//帖子点赞
|
||
const COMMUNITY_LIKE = 'community_like';
|
||
|
||
//评论点赞
|
||
const COMMUNITY_COMMENT_LIKE = 'community_comment_like';
|
||
|
||
//浏览
|
||
const COMMUNITY_BROWSE = 'community_browse';
|
||
|
||
//是否关注
|
||
const COMMUNITY_INTEREST = 'community_interest';
|
||
|
||
//最新一条id
|
||
const COMMUNITY_NEWEST = 'community_newest';
|
||
|
||
//话题总数
|
||
const COMMUNITY_TOPIC_COUNT = 'community_topic_count';
|
||
/**
|
||
* 点赞操作
|
||
*
|
||
* @param int $id 被点赞对象的ID
|
||
* @param int $uid 执行点赞操作的用户ID
|
||
* @param string $type 点赞类型, 默认为社区点赞
|
||
*
|
||
* @return mixed 返回点赞操作的结果,通常是受影响的元素数量
|
||
* User: liusl
|
||
* DateTime: 2024/8/9 17:07
|
||
*/
|
||
public function setLike(int $id, int $uid, int $status = 1, string $type = self::COMMUNITY_LIKE)
|
||
{
|
||
$key = $type . '_' . $id;
|
||
$status == 1 ? CacheService::redisHandler()->sAdd($key, $uid) : CacheService::redisHandler()->sRem($key, $uid);
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* 是否点赞
|
||
* @param int $id
|
||
* @param int $uid
|
||
* @param string $type
|
||
* @return mixed
|
||
* User: liusl
|
||
* DateTime: 2024/8/9 17:07
|
||
*/
|
||
public function checkUserLike(int $id, int $uid, string $type = self::COMMUNITY_LIKE)
|
||
{
|
||
$key = $type . '_' . $id;
|
||
|
||
return CacheService::redisHandler()->sIsMember($key, $uid) ? 1 : 0;
|
||
}
|
||
|
||
/**
|
||
* 删除
|
||
* @param int $id
|
||
* @param int $uid
|
||
* @param string $type
|
||
* @return mixed
|
||
* User: liusl
|
||
* DateTime: 2024/8/28 16:35
|
||
*/
|
||
public function deleteKey(int $id, string $type = self::COMMUNITY_LIKE)
|
||
{
|
||
$key = $type . '_' . $id;
|
||
return CacheService::redisHandler()->del($key);
|
||
}
|
||
|
||
/**
|
||
* 多个帖子是否点赞
|
||
* @param array $ids
|
||
* @param int $uid
|
||
* @param string $type
|
||
* @return array
|
||
* User: liusl
|
||
* DateTime: 2024/8/9 17:19
|
||
*/
|
||
public function checkUserLikeMultiple(array $ids, int $uid, string $type = self::COMMUNITY_LIKE)
|
||
{
|
||
$userLikes = [];
|
||
foreach ($ids as $id) {
|
||
$userLikes[$id] = $this->checkUserLike($id, $uid, $type);
|
||
}
|
||
return $userLikes;
|
||
}
|
||
|
||
/**
|
||
* 存用户最新一条帖子
|
||
* @param int $uid
|
||
* @param int $id
|
||
* @return bool
|
||
* User: liusl
|
||
* DateTime: 2024/9/12 19:42
|
||
*/
|
||
public function setCommunityNewest(int $uid, int $id)
|
||
{
|
||
$key = self::COMMUNITY_NEWEST . $uid;
|
||
/** @var CacheService $cacheServices */
|
||
$cacheServices = app()->make(CacheService::class);
|
||
return $cacheServices->set($key, $id,0);
|
||
}
|
||
|
||
/**
|
||
* 检查用户是否已读作者最新一条帖子
|
||
* @param int $uid
|
||
* @param int $author_uid
|
||
* @return int
|
||
* User: liusl
|
||
* DateTime: 2024/9/12 19:58
|
||
*/
|
||
public function checkCommunityNewest(int $uid, int $author_uid)
|
||
{
|
||
$key = self::COMMUNITY_NEWEST . $author_uid;
|
||
/** @var CacheService $cacheServices */
|
||
$cacheServices = app()->make(CacheService::class);
|
||
$new_id = $cacheServices->get($key);
|
||
if (!$new_id) return 0;
|
||
return $this->checkUserLike((int)$new_id, $uid, self::COMMUNITY_BROWSE) ? 0 : 1;
|
||
}
|
||
}
|