123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\services\user\label;
- use app\services\BaseServices;
- use app\dao\user\label\UserLabelRelationDao;
- use crmeb\exceptions\AdminException;
- /**
- * 用户关联标签
- * Class UserLabelRelationServices
- * @package app\services\user\label
- * @mixin UserLabelRelationDao
- */
- class UserLabelRelationServices extends BaseServices
- {
- /**
- * UserLabelRelationServices constructor.
- * @param UserLabelRelationDao $dao
- */
- public function __construct(UserLabelRelationDao $dao)
- {
- $this->dao = $dao;
- }
- /**
- * 获取某个用户标签ids
- * @param int $uid
- * @param int $store_id
- * @return array
- */
- public function getUserLabels(int $uid, int $type = 0, int $relation_id = 0)
- {
- return $this->dao->getColumn(['uid' => $uid, 'type' => $type, 'relation_id' => $relation_id], 'label_id', '');
- }
- /**
- * 用户设置标签
- * @param $uids
- * @param array $labels
- * @param int $type
- * @param int $relation_id
- * @param bool $group
- * @return bool
- */
- public function setUserLable($uids, array $labels, int $type = 0, int $relation_id = 0, bool $group = false)
- {
- if (!$uids) {
- return true;
- }
- if (!is_array($uids)) {
- $uids = [$uids];
- }
- //增加标签
- $data = [];
- foreach ($uids as $uid) {
- //用户已经存在的标签
- $user_label_ids = $this->dao->getColumn([
- ['uid', '=', $uid],
- ['type', '=', $type],
- ['relation_id', '=', $relation_id]
- ], 'label_id');
- //删除未选中标签
- if ($group) {
- $del_labels = array_diff($user_label_ids, $labels);
- $this->dao->delete([
- ['uid', '=', $uid],
- ['label_id', 'in', $del_labels],
- ['type', '=', $type],
- ['relation_id', '=', $relation_id]
- ]);
- }
- $add_labels = array_diff($labels, $user_label_ids);
- if ($add_labels) {
- foreach ($add_labels as $label) {
- $label = (int)$label;
- if (!$label) continue;
- $data[] = ['uid' => $uid, 'label_id' => $label, 'type' => $type, 'relation_id' => $relation_id];
- }
- }
- }
- if ($data) {
- if (!$this->dao->saveAll($data))
- throw new AdminException('设置标签失败');
- }
- return true;
- }
- /**
- * 取消用户标签
- * @param int $uid
- * @param array $labels
- * @param int $type
- * @param int $relation_id
- * @return bool
- */
- public function unUserLabel(int $uid, array $labels = [], int $type = 0, int $relation_id = 0)
- {
- $where = [
- ['uid', '=', $uid],
- ['type', '=', $type],
- ['relation_id', '=', $relation_id]
- ];
- //不传入 清空用户所有标签
- if (count($labels)) {
- $where[] = ['label_id', 'in', $labels];
- }
- $this->dao->delete($where);
- return true;
- }
- /**
- * 获取用户标签
- * @param array $uids
- * @param int $type
- * @param int $relation_id
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getUserLabelList(array $uids, int $type = 0, int $relation_id = 0)
- {
- return $this->dao->getLabelList($uids, $type, $relation_id);
- }
- }
|