截流自动化的商城平台
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.

YlyPrinter.php 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LikeShop有特色的全开源社交分销电商系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 商业用途务必购买系统授权,以免引起不必要的法律纠纷
  7. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  8. // | 微信公众号:好象科技
  9. // | 访问官网:http://www.likeshop.net
  10. // | 访问社区:http://bbs.likeshop.net
  11. // | 访问手册:http://doc.likeshop.net
  12. // | 好象科技开发团队 版权所有 拥有最终解释权
  13. // +----------------------------------------------------------------------
  14. // | Author: LikeShopTeam
  15. // +----------------------------------------------------------------------
  16. namespace app\common\server;
  17. use App\Api\PrinterService;
  18. use App\Api\PrintService;
  19. use App\Oauth\YlyOauthClient;
  20. use App\Config\YlyConfig;
  21. use think\facade\Cache;
  22. class YlyPrinter
  23. {
  24. private $client_id = '';
  25. private $client_secret = '';
  26. private $yly_config = '';
  27. protected $access_token = '';
  28. protected $shop_id = 0;
  29. public function __construct($client_id = '', $client_secret = '', $shop_id = 0)
  30. {
  31. $this->client_id = $client_id; //应用id
  32. $this->client_secret = $client_secret; // 应用密钥
  33. $this->shop_id = $shop_id;
  34. $this->yly_config = new YlyConfig($this->client_id, $this->client_secret);
  35. // $this->access_token = Cache::get('yly_access_token' . $shop_id);
  36. $this->access_token = Cache::get('yly_access_token' . $this->client_id);
  37. //没有access_token时获取
  38. if (empty($this->access_token)) {
  39. $this->getToken();
  40. }
  41. }
  42. /**
  43. * Notes:获取access_token
  44. * @return mixed
  45. */
  46. public function getToken()
  47. {
  48. $client = new YlyOauthClient($this->yly_config);
  49. $token = $client->getToken();
  50. $this->access_token = $token->access_token;
  51. // Cache::tag('yly_printer')->set('yly_access_token' . $this->shop_id, $this->access_token);
  52. Cache::tag('yly_printer')->set('yly_access_token' . $this->client_id, $this->access_token);
  53. //刷新token、有效期35天(自用型刷新token作用不大)
  54. // Cache::tag('yly_printer')->set('yly_refresh_token' . $this->shop_id, $token->refresh_token, 35 * 24 * 3600);
  55. Cache::tag('yly_printer')->set('yly_refresh_token' . $this->client_id, $token->refresh_token, 35 * 24 * 3600);
  56. }
  57. /**
  58. * Notes:刷新access_token
  59. * @return mixed
  60. */
  61. public function refreshToken()
  62. {
  63. $client = new YlyOauthClient($this->yly_config);
  64. // $token = $client->refreshToken(Cache::get('yly_refresh_token' . $this->shop_id));
  65. $token = $client->refreshToken(Cache::get('yly_refresh_token' . $this->client_id));
  66. $this->access_token = $token->access_token;
  67. //重置token
  68. // Cache::tag('yly_printer')->set('yly_access_token' . $this->shop_id, $this->access_token);
  69. Cache::tag('yly_printer')->set('yly_access_token' . $this->client_id, $this->access_token);
  70. // Cache::tag('yly_printer')->set('yly_refresh_token' . $this->shop_id, $token->refresh_token, 35 * 24 * 3600);
  71. Cache::tag('yly_printer')->set('yly_refresh_token' . $this->client_id, $token->refresh_token, 35 * 24 * 3600);
  72. }
  73. /**
  74. * Notes: 添加打印机
  75. * @param string $machine_code 终端号
  76. * @param string $msign 秘钥
  77. * @param string $print_name 打印机名称
  78. * @return bool|string
  79. */
  80. public function addPrinter($machine_code, $msign, $print_name)
  81. {
  82. $print = new PrinterService($this->access_token, $this->yly_config);
  83. $response = $print->addPrinter($machine_code, $msign, $print_name);
  84. return $response;
  85. }
  86. /**
  87. * Notes:删除打印机
  88. * @param string $machine_code 终端号
  89. * @return bool|string
  90. */
  91. public function deletePrinter($machine_code)
  92. {
  93. $print = new PrinterService($this->access_token, $this->yly_config);
  94. $print->deletePrinter($machine_code);
  95. }
  96. /**
  97. * Notes: 设置logo
  98. * @param string $machine_code 终端号
  99. * @param string $url logo
  100. */
  101. public function setIcon($machine_code, $url)
  102. {
  103. $print = new PrinterService($this->access_token, $this->yly_config);
  104. $print->setIcon($machine_code, $url);
  105. }
  106. /**
  107. * Notes:获取终端状态
  108. * @param string $machine_code 终端号
  109. */
  110. public function getPrintStatus($machine_code)
  111. {
  112. $print = new PrinterService($this->access_token, $this->yly_config);
  113. $response = $print->getPrintStatus($machine_code);
  114. return $response;
  115. }
  116. /**
  117. * @notes
  118. * @param array $printer_list
  119. * @param $order
  120. * @param $template_config
  121. * @author 段誉
  122. * @date 2022/1/20 11:19
  123. */
  124. public function ylyPrint($printer_list = [], $order, $template_config)
  125. {
  126. $print = new PrintService($this->access_token, $this->yly_config);
  127. $order['title'] = $template_config['title'] ?? '';
  128. $order['qr_code'] = $template_config['qr_code_link'] ?? '';
  129. $order['remark'] = $template_config['remark'] ?? '';
  130. foreach ($printer_list as $printer) {
  131. if ($printer['machine_code']) {
  132. $content = "<MN>" . $printer['print_number'] . "</MN>";
  133. if ($order['title']) {
  134. $content .= "<FS2><center>" . $order['title'] . "</center></FS2>";
  135. }
  136. $content .= PHP_EOL;
  137. $content .= "下单时间:" . date("Y-m-d H:i") . PHP_EOL;
  138. $content .= "订单编号:" . $order['order_sn'] . PHP_EOL;
  139. $content .= PHP_EOL;
  140. $content .= "<FS2>收货信息</FS2>" . PHP_EOL;
  141. $content .= PHP_EOL;
  142. $content .= "联系人:" . $order['consignee'] . PHP_EOL;
  143. $content .= "手机号码:" . $order['mobile'] . PHP_EOL;
  144. $content .= "收货地址:" . $order['delivery_address'] . PHP_EOL;
  145. $content .= PHP_EOL;
  146. $content .= "<FS2>商品信息</FS2>" . PHP_EOL;
  147. $content .= str_repeat('-', 32) . PHP_EOL;
  148. foreach ($order['order_goods'] as $goods) {
  149. $content .= $goods['goods_name'] . PHP_EOL;
  150. $content .= $goods['spec_value'] . " " . "x" . $goods['goods_num'] . " " . $goods['goods_price'] . PHP_EOL;
  151. $content .= PHP_EOL;
  152. }
  153. $content .= str_repeat('-', 32) . PHP_EOL;
  154. $content .= "商品金额:¥" . $order['goods_price'] . PHP_EOL;
  155. $content .= "优惠:¥" . round($order['discount_amount'] + $order['member_amount'], 2) . PHP_EOL;
  156. $content .= "运费:¥" . $order['shipping_price'] . PHP_EOL;
  157. $content .= "合计:¥" . $order['order_amount'] . PHP_EOL;
  158. $content .= PHP_EOL;
  159. if ($order['user_remark']) {
  160. $content .= '订单备注:' . $order['user_remark'] . PHP_EOL;
  161. }
  162. $content .= PHP_EOL;
  163. //二维码
  164. if ($order['qr_code']) {
  165. $content .= "<QR>" . $order['qr_code'] . "</QR>" . PHP_EOL;
  166. }
  167. if ($order['remark']) {
  168. $content .= "<center>" . $order['remark'] . "</center>" . PHP_EOL;
  169. }
  170. $print->index($printer['machine_code'], $content, $order['order_sn']);
  171. }
  172. }
  173. }
  174. }