title = '微信粉丝管理'; $this->where = ['appid' => WechatService::instance()->getAppid()]; $query = $this->_query($this->table)->like('nickname')->equal('subscribe,is_black'); $query->dateBetween('subscribe_at')->where($this->where)->order('subscribe_time desc')->page(); } /** * 列表数据处理 * @param array $data */ protected function _index_page_filter(array &$data) { $tags = $this->app->db->name('WechatFansTags')->column('id,name'); foreach ($data as &$user) { $user['tags'] = []; foreach (explode(',', $user['tagid_list']) as $tagid) { if (isset($tags[$tagid])) $user['tags'][] = $tags[$tagid]; } } } /** * 同步粉丝数据 * @auth true */ public function sync() { try { $appid = WechatService::instance()->getAppid(); sysqueue('同步粉丝数据', "xsync:fans {$appid} -", 1, [], 0); $this->success('创建任务成功,请等待完成!'); } catch (HttpResponseException $exception) { throw $exception; } catch (\Exception $exception) { $this->error("创建任务失败,{$exception->getMessage()}"); } } /** * 批量拉黑粉丝 * @auth true */ public function setBlack() { try { $this->_applyFormToken(); foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) { WechatService::WeChatUser()->batchBlackList($openids); $this->app->db->name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '1']); } $this->success('拉黑粉丝信息成功!'); } catch (HttpResponseException $exception) { throw $exception; } catch (\Exception $e) { $this->error("拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}"); } } /** * 取消拉黑粉丝 * @auth true */ public function delBlack() { try { $this->_applyFormToken(); foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) { WechatService::WeChatUser()->batchUnblackList($openids); $this->app->db->name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '0']); } $this->success('取消拉黑粉丝信息成功!'); } catch (HttpResponseException $exception) { throw $exception; } catch (\Exception $e) { $this->error("取消拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}"); } } /** * 删除粉丝信息 * @auth true * @throws \think\db\exception\DbException */ public function remove() { $this->_applyFormToken(); $this->_delete($this->table); } }