hyperf-chat/app/Model/UsersFriend.php

118 lines
3.4 KiB
PHP
Raw Normal View History

2020-11-04 17:36:52 +08:00
<?php
declare (strict_types=1);
2020-11-05 17:40:51 +08:00
2020-11-04 17:36:52 +08:00
namespace App\Model;
2020-11-05 17:40:51 +08:00
use Hyperf\DbConnection\Db;
2020-11-04 17:36:52 +08:00
/**
2020-11-14 18:10:28 +08:00
* 表情包收藏数据表模型
*
2021-04-20 16:30:57 +08:00
* @property int $id
* @property int $user1 用户1ID
* @property int $user2 用户2ID
2020-11-14 18:10:28 +08:00
* @property string $user1_remark 用户1好友备注
* @property string $user2_remark 用户2好友备注
2021-04-20 16:30:57 +08:00
* @property int $active 主动邀请方[1:user1;2:user2;]
* @property int $status 好友状态[1:好友状态;0:已解除好友关系]
* @property string $agree_time 成为好友时间
* @property string $created_at 创建时间
2020-11-14 18:10:28 +08:00
* @package App\Model
2020-11-04 17:36:52 +08:00
*/
2020-11-05 17:40:51 +08:00
class UsersFriend extends BaseModel
2020-11-04 17:36:52 +08:00
{
protected $table = 'users_friends';
2020-11-27 19:48:41 +08:00
protected $fillable = [
'user1',
'user2',
'user1_remark',
'user2_remark',
'active',
'status',
'agree_time',
'created_at'
];
2020-11-04 17:36:52 +08:00
2020-11-14 18:10:28 +08:00
protected $casts = [
2021-04-20 16:30:57 +08:00
'id' => 'integer',
'user1' => 'integer',
'user2' => 'integer',
'active' => 'integer',
'status' => 'integer',
2020-11-14 18:10:28 +08:00
'created_at' => 'datetime'
];
2020-11-05 17:40:51 +08:00
/**
* 获取用户所有好友
*
* @param int $uid 用户ID
* @return mixed
*/
public static function getUserFriends(int $uid)
{
$prefix = config('databases.default.prefix');
2021-04-20 16:30:57 +08:00
$sql = <<<SQL
2020-11-05 17:40:51 +08:00
SELECT users.id,users.nickname,users.avatar,users.motto,users.gender,tmp_table.friend_remark from {$prefix}users users
INNER join
(
2021-07-05 21:52:44 +08:00
SELECT id as rid,user2 as uid,user1_remark as friend_remark from {$prefix}users_friends where user1 = {$uid} and `status` = 0
2020-11-05 17:40:51 +08:00
UNION all
2021-07-05 21:52:44 +08:00
SELECT id as rid,user1 as uid,user2_remark as friend_remark from {$prefix}users_friends where user2 = {$uid} and `status` = 0
2020-12-03 16:22:55 +08:00
) tmp_table on tmp_table.uid = users.id
2020-11-05 17:40:51 +08:00
SQL;
$rows = Db::select($sql);
array_walk($rows, function (&$item) {
$item = (array)$item;
});
return $rows;
}
/**
* 判断用户之间是否存在好友关系
*
2021-04-20 16:30:57 +08:00
* @param int $user_id1 用户1
* @param int $user_id2 用户2
* @param bool $cache 是否读取缓存
2020-11-05 17:40:51 +08:00
* @return bool
*/
2020-12-01 22:50:43 +08:00
public static function isFriend(int $user_id1, int $user_id2, bool $cache = false)
2020-11-05 17:40:51 +08:00
{
// 比较大小交换位置
if ($user_id1 > $user_id2) {
[$user_id1, $user_id2] = [$user_id2, $user_id1];
}
2020-12-01 22:50:43 +08:00
$cacheKey = "good_friends:{$user_id1}_$user_id2";
if ($cache && redis()->get($cacheKey)) {
return true;
}
2021-07-05 21:52:44 +08:00
$isTrue = self::query()->where('user1', $user_id1)->where('user2', $user_id2)->where('status', 0)->exists();
2020-12-01 22:50:43 +08:00
if ($isTrue) {
redis()->setex($cacheKey, 60 * 5, 1);
}
return $isTrue;
2020-11-05 17:40:51 +08:00
}
/**
* 获取指定用户的所有朋友的用户ID
*
* @param int $user_id 指定用户ID
* @return array
*/
public static function getFriendIds(int $user_id)
{
$prefix = config('databases.default.prefix');
2021-07-05 21:52:44 +08:00
$sql = "SELECT user2 as uid from {$prefix}users_friends where user1 = {$user_id} and `status` = 0 UNION all SELECT user1 as uid from {$prefix}users_friends where user2 = {$user_id} and `status` = 0";
2020-11-05 17:40:51 +08:00
return array_map(function ($item) {
return $item->uid;
}, Db::select($sql));
}
2020-11-04 17:36:52 +08:00
}