common.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. <?php
  2. use AlibabaCloud\SDK\Cloudauth\V20190307\Cloudauth;
  3. use AlibabaCloud\SDK\Cloudauth\V20190307\Models\DescribeFaceVerifyRequest;
  4. use AlibabaCloud\SDK\Cloudauth\V20190307\Models\InitFaceVerifyRequest;
  5. use AlibabaCloud\Tea\Exception\TeaError;
  6. use AlibabaCloud\Tea\Utils\Utils;
  7. use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
  8. use app\data\model\DataUserRepair;
  9. use app\data\model\ShopPurchase;
  10. use Darabonba\OpenApi\Models\Config;
  11. use think\admin\model\SystemConfig;
  12. use app\common\library\QRcode;
  13. use PhpOffice\PhpWord\TemplateProcessor;
  14. use JPush\Client as jpush;
  15. function systemConfig($name,$value=null){
  16. $nameArr=array_filter(explode('.',$name));
  17. if(is_null($value)){
  18. if(count($nameArr)==1) {
  19. $source = SystemConfig::where('type', $nameArr[0])->select();
  20. $data=[];
  21. foreach ($source as $model){
  22. $value=$model['value'];
  23. if($decode=json_decode($value,true)){
  24. $value=$decode;
  25. }
  26. $data[$model['name']]=$value;
  27. }
  28. return $data?:null;
  29. }else{
  30. $model = SystemConfig::where('type', $nameArr[0])->where('name',$nameArr[1])->find();
  31. $value=$model['value'];
  32. if($decode=json_decode($value,true)){
  33. $value=$decode;
  34. }
  35. return $value;
  36. }
  37. }else{
  38. SystemConfig::where('type', $nameArr[0])->delete();
  39. if(count($nameArr)==1) {
  40. if(is_array($value)){
  41. foreach ($value as $key=>$val){
  42. SystemConfig::insert([
  43. 'type'=>$nameArr[0],
  44. 'name'=>$key,
  45. 'value'=>is_array($val)?json_encode($val,256):$val,
  46. ]);
  47. }
  48. }
  49. }else{
  50. SystemConfig::insert([
  51. 'type'=>$nameArr[0],
  52. 'name'=>$nameArr[1],
  53. 'value'=>$value,
  54. ]);
  55. }
  56. }
  57. }
  58. /**
  59. * 生成??位随机数
  60. */
  61. function get32Str($length='32'){
  62. // $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  63. $str = 'abcdefghijklmnopqrstuvwxyz0123456789';
  64. $len = strlen($str)-1;
  65. $randstr = '';
  66. for ($i=0;$i<$length;$i++) {
  67. $num=mt_rand(0,$len);
  68. $randstr .= $str[$num];
  69. }
  70. return $randstr;
  71. }
  72. /**
  73. * 使用AK&SK初始化账号Client
  74. * @param string $accessKeyId
  75. * @param string $accessKeySecret
  76. * @return Cloudauth Client
  77. */
  78. function createClient($accessKeyId, $accessKeySecret){
  79. $config = new Config([
  80. // 您的 AccessKey ID
  81. "accessKeyId" => $accessKeyId,
  82. // 您的 AccessKey Secret
  83. "accessKeySecret" => $accessKeySecret,
  84. ]);
  85. // 访问的域名
  86. $config->endpoint = "cloudauth.aliyuncs.com";
  87. return new Cloudauth($config);
  88. }
  89. /**
  90. * @param string[] $args
  91. * @return void
  92. */
  93. function main($certName,$certNo,$metaInfo,$ReturnUrl){
  94. $client = createClient("LTAI5tMVT8vs7B1CApqhEgBo", "ESDiEM6zED1vyCMoGc9j5gZ9hWIXkP");
  95. $initFaceVerifyRequest = new InitFaceVerifyRequest([
  96. "sceneId" => '1000006090',
  97. "outerOrderNo" => get32Str(),
  98. // 要接入的认证方案。
  99. "productCode" => "ID_PRO",
  100. "certType" => "IDENTITY_CARD",
  101. "certName" => $certName,
  102. "certNo" => $certNo,
  103. // MetaInfo环境参数,需要通过客户端SDK获取。
  104. "metaInfo" => $metaInfo,
  105. "returnUrl" => $ReturnUrl,
  106. ]);
  107. $runtime = new RuntimeOptions([]);
  108. try {
  109. // 复制代码运行请自行打印 API 的返回值
  110. $res = $client->initFaceVerifyWithOptions($initFaceVerifyRequest, $runtime);
  111. return $res;
  112. } catch (Exception $error) {
  113. if (!($error instanceof TeaError)) {
  114. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  115. }
  116. // 如有需要,请打印 error
  117. Utils::assertAsString($error->message);
  118. return '';
  119. }
  120. }
  121. /**
  122. * @param string[] $args
  123. * @return void
  124. */
  125. function check($CertifyId){
  126. $client = createClient("LTAI5tMVT8vs7B1CApqhEgBo", "ESDiEM6zED1vyCMoGc9j5gZ9hWIXkP");
  127. $describeFaceVerifyRequest = new DescribeFaceVerifyRequest([
  128. 'sceneId' => '1000006090',
  129. 'certifyId' => $CertifyId,
  130. ]);
  131. $runtime = new RuntimeOptions([]);
  132. try {
  133. // 复制代码运行请自行打印 API 的返回值
  134. $rs = $client->describeFaceVerifyWithOptions($describeFaceVerifyRequest, $runtime);
  135. return $rs;
  136. }
  137. catch (Exception $error) {
  138. if (!($error instanceof TeaError)) {
  139. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  140. }
  141. // 如有需要,请打印 error
  142. Utils::assertAsString($error->message);
  143. return false;
  144. }
  145. }
  146. /**
  147. * 生成二维码
  148. */
  149. function setqrcode($value,$name){
  150. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/';
  151. if(!file_exists($dir)){
  152. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  153. mkdir($dir, 0700,true);
  154. }
  155. $filename = $dir.'/'.$name.'.png';
  156. QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  157. $url = 'https://'.$_SERVER['SERVER_NAME']."/".$name.'.png';
  158. return $url;
  159. }
  160. //生成邀请二维码
  161. function setappcode($address){
  162. $name = time();
  163. $url = setqrcode($address,$name);
  164. return $url;
  165. }
  166. //维修单,四大订单生成下载文件
  167. function setword($type,$id){
  168. $url = '';
  169. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/';
  170. $dir2 = $dir.'down/';
  171. if(!file_exists($dir2)){
  172. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  173. mkdir($dir2, 0700,true);
  174. }
  175. switch ($type){
  176. case 1: //维修订单
  177. $templateProcessor = new TemplateProcessor($dir.'/wxdd.docx');
  178. $info = DataUserRepair::mk()->with(['user','user2'])->findOrEmpty($id);
  179. $array = [
  180. 'order_no'=>$info['order_no'],
  181. 'date'=>$info['start_time'],
  182. 'fbz'=>$info['user']['nickname'],
  183. 'jdf'=>$info['user2']['nickname'],
  184. 'fbzphone'=>$info['user']['phone'],
  185. 'jdfphone'=>$info['user2']['phone'],
  186. 'address'=>$info['province'].$info['city'].$info['area'].$info['address'],
  187. 'time'=>$info['start_time'].'-'.$info['end_time'],
  188. 'desc'=>$info['describe'],
  189. 'price'=>$info['success_price']
  190. ];
  191. $templateProcessor->setValues($array);
  192. $name = 'wxdd-'.$id.'-'.time().'.docx';
  193. $url = 'https://'.$_SERVER['SERVER_NAME']."/down/".$name;
  194. $templateProcessor->saveAs($dir2.$name);
  195. break;
  196. case 2: //采购订单
  197. $templateProcessor = new TemplateProcessor($dir.'/cgdd.docx');
  198. $info = $model=ShopPurchase::getItem(1)
  199. ->lock(true)
  200. ->where('id',$id)
  201. ->with(['main','ppoffer','main.merchant','ppoffer.user'])
  202. ->findOrEmpty();
  203. $allprice = bcmul($info['price'],$info['number'],2);
  204. $array = [
  205. 'order_no'=>$info['main']['order_no'],
  206. 'date'=>date('Y-m-d',strtotime($info['main']['post_time'])),
  207. 'shopname'=>$info['main']['merchant']['name'],
  208. 'mfname'=>$info['main']['merchant']['contact_name'],
  209. 'mfphone'=>$info['main']['merchant']['contact_phone'],
  210. 'mmfname'=>$info['ppoffer']['user']['nickname'],
  211. 'mmfphone'=>$info['ppoffer']['user']['phone'],
  212. 'id'=>1,
  213. 'name'=>$info['name'],
  214. 'gg'=>$info['spec'],
  215. 'num'=>$info['number'],
  216. 'price'=>$info['price'],
  217. 'allprice'=>$allprice,
  218. 'dxprice'=>num_to_rmb($allprice),
  219. 'toprice'=>$allprice,
  220. 'sprice'=>$info['ppoffer']['amount']
  221. ];
  222. $templateProcessor->setValues($array);
  223. $name = 'cgdd-'.$id.'-'.time().'.docx';
  224. $url = 'https://'.$_SERVER['SERVER_NAME']."/down/".$name;
  225. $templateProcessor->saveAs($dir2.$name);
  226. break;
  227. case 3: case 4: //生产订单//外协订单
  228. if ($type==3){
  229. $filename = 'scdd';
  230. }elseif ($type==4){
  231. $filename = 'wxxdd';
  232. }
  233. $templateProcessor = new TemplateProcessor($dir.'/'.$filename.'.docx');
  234. $info =ShopPurchase::getItem($type-1)
  235. ->with(['merchant','items','ppoffer','ppoffer.user'])
  236. ->lock(true)
  237. ->findOrEmpty($id);
  238. $array = [
  239. 'order_no'=>$info['order_no'],
  240. 'date'=>date('Y-m-d',strtotime($info['post_time'])),
  241. 'shopname'=>$info['merchant']['name'],
  242. 'mfname'=>$info['merchant']['contact_name'],
  243. 'mfphone'=>$info['merchant']['contact_phone'],
  244. 'mmfname'=>$info['ppoffer']['user']['nickname'],
  245. 'mmfphone'=>$info['ppoffer']['user']['phone'],
  246. 'price'=>$info['ppoffer']['amount']
  247. ];
  248. $templateProcessor->setValues($array);
  249. $count = count($info['items']);
  250. $templateProcessor->cloneRow('id',$count);
  251. foreach ($info['items'] as $k=>$v){
  252. $templateProcessor->setValue('id#'.($k+1), ($k+1));
  253. $templateProcessor->setValue('name#'.($k+1),$v['name']);
  254. $templateProcessor->setValue('gg#'.($k+1), $v['spec']);
  255. $templateProcessor->setValue('num#'.($k+1), $v['number']);
  256. }
  257. $name = $filename.'-'.$id.'-'.time().'.docx';
  258. $url = 'https://'.$_SERVER['SERVER_NAME']."/down/".$name;
  259. $templateProcessor->saveAs($dir2.$name);
  260. break;
  261. case 5: //海运订单
  262. $templateProcessor = new TemplateProcessor($dir.'/hydd.docx');
  263. $info =ShopPurchase::getItem($type-1)
  264. ->with(['merchant','items','ppoffer','ppoffer.user'])
  265. ->lock(true)
  266. ->findOrEmpty($id);
  267. $array = [
  268. 'order_no'=>$info['order_no'],
  269. 'date'=>date('Y-m-d',strtotime($info['create_time'])),
  270. 'fbr'=>$info['merchant']['contact_name'],
  271. 'jdr'=>$info['ppoffer']['user']['nickname'],
  272. 'bz'=>$info['form'],
  273. 'zhmt'=>$info['wharf_to'],
  274. 'dgmt'=>$info['wharf_for'],
  275. 'price'=>$info['ppoffer']['amount'],
  276. 'fbrphone'=>$info['merchant']['contact_phone'],
  277. 'jdrphone'=>$info['ppoffer']['user']['phone']
  278. ];
  279. $templateProcessor->setValues($array);
  280. $count = count($info['items']);
  281. $templateProcessor->cloneRow('id',$count);
  282. foreach ($info['items'] as $k=>$v){
  283. $templateProcessor->setValue('id#'.($k+1), ($k+1));
  284. $templateProcessor->setValue('name#'.($k+1),$v['name']);
  285. $templateProcessor->setValue('num#'.($k+1), $v['weight']);
  286. }
  287. $name = 'hydd-'.$id.'-'.time().'.docx';
  288. $url = 'https://'.$_SERVER['SERVER_NAME']."/down/".$name;
  289. $templateProcessor->saveAs($dir2.$name);
  290. break;
  291. }
  292. return $url;
  293. }
  294. /**
  295. *数字金额转换成中文大写金额的函数
  296. *String Int $num 要转换的小写数字或小写字符串
  297. *return 大写字母
  298. *小数位为两位
  299. **/
  300. function num_to_rmb($num){
  301. $c1 = "零壹贰叁肆伍陆柒捌玖";
  302. $c2 = "分角元拾佰仟万拾佰仟亿";
  303. //精确到分后面就不要了,所以只留两个小数位
  304. $num = round($num, 2);
  305. //将数字转化为整数
  306. $num = $num * 100;
  307. if (strlen($num) > 10) {
  308. return "金额太大,请检查";
  309. }
  310. $i = 0;
  311. $c = "";
  312. while (1) {
  313. if ($i == 0) {
  314. //获取最后一位数字
  315. $n = substr($num, strlen($num)-1, 1);
  316. } else {
  317. $n = $num % 10;
  318. }
  319. //每次将最后一位数字转化为中文
  320. $p1 = substr($c1, 3 * $n, 3);
  321. $p2 = substr($c2, 3 * $i, 3);
  322. if ($n != '0' || ($n == '0' && ($p2 == '亿' || $p2 == '万' || $p2 == '元'))) {
  323. $c = $p1 . $p2 . $c;
  324. } else {
  325. $c = $p1 . $c;
  326. }
  327. $i = $i + 1;
  328. //去掉数字最后一位了
  329. $num = $num / 10;
  330. $num = (int)$num;
  331. //结束循环
  332. if ($num == 0) {
  333. break;
  334. }
  335. }
  336. $j = 0;
  337. $slen = strlen($c);
  338. while ($j < $slen) {
  339. //utf8一个汉字相当3个字符
  340. $m = substr($c, $j, 6);
  341. //处理数字中很多0的情况,每次循环去掉一个汉字“零”
  342. if ($m == '零元' || $m == '零万' || $m == '零亿' || $m == '零零') {
  343. $left = substr($c, 0, $j);
  344. $right = substr($c, $j + 3);
  345. $c = $left . $right;
  346. $j = $j-3;
  347. $slen = $slen-3;
  348. }
  349. $j = $j + 3;
  350. }
  351. //这个是为了去掉类似23.0中最后一个“零”字
  352. if (substr($c, strlen($c)-3, 3) == '零') {
  353. $c = substr($c, 0, strlen($c)-3);
  354. }
  355. //将处理的汉字加上“整”
  356. if (empty($c)) {
  357. return "零元整";
  358. }else{
  359. return $c . "整";
  360. }
  361. }
  362. /**
  363. * @消息推送(最新版本)
  364. */
  365. function jgpush($content,$alias){
  366. $app_key = '9dd98f61eb4ad58dca4c8214';
  367. $master_secret = 'f7cac744173f8ace703719cf';
  368. $client = new JPush($app_key, $master_secret);
  369. try {
  370. $response = $client->push()
  371. ->setPlatform(array('ios', 'android'))
  372. ->addAlias($alias)
  373. ->setNotificationAlert($content)
  374. ->options([
  375. 'sendno' => 100,
  376. 'time_to_live' => 86400,
  377. 'apns_production' => false,
  378. 'big_push_duration' => 0
  379. ])
  380. ->send();
  381. return 1;
  382. }catch (APIRequestException $e) {
  383. return 2;
  384. } catch (APIConnectionException $e) {
  385. return 3;
  386. }
  387. }
  388. /**
  389. * 查询是否进行消息推送
  390. */
  391. function getAliasDevices($registrationID){
  392. $app_key = '9dd98f61eb4ad58dca4c8214';
  393. $master_secret = 'f7cac744173f8ace703719cf';
  394. $client = new JPush($app_key, $master_secret);
  395. $result = $client->device()->getAliasDevices($registrationID);
  396. return $result;
  397. }
  398. /**
  399. * 系统消息
  400. */
  401. function setusermessage($uuid,$name,$content){
  402. \app\data\model\BaseUserMessage::mk()->insert(
  403. [
  404. 'type'=>'notice',
  405. 'uuid'=>$uuid,
  406. 'name'=>$name,
  407. 'content'=>$content
  408. ]
  409. );
  410. }