diff --git a/application/admin/controller/Block.php b/application/admin/controller/Block.php deleted file mode 100644 index 333622c8f..000000000 --- a/application/admin/controller/Block.php +++ /dev/null @@ -1,114 +0,0 @@ - - * @date 2017/03/27 14:43 - */ -class Block extends BasicAdmin -{ - - /** - * 定义当前默认数据表 - * @var string - */ - public $table = 'WechatFans'; - - /** - * 黑名单列表 - * @return array|string - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\Exception - */ - public function index() - { - $this->title = '微信黑名单管理'; - $get = $this->request->get(); - $db = Db::name($this->table)->where(['is_black' => '1']); - (isset($get['sex']) && $get['sex'] !== '') && $db->where('sex', $get['sex']); - foreach (['nickname', 'country', 'province', 'city'] as $key) { - (isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%"); - } - if (isset($get['tag']) && $get['tag'] !== '') { - $db->where("concat(',',tagid_list,',') like :tag", ['tag' => "%,{$get['tag']},%"]); - } - if (isset($get['create_at']) && $get['create_at'] !== '') { - list($start, $end) = explode(' - ', $get['create_at']); - $db->whereBetween('subscribe_at', ["{$start} 00:00:00", "{$end} 23:59:59"]); - } - return parent::_list($db->order('subscribe_time desc')); - } - - /** - * 列表数据处理 - * @param array $list - */ - protected function _data_filter(&$list) - { - $tags = Db::name('WechatFansTags')->column('id,name'); - foreach ($list as &$vo) { - list($vo['tags_list'], $vo['nickname']) = [[], ToolsService::emojiDecode($vo['nickname'])]; - foreach (explode(',', $vo['tagid_list']) as $tag) { - if ($tag !== '' && isset($tags[$tag])) { - $vo['tags_list'][$tag] = $tags[$tag]; - } elseif ($tag !== '') { - $vo['tags_list'][$tag] = $tag; - } - } - } - $this->assign('tags', $tags); - } - - /** - * 取消黑名 - */ - public function backdel() - { - $openids = $this->_getActionOpenids(); - try { - WechatService::user()->batchUnblackList($openids); - Db::name($this->table)->whereIn('openid', $openids)->setField('is_black', '0'); - } catch (\Exception $e) { - $this->error("设备黑名单失败,请稍候再试!" . $e->getMessage()); - } - $this->success("已成功将 " . count($openids) . " 名粉丝从黑名单中移除!", ''); - } - - /** - * 获取当前操作用户openid数组 - * @return array - */ - private function _getActionOpenids() - { - $ids = $this->request->post('id', ''); - empty($ids) && $this->error('没有需要操作的数据!'); - $openids = Db::name($this->table)->whereIn('id', explode(',', $ids))->column('openid'); - empty($openids) && $this->error('没有需要操作的数据!'); - return $openids; - } - -} diff --git a/application/admin/controller/Fans.php b/application/admin/controller/Fans.php deleted file mode 100644 index 6b96aeedb..000000000 --- a/application/admin/controller/Fans.php +++ /dev/null @@ -1,191 +0,0 @@ - - * @date 2017/03/27 14:43 - */ -class Fans extends BasicAdmin -{ - - /** - * 定义当前默认数据表 - * @var string - */ - public $table = 'WechatFans'; - - /** - * 显示粉丝列表 - * @return array|string - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\Exception - */ - public function index() - { - $this->title = '微信粉丝管理'; - $get = $this->request->get(); - $db = Db::name($this->table)->where(['is_black' => '0']); - (isset($get['sex']) && $get['sex'] !== '') && $db->where('sex', $get['sex']); - foreach (['nickname', 'country', 'province', 'city'] as $key) { - (isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%"); - } - if (isset($get['tag']) && $get['tag'] !== '') { - $db->where("concat(',',tagid_list,',') like :tag", ['tag' => "%,{$get['tag']},%"]); - } - if (isset($get['create_at']) && $get['create_at'] !== '') { - list($start, $end) = explode(' - ', $get['create_at']); - $db->whereBetween('subscribe_at', ["{$start} 00:00:00", "{$end} 23:59:59"]); - } - return parent::_list($db->order('subscribe_time desc')); - } - - /** - * 列表数据处理 - * @param array $list - */ - protected function _data_filter(&$list) - { - $tags = Db::name('WechatFansTags')->column('id,name'); - foreach ($list as &$vo) { - list($vo['tags_list'], $vo['nickname']) = [[], ToolsService::emojiDecode($vo['nickname'])]; - foreach (explode(',', $vo['tagid_list']) as $tag) { - if ($tag !== '' && isset($tags[$tag])) { - $vo['tags_list'][$tag] = $tags[$tag]; - } elseif ($tag !== '') { - $vo['tags_list'][$tag] = $tag; - } - } - } - $this->assign('tags', $tags); - } - - /** - * 设置黑名单 - */ - public function backadd() - { - try { - $openids = $this->_getActionOpenids(); - WechatService::user()->batchBlackList($openids); - Db::name($this->table)->whereIn('openid', $openids)->setField('is_black', '1'); - } catch (\Exception $e) { - $this->error("设置黑名单失败,请稍候再试!"); - } - $this->success('设置黑名单成功!', ''); - } - - /** - * 标签选择 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - public function tagset() - { - $tags = $this->request->post('tags', ''); - $fans_id = $this->request->post('fans_id', ''); - $fans = Db::name('WechatFans')->where(['id' => $fans_id])->find(); - empty($fans) && $this->error('需要操作的数据不存在!'); - try { - $wechat = WechatService::tags(); - foreach (explode(',', $fans['tagid_list']) as $tagid) { - is_numeric($tagid) && $wechat->batchUntagging([$fans['openid']], $tagid); - } - foreach (explode(',', $tags) as $tagid) { - is_numeric($tagid) && $wechat->batchTagging([$fans['openid']], $tagid); - } - Db::name('WechatFans')->where(['id' => $fans_id])->setField('tagid_list', $tags); - } catch (\Exception $e) { - $this->error('粉丝标签设置失败, 请稍候再试!'); - } - $this->success('粉丝标签成功!', ''); - } - - /** - * 给粉丝增加标签 - */ - public function tagadd() - { - $tagid = $this->request->post('tag_id', 0); - empty($tagid) && $this->error('没有可能操作的标签ID'); - try { - $openids = $this->_getActionOpenids(); - WechatService::tags()->batchTagging($openids, $tagid); - } catch (\Exception $e) { - $this->error("设置粉丝标签失败, 请稍候再试! " . $e->getMessage()); - } - $this->success('设置粉丝标签成功!', ''); - } - - /** - * 移除粉丝标签 - */ - public function tagdel() - { - $tagid = $this->request->post('tag_id', 0); - empty($tagid) && $this->error('没有可能操作的标签ID'); - try { - $openids = $this->_getActionOpenids(); - WechatService::tags()->batchUntagging($openids, $tagid); - } catch (\Exception $e) { - $this->error("删除粉丝标签失败, 请稍候再试! "); - } - $this->success('删除粉丝标签成功!', ''); - } - - /** - * 获取当前操作用户openid数组 - * @return array - */ - private function _getActionOpenids() - { - $ids = $this->request->post('id', ''); - empty($ids) && $this->error('没有需要操作的数据!'); - $openids = Db::name($this->table)->whereIn('id', explode(',', $ids))->column('openid'); - empty($openids) && $this->error('没有需要操作的数据!'); - return $openids; - } - - /** - * 同步粉丝列表 - */ - public function sync() - { - try { - Db::name($this->table)->where('1=1')->delete(); - FansService::sync(); - TagsService::sync(); - LogService::write('微信管理', '同步全部微信粉丝成功'); - } catch (\Exception $e) { - $this->error('同步粉丝记录失败,请稍候再试!'); - } - $this->success('同步获取所有粉丝成功!', ''); - } - -} diff --git a/application/admin/controller/Keys.php b/application/admin/controller/Keys.php deleted file mode 100644 index 6c7302dfe..000000000 --- a/application/admin/controller/Keys.php +++ /dev/null @@ -1,202 +0,0 @@ - - * @date 2017/03/27 14:43 - */ -class Keys extends BasicAdmin -{ - - /** - * 指定当前数据表 - * @var string - */ - public $table = 'WechatKeys'; - - /** - * 显示关键字列表 - * @return array|string - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\Exception - */ - public function index() - { - $this->assign('title', '微信关键字'); - $db = Db::name($this->table)->whereNotIn('keys', ['subscribe', 'default']); - return $this->_list($db->order('id desc')); - } - - /** - * 列表数据处理 - * @param array $data - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - */ - protected function _index_data_filter(&$data) - { - $types = [ - 'keys' => '关键字', 'image' => '图片', 'news' => '图文', - 'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音', - ]; - $wechat = WechatService::qrcode(); - foreach ($data as &$vo) { - $result = $wechat->create($vo['keys']); - $vo['qrc'] = $wechat->url($result['ticket']); - $vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type']; - } - } - - /** - * 添加关键字 - * @return string - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - public function add() - { - $this->title = '添加关键字规则'; - return $this->_form($this->table, 'form'); - } - - /** - * 编辑关键字 - * @return string - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - public function edit() - { - $this->title = '编辑关键字规则'; - return $this->_form($this->table, 'form'); - } - - - /** - * 删除关键字 - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function del() - { - if (DataService::update($this->table)) { - $this->success("关键字删除成功!", ''); - } - $this->error("关键字删除失败,请稍候再试!"); - } - - /** - * 关键字禁用 - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function forbid() - { - if (DataService::update($this->table)) { - $this->success("关键字禁用成功!", ''); - } - $this->error("关键字禁用失败,请稍候再试!"); - } - - /** - * 关键字禁用 - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function resume() - { - if (DataService::update($this->table)) { - $this->success("关键字启用成功!", ''); - } - $this->error("关键字启用失败,请稍候再试!"); - } - - /** - * 关注默认回复 - * @return array|string - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - public function subscribe() - { - $this->assign('title', '编辑默认回复'); - $extend = ['keys' => 'subscribe']; - return $this->_form($this->table, 'form', 'keys', $extend, $extend); - } - - - /** - * 无配置默认回复 - * @return array|string - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - public function defaults() - { - $this->assign('title', '编辑无配置默认回复'); - $extend = ['keys' => 'default']; - return $this->_form($this->table, 'form', 'keys', $extend, $extend); - } - - /** - * 添加数据处理 - * @param array $data - */ - protected function _form_filter(array &$data) - { - if ($this->request->isPost() && isset($data['keys'])) { - $db = Db::name($this->table)->where('keys', $data['keys']); - !empty($data['id']) && $db->where('id', 'neq', $data['id']); - $data['content'] = htmlspecialchars_decode($data['content']); - $db->count() > 0 && $this->error('关键字已经存在,请使用其它关键字!'); - } - } - - /** - * 编辑结果处理 - * @param $result - */ - protected function _form_result($result) - { - if ($result !== false) { - list($url, $keys) = ['', $this->request->post('keys')]; - if (!in_array($keys, ['subscribe', 'default'])) { - $url = url('@admin') . '#' . url('wechat/keys/index') . '?spm=' . $this->request->get('spm'); - } - $this->success('恭喜, 关键字保存成功!', $url); - } - $this->error('关键字保存失败, 请稍候再试!'); - } - -} diff --git a/application/admin/controller/News.php b/application/admin/controller/News.php deleted file mode 100644 index 851d01853..000000000 --- a/application/admin/controller/News.php +++ /dev/null @@ -1,297 +0,0 @@ - - * @date 2017/03/27 14:43 - */ -class News extends BasicAdmin -{ - - /** - * 设置默认操作表 - * @var string - */ - public $table = 'WechatNews'; - - /** - * 图文列表 - * @return array|string - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - public function index() - { - $this->title = '微信图文列表'; - $db = Db::name($this->table)->where(['is_deleted' => '0']); - return parent::_list($db->order('id desc')); - } - - /** - * 图文列表数据处理 - * @param array $data - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - protected function _index_data_filter(&$data) - { - foreach ($data as &$vo) { - $vo = MediaService::getNewsById($vo['id']); - } - } - - /** - * 图文选择器 - * @return string - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\Exception - */ - public function select() - { - return $this->index(); - } - - /** - * 图文列表数据处理 - * @param array $data - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - protected function _select_data_filter(&$data) - { - foreach ($data as &$vo) { - $vo = MediaService::getNewsById($vo['id']); - } - } - - /** - * 媒体资源显示 - * @return array - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\Exception - */ - public function image() - { - $_GET['rows'] = 18; - $this->assign('field', $this->request->get('field', 'local_url')); - return $this->_list(Db::name('WechatNewsMedia')->where('type', 'image')); - } - - /** - * 添加图文 - * @return string - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function add() - { - if ($this->request->isGet()) { - return $this->fetch('form', ['title' => '新建图文']); - } - if ($this->request->isPost()) { - $data = $this->request->post(); - if (($ids = $this->_apply_news_article($data['data'])) && !empty($ids)) { - $post = ['article_id' => $ids, 'create_by' => session('user.id')]; - if (DataService::save($this->table, $post, 'id') !== false) { - $url = url('@admin') . '#' . url('@wechat/news/index') . '?spm=' . $this->request->get('spm'); - $this->success('图文添加成功!', $url); - } - } - $this->error('图文添加失败,请稍候再试!'); - } - } - - /** - * 编辑图文 - * @return string - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function edit() - { - $id = $this->request->get('id', ''); - if ($this->request->isGet()) { - empty($id) && $this->error('参数错误,请稍候再试!'); - return $this->fetch('form', ['title' => '编辑图文', 'vo' => MediaService::getNewsById($id)]); - } - $data = $this->request->post(); - $ids = $this->_apply_news_article($data['data']); - if (!empty($ids)) { - $post = ['id' => $id, 'article_id' => $ids, 'create_by' => session('user.id')]; - if (false !== DataService::save('wechat_news', $post, 'id')) { - $url = url('@admin') . '#' . url('@wechat/news/index') . '?spm=' . $this->request->get('spm'); - $this->success('图文更新成功!', $url); - } - } - $this->error('图文更新失败,请稍候再试!'); - } - - /** - * 图文更新操作 - * @param array $data - * @param array $ids - * @return string - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - protected function _apply_news_article($data, $ids = []) - { - foreach ($data as &$vo) { - $vo['create_by'] = session('user.id'); - $vo['create_at'] = date('Y-m-d H:i:s'); - if (empty($vo['digest'])) { - $vo['digest'] = mb_substr(strip_tags(str_replace(["\s", ' '], '', htmlspecialchars_decode($vo['content']))), 0, 120); - } - if (empty($vo['id'])) { - $result = $id = Db::name('WechatNewsArticle')->insertGetId($vo); - } else { - $id = intval($vo['id']); - $result = Db::name('WechatNewsArticle')->where('id', $id)->update($vo); - } - if ($result !== false) { - $ids[] = $id; - } - } - return join(',', $ids); - } - - /** - * 删除用户 - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function del() - { - if (DataService::update($this->table)) { - $this->success("图文删除成功!", ''); - } - $this->error("图文删除失败, 请稍候再试!"); - } - - /** - * 推荐图文 - * @return array - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\exception\PDOException - */ - public function push() - { - # 获取将要推送的粉丝列表 - switch (strtolower($this->request->get('action', ''))) { - case 'getuser': - if ('' === ($params = $this->request->post('group', ''))) { - return ['code' => 'SUCCESS', 'data' => []]; - } - list($ids, $db) = [explode(',', $params), Db::name('WechatFans')]; - !in_array('0', $ids) && $db->where("concat(',',tagid_list,',') REGEXP '," . join(',|,', $ids) . ",'"); - $list = $db->where(['subscribe' => '1'])->limit(200)->column('nickname'); - foreach ($list as &$vo) { - $vo = ToolsService::emojiDecode($vo); - } - return ['code' => "SUCCESS", 'data' => $list]; - default : - $news_id = $this->request->get('id', ''); - // 显示及图文 - $newsinfo = MediaService::getNewsById($news_id); - // Get 请求,显示选择器界面 - if ($this->request->isGet()) { - $fans_tags = (array)Db::name('WechatFansTags')->select(); - $count = Db::name('WechatFans')->where(['subscribe' => '1'])->count(); - array_unshift($fans_tags, ['id' => 0, 'name' => '全部', 'count' => $count]); - return $this->fetch('push', ['vo' => $newsinfo, 'fans_tags' => $fans_tags]); - } - // Post 请求,执行图文推送操作 - $post = $this->request->post(); - empty($post['fans_tags']) && $this->error('还没有选择要粉丝对象!'); - // 图文上传操作 - !$this->_uploadWechatNews($newsinfo) && $this->error('图文上传失败,请稍候再试!'); - // 数据拼装 - $data = []; - if (in_array('0', $post['fans_tags'])) { - $data['msgtype'] = 'mpnews'; - $data['filter'] = ['is_to_all' => true]; - $data['mpnews'] = ['media_id' => $newsinfo['media_id']]; - } else { - $data['msgtype'] = 'mpnews'; - $data['filter'] = ['is_to_all' => false, 'tag_id' => join(',', $post['fans_tags'])]; - $data['mpnews'] = ['media_id' => $newsinfo['media_id']]; - } - $wechat = WechatService::custom(); - if (false !== $wechat->massSendAll($data)) { - LogService::write('微信管理', "图文[{$news_id}]推送成功"); - $this->success('微信图文推送成功!', ''); - } - $this->error("微信图文推送失败"); - } - } - - /** - * 上传永久图文 - * @param array $news - * @return bool - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - private function _uploadWechatNews(&$news) - { - foreach ($news['articles'] as &$article) { - $article['thumb_media_id'] = MediaService::uploadForeverMedia($article['local_url']); - $article['content'] = preg_replace_callback("//i", function ($matches) { - $src = MediaService::uploadImage($matches[2]); - return ""; - }, htmlspecialchars_decode($article['content'])); - } - $wechat = WechatService::media(); - // 如果已经上传过,先删除之前的历史记录 - !empty($news['media_id']) && $wechat->delMaterial($news['media_id']); - // 上传图文到微信服务器 - $result = $wechat->addNews(['articles' => $news['articles']]); - if (isset($result['media_id'])) { - $news['media_id'] = $result['media_id']; - return Db::name('WechatNews')->where(['id' => $news['id']])->update(['media_id' => $result['media_id']]); - } - Log::error("上传永久图文失败"); - return false; - } - -} diff --git a/application/admin/controller/Review.php b/application/admin/controller/Review.php deleted file mode 100644 index 62ffdf5b3..000000000 --- a/application/admin/controller/Review.php +++ /dev/null @@ -1,61 +0,0 @@ -", $this->request->get('content', '', 'urldecode')); // 内容 - $type = $this->request->get('type', 'text'); // 类型 - // 图文处理 - if ($type === 'news' && is_numeric($content) && !empty($content)) { - $news = MediaService::getNewsById($content); - $this->assign('articles', $news['articles']); - } - // 文章预览 - if ($type === 'article' && is_numeric($content) && !empty($content)) { - $article = Db::name('WechatNewsArticle')->where('id', $content)->find(); - if (!empty($article['content_source_url'])) { - $this->redirect($article['content_source_url']); - } - $article['content'] = htmlspecialchars_decode($article['content']); - $this->assign('vo', $article); - } - $this->assign('type', $type); - $this->assign('content', $content); - $this->assign($this->request->get()); - // 渲染模板并显示 - return $this->fetch(); - } - -} diff --git a/application/admin/controller/Tags.php b/application/admin/controller/Tags.php deleted file mode 100644 index 49a44899a..000000000 --- a/application/admin/controller/Tags.php +++ /dev/null @@ -1,159 +0,0 @@ -title = '微信粉丝标签管理'; - list($get, $db) = [$this->request->get(), Db::name($this->table)]; - foreach (['name'] as $key) { - (isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%"); - } - return parent::_list($db->order('id asc')); - } - - /** - * 添加粉丝标签 - * @return array|string - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\exception\PDOException - */ - public function add() - { - if ($this->request->isGet()) { - return parent::_form($this->table, 'form', 'id'); - } - $name = $this->request->post('name', ''); - empty($name) && $this->error('粉丝标签名不能为空!'); - if (Db::name($this->table)->where('name', $name)->count() > 0) { - $this->error('粉丝标签标签名已经存在, 请使用其它标签名!'); - } - $wechat = WechatService::tags(); - if (false === ($result = $wechat->createTags($name)) && isset($result['tag'])) { - $this->error("添加粉丝标签失败. "); - } - $result['tag']['count'] = 0; - if (DataService::save($this->table, $result['tag'], 'id')) { - $this->success('添加粉丝标签成功!', ''); - } - $this->error('粉丝标签添加失败, 请稍候再试!'); - } - - /** - * 编辑粉丝标签 - * @return array|string - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - public function edit() - { - // 显示编辑界面 - if ($this->request->isGet()) { - return parent::_form($this->table, 'form', 'id'); - } - // 接收提交的数据 - $id = $this->request->post('id', '0'); - $name = $this->request->post('name', ''); - $info = Db::name($this->table)->where(['name' => $name])->find(); - if (!empty($info)) { - if (intval($info['id']) === intval($id)) { - $this->error('粉丝标签名没有改变, 无需修改!'); - } - $this->error('标签已经存在, 使用其它名称再试!'); - } - try { - WechatService::tags()->updateTags($id, $name); - DataService::save($this->table, ['id' => $id, 'name' => $name], 'id'); - } catch (\Exception $e) { - $this->error('编辑标签失败, 请稍后再试!' . $e->getMessage()); - } - $this->success('编辑标签成功!', ''); - } - - - /** - * 删除粉丝标签 - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function del() - { - $wechat = WechatService::tags(); - foreach (explode(',', $this->request->post('id', '')) as $id) { - if ($wechat->deleteTags($id)) { - Db::name('WechatFansTags')->where(['id' => $id])->delete(); - } else { - $this->error('移除粉丝标签失败,请稍候再试!'); - } - } - $this->success('移除粉丝标签成功!', ''); - } - - /** - * 同步粉丝标签列表 - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function sync() - { - Db::name($this->table)->where('1=1')->delete(); - if (TagsService::sync()) { - LogService::write('微信管理', '同步全部微信粉丝标签成功'); - $this->success('同步获取所有粉丝标签成功!', ''); - } - $this->error('同步获取粉丝标签失败, 请稍候再!'); - } - -} diff --git a/application/admin/controller/api/Push.php b/application/admin/controller/api/Push.php deleted file mode 100644 index c1a847b49..000000000 --- a/application/admin/controller/api/Push.php +++ /dev/null @@ -1,257 +0,0 @@ - - */ -class Push -{ - - /** - * 当前公众号APPID - * @var string - */ - protected $appid; - - /** - * 当前微信用户openid - * @var string - */ - protected $openid; - - /** - * 当前微信消息对象 - * @var array - */ - protected $receive; - - /** - * 微信消息接口 - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - public function __construct() - { - $request = app('request'); - $this->appid = $request->post('appid', '', null); - $this->openid = $request->post('openid', '', null); - $this->receive = unserialize($request->post('receive', '', null)); - p($this->receive); - if (empty($this->appid) || empty($this->openid) || empty($this->receive)) { - throw new Exception('微信API实例缺失必要参数[appid,openid,event].'); - } - if ($this->appid !== sysconf('wechat_appid')) { - throw new Exception('微信API实例APPID验证失败.'); - } - // text,event,image,location - if (method_exists($this, ($method = $this->receive['MsgType']))) { - $this->$method(); - } - } - - /** - * 文件消息处理 - * @return bool - * @throws \Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - protected function text() - { - return $this->keys("wechat_keys#keys#{$this->receive['Content']}"); - } - - /** - * 事件消息处理 - * @return bool|string - * @throws \Exception - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\exception\PDOException - */ - protected function event() - { - switch (strtolower($this->receive['Event'])) { - case 'subscribe': - $this->updateFansinfo(true); - if (isset($this->receive['EventKey']) && is_string($this->receive['EventKey'])) { - if (($key = preg_replace('/^qrscene_/i', '', $this->receive['EventKey']))) { - [$this->updateSpread($key), $this->keys("wechat_keys#keys#{$key}")]; - } - } - return $this->keys('wechat_keys#keys#subscribe', true); - case 'unsubscribe': - return $this->updateFansinfo(false); - case 'click': - return $this->keys($this->receive['EventKey']); - case 'scancode_push': - case 'scancode_waitmsg': - if (isset($this->receive['ScanCodeInfo'])) { - $this->receive['ScanCodeInfo'] = (array)$this->receive['ScanCodeInfo']; - if (!empty($this->receive['ScanCodeInfo']['ScanResult'])) { - return $this->keys("wechat_keys#keys#{$this->receive['ScanCodeInfo']['ScanResult']}"); - } - } - return false; - case 'scan': - if (!empty($this->receive['EventKey'])) { - return $this->keys("wechat_keys#keys#{$this->receive['EventKey']}"); - } - return false; - } - return false; - } - - /** - * 关键字处理 - * @param string $rule 关键字规则 - * @param bool $isLastReply 强制结束 - * @return bool - * @throws \Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - */ - protected function keys($rule, $isLastReply = false) - { - list($table, $field, $value) = explode('#', $rule . '##'); - $info = Db::name($table)->where($field, $value)->find(); - p($info); - if (empty($info['type']) || (array_key_exists('status', $info) && empty($info['status']))) { - // 切换默认回复 - return $isLastReply ? false : $this->keys('wechat_keys#keys#default', true); - } - switch ($info['type']) { - case 'customservice': - return $this->sendMessage('text', ['content' => $info['content']]); - case 'keys': - $content = empty($info['content']) ? $info['name'] : $info['content']; - return $this->keys("wechat_keys#keys#{$content}"); - case 'text': - return $this->sendMessage('text', ['content' => $info['content']]); - case 'news': - list($news, $data) = [MediaService::getNewsById($info['news_id']), []]; - if (empty($news['articles'])) { - return false; - } - foreach ($news['articles'] as $vo) { - $url = url("@wechat/review", '', true, true) . "?content={$vo['id']}&type=article"; - $data[] = ['url' => $url, 'title' => $vo['title'], 'picurl' => $vo['local_url'], 'description' => $vo['digest']]; - } - return $this->sendMessage('news', ['articles' => $data]); - case 'music': - if (empty($info['music_url']) || empty($info['music_title']) || empty($info['music_desc'])) { - return false; - } - $media_id = empty($info['music_image']) ? '' : MediaService::uploadForeverMedia($info['music_image'], 'image'); - $data = ['title' => $info['music_title'], 'description' => $info['music_desc'], 'musicurl' => $info['music_url'], 'hqmusicurl' => $info['music_url'], 'thumb_media_id' => $media_id]; - return $this->sendMessage('music', $data); - case 'voice': - if (empty($info['voice_url']) || !($media_id = MediaService::uploadForeverMedia($info['voice_url'], 'voice'))) { - return false; - } - return $this->sendMessage('voice', ['media_id' => $media_id]); - case 'image': - if (empty($info['image_url']) || !($media_id = MediaService::uploadForeverMedia($info['image_url'], 'image'))) { - return false; - } - return $this->sendMessage('image', ['media_id' => $media_id]); - case 'video': - if (empty($info['video_url']) || empty($info['video_desc']) || empty($info['video_title'])) { - return false; - } - $videoData = ['title' => $info['video_title'], 'introduction' => $info['video_desc']]; - if (!($media_id = MediaService::uploadForeverMedia($info['video_url'], 'video', $videoData))) { - return false; - } - $data = ['media_id' => $media_id, 'title' => $info['video_title'], 'description' => $info['video_desc']]; - return $this->sendMessage('video', $data); - default: - return false; - } - } - - /** - * 发送消息到公众号 - * @param string $type 消息类型(text|image|voice|video|music|news|mpnews|wxcard) - * @param array $data 消息内容 - * @return array|bool - * @throws \Exception - */ - protected function sendMessage($type, $data) - { - $msgData = ['touser' => $this->openid, 'msgtype' => $type, "{$type}" => $data]; - p($msgData); - return WechatService::custom()->send($msgData); - } - - /** - * 更新推荐二维码关系 - * @param string $key - * @return bool - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\ModelNotFoundException - * @throws \think\exception\DbException - * @throws \think\exception\PDOException - */ - protected function updateSpread($key) - { - // 检测推荐是否有效 - $fans = Db::name('WechatFans')->where(['openid' => $key])->find(); - if (empty($fans['openid']) || $fans['openid'] === $this->openid) { - return false; - } - // 标识推荐关系 - $data = ['spread_openid' => $fans['openid'], 'spread_at' => date('Y-m-d H:i:s')]; - $where = "openid='{$this->openid}' and (spread_openid is null or spread_openid='')"; - return Db::name('WechatFans')->where($where)->update($data) !== false; - } - - /** - * 同步粉丝状态 - * @param bool $subscribe 关注状态 - * @return string - * @throws \Exception - * @throws \think\Exception - * @throws \think\exception\PDOException - */ - protected function updateFansinfo($subscribe = true) - { - if ($subscribe) { - $userInfo = WechatService::user()->getUserInfo($this->openid); - $userInfo['subscribe'] = intval($subscribe); - FansService::set($userInfo); - } else { - $fans = ['subscribe' => '0', 'openid' => $this->openid, 'appid' => $this->appid]; - DataService::save('WechatFans', $fans, 'openid', ['appid' => $this->appid]); - } - } - -} diff --git a/application/admin/view/block/index.html b/application/admin/view/block/index.html deleted file mode 100644 index f79abcfc8..000000000 --- a/application/admin/view/block/index.html +++ /dev/null @@ -1,160 +0,0 @@ -{extend name='admin@public/content'} - -{block name="button"} - - - - - - - - - -{/block} - -{block name="content"} - - - - -
- -

没 有 记 录 哦!

- - - - - - - - - - - - - - - - {foreach $list as $key=>$vo} - - - - - - - - - - {/foreach} - -
- - 用户昵称性别用户标签所在区域关注时间操作
- - - - {$vo.nickname|default='未设置微信昵称'} - - {$vo.sex==1?'男':($vo.sex==2?'女':'未知')} - - {if auth("$classuri/tagset")} - + - {/if} - {if empty($vo.tags_list)} - 尚未设置标签 - {else} - {foreach $vo.tags_list as $k=>$tag}{$tag}{/foreach} - {/if} - - {$vo.country|default='未设置区域信息'|raw}{$vo.province}{$vo.city} - {$vo.subscribe_at|format_datetime} - {if auth("$classuri/backdel")}移出黑名单{/if} -
- {if isset($page)}

{$page|raw}

{/if} - -
-{/block} - -{block name="script"} - - - -{if auth("$classuri/tagset")}{include file='wechat@fans/tags_inc'}{/if} -{/block} - diff --git a/application/admin/view/fans/index.html b/application/admin/view/fans/index.html deleted file mode 100644 index c3cffc4dc..000000000 --- a/application/admin/view/fans/index.html +++ /dev/null @@ -1,160 +0,0 @@ -{extend name='admin@public/content'} - -{block name="button"} - - - - - - - - - -{/block} - -{block name="content"} - - - - -
- -

没 有 记 录 哦!

- - - - - - - - - - - - - - - - {foreach $list as $key=>$vo} - - - - - - - - - - {/foreach} - -
- - 用户昵称性别标签区域关注时间
- - - - {$vo.nickname|default='未设置微信昵称'} - - {$vo.sex==1?'男':($vo.sex==2?'女':'未知')} - - {if auth("$classuri/tagset")} - + - {/if} - {if empty($vo.tags_list)} - 尚未设置标签 - {else} - {foreach $vo.tags_list as $k=>$tag}{$tag}{/foreach} - {/if} - - {$vo.country|default='未设置区域信息'|raw}{$vo.province}{$vo.city} - {$vo.subscribe_at|format_datetime} - {if auth("$classuri/backdel")}拉黑{/if} -
- {if isset($page)}

{$page|raw}

{/if} - -
-{/block} - -{block name="script"} - - - - -{if auth("$classuri/tagset")}{include file='wechat@fans/tags_inc'}{/if} -{/block} diff --git a/application/admin/view/fans/tags_inc.html b/application/admin/view/fans/tags_inc.html deleted file mode 100644 index 85dab465e..000000000 --- a/application/admin/view/fans/tags_inc.html +++ /dev/null @@ -1,80 +0,0 @@ - - -
-
-
- {foreach $tags as $key=>$tag} -
- -
- {/foreach} -
-
-
- - -
-
-
- - \ No newline at end of file diff --git a/application/admin/view/keys/form.html b/application/admin/view/keys/form.html deleted file mode 100644 index cf6d79adf..000000000 --- a/application/admin/view/keys/form.html +++ /dev/null @@ -1,292 +0,0 @@ -{extend name='admin@public/content'} - -{block name="style"} - -{/block} - -{block name="content"} - - -
-
公众号
-
- -
-
- - -
-
-
-
- {$title} -
- -
- -
- -
-
- - - -
- -
-
- {foreach ['1'=>'启用','0'=>'禁用'] as $k=>$v} - - {/foreach} -
-
-
-
- -
- {foreach ['text'=>'文字','news'=>'图文','image'=>'图片','music'=>'音乐','video'=>'视频'] as $k=>$v} - - {/foreach} -
-
- -
- -
- -
-
- -
- -
- 选择图文 - -
-
- -
- -
- -

文件最大2Mb,支持bmp/png/jpeg/jpg/gif格式

- - 上传图片 -
-
- -
- -
-
- - -
-

文件最大2Mb,播放长度不超过60s,mp3/wma/wav/amr格式

-
-
- -
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -

文件最大64KB,只支持JPG格式

- - 上传图片 -
-
- -
- -
- -
-
-
- -
-
- - -
-

文件最大10MB,只支持MP4格式

-
-
-
- -
- -
-
- -
-
- - - - -
- {if isset($vo['id'])}{/if} -
-
-
-
-
-{/block} - -{block name="script"} - -{/block} \ No newline at end of file diff --git a/application/admin/view/keys/index.html b/application/admin/view/keys/index.html deleted file mode 100644 index 42c4f161d..000000000 --- a/application/admin/view/keys/index.html +++ /dev/null @@ -1,187 +0,0 @@ -{extend name='admin@public/content'} - -{block name="button"} - - - - - - - - - -{/block} - -{block name='content'} -
- {if empty($list)} -

没 有 记 录 哦!

- {else} - - - - - - - - - - - - - - - - {foreach $list as $key=>$vo} - - - - - - - - - - - {/foreach} - -
- - - - 关键字类型预览添加时间状态
- - - - - {if !empty($vo.qrc)}{/if} - {$vo.keys} - {$vo.type} - {if $vo.type eq '音乐'} - 预览 - {elseif $vo.type eq '文字'} - 预览 - {elseif $vo.type eq '图片'} - 预览 - {elseif $vo.type eq '图文'} - 预览 - {elseif $vo.type eq '视频'} - 预览 - {else} - {$vo.content} - {/if} - {$vo.create_at|format_datetime} - {if $vo.status eq 0}已禁用{elseif $vo.status eq 1}使用中{/if} - - - {if auth("$classuri/edit")} - | - 编辑 - {/if} - - {if $vo.status eq 1 and auth("$classuri/forbid")} - | - 禁用 - {elseif auth("$classuri/resume")} - | - 启用 - {/if} - - {if auth("$classuri/del")} - | - 删除 - {/if} - -
- {if isset($page)}

{$page|raw}

{/if} - {/if} -
- -{/block} - -{block name="script"} - -{/block} \ No newline at end of file diff --git a/application/admin/view/news/form.html b/application/admin/view/news/form.html deleted file mode 100644 index befbff4ec..000000000 --- a/application/admin/view/news/form.html +++ /dev/null @@ -1,362 +0,0 @@ -{extend name='admin@public/content'} - -{block name='content'} - - -
-
图文列表
-
- {if empty($vo['articles']) eq false} - -
- - {$value.title} -
-
- - {else} -
- - -
-
- {/if} - - - -
-
- - - -
-
图文内容编辑
-
-
- -
-
-
- 标 题 - - -
-
-
- -
-
-
- 作 者 - -
-
-
- -
-
-
- -
-
-
- -
-
-
-
- 上传图片 - 选择图片 -

- -
-
-

封面大图片建议尺寸:900像素 * 500像素

-
-
-
- -
-
-
- -
-
- - -
-
-
-
- -
-
-
-
-
- -
-
-
-
-
-
- - -{/block} - - -{block name='script'} - - -{/block} - -{block name="style"} - -{/block} \ No newline at end of file diff --git a/application/admin/view/news/image.html b/application/admin/view/news/image.html deleted file mode 100644 index fc4a13b33..000000000 --- a/application/admin/view/news/image.html +++ /dev/null @@ -1,42 +0,0 @@ -{extend name='admin@public/main'} - -{block name='style'} - -{/block} - -{block name="body"} -
- {foreach $list as $key=>$vo} - - {/foreach} -
-
-
-
- {if isset($page)}{$page|raw}{/if} -
-{/block} - -{block name="script"} - -{/block} diff --git a/application/admin/view/news/index.html b/application/admin/view/news/index.html deleted file mode 100644 index 8930a12cf..000000000 --- a/application/admin/view/news/index.html +++ /dev/null @@ -1,168 +0,0 @@ -{extend name='admin@public/content'} - -{block name="button"} - -{/block} - -{block name='content'} - -
- {foreach $list as $vo} -
- - {foreach $vo.articles as $k => $v} - {if $k < 1} -
- {if $v.title}

{$v.title}

{/if} -
-
- {else} -
-
{$v.title}
-
-
-
- {/if} - {/foreach} -
- {/foreach} -
- {if empty($list)} -

没 有 记 录 哦!

- {/if} -
-{if isset($page)}

{$page|raw}

{/if} - -{/block} - -{block name='script'} - -{/block} - -{block name="style"} - -{/block} \ No newline at end of file diff --git a/application/admin/view/news/push.html b/application/admin/view/news/push.html deleted file mode 100644 index 67fba17b0..000000000 --- a/application/admin/view/news/push.html +++ /dev/null @@ -1,192 +0,0 @@ -
- -
-
微信图文
-
- {foreach $vo.articles as $key=>$value} -
-
- {$value.title} -
-
- {/foreach} -
-
- -
-
指定粉丝标签推送 全选
-
- - {foreach $fans_tags as $tag} - - {/foreach} - - {literal} - - {/literal} -
-
-
-
- -
- - -
- -
- - - - \ No newline at end of file diff --git a/application/admin/view/news/select.html b/application/admin/view/news/select.html deleted file mode 100644 index ebb2a4543..000000000 --- a/application/admin/view/news/select.html +++ /dev/null @@ -1,80 +0,0 @@ -{extend name='admin@public/main'} - -{block name='style'} - -{/block} - -{block name="body"} -
- {foreach $list as $vo} -
- {foreach $vo.articles as $k => $v} - {if $k < 1} -
- {if $v.title}

{$v.title}

{/if} -
-
- {else} -
-
{$v.title}
-
-
-
- {/if} - {/foreach} -
- {/foreach} -
- {if empty($list)}

没 有 记 录 哦!

{/if} -
-
-
{if isset($page)}{$page|raw}{/if}
-{/block} - - -{block name="script"} - -{/block} \ No newline at end of file diff --git a/application/admin/view/public/content.html b/application/admin/view/public/content.html index 26b5227f6..ba530561d 100644 --- a/application/admin/view/public/content.html +++ b/application/admin/view/public/content.html @@ -4,7 +4,7 @@
{$title}
-
{block name="button"}{/block}
+
{block name="button"}{/block}
{block name='content'}{/block}
diff --git a/application/admin/view/review/index.html b/application/admin/view/review/index.html deleted file mode 100644 index 5d75c7136..000000000 --- a/application/admin/view/review/index.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - {if ($type eq 'text') or ($type eq 'image') or ($type eq 'music')} -
-
{:date('H:i')}
-
-
- -
-
- {if $type eq 'text'} -
-
-
- {$content|default=''|raw|htmlspecialchars_decode} -
- {elseif $type eq 'image'} -
-
-
- -
- {elseif $type eq 'music'} -
-
-
- - - - - - - - -
- {$title|default=''} - -
-
- -
-
- {$desc|default=''}           -
-
- {/if} -
-
-
- {elseif $type eq 'article'} -
-
-
{$vo.title|default=''}
-
-
- {:date('Y-m-d',strtotime($vo['create_at']))} - {$vo.author|default=''} -
-
- {if $vo.show_cover_pic eq 1} -
- {/if} -
{$vo.content|default=''|raw}
- {if $vo.content_source_url} - - {/if} -
-
- {elseif $type eq 'video'} -
-
{:date('H:i')}
-
-
-
-
-
- {$title|default=''} -
-
{:date('m月d日')}
-
- -
- -
-
-
-
-
- - {elseif $type eq 'news'} -
-
{:date('H:i')}
-
-
-
- {if !empty($articles)} - {foreach $articles as $key=>$vo} - {if count($articles) gt 1} - {if $key < 1} -
-
-
- {$vo.title|default=''} -
-
- {else} - - - - - -
{$vo.title}
- {/if} - {else} -
-
- {$vo.title|default=''} -
-
- {:date('m月d日')} -
-
-
- {:str_replace([' ',"\n"],'',strip_tags($vo.digest))} ... -
-
- - {/if} - {/foreach} - {/if} -
-
-
-
- - {/if} - - \ No newline at end of file diff --git a/application/admin/view/tags/form.html b/application/admin/view/tags/form.html deleted file mode 100644 index 39ed800e6..000000000 --- a/application/admin/view/tags/form.html +++ /dev/null @@ -1,18 +0,0 @@ -
- -
- -
- -
-
- -
- -
- {if isset($vo['id'])}{/if} - - -
- -
diff --git a/application/admin/view/tags/index.html b/application/admin/view/tags/index.html deleted file mode 100644 index a53e2842f..000000000 --- a/application/admin/view/tags/index.html +++ /dev/null @@ -1,89 +0,0 @@ -{extend name='admin@public/content'} - -{block name="button"} - - - - - - - - - - - - - -{/block} - -{block name="content"} - - - - -
- {if empty($list)} -

没 有 记 录 哦!

- {else} - - - - - - - - - - - - - - {foreach $list as $key=>$vo} - - - - - - - - - {/foreach} - -
- - ID标签名称标签类型粉丝数操作
- - {$vo.id|default='0'}{$vo.name|default=''}{$vo.id < 100 ? "系统标签" : "自定义标签"}{$vo.count|default=''} - - {if auth("$classuri/edit")} - | - - 编辑 - - 编辑 - - {/if} - - {if auth("$classuri/del")} - | - - 删除 - - 删除 - - {/if} -
- {if isset($page)}

{$page|raw}

{/if} - {/if} -
-{/block} \ No newline at end of file diff --git a/application/wechat/controller/News.php b/application/wechat/controller/News.php index 74bb21803..48766ad3e 100644 --- a/application/wechat/controller/News.php +++ b/application/wechat/controller/News.php @@ -172,8 +172,9 @@ class News extends BasicAdmin foreach ($data as &$vo) { $vo['create_by'] = session('user.id'); $vo['create_at'] = date('Y-m-d H:i:s'); + $vo['content'] = htmlspecialchars_decode($vo['content']); if (empty($vo['digest'])) { - $vo['digest'] = mb_substr(strip_tags(str_replace(["\s", ' '], '', htmlspecialchars_decode($vo['content']))), 0, 120); + $vo['digest'] = mb_substr(strip_tags(str_replace(["\s", ' '], '', $vo['content'])), 0, 120); } if (empty($vo['id'])) { $result = $id = Db::name('WechatNewsArticle')->insertGetId($vo); diff --git a/application/wechat/controller/api/Push.php b/application/wechat/controller/api/Push.php index 3f2c14658..c1a847b49 100644 --- a/application/wechat/controller/api/Push.php +++ b/application/wechat/controller/api/Push.php @@ -59,6 +59,7 @@ class Push $this->appid = $request->post('appid', '', null); $this->openid = $request->post('openid', '', null); $this->receive = unserialize($request->post('receive', '', null)); + p($this->receive); if (empty($this->appid) || empty($this->openid) || empty($this->receive)) { throw new Exception('微信API实例缺失必要参数[appid,openid,event].'); } diff --git a/application/wechat/service/MediaService.php b/application/wechat/service/MediaService.php index 342c0dbf7..888f9caec 100644 --- a/application/wechat/service/MediaService.php +++ b/application/wechat/service/MediaService.php @@ -43,7 +43,6 @@ class MediaService foreach ($articles as $article) { if (intval($article['id']) === intval($article_id)) { unset($article['create_by'], $article['create_at']); - $article['content'] = htmlspecialchars_decode($article['content']); $data['articles'][] = $article; } }