common.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  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. function systemConfig($name,$value=null){
  15. $nameArr=array_filter(explode('.',$name));
  16. if(is_null($value)){
  17. if(count($nameArr)==1) {
  18. $source = SystemConfig::where('type', $nameArr[0])->select();
  19. $data=[];
  20. foreach ($source as $model){
  21. $value=$model['value'];
  22. if($decode=json_decode($value,true)){
  23. $value=$decode;
  24. }
  25. $data[$model['name']]=$value;
  26. }
  27. return $data?:null;
  28. }else{
  29. $model = SystemConfig::where('type', $nameArr[0])->where('name',$nameArr[1])->find();
  30. $value=$model['value'];
  31. if($decode=json_decode($value,true)){
  32. $value=$decode;
  33. }
  34. return $value;
  35. }
  36. }else{
  37. SystemConfig::where('type', $nameArr[0])->delete();
  38. if(count($nameArr)==1) {
  39. if(is_array($value)){
  40. foreach ($value as $key=>$val){
  41. SystemConfig::insert([
  42. 'type'=>$nameArr[0],
  43. 'name'=>$key,
  44. 'value'=>is_array($val)?json_encode($val,256):$val,
  45. ]);
  46. }
  47. }
  48. }else{
  49. SystemConfig::insert([
  50. 'type'=>$nameArr[0],
  51. 'name'=>$nameArr[1],
  52. 'value'=>$value,
  53. ]);
  54. }
  55. }
  56. }
  57. /**
  58. * 生成??位随机数
  59. */
  60. function get32Str($length='32'){
  61. // $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  62. $str = 'abcdefghijklmnopqrstuvwxyz0123456789';
  63. $len = strlen($str)-1;
  64. $randstr = '';
  65. for ($i=0;$i<$length;$i++) {
  66. $num=mt_rand(0,$len);
  67. $randstr .= $str[$num];
  68. }
  69. return $randstr;
  70. }
  71. /**
  72. * 使用AK&SK初始化账号Client
  73. * @param string $accessKeyId
  74. * @param string $accessKeySecret
  75. * @return Cloudauth Client
  76. */
  77. function createClient($accessKeyId, $accessKeySecret){
  78. $config = new Config([
  79. // 您的 AccessKey ID
  80. "accessKeyId" => $accessKeyId,
  81. // 您的 AccessKey Secret
  82. "accessKeySecret" => $accessKeySecret,
  83. ]);
  84. // 访问的域名
  85. $config->endpoint = "cloudauth.aliyuncs.com";
  86. return new Cloudauth($config);
  87. }
  88. /**
  89. * @param string[] $args
  90. * @return void
  91. */
  92. function main($certName,$certNo,$metaInfo,$ReturnUrl){
  93. $client = createClient("LTAI5tMVT8vs7B1CApqhEgBo", "ESDiEM6zED1vyCMoGc9j5gZ9hWIXkP");
  94. $initFaceVerifyRequest = new InitFaceVerifyRequest([
  95. "sceneId" => '1000006090',
  96. "outerOrderNo" => get32Str(),
  97. // 要接入的认证方案。
  98. "productCode" => "ID_PRO",
  99. "certType" => "IDENTITY_CARD",
  100. "certName" => $certName,
  101. "certNo" => $certNo,
  102. // MetaInfo环境参数,需要通过客户端SDK获取。
  103. "metaInfo" => $metaInfo,
  104. "returnUrl" => $ReturnUrl,
  105. ]);
  106. $runtime = new RuntimeOptions([]);
  107. try {
  108. // 复制代码运行请自行打印 API 的返回值
  109. $res = $client->initFaceVerifyWithOptions($initFaceVerifyRequest, $runtime);
  110. return $res;
  111. } catch (Exception $error) {
  112. if (!($error instanceof TeaError)) {
  113. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  114. }
  115. // 如有需要,请打印 error
  116. Utils::assertAsString($error->message);
  117. return '';
  118. }
  119. }
  120. /**
  121. * @param string[] $args
  122. * @return void
  123. */
  124. function check($CertifyId){
  125. $client = createClient("LTAI5tMVT8vs7B1CApqhEgBo", "ESDiEM6zED1vyCMoGc9j5gZ9hWIXkP");
  126. $describeFaceVerifyRequest = new DescribeFaceVerifyRequest([
  127. 'sceneId' => '1000006090',
  128. 'certifyId' => $CertifyId,
  129. ]);
  130. $runtime = new RuntimeOptions([]);
  131. try {
  132. // 复制代码运行请自行打印 API 的返回值
  133. $rs = $client->describeFaceVerifyWithOptions($describeFaceVerifyRequest, $runtime);
  134. return $rs;
  135. }
  136. catch (Exception $error) {
  137. if (!($error instanceof TeaError)) {
  138. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  139. }
  140. // 如有需要,请打印 error
  141. Utils::assertAsString($error->message);
  142. return false;
  143. }
  144. }
  145. /**
  146. * 生成二维码
  147. */
  148. function setqrcode($value,$name){
  149. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/';
  150. if(!file_exists($dir)){
  151. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  152. mkdir($dir, 0700,true);
  153. }
  154. $filename = $dir.'/'.$name.'.png';
  155. QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  156. $url = 'http://'.$_SERVER['SERVER_NAME']."/".$name.'.png';
  157. return $url;
  158. }
  159. //生成邀请二维码
  160. function setappcode($address){
  161. $name = time();
  162. $url = setqrcode($address,$name);
  163. return $url;
  164. }
  165. //维修单,四大订单生成下载文件
  166. function setword($type,$id){
  167. $url = '';
  168. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/';
  169. $dir2 = $dir.'down/';
  170. if(!file_exists($dir2)){
  171. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  172. mkdir($dir2, 0700,true);
  173. }
  174. switch ($type){
  175. case 1: //维修订单
  176. $templateProcessor = new TemplateProcessor($dir.'/wxdd.docx');
  177. $info = DataUserRepair::mk()->with(['user','user2'])->findOrEmpty($id);
  178. $array = [
  179. 'order_no'=>$info['order_no'],
  180. 'date'=>$info['start_time'],
  181. 'fbz'=>$info['user']['nickname'],
  182. 'jdf'=>$info['user2']['nickname'],
  183. 'fbzphone'=>$info['user']['phone'],
  184. 'jdfphone'=>$info['user2']['phone'],
  185. 'address'=>$info['province'].$info['city'].$info['area'].$info['address'],
  186. 'time'=>$info['start_time'].'-'.$info['end_time'],
  187. 'desc'=>$info['describe'],
  188. 'price'=>$info['success_price']
  189. ];
  190. $templateProcessor->setValues($array);
  191. $name = 'wxdd-'.$id.'-'.time().'.docx';
  192. $url = 'http://'.$_SERVER['SERVER_NAME']."/down/".$name;
  193. $templateProcessor->saveAs($dir2.$name);
  194. break;
  195. case 2: //采购订单
  196. $templateProcessor = new TemplateProcessor($dir.'/cgdd.docx');
  197. $info = $model=ShopPurchase::getItem(1)
  198. ->lock(true)
  199. ->where('purchase_id',$id)
  200. ->with(['main','ppoffer','main.merchant','ppoffer.user'])
  201. ->findOrEmpty();
  202. // dump($info->toArray());die;
  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 = 'http://'.$_SERVER['SERVER_NAME']."/down/".$name;
  225. $templateProcessor->saveAs($dir2.$name);
  226. break;
  227. case 3: //生产订单
  228. $templateProcessor = new TemplateProcessor($dir.'/scdd.docx');
  229. $info =ShopPurchase::getItem(2)
  230. ->with(['merchant','items','ppoffer','ppoffer.user'])
  231. ->lock(true)
  232. ->findOrEmpty($id);
  233. $array = [
  234. 'order_no'=>$info['order_no'],
  235. 'date'=>date('Y-m-d',strtotime($info['post_time'])),
  236. 'shopname'=>$info['merchant']['name'],
  237. 'mfname'=>$info['merchant']['contact_name'],
  238. 'mfphone'=>$info['merchant']['contact_phone'],
  239. 'mmfname'=>$info['ppoffer']['user']['nickname'],
  240. 'mmfphone'=>$info['ppoffer']['user']['phone'],
  241. 'price'=>$info['ppoffer']['amount']
  242. ];
  243. $templateProcessor->setValues($array);
  244. $count = count($info['items']);
  245. $templateProcessor->cloneRow('id',$count);
  246. foreach ($info['items'] as $k=>$v){
  247. $templateProcessor->setValue('id#'.($k+1), ($k+1));
  248. $templateProcessor->setValue('name#'.($k+1),$v['name']);
  249. $templateProcessor->setValue('gg#'.($k+1), $v['spec']);
  250. $templateProcessor->setValue('num#'.($k+1), $v['number']);
  251. }
  252. $name = 'scdd-'.$id.'-'.time().'.docx';
  253. $url = 'http://'.$_SERVER['SERVER_NAME']."/down/".$name;
  254. $templateProcessor->saveAs($dir2.$name);
  255. break;
  256. case 4: //外协订单
  257. break;
  258. case 5: //海运订单
  259. break;
  260. }
  261. return $url;
  262. }
  263. /**
  264. *数字金额转换成中文大写金额的函数
  265. *String Int $num 要转换的小写数字或小写字符串
  266. *return 大写字母
  267. *小数位为两位
  268. **/
  269. function num_to_rmb($num){
  270. $c1 = "零壹贰叁肆伍陆柒捌玖";
  271. $c2 = "分角元拾佰仟万拾佰仟亿";
  272. //精确到分后面就不要了,所以只留两个小数位
  273. $num = round($num, 2);
  274. //将数字转化为整数
  275. $num = $num * 100;
  276. if (strlen($num) > 10) {
  277. return "金额太大,请检查";
  278. }
  279. $i = 0;
  280. $c = "";
  281. while (1) {
  282. if ($i == 0) {
  283. //获取最后一位数字
  284. $n = substr($num, strlen($num)-1, 1);
  285. } else {
  286. $n = $num % 10;
  287. }
  288. //每次将最后一位数字转化为中文
  289. $p1 = substr($c1, 3 * $n, 3);
  290. $p2 = substr($c2, 3 * $i, 3);
  291. if ($n != '0' || ($n == '0' && ($p2 == '亿' || $p2 == '万' || $p2 == '元'))) {
  292. $c = $p1 . $p2 . $c;
  293. } else {
  294. $c = $p1 . $c;
  295. }
  296. $i = $i + 1;
  297. //去掉数字最后一位了
  298. $num = $num / 10;
  299. $num = (int)$num;
  300. //结束循环
  301. if ($num == 0) {
  302. break;
  303. }
  304. }
  305. $j = 0;
  306. $slen = strlen($c);
  307. while ($j < $slen) {
  308. //utf8一个汉字相当3个字符
  309. $m = substr($c, $j, 6);
  310. //处理数字中很多0的情况,每次循环去掉一个汉字“零”
  311. if ($m == '零元' || $m == '零万' || $m == '零亿' || $m == '零零') {
  312. $left = substr($c, 0, $j);
  313. $right = substr($c, $j + 3);
  314. $c = $left . $right;
  315. $j = $j-3;
  316. $slen = $slen-3;
  317. }
  318. $j = $j + 3;
  319. }
  320. //这个是为了去掉类似23.0中最后一个“零”字
  321. if (substr($c, strlen($c)-3, 3) == '零') {
  322. $c = substr($c, 0, strlen($c)-3);
  323. }
  324. //将处理的汉字加上“整”
  325. if (empty($c)) {
  326. return "零元整";
  327. }else{
  328. return $c . "整";
  329. }
  330. }