123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\services\message\notice;
- use app\jobs\TemplateJob;
- use app\services\message\NoticeService;
- use app\services\kefu\service\StoreServiceServices;
- use app\services\user\UserServices;
- use app\services\wechat\WechatUserServices;
- use think\facade\Log;
- /**
- * 微信模版消息列表
- * Created by PhpStorm.
- * User: xurongyao <763569752@qq.com>
- * Date: 2021/9/22 1:23 PM
- */
- class WechatTemplateListService extends NoticeService
- {
- /**
- * 根据UID获取openid
- * @param int $uid
- * @return mixed
- */
- public function getOpenidByUid(int $uid)
- {
- $isDel = app()->make(UserServices::class)->value(['uid' => $uid], 'is_del');
- if ($isDel) {
- $openid = '';
- } else {
- $openid = app()->make(WechatUserServices::class)->uidToOpenid($uid, 'wechat');
- }
- return $openid;
- }
- /**
- * 发送模板消息
- * @param int $uid
- * @param array $data
- * @param string|null $link
- * @param string|null $color
- * @return bool|void
- */
- public function sendTemplate(int $uid, array $data, string $link = null, string $color = null)
- {
- try {
- if ($this->noticeInfo['is_wechat'] === 1) {
- $openid = $this->getOpenidByUid($uid);
- if ($openid != '') {
- //放入队列执行
- TemplateJob::dispatch('doJob', ['wechat', $openid, $this->noticeInfo['wechat_tempid'], $data, $link, $color]);
- }
- }
- } catch (\Exception $e) {
- Log::error($e->getMessage());
- return true;
- }
- }
- /**
- * 支付成功发送模板消息
- * @param $uid
- * @param $order
- * @return bool|void
- */
- public function sendOrderPaySuccess($uid, $order)
- {
- return $this->sendTemplate((int)$uid, [
- 'character_string2' => $order['order_id'],
- 'time4' => date('Y-m-d H:i:s', $order['pay_time']),
- 'thing3' => $order['storeName'],
- 'amount5' => $order['pay_price'],
- ], '/pages/goods/order_details/index?order_id=' . $order['order_id']);
- }
- /**
- * 订单配送通知
- * @param $uid
- * @param string $goodsName
- * @param $order
- * @param array $data
- * @return bool|void
- */
- public function sendOrderDeliver($uid, string $goodsName, $order)
- {
- return $this->sendTemplate((int)$uid, [
- 'character_string1' => $order['order_id'],
- 'time8' => date('Y-m-d H:i:s', time()),
- 'thing5' => $goodsName,
- 'thing9' => $order['delivery_name'],
- 'phone_number10' => $order['delivery_id'],
- ], '/pages/goods/order_details/index?order_id=' . $order['order_id']);
- }
- /**
- * 订单发货
- * @param $uid
- * @param $order
- * @param $storeTitle
- * @return bool|void
- */
- public function sendOrderPostage($uid, $order, $storeTitle)
- {
- return $this->sendTemplate((int)$uid, [
- 'character_string2' => $order['order_id'],
- 'time12' => date('Y-m-d H:i:s', time()),
- 'thing4' => $storeTitle,
- 'thing13' => $order['delivery_name'],
- 'character_string14' => $order['delivery_id'],
- ], '/pages/goods/order_details/index?order_id=' . $order['order_id']);
- }
- /**
- * 确认收货发送模板消息
- * @param $uid
- * @param $order
- * @param $title
- * @return bool|void
- */
- public function sendOrderTakeSuccess($uid, $order, $title)
- {
- return $this->sendTemplate((int)$uid, [
- 'character_string2' => $order['order_id'],
- 'character_string7' => date('Y-m-d H:i:s', time()),
- 'thing4' => $title,
- 'amount9' => $order['pay_price'],
- ], '/pages/goods/order_details/index?order_id=' . $order['order_id']);
- }
- /**
- * 发送退款模板消息
- * @param $uid
- * @param $order
- * @param $title
- * @return bool|void
- */
- public function sendOrderRefund($uid, $order, $title)
- {
- return $this->sendTemplate((int)$uid, [
- 'character_string1' => $order['refund_no'],
- 'time5' => date('Y-m-d H:i:s', time()),
- 'thing2' => $title,
- 'amount3' => $order['refund_price'],
- ], '/pages/goods/order_details/index?order_id=' . $order['refund_no'] . '&isReturen=1');
- }
- /**
- * 发送退款模板消息
- * @param $uid
- * @param $order
- * @param $title
- * @return bool|void
- */
- public function sendOrderNoRefund($uid, $order, $title)
- {
- return $this->sendTemplate((int)$uid, [
- 'character_string1' => $order['refund_no'],
- 'thing2' => $title,
- 'amount3' => $order['refund_price'],
- 'thing4' => $order['refuse_reason'],
- ], '/pages/goods/order_details/index?order_id=' . $order['refund_no'] . '&isReturen=1');
- }
- /**
- * 充值成功
- * @param $uid
- * @param $order
- * @return bool|void
- */
- public function sendRechargeSuccess($uid, $order)
- {
- return $this->sendTemplate((int)$uid, [
- 'time1' => date('Y-m-d H:i:s', $order['add_time']),
- 'amount3' => $order['price'],
- 'amount4' => $order['give_price'],
- 'amount5' => $order['now_money'],
- ]);
- }
- /**
- * 提现成功
- * @param $uid
- * @param $extractNumber
- * @return bool|void
- */
- public function sendUserExtract($uid, $extractNumber)
- {
- return $this->sendTemplate((int)$uid, [
- 'time3' => date('Y-m-d H:i:s', time()),
- 'amount2' => $extractNumber,
- ]);
- }
- /**
- * 订单给客服提醒
- * @param $orderId
- * @param $storeName
- * @param $title
- * @param $status
- * @param $link
- * @return bool
- */
- public function sendAdminOrder($orderId, $storeName, $title, $status, $link)
- {
- /** @var StoreServiceServices $StoreServiceServices */
- $StoreServiceServices = app()->make(StoreServiceServices::class);
- $adminList = $StoreServiceServices->getStoreServiceOrderNotice();
- foreach ($adminList as $item) {
- $this->sendTemplate((int)$item['uid'], [
- 'short_thing6' => $status,
- 'character_string1' => $orderId,
- 'time2' => date('Y-m-d H:i:s', time()),
- ], $link);
- }
- return true;
- }
- }
|