You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
294 lines
11 KiB
294 lines
11 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\admin\controller\wechat;
|
|
|
|
use app\admin\controller\AuthController;
|
|
use app\admin\model\article\Article;
|
|
use service\FormBuilder as Form;
|
|
use service\JsonService as Json;
|
|
use app\admin\model\wechat\WechatReply;
|
|
use app\admin\model\wechat\WechatUser;
|
|
use think\Db;
|
|
use think\Request;
|
|
use think\Url;
|
|
use service\WechatService;
|
|
use app\admin\model\wechat\WechatNewsCategory as WechatNewsCategoryModel;
|
|
use app\admin\model\article\Article as ArticleModel;
|
|
use app\admin\model\article\ArticleContent;
|
|
|
|
/**
|
|
* 图文信息
|
|
* Class WechatNewsCategory
|
|
* @package app\admin\controller\wechat
|
|
*
|
|
*/
|
|
class WechatNewsCategory extends AuthController
|
|
{
|
|
public function select($callback = '_selectNews$eb')
|
|
{
|
|
$where = parent::getMore([
|
|
['cate_name', '']
|
|
], $this->request);
|
|
$this->assign('where', $where);
|
|
$this->assign('callback', $callback);
|
|
$this->assign(WechatNewsCategoryModel::getAll($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$where = parent::getMore([
|
|
['cate_name', '']
|
|
], $this->request);
|
|
$this->assign('where', $where);
|
|
$this->assign(WechatNewsCategoryModel::getAll($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function create()
|
|
{
|
|
$f = array();
|
|
$f[] = Form::input('cate_name', '分类名称')->autofocus(1);
|
|
$f[] = Form::select('new_id', '图文列表')->setOptions(function () {
|
|
$list = ArticleModel::getNews();
|
|
$options = [];
|
|
foreach ($list as $id => $roleName) {
|
|
$options[] = ['label' => $roleName, 'value' => $id];
|
|
}
|
|
return $options;
|
|
})->filterable(1)->multiple(1);
|
|
$form = Form::make_post_form('编辑菜单', $f, Url::build('save'), 2);
|
|
$this->assign(compact('form'));
|
|
return $this->fetch('public/form-builder');
|
|
}
|
|
|
|
public function save(Request $request)
|
|
{
|
|
$data = parent::postMore([
|
|
'cate_name',
|
|
['new_id', []],
|
|
['sort', 0],
|
|
['add_time', time()],
|
|
['status', 1],], $request);
|
|
if (!$data['cate_name']) return Json::fail('请输入图文名称');
|
|
if (empty($data['new_id'])) return Json::fail('请选择图文列表');
|
|
$data['new_id'] = array_unique($data['new_id']);
|
|
if (count($data['new_id']) > 8) {
|
|
$data['new_id'] = array_slice($data['new_id'], 0, 8);
|
|
};
|
|
$data['new_id'] = implode(',', $data['new_id']);
|
|
WechatNewsCategoryModel::set($data);
|
|
return Json::successful('添加菜单成功!');
|
|
}
|
|
|
|
public function edit($id)
|
|
{
|
|
$menu = WechatNewsCategoryModel::get($id);
|
|
if (!$menu) return Json::fail('数据不存在!');
|
|
$arr_new_id = array_unique(explode(',', $menu->new_id));
|
|
foreach ($arr_new_id as $k => $v) {
|
|
$arr_new_id[$k] = intval($v);
|
|
}
|
|
$f = array();
|
|
$f[] = Form::input('cate_name', '分类名称', $menu['cate_name'])->autofocus(1);
|
|
$f[] = Form::select('new_id', '图文列表', $arr_new_id)->setOptions(function () {
|
|
$list = ArticleModel::getNews();
|
|
$options = [];
|
|
foreach ($list as $id => $roleName) {
|
|
$options[] = ['label' => $roleName, 'value' => $id];
|
|
}
|
|
return $options;
|
|
})->filterable(1)->multiple(1);
|
|
$form = Form::make_post_form('编辑图文', $f, Url::build('update', compact('id')), 2);
|
|
$this->assign(compact('form'));
|
|
return $this->fetch('public/form-builder');
|
|
}
|
|
|
|
public function update(Request $request, $id)
|
|
{
|
|
$data = parent::postMore([
|
|
'cate_name',
|
|
['new_id', []],
|
|
['sort', 0],
|
|
['status', 1]
|
|
], $request);
|
|
if (!$data['cate_name']) return Json::fail('请输入图文名称');
|
|
if (empty($data['new_id'])) return Json::fail('请选择图文列表');
|
|
if (count($data['new_id']) > 8) {
|
|
$data['new_id'] = array_slice($data['new_id'], 0, 8);
|
|
};
|
|
$data['new_id'] = implode(',', $data['new_id']);;
|
|
if (!WechatNewsCategoryModel::get($id)) return Json::fail('编辑的记录不存在!');
|
|
WechatNewsCategoryModel::edit($data, $id);
|
|
return Json::successful('修改成功!');
|
|
}
|
|
|
|
public function delete($id)
|
|
{
|
|
$cate = WechatNewsCategoryModel::get($id);
|
|
if (!$cate) {
|
|
return Json::fail(WechatNewsCategoryModel::getErrorInfo('删除失败,请稍候再试!'));
|
|
} else {
|
|
$res = WechatNewsCategoryModel::del($id);
|
|
$res1 = Article::where('id', $cate['new_id'])->delete();
|
|
if ($res && $res1) {
|
|
ArticleContent::where('nid', $cate['new_id'])->delete();
|
|
return Json::successful('删除成功!');
|
|
} else {
|
|
return Json::fail(WechatNewsCategoryModel::getErrorInfo('删除失败,请稍候再试!'));
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* 发送消息
|
|
* @param int $id
|
|
* @param string $wechat
|
|
* $wechat 不为空 发消息 / 空 群发消息
|
|
*/
|
|
public function push($id = 0, $wechat = '')
|
|
{
|
|
if (!$id) return Json::fail('参数错误');
|
|
$list = WechatNewsCategoryModel::getWechatNewsItem($id);
|
|
$wechatNews = [];
|
|
if ($list) {
|
|
if ($list['new'] && is_array($list['new'])) {
|
|
foreach ($list['new'] as $kk => $vv) {
|
|
$wechatNews[$kk]['title'] = $vv['title'];
|
|
$wechatNews[$kk]['image'] = $vv['image_input'];
|
|
$wechatNews[$kk]['date'] = date('m月d日', time());
|
|
$wechatNews[$kk]['description'] = $vv['synopsis'];
|
|
$wechatNews[$kk]['id'] = $vv['id'];
|
|
}
|
|
}
|
|
}
|
|
if ($wechat != '') {//客服消息
|
|
$wechatNews = WechatReply::tidyNews($wechatNews);
|
|
$message = WechatService::newsMessage($wechatNews);
|
|
$errorLog = [];//发送失败的用户
|
|
$user = WechatUser::where('uid', 'IN', $wechat)->column('nickname,subscribe,openid', 'uid');
|
|
if ($user) {
|
|
foreach ($user as $v) {
|
|
if ($v['subscribe'] && $v['openid']) {
|
|
try {
|
|
WechatService::staffService()->message($message)->to($v['openid'])->send();
|
|
} catch (\Exception $e) {
|
|
$errorLog[] = $v['nickname'] . '发送失败';
|
|
}
|
|
} else {
|
|
$errorLog[] = $v['nickname'] . '没有关注发送失败(不是微信公众号用户)';
|
|
}
|
|
}
|
|
} else return Json::fail('发送失败,参数不正确');
|
|
if (!count($errorLog)) return Json::successful('全部发送成功');
|
|
else return Json::successful(implode(',', $errorLog) . ',剩余的发送成功');
|
|
} else {//群发消息
|
|
}
|
|
}
|
|
|
|
public function send_news($id = '')
|
|
{
|
|
if ($id == '') return $this->failed('参数错误');
|
|
$where = parent::getMore([
|
|
['cate_name', '']
|
|
], $this->request);
|
|
$this->assign('where', $where);
|
|
$this->assign('wechat', $id);
|
|
$this->assign(WechatNewsCategoryModel::getAll($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function append()
|
|
{
|
|
$this->assign('list', [
|
|
[
|
|
'id' => 0,
|
|
'title' => '',
|
|
'author' => $this->adminInfo['real_name'],
|
|
'content' => '',
|
|
'image_input' => '/system/module/wechat/news/images/image.png',
|
|
'synopsis' => '',
|
|
]
|
|
]);
|
|
$this->assign('id', 0);
|
|
$this->assign('author', $this->adminInfo['real_name']);
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function append_save(Request $request)
|
|
{
|
|
$data = parent::postMore([
|
|
['list', []],
|
|
['id', 0]
|
|
], $request);
|
|
$id = [];
|
|
$countList = count($data['list']);
|
|
if (!$countList) return Json::fail('请添加图文');
|
|
Article::beginTrans();
|
|
foreach ($data['list'] as $k => $v) {
|
|
if ($v['title'] == '') return Json::fail('标题不能为空');
|
|
if ($v['author'] == '') return Json::fail('作者不能为空');
|
|
if ($v['content'] == '') return Json::fail('正文不能为空');
|
|
if ($v['synopsis'] == '') return Json::fail('摘要不能为空');
|
|
$v['status'] = 1;
|
|
$v['hide'] = 1;
|
|
$v['add_time'] = time();
|
|
if ($v['id']) {
|
|
$idC = $v['id'];
|
|
unset($v['id']);
|
|
Article::edit($v, $idC);
|
|
ArticleContent::where('nid', $idC)->update(['content' => $v['content']]);
|
|
$data['list'][$k]['id'] = $idC;
|
|
$id[] = $idC;
|
|
} else {
|
|
unset($v['id']);
|
|
$v['is_show'] = 1;
|
|
$res = Article::set($v)->toArray();
|
|
$id[] = $res['id'];
|
|
$data['list'][$k]['id'] = $res['id'];
|
|
ArticleContent::insert(['content' => $v['content'], 'nid' => $res['id']]);
|
|
}
|
|
}
|
|
$countId = count($id);
|
|
if ($countId != $countList) {
|
|
Article::checkTrans(false);
|
|
if ($data['id']) return Json::fail('修改失败');
|
|
else return Json::fail('添加失败');
|
|
} else {
|
|
Article::checkTrans(true);
|
|
$newsCategory['cate_name'] = $data['list'][0]['title'];
|
|
$newsCategory['new_id'] = implode(',', $id);
|
|
$newsCategory['sort'] = 0;
|
|
$newsCategory['add_time'] = time();
|
|
$newsCategory['status'] = 1;
|
|
if ($data['id']) {
|
|
WechatNewsCategoryModel::edit($newsCategory, $data['id']);
|
|
return Json::successful('修改成功');
|
|
} else {
|
|
WechatNewsCategoryModel::set($newsCategory);
|
|
return Json::successful('添加成功');
|
|
}
|
|
}
|
|
}
|
|
|
|
public function modify($id)
|
|
{
|
|
$menu = WechatNewsCategoryModel::get($id);
|
|
$list = Article::getArticleList($menu['new_id']);
|
|
$this->assign('list', $list);
|
|
$this->assign('id', $id);
|
|
$this->assign('author', $this->adminInfo['real_name']);
|
|
return $this->fetch('append');
|
|
}
|
|
|
|
}
|
|
|