Qc.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\ChinaArea;
  4. use app\common\model\ForumReply;
  5. use app\common\model\GoodsOrder;
  6. use app\common\model\LevelOrder;
  7. use app\common\model\LevelOrder as LOM;
  8. use app\common\model\StoreGoods;
  9. use app\common\model\User;
  10. use app\common\model\UserLevelRank;
  11. use app\common\model\UserMessage;
  12. use app\common\model\UserWallet;
  13. use app\common\model\VideoIntro;
  14. use app\common\service\Activity;
  15. use app\common\service\OrderCallback;
  16. use app\order\controller\StoreOrder;
  17. use EasyWeChat\MiniProgram\Application;
  18. use library\tools\Data;
  19. use MongoDB\Driver\Server;
  20. use Qiniu\Auth;
  21. use Qiniu\Storage\UploadManager;
  22. use think\Exception;
  23. use think\Session;
  24. use think\cache\driver\Redis;
  25. use EasyWeChat\Factory;
  26. use Firebase\JWT\JWT;
  27. use think\Db;
  28. use AlibabaCloud\Client\AlibabaCloud;
  29. use AlibabaCloud\Client\Exception\ClientException;
  30. use AlibabaCloud\Client\Exception\ServerException;
  31. use function AlibabaCloud\Client\value;
  32. use function EasyWeChat\Kernel\data_get;
  33. use function Stringy\create;
  34. use JPush\Client;
  35. require_once env('root_path').'vendor/jpush/jpush/autoload.php';
  36. class Qc extends Base {
  37. public function index()
  38. {
  39. $order_item = [
  40. ['sell_price'=>0.3],
  41. ['sell_price'=>0.6],
  42. ['sell_price'=>0.5],
  43. ['sell_price'=>0.3],
  44. ];
  45. array_multisort(array_column($order_item,'sell_price'),SORT_DESC,$order_item);
  46. var_dump($order_item);
  47. }
  48. public function payOrder()
  49. {
  50. $this->user_id = 22;
  51. $order_id = input('post.order_id');
  52. $pay_type = input('post.pay_type',1);
  53. $order_info = LOM::where('id',$order_id)->find()->toArray();
  54. if($order_info['status'] != 0) $this->error('订单状态错误');
  55. if($order_info['cancel_state'] != 0 || $order_info['is_deleted'] != 0) $this->error('订单异常');
  56. if($order_info['price_total'] <= 0) $this->error('订单金额错误');
  57. $pay_no = $order_info['pay_no'] ? $order_info['pay_no'] : get_order_sn();// 支付单号
  58. if(!$order_info['pay_no']) LOM::where('id',$order_id)->update(['pay_no'=>$pay_no]);
  59. $user_info = User::where('id',$this->user_id)->find()->toArray();
  60. $ret_data = ['pay_status'=>0,'config'=>[],'code_url'=>'','openid'=>$user_info['openid']];
  61. Db::startTrans();
  62. try {
  63. switch ($pay_type){
  64. case 1://微信小程序
  65. $notify_url = $this->request->root(true) . '/api/we_chat_pay/LevelOrderNotify';
  66. $pay_config = WeChatPay::wxPay('订单支付',$pay_no,$order_info['price_total'],$notify_url,'MWEB');
  67. if($pay_config['code'] != 200) $this->exception($pay_config['msg']);
  68. $pay_config['config']['mch_id'] = config('app.wx_pay')['mch_id'];
  69. $pay_config['config']['pay_no'] = $pay_no;
  70. $pay_config['config']['notify_url'] = $notify_url;
  71. $pay_config['config']['mweb_url'] = $pay_config['mweb_url'];
  72. $pay_config['config']['total_fee'] = $order_info['price_total'] * 100;
  73. $ret_data['config'] = $pay_config['config'];
  74. break;
  75. case 2 :
  76. if(!$user_info['openid']) $this->exception('请绑定公众号');
  77. $notify_url = $this->request->root(true) . '/api/we_chat_pay/LevelOrderNotify';
  78. $pay_config = WeChatPay::wxPay('订单支付',$pay_no,$order_info['price_total'],$notify_url,'JSAPI',$user_info['openid']);
  79. if($pay_config['code'] != 200) $this->exception($pay_config['msg']);
  80. $ret_data['config'] = $pay_config['config'];
  81. break;
  82. }
  83. Db::commit();
  84. }catch (\Exception $e){
  85. $this->is_commit = false;
  86. $this->ret_msg = $e->getMessage();
  87. Db::rollback();
  88. }
  89. $this->transReturn($ret_data);
  90. }
  91. /**
  92. * @title 获取分享的签名
  93. * @desc 获取分享的签名
  94. * @url /api/qc/getWeChatSign
  95. * @method POST
  96. * @tag 基础
  97. *
  98. **/
  99. public function getWeChatSign(){
  100. $urls = input('url');
  101. $appid = config('app.official_account')['appid'];
  102. $secret = config('app.official_account')['secret'];
  103. $redis = new Redis();
  104. $access_token = $redis->get('access_token');
  105. if (!$access_token){
  106. $access_token = '';
  107. $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$secret";
  108. $res= http_curl($url);
  109. if (isset($res['access_token'])){
  110. $redis->set('access_token',$res['access_token'],'7000');
  111. $access_token = $res['access_token'];
  112. }
  113. }
  114. $url2 ="https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=".$access_token."&type=jsapi";
  115. $res2=http_curl($url2);
  116. if (!isset($res2) || $res2['errcode']!=0) $this->error('获取ticket失败');
  117. $timestamp = time();
  118. $noncestr = get32Str(15);
  119. $string = "jsapi_ticket=".$res2['ticket']."&noncestr=$noncestr&timestamp=$timestamp&url=".$urls;
  120. $sign = sha1($string);
  121. $return = [
  122. 'appid'=>$appid,
  123. 'noncestr'=>$noncestr,
  124. 'timestamp'=>$timestamp,
  125. 'url'=>$urls,
  126. 'sign'=>$sign,
  127. 'ticket'=>$res2['ticket']
  128. ];
  129. $this->success('成功',$return);
  130. }
  131. /**
  132. * 导入子项目数据
  133. * @auth true
  134. * @throws \think\Exception
  135. * @throws \think\exception\PDOException
  136. */
  137. public function import()
  138. {
  139. $get = $this->request->get();
  140. $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
  141. $project_id = $get['project_id'];
  142. $num = 5;
  143. try {
  144. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  145. $objExcel = $objReader->load($import_path);
  146. $list = $objExcel->getActiveSheet()->toArray();
  147. if (!isset($list[2][15]) || !$list[2][15]){
  148. $this->error('失败');
  149. }
  150. if (isset($list[2][16])){
  151. $this->error('失败');
  152. }
  153. Db::name($this->table3)->where('project_id',$project_id)->delete();
  154. Db::name($this->table)->where('id',$project_id)->update(['url'=>$get['url']]);
  155. $result = 0;
  156. foreach ($list as $k=>$v){
  157. if($k>=$num-1){
  158. if(array_filter($v)){
  159. $data=[];
  160. foreach ($v as $kk=>$vv){
  161. $data[IntToChr($kk)]=trim($vv);
  162. }
  163. $date['project_id'] = $project_id;
  164. $date['number'] = $data['A'];
  165. $date['cost_project'] = $data['B'];
  166. $date['area_calculating_aperture'] = $data['C'];
  167. $date['single_party_cost'] = $data['D'];
  168. $date['single_party_cost1'] = str_replace(',','',$data['D']);
  169. $date['total_price_included'] = $data['E'];
  170. $date['total_price_included1'] = str_replace(',','',$data['E']);
  171. $date['single_party_cost_excluding'] = $data['F'];
  172. $date['single_party_cost_excluding1'] = str_replace(',','',$data['F']);
  173. $date['total_price_included_excluding'] = $data['G'];
  174. $date['total_price_included_excluding1'] = str_replace(',','',$data['G']);
  175. $date['single_party_cost_tax'] = $data['H'];
  176. $date['single_party_cost_tax1'] = str_replace(',','',$data['H']);
  177. $date['single_party_cost_no_tax'] = $data['I'];
  178. $date['single_party_cost_no_tax1'] = str_replace(',','',$data['I']);
  179. $date['quantities'] = $data['J'];
  180. $date['quantities1'] = str_replace(',','',$data['J']);
  181. $date['calculating_unit'] = $data['K'];
  182. $date['unilateral_content'] = $data['L'];
  183. $date['unilateral_content1'] = str_replace(',','',$data['L']);
  184. $date['unilateral_content_excluding'] = $data['M'];
  185. $date['unilateral_content_excluding1'] = str_replace(',','',$data['M']);
  186. $date['saleable_single_party_tax'] = $data['N'];
  187. $date['saleable_single_party_tax1'] = str_replace(',','',$data['N']);
  188. $date['saleable_single_party_no_tax'] = $data['O'];
  189. $date['saleable_single_party_no_tax1'] = str_replace(',','',$data['O']);
  190. $date['note'] = $data['P'];
  191. $date['create_at'] = date('Y-m-d H:i:s');
  192. $numbers = explode('.',$data['A']);
  193. if (count($numbers)>1){
  194. array_pop($numbers); //去掉数组最后一组元素
  195. $number = implode('.',$numbers);
  196. $date['pid'] = Db::name($this->table3)->where('project_id',$project_id)->where('number',$number)->value('id');
  197. $date['pname'] = Db::name($this->table3)->where('project_id',$project_id)->where('number',$number)->value('cost_project');
  198. }else{
  199. $date['pid'] = 0;
  200. $date['pname'] = '';
  201. }
  202. if (Db::name($this->table3)->insertGetId($date)){
  203. $result = 1;
  204. }else{
  205. $result = 0;
  206. break;
  207. }
  208. }
  209. }
  210. }
  211. if ($result==1){
  212. $this->success('成功');
  213. }else{
  214. $this->error('失败');
  215. }
  216. } catch (\think\exception\ValidateException $e) {
  217. $this->error($e->getMessage());
  218. }
  219. }
  220. function excelToArray(){
  221. //加载excel文件
  222. $filename = dirname(__FILE__).'/result.xlsx';
  223. $objPHPExcelReader = \PHPExcel_IOFactory::load($filename);
  224. $sheet = $objPHPExcelReader->getSheet(0); // 读取第一个工作表(编号从 0 开始)
  225. $highestRow = $sheet->getHighestRow(); // 取得总行数
  226. $highestColumn = $sheet->getHighestColumn(); // 取得总列数
  227. $arr = array('A','B','C','D','E','F','G','H','I','J','K','L','M', 'N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
  228. // 一次读取一列
  229. $res_arr = array();
  230. for ($row = 2; $row <= $highestRow; $row++) {
  231. $row_arr = array();
  232. for ($column = 0; $arr[$column] != 'F'; $column++) {
  233. $val = $sheet->getCellByColumnAndRow($column, $row)->getValue();
  234. $row_arr[] = $val;
  235. }
  236. $res_arr[] = $row_arr;
  237. }
  238. return $res_arr;
  239. }
  240. public function index_match()
  241. {
  242. $password = "123456879_/";
  243. //密码必须包含大小写字母/数字/符号任意两者组合
  244. $regStr = "/^(?![0-9]+$)(?![a-z]+$)(?![A-Z]+$)(?!([^(0-9a-zA-Z)]|[\(\)])+$)([^(0-9a-zA-Z)]|[\(\)]|[a-z]|[A-Z]|[0-9]){6,16}$/";
  245. var_dump(preg_match($regStr, $password));
  246. }
  247. }