Qc.php 11 KB

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