ProgramTemplateService.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. namespace crmeb\services;
  3. use app\admin\model\wechat\WechatUser;
  4. use app\admin\model\wechat\StoreService as ServiceModel;
  5. use crmeb\interfaces\ProviderInterface;
  6. use think\facade\Db;
  7. /**
  8. * 小程序模板消息
  9. * Class RoutineTemplate
  10. * @package app\routine\model\routine
  11. */
  12. class ProgramTemplateService implements ProviderInterface
  13. {
  14. //订单支付成功
  15. const ORDER_PAY_SUCCESS = 'AT0009';
  16. //砍价成功
  17. const BARGAIN_SUCCESS = 'AT1173';
  18. //申请退款通知
  19. const ORDER_REFUND_STATUS = 'AT0036';
  20. //退款成功
  21. const ORDER_REFUND_SUCCESS = 'AT0787';
  22. //退款失败
  23. const ORDER_REFUND_FILE = 'AT0329';
  24. //订单发货提醒(快递)
  25. const ORDER_POSTAGE_SUCCESS = 'AT0007';
  26. //订单发货提醒(送货)
  27. const ORDER_DELIVER_SUCCESS = 'AT2233';
  28. //拼团取消通知
  29. const PINK_REMOVE = 'AT2430';
  30. //拼团失败
  31. const PINK_Fill = 'AT0310';
  32. //拼团成功
  33. const PINK_TRUE = 'AT0051';
  34. //开团成功
  35. const OPEN_PINK_SUCCESS = 'AT0541';
  36. //确认收货通知
  37. const OREDER_TAKEVER = 'AT0241';
  38. //提现成功通知
  39. const USER_EXTRACT_TRUE = 'AT1330';
  40. //提现失败通知
  41. const USER_EXTRACT_FALSE = 'AT1242';
  42. public static function getConstants($code = '')
  43. {
  44. $oClass = new \ReflectionClass(__CLASS__);
  45. $stants = $oClass->getConstants();
  46. if ($code) return isset($stants[$code]) ? $stants[$code] : '';
  47. else return $stants;
  48. }
  49. public function register($config)
  50. {
  51. }
  52. /**
  53. * 根据模板编号获取模板ID
  54. * @param string $tempKey
  55. * @return mixed|string
  56. */
  57. public static function setTemplateId($tempKey = '')
  58. {
  59. if ($tempKey == '') return '';
  60. return Db::name('RoutineTemplate')->where('tempkey', $tempKey)->where('status', 1)->value('tempid');
  61. }
  62. /**
  63. * 发送模板消息
  64. * @param string $tempCode 所需下发的模板编号
  65. * @param string $openId 接收者(用户)的 openid
  66. * @param array $dataKey 模板内容,不填则下发空模板
  67. * @param string $formId 表单提交场景下,为 submit 事件带上的 formId;支付场景下,为本次支付的 prepay_id
  68. * @param string $link 点击模板卡片后的跳转页面,仅限本小程序内的页面。支持带参数,(示例index?foo=bar)。该字段不填则模板无跳转。
  69. * @param string $emphasisKeyword 模板需要放大的关键词,不填则默认无放大
  70. * @return bool|mixed
  71. */
  72. public static function sendTemplate($tempCode = '', $openId = '', $dataKey = array(), $formId = '', $link = '', $defaultColor = null)
  73. {
  74. if ($openId == '' || $tempCode == '' || $formId == '') return false;
  75. try {
  76. return MiniProgramService::sendTemplate($openId, trim(self::setTemplateId(self::getConstants($tempCode))), $dataKey, $formId, $link, $defaultColor);
  77. } catch (\Exception $e) {
  78. return false;
  79. }
  80. }
  81. /**服务进度通知
  82. * @param array $data
  83. * @param null $url
  84. * @param string $defaultColor
  85. * @return bool
  86. */
  87. public static function sendAdminNoticeTemplate(array $data, $url = null, $defaultColor = '')
  88. {
  89. $adminIds = explode(',', trim(sys_config('site_store_admin_uids')));
  90. $kefuIds = ServiceModel::where('notify', 1)->column('uid', 'uid');
  91. if (empty($adminIds[0])) {
  92. $adminList = array_unique($kefuIds);
  93. } else {
  94. $adminList = array_unique(array_merge($adminIds, $kefuIds));
  95. }
  96. if (!is_array($adminList) || empty($adminList)) return false;
  97. foreach ($adminList as $uid) {
  98. try {
  99. $openid = WechatUser::uidToRoutineOpenid($uid);
  100. } catch (\Exception $e) {
  101. continue;
  102. }
  103. // self::sendTemplate($openid,self::ADMIN_NOTICE,$data,$url,$defaultColor);
  104. }
  105. }
  106. /**
  107. * 返回所有支持的行业列表
  108. * @return \EasyWeChat\Support\Collection
  109. */
  110. public static function getIndustry()
  111. {
  112. return MiniProgramService::noticeService()->getIndustry();
  113. }
  114. /**
  115. * 修改账号所属行业
  116. * 主行业 副行业 代码
  117. * IT科技 互联网/电子商务 1
  118. * IT科技 IT软件与服务 2
  119. * IT科技 IT硬件与设备 3
  120. * IT科技 电子技术 4
  121. * IT科技 通信与运营商 5
  122. * IT科技 网络游戏 6
  123. * 金融业 银行 7
  124. * 金融业 基金|理财|信托 8
  125. * 金融业 保险 9
  126. * 餐饮 餐饮 10
  127. * 酒店旅游 酒店 11
  128. * 酒店旅游 旅游 12
  129. * 运输与仓储 快递 13
  130. * 运输与仓储 物流 14
  131. * 运输与仓储 仓储 15
  132. * 教育 培训 16
  133. * 教育 院校 17
  134. * 政府与公共事业 学术科研 18
  135. * 政府与公共事业 交警 19
  136. * 政府与公共事业 博物馆 20
  137. * 政府与公共事业 公共事业|非盈利机构 21
  138. * 医药护理 医药医疗 22
  139. * 医药护理 护理美容 23
  140. * 医药护理 保健与卫生 24
  141. * 交通工具 汽车相关 25
  142. * 交通工具 摩托车相关 26
  143. * 交通工具 火车相关 27
  144. * 交通工具 飞机相关 28
  145. * 房地产 建筑 29
  146. * 房地产 物业 30
  147. * 消费品 消费品 31
  148. * 商业服务 法律 32
  149. * 商业服务 会展 33
  150. * 商业服务 中介服务 34
  151. * 商业服务 认证 35
  152. * 商业服务 审计 36
  153. * 文体娱乐 传媒 37
  154. * 文体娱乐 体育 38
  155. * 文体娱乐 娱乐休闲 39
  156. * 印刷 印刷 40
  157. * 其它 其它 41
  158. * @param $industryId1
  159. * @param $industryId2
  160. * @return \EasyWeChat\Support\Collection
  161. */
  162. public static function setIndustry($industryId1, $industryId2)
  163. {
  164. return MiniProgramService::noticeService()->setIndustry($industryId1, $industryId2);
  165. }
  166. /**
  167. * 获取所有模板列表
  168. * @return \EasyWeChat\Support\Collection
  169. */
  170. public static function getPrivateTemplates()
  171. {
  172. return MiniProgramService::noticeService()->getPrivateTemplates();
  173. }
  174. /**
  175. * 删除指定ID的模板
  176. * @param $templateId
  177. * @return \EasyWeChat\Support\Collection
  178. */
  179. public static function deletePrivateTemplate($templateId)
  180. {
  181. return MiniProgramService::noticeService()->deletePrivateTemplate($templateId);
  182. }
  183. /**
  184. * 添加模板并获取模板ID
  185. * @param $shortId
  186. * @return \EasyWeChat\Support\Collection
  187. */
  188. public static function addTemplate($shortId)
  189. {
  190. return MiniProgramService::noticeService()->addTemplate($shortId);
  191. }
  192. }