Qc.php 12 KB

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