staff message add permission

This commit is contained in:
xiaomlove
2022-08-22 21:07:06 +08:00
parent f55fef594c
commit 4b30804121
11 changed files with 219 additions and 59 deletions
+51
View File
@@ -2,11 +2,18 @@
namespace App\Repositories;
use App\Models\Message;
use App\Models\Setting;
use App\Models\StaffMessage;
use App\Models\User;
use Illuminate\Support\Facades\DB;
use Nexus\Database\NexusDB;
class MessageRepository extends BaseRepository
{
const STAFF_MESSAGE_TOTAL_CACHE_KEY = 'staff_message_count';
const STAFF_MESSAGE_NEW_CACHE_KEY = 'staff_new_message_count';
public function getList(array $params)
{
$query = Message::query();
@@ -40,4 +47,48 @@ class MessageRepository extends BaseRepository
$result = $model->delete();
return $result;
}
public static function countStaffMessage($uid, $answered = null): int
{
return self::buildStaffMessageQuery($uid, $answered)->count();
}
public static function buildStaffMessageQuery($uid, $answered = null): \Illuminate\Database\Eloquent\Builder
{
$query = StaffMessage::query();
if ($answered !== null) {
$query->where('answered', $answered);
}
if (!user_can('staffmem', false, $uid)) {
//Not staff member only can see authorized
$permissions = ToolRepository::listUserAllPermissions($uid);
$query->whereIn('permission', $permissions);
}
return $query;
}
public static function updateStaffMessageCountCache($uid = 0, $type = '', $value = '')
{
if ($uid === false) {
NexusDB::cache_del(self::STAFF_MESSAGE_NEW_CACHE_KEY);
NexusDB::cache_del(self::STAFF_MESSAGE_TOTAL_CACHE_KEY);
} else {
$redis = NexusDB::redis();
match ($type) {
'total' => $redis->hSet(self::STAFF_MESSAGE_TOTAL_CACHE_KEY, $uid, $value),
'new' => $redis->hSet(self::STAFF_MESSAGE_NEW_CACHE_KEY, $uid, $value),
default => throw new \InvalidArgumentException("Invalid type: $type")
};
}
}
public static function getStaffMessageCountCache($uid = 0, $type = '')
{
$redis = NexusDB::redis();
return match ($type) {
'total' => $redis->hGet(self::STAFF_MESSAGE_TOTAL_CACHE_KEY, $uid),
'new' => $redis->hGet(self::STAFF_MESSAGE_NEW_CACHE_KEY, $uid),
default => throw new \InvalidArgumentException("Invalid type: $type")
};
}
}