Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Canal.php 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Page;
  16. class Canal extends Base
  17. {
  18. public function _initialize(){
  19. parent::_initialize();
  20. }
  21. public function conf_api()
  22. {
  23. if (IS_AJAX_POST) {
  24. $data = tpSetting("OpenMinicode.conf", [], $this->main_lang);
  25. $data = json_decode($data, true);
  26. empty($data) && $data = [];
  27. $post = input('post.');
  28. // if (isset($post['apikey'])) {
  29. // unset($post['apikey']);
  30. // }
  31. if ($post['apikey'] != $post['old_apikey']) {
  32. $post['apikey_uptime'] = getTime();
  33. }
  34. $data = array_merge($data, $post);
  35. tpSetting('OpenMinicode', ['conf' => json_encode($data)], $this->main_lang);
  36. $this->success("操作成功");
  37. }
  38. // 同步微信配置
  39. if (is_dir('./weapp/OpenMinicode/')) {
  40. $admin_logic_1649404323 = tpSetting('syn.admin_logic_1649404323', [], 'cn');
  41. if (empty($admin_logic_1649404323)) {
  42. $minicode = Db::name('weapp')->where('code', 'OpenMinicode')->value('data');
  43. $minicode = json_decode($minicode, true);
  44. if (!empty($minicode['appid'])) {
  45. $data = [
  46. 'appid' => $minicode['appid'],
  47. 'appsecret' => $minicode['secret'],
  48. 'mchid' => '',
  49. 'apikey' => '',
  50. ];
  51. tpSetting('OpenMinicode', ['conf_weixin' => json_encode($data)], $this->main_lang);
  52. }
  53. tpSetting('syn', ['admin_logic_1649404323'=>1], 'cn');
  54. }
  55. }
  56. $data = tpSetting("OpenMinicode.conf", [], $this->main_lang);
  57. if (empty($data)) {
  58. $data = [];
  59. $data['apiopen'] = 0;
  60. $data['apiverify'] = 0;
  61. $data['apikey'] = get_rand_str(32, 0, 1);
  62. tpSetting('OpenMinicode', ['conf' => json_encode($data)], $this->main_lang);
  63. } else {
  64. $data = json_decode($data, true);
  65. }
  66. $this->assign('data', $data);
  67. //微信信息
  68. $weixin_data = tpSetting("OpenMinicode.conf_weixin", [], $this->main_lang);
  69. $weixin_data = json_decode($weixin_data, true);
  70. $this->assign('weixin_data', $weixin_data);
  71. // 小程序码
  72. $weixin_qrcodeurl = "";
  73. if (!empty($weixin_data['appid'])) {
  74. $filepath = UPLOAD_PATH."allimg/20220515/wx-{$weixin_data['appid']}.png";
  75. if (is_file($filepath)) {
  76. $weixin_qrcodeurl = "{$this->root_dir}/".$filepath;
  77. }
  78. }
  79. $this->assign('weixin_qrcodeurl', $weixin_qrcodeurl);
  80. //百度信息
  81. $baidu_data = tpSetting("OpenMinicode.conf_baidu", [], $this->main_lang);
  82. $baidu_data = json_decode($baidu_data, true);
  83. $this->assign('baidu_data', $baidu_data);
  84. // 小程序码
  85. $baidu_qrcodeurl = "";
  86. if (!empty($baidu_data['appid'])) {
  87. $filepath = UPLOAD_PATH."allimg/20220515/bd-{$baidu_data['appid']}.png";
  88. if (is_file($filepath)) {
  89. $baidu_qrcodeurl = "{$this->root_dir}/".$filepath;
  90. }
  91. }
  92. $this->assign('baidu_qrcodeurl', $baidu_qrcodeurl);
  93. // 抖音信息
  94. $toutiao_data = tpSetting("OpenMinicode.conf_toutiao", [], $this->main_lang);
  95. $toutiao_data = !empty($toutiao_data) ? json_decode($toutiao_data, true) : [];
  96. $this->assign('toutiao_data', $toutiao_data);
  97. return $this->fetch();
  98. }
  99. /**
  100. * 重置API接口密钥
  101. * @return [type] [description]
  102. */
  103. public function reset_apikey()
  104. {
  105. if (IS_AJAX_POST) {
  106. $data = tpSetting("OpenMinicode.conf", [], $this->main_lang);
  107. $data = json_decode($data, true);
  108. empty($data) && $data = [];
  109. $apikey = get_rand_str(32, 0, 1);
  110. $data['apikey'] = $apikey;
  111. // tpSetting('OpenMinicode', ['conf' => json_encode($data)], $this->main_lang);
  112. $this->success("重置成功", null, ['apikey'=>$apikey]);
  113. }
  114. }
  115. /**
  116. * 微信小程序配置
  117. * @return [type] [description]
  118. */
  119. public function conf_weixin()
  120. {
  121. if (IS_AJAX_POST) {
  122. $post = input('post.');
  123. $appid = !empty($post['appid']) ? trim($post['appid']) : trim($post['weixin_appid']);
  124. $appsecret = !empty($post['appsecret']) ? trim($post['appsecret']) : trim($post['weixin_appsecret']);
  125. $mchid = !empty($post['mchid']) ? trim($post['mchid']) : trim($post['weixin_mchid']);
  126. $apikey = !empty($post['apikey']) ? trim($post['apikey']) : trim($post['weixin_apikey']);
  127. if (!empty($appid) || !empty($appsecret)) {
  128. if (empty($appid)) {
  129. $this->error('AppID不能为空!');
  130. }
  131. if (empty($appsecret)) {
  132. $this->error('AppSecret不能为空!');
  133. }
  134. $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appid."&secret=".$appsecret;
  135. $response = httpRequest($url);
  136. $params = json_decode($response, true);
  137. if (!empty($params['errcode'])) {
  138. if ($params['errcode'] == 40164) {
  139. preg_match_all('#(\d{1,3}\.){3}\d{1,3}#i', $params['errmsg'], $matches);
  140. $ip = !empty($matches[0][0]) ? $matches[0][0] : '';
  141. $ipTips = "<font color='red'>请将IP:{$ip} 加入微信小程序的IP白名单里!</font>";
  142. $this->error($ipTips);
  143. } else {
  144. $this->error($params['errmsg']);
  145. }
  146. }
  147. if (!empty($appid) && !empty($mchid) && !empty($apikey)) {
  148. $logic = new \app\api\logic\v1\ApiLogic;
  149. $returnData = $logic->GetWechatAppletsPay($appid, $mchid, $apikey);
  150. if (empty($returnData['code'])) {
  151. $this->error($returnData['msg']);
  152. }
  153. }
  154. }
  155. $data = [
  156. 'appid' => $appid,
  157. 'appsecret' => $appsecret,
  158. 'mchid' => $mchid,
  159. 'apikey' => $apikey,
  160. ];
  161. tpSetting('OpenMinicode', ['conf_weixin' => json_encode($data)], $this->main_lang);
  162. $this->success("操作成功");
  163. }
  164. $data = tpSetting("OpenMinicode.conf_weixin", [], $this->main_lang);
  165. $data = json_decode($data, true);
  166. $this->assign('data', $data);
  167. // 小程序码
  168. $qrcodeurl = "";
  169. if (!empty($data['appid'])) {
  170. $filepath = UPLOAD_PATH."allimg/20220515/wx-{$data['appid']}.png";
  171. if (is_file($filepath)) {
  172. $qrcodeurl = "{$this->root_dir}/".$filepath;
  173. }
  174. }
  175. $this->assign('qrcodeurl', $qrcodeurl);
  176. return $this->fetch();
  177. }
  178. /**
  179. * 获取微信小程序码
  180. * @return [type] [description]
  181. */
  182. public function ajax_get_weixin_qrcode()
  183. {
  184. $data = tpSetting("OpenMinicode.conf_weixin", [], $this->main_lang);
  185. $data = json_decode($data, true);
  186. $appid = !empty($data['appid']) ? $data['appid'] : '';
  187. $appsecret = !empty($data['appsecret']) ? $data['appsecret'] : '';
  188. if (!empty($appid) && !empty($appsecret)) {
  189. $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appid."&secret=".$appsecret;
  190. $response = httpRequest($url);
  191. $params = json_decode($response, true);
  192. if (isset($params['access_token'])) {
  193. $url = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=".$params['access_token'];
  194. $post_data = array(
  195. "scene" => 'test',
  196. "width" => 280,
  197. );
  198. $response = httpRequest($url, 'POST', json_encode($post_data, JSON_UNESCAPED_UNICODE));
  199. $params = json_decode($response,true);
  200. if (is_array($params) || $response === false) {
  201. $msg = !empty($params['errmsg']) ? $params['errmsg'] : '可能没发布小程序';
  202. $this->error($msg);
  203. } else {
  204. $qrcodeurl = UPLOAD_PATH.'allimg/20220515';
  205. tp_mkdir($qrcodeurl);
  206. $qrcodeurl = $qrcodeurl."/wx-{$appid}.png";
  207. if (@file_put_contents($qrcodeurl, $response)){
  208. $qrcodeurl = $this->root_dir.'/'.$qrcodeurl;
  209. $this->success('生成小程序码成功', null, ['qrcodeurl'=>$qrcodeurl]);
  210. } else {
  211. $this->error('生成小程序码失败');
  212. }
  213. }
  214. }
  215. }
  216. $this->error('不存在信息');
  217. }
  218. /**
  219. * 百度小程序配置
  220. * @return [type] [description]
  221. */
  222. public function conf_baidu()
  223. {
  224. if (IS_AJAX_POST) {
  225. $post = input('post.');
  226. $appid = !empty($post['appid']) ? trim($post['appid']) : trim($post['baidu_appid']);
  227. $appkey = !empty($post['appkey']) ? trim($post['appkey']) : trim($post['baidu_appkey']);
  228. $appsecret = !empty($post['appsecret']) ? trim($post['appsecret']) : trim($post['baidu_appsecret']);
  229. if (!empty($appid) || !empty($appkey) || !empty($appsecret)) {
  230. if (empty($appid)) {
  231. $this->error('AppID不能为空!');
  232. }
  233. if (empty($appkey)) {
  234. $this->error('AppKey不能为空!');
  235. }
  236. if (empty($appsecret)) {
  237. $this->error('AppSecret不能为空!');
  238. }
  239. $url = "https://openapi.baidu.com/oauth/2.0/token?grant_type=client_credentials&client_id={$appkey}&client_secret={$appsecret}&scope=smartapp_snsapi_base";
  240. $response = httpRequest($url);
  241. $params = json_decode($response, true);
  242. if (!isset($params['access_token'])) {
  243. $this->error('AppID或AppSecret不正确!');
  244. }
  245. }
  246. $data = [
  247. 'appid' => $appid,
  248. 'appkey' => $appkey,
  249. 'appsecret' => $appsecret,
  250. ];
  251. tpSetting('OpenMinicode', ['conf_baidu' => json_encode($data)], $this->main_lang);
  252. $this->success("操作成功");
  253. }
  254. $data = tpSetting("OpenMinicode.conf_baidu", [], $this->main_lang);
  255. $data = json_decode($data, true);
  256. $this->assign('data', $data);
  257. // 小程序码
  258. $qrcodeurl = "";
  259. if (!empty($data['appid'])) {
  260. $filepath = UPLOAD_PATH."allimg/20220515/bd-{$data['appid']}.png";
  261. if (is_file($filepath)) {
  262. $qrcodeurl = "{$this->root_dir}/".$filepath;
  263. }
  264. }
  265. $this->assign('qrcodeurl', $qrcodeurl);
  266. return $this->fetch();
  267. }
  268. /**
  269. * 获取百度小程序码
  270. * @return [type] [description]
  271. */
  272. public function ajax_get_baidu_qrcode()
  273. {
  274. $data = tpSetting("OpenMinicode.conf_baidu", [], $this->main_lang);
  275. $data = json_decode($data, true);
  276. $appid = !empty($data['appid']) ? $data['appid'] : '';
  277. $appkey = !empty($data['appkey']) ? $data['appkey'] : '';
  278. $appsecret = !empty($data['appsecret']) ? $data['appsecret'] : '';
  279. if (!empty($appkey) && !empty($appsecret)) {
  280. $url = "https://openapi.baidu.com/oauth/2.0/token?grant_type=client_credentials&client_id={$appkey}&client_secret={$appsecret}&scope=smartapp_snsapi_base";
  281. $response = httpRequest($url);
  282. $params = json_decode($response, true);
  283. if (isset($params['access_token'])) {
  284. $url = "https://openapi.baidu.com/rest/2.0/smartapp/qrcode/getv2";
  285. $post_data = array(
  286. "access_token" => $params['access_token'],
  287. );
  288. $response = httpRequest($url, 'POST', $post_data);
  289. $params = json_decode($response,true);
  290. if (!isset($params['data']['base64_str'])) {
  291. $msg = !empty($params['errmsg']) ? $params['errmsg'] : '可能没发布小程序';
  292. $this->error($msg);
  293. } else {
  294. $qrcodeurl = UPLOAD_PATH.'allimg/20220515';
  295. tp_mkdir($qrcodeurl);
  296. $qrcodeurl = $qrcodeurl."/bd-{$appid}.png";
  297. if (@file_put_contents($qrcodeurl, base64_decode($params['data']['base64_str']))){
  298. $qrcodeurl = $this->root_dir.'/'.$qrcodeurl;
  299. $this->success('生成小程序码成功', null, ['qrcodeurl'=>$qrcodeurl]);
  300. } else {
  301. $this->error('生成小程序码失败');
  302. }
  303. }
  304. }
  305. }
  306. $this->error('不存在信息');
  307. }
  308. /**
  309. * 微信公众号配置
  310. * @return [type] [description]
  311. */
  312. public function conf_wechat()
  313. {
  314. if (IS_AJAX_POST) {
  315. $post = input('post.');
  316. $appid = trim($post['appid']);
  317. $appsecret = trim($post['appsecret']);
  318. if (!empty($appid) || !empty($appsecret)) {
  319. if (empty($appid)) {
  320. $this->error('AppID不能为空!');
  321. }
  322. if (empty($appsecret)) {
  323. $this->error('AppSecret不能为空!');
  324. }
  325. /*$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$appid}&secret={$appsecret}";
  326. $response = httpRequest($url);
  327. $params = json_decode($response, true);
  328. if (!isset($params['access_token'])) {
  329. $wechat_code = config('error_code.wechat');
  330. $msg = !empty($wechat_code[$params['errcode']]) ? $wechat_code[$params['errcode']] : $params['errmsg'];
  331. $this->error($msg);
  332. }*/
  333. }
  334. $data = [
  335. 'appid' => $appid,
  336. 'appsecret' => $appsecret,
  337. ];
  338. // 兼容老数据的功能,同步保存一份到以前配置里
  339. $wechat_login_config = $this->usersConfig['wechat_login_config'];
  340. $login_config = unserialize($wechat_login_config);
  341. $data['wechat_name'] = !empty($login_config['wechat_name']) ? trim($login_config['wechat_name']) : '';
  342. $data['wechat_pic'] = !empty($login_config['wechat_pic']) ? trim($login_config['wechat_pic']) : '';
  343. getUsersConfigData('wechat', ['wechat_login_config'=>serialize($data)]);
  344. tpSetting('OpenMinicode', ['conf_wechat' => json_encode($data)], $this->main_lang);
  345. $this->success("操作成功");
  346. }
  347. $data = tpSetting("OpenMinicode.conf_wechat", [], $this->main_lang);
  348. if (empty($data)) {
  349. $wechat_login_config = getUsersConfigData('wechat.wechat_login_config');
  350. $login_config = unserialize($wechat_login_config);
  351. if (!empty($login_config)) {
  352. $data = [];
  353. $data['appid'] = !empty($login_config['appid']) ? trim($login_config['appid']) : '';
  354. $data['appsecret'] = !empty($login_config['appsecret']) ? trim($login_config['appsecret']) : '';
  355. $data['wechat_name'] = !empty($login_config['wechat_name']) ? trim($login_config['wechat_name']) : '';
  356. $data['wechat_pic'] = !empty($login_config['wechat_pic']) ? trim($login_config['wechat_pic']) : '';
  357. tpSetting('OpenMinicode', ['conf_wechat' => json_encode($data)], $this->main_lang);
  358. }
  359. } else {
  360. $data = json_decode($data, true);
  361. }
  362. $this->assign('data', $data);
  363. /*微站点配置*/
  364. $login = !empty($this->usersConfig['wechat_login_config']) ? unserialize($this->usersConfig['wechat_login_config']) : [];
  365. $this->assign('login', $login);
  366. /* END */
  367. /*验证IP是否加入白名单中*/
  368. $ipTips = '';
  369. if (!empty($data['appid']) && !empty($data['appsecret'])) {
  370. $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$data['appid']}&secret={$data['appsecret']}";
  371. $res = json_decode(httpRequest($url), true);
  372. if (!empty($res['errcode'])) {
  373. if ($res['errcode'] == 40164) {
  374. preg_match_all('#(\d{1,3}\.){3}\d{1,3}#i', $res['errmsg'], $matches);
  375. $ip = !empty($matches[0][0]) ? $matches[0][0] : '';
  376. $ipTips = "<font color='red'>请将IP:{$ip} 加入微信公众号的IP白名单里,具体点击<a href=\"JavaScript:void(0);\" onclick=\"click_to_eyou_1575506523('https://www.eyoucms.com/plus/view.php?aid=9432&origin_eycms=1','IP白名单配置教程')\">查看教程</a>!</font>";
  377. } else {
  378. $ipTips = "<font color='red'>{$res['errmsg']}</font>";
  379. }
  380. }
  381. }
  382. $this->assign('ipTips', $ipTips);
  383. /*--end*/
  384. return $this->fetch();
  385. }
  386. // 头条(抖音)配置
  387. public function conf_toutiao()
  388. {
  389. if (IS_AJAX_POST) {
  390. $post = input('post.');
  391. $salt = !empty($post['salt']) ? trim($post['salt']) : trim($post['toutiao_salt']);
  392. $appid = !empty($post['appid']) ? trim($post['appid']) : trim($post['toutiao_appid']);
  393. $secret = !empty($post['appsecret']) ? trim($post['appsecret']) : trim($post['toutiao_appsecret']);
  394. if (empty($appid)) $this->error('AppID不能为空!');
  395. if (empty($secret)) $this->error('AppSecret不能为空!');
  396. $params = getToutiaoAccessToken($appid, $secret, $salt, true);
  397. if (empty($params['access_token'])) $this->error('AppID或AppSecret不正确!');
  398. $this->success("操作成功");
  399. }
  400. $this->error('操作失败,请刷新重试');
  401. }
  402. /**
  403. * 启用、关闭 开放API
  404. * @return [type] [description]
  405. */
  406. public function ajax_save_apiopen()
  407. {
  408. if (IS_AJAX_POST) {
  409. $apiopen = input('post.open_value/d');
  410. $data = tpSetting("OpenMinicode.conf", [], $this->main_lang);
  411. $data = json_decode($data, true);
  412. empty($data) && $data = [];
  413. $data['apiopen'] = $apiopen;
  414. tpSetting('OpenMinicode', ['conf' => json_encode($data)], $this->main_lang);
  415. $this->success('操作成功');
  416. }
  417. }
  418. }