Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

WeappLogic.php 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. <?php
  2. /**
  3. * eyoucms
  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\logic;
  14. use think\Model;
  15. use think\Db;
  16. class WeappLogic extends Model
  17. {
  18. public $root_path;
  19. public $weapp_path;
  20. public $data_path;
  21. // public $config_path;
  22. // public $curent_version;
  23. public $upgrade_url;
  24. public $service_ey;
  25. // public $code;
  26. public $cms_version;
  27. public $upgrade_postdata = [];
  28. /**
  29. * 析构函数
  30. */
  31. function __construct() {
  32. // $this->code = input('param.code/s', '');
  33. // $this->curent_version = getWeappVersion($this->code);
  34. $this->cms_version = getCmsVersion();
  35. $upgradeLogic = new \app\admin\logic\UpgradeLogic;
  36. $this->service_ey = $upgradeLogic->getServiceUrl(true);
  37. $this->root_path = ROOT_PATH; //
  38. $this->weapp_path = WEAPP_DIR_NAME.DS; //
  39. $this->data_path = DATA_PATH; //
  40. // $this->config_path = $this->weapp_path.$this->code.DS.'config.php'; // 版本配置文件路径
  41. // api_Weapp_checkVersion
  42. $this->upgrade_url = $this->service_ey.'/index.php?m=api&c=Weapp&a=checkVersion';
  43. $this->upgrade_postdata = [
  44. 'domain' => request()->host(true),
  45. 'cms_version' => $this->cms_version,
  46. 'ip' => serverIP(),
  47. ];
  48. }
  49. /**
  50. * 更新插件到数据库
  51. * @param $weapp_list array 本地插件数组
  52. */
  53. public function insertWeapp()
  54. {
  55. $row = Db::name('weapp')->field('*')->getAllWithIndex('code'); // 数据库
  56. $new_arr = array(); // 本地
  57. $addData = array(); // 数据存储变量
  58. $updateData = array(); // 数据存储变量
  59. $weapp_list = $this->scanWeapp();
  60. // 本地对比数据库
  61. foreach($weapp_list as $k=>$v){
  62. $code = isset($v['code']) ? $v['code'] : 'error_'.date('Ymd');
  63. /*初步过滤不规范插件*/
  64. if ($k != $code) {
  65. continue;
  66. }
  67. /*--end*/
  68. $new_arr[] = $code;
  69. // 对比数据库 本地有 数据库没有
  70. $data = array(
  71. 'code' => $code,
  72. 'name' => isset($v['name']) ? $v['name'] : '配置信息不完善',
  73. 'config' => empty($v) ? '' : json_encode($v),
  74. 'position' => isset($v['position']) ? $v['position'] : 'default',
  75. 'sort_order' => 100,
  76. );
  77. if(empty($row[$code])){ // 新增插件
  78. $data['add_time'] = getTime();
  79. $addData[] = $data;
  80. } else { // 更新插件
  81. if ($row[$code]['config'] != json_encode($v)) {
  82. $data['id'] = $row[$code]['id'];
  83. $data['update_time'] = getTime();
  84. $updateData[] = $data;
  85. }
  86. }
  87. }
  88. if (!empty($addData)) {
  89. model('weapp')->saveAll($addData);
  90. }
  91. if (!empty($updateData)) {
  92. model('weapp')->saveAll($updateData);
  93. }
  94. //数据库有 本地没有
  95. foreach($row as $k => $v){
  96. if (!in_array($v['code'], $new_arr) && isset($v['is_buy']) && $v['is_buy'] < 1) {//is_buy 0->本地安装,1-线上购买
  97. Db::name('weapp')->where($v)->cache(true, null, 'weapp')->delete();
  98. }
  99. }
  100. \think\Cache::clear('weapp');
  101. }
  102. /**
  103. * 插件目录扫描
  104. * @return array 返回目录数组
  105. */
  106. private function scanWeapp(){
  107. $dir = WEAPP_DIR_NAME;
  108. $weapp_list = $this->dirscan($dir);
  109. foreach($weapp_list as $k=>$v){
  110. if (!is_dir(WEAPP_DIR_NAME.DS.$v) || !file_exists(WEAPP_DIR_NAME.DS.$v.'/config.php')) {
  111. unset($weapp_list[$k]);
  112. }
  113. else
  114. {
  115. $weapp_list[$v] = include(WEAPP_DIR_NAME.DS.$v.'/config.php');
  116. unset($weapp_list[$k]);
  117. }
  118. }
  119. return $weapp_list;
  120. }
  121. /**
  122. * 获取插件目录列表
  123. * @param $dir
  124. * @return array
  125. */
  126. private function dirscan($dir){
  127. $dirArray = array();
  128. if (false != ($handle = opendir($dir))) {
  129. $i = 0;
  130. while ( false !== ($file = readdir ($handle)) ) {
  131. //去掉"“.”、“..”以及带“.xxx”后缀的文件
  132. if ($file != "." && $file != ".." && !strpos($file,".")) {
  133. $dirArray[$i] = $file;
  134. $i++;
  135. }
  136. }
  137. //关闭句柄
  138. closedir($handle);
  139. }
  140. return $dirArray;
  141. }
  142. /**
  143. * 插件基类构造方法
  144. * sm:module 插件模块
  145. * sc:controller 插件控制器
  146. * sa:action 插件操作
  147. */
  148. public function checkInstall()
  149. {
  150. $msg = true;
  151. if(!array_key_exists("sm", request()->param())){
  152. $msg = '无效插件URL!';
  153. } else {
  154. $module = request()->param('sm');
  155. $module = $module ?: request()->param('sc');
  156. $row = Db::name('Weapp')->field('code, name, status')
  157. ->where(array('code'=>$module))
  158. ->find();
  159. if (empty($row)) {
  160. $msg = "插件【{$row['name']}】不存在";
  161. } else {
  162. if ($row['status'] == -1) {
  163. $msg = "请先启用插件【{$row['name']}】";
  164. } else if (intval($row['status']) == 0) {
  165. $msg = "请先安装插件【{$row['name']}】";
  166. }
  167. }
  168. }
  169. return $msg;
  170. }
  171. /**
  172. * 检查是否有更新包
  173. * @return type 提示语
  174. */
  175. public function checkVersion($code, $serviceVersionList = false) {
  176. error_reporting(0);//关闭所有错误报告
  177. $lastupgrade = array();
  178. if (false === $serviceVersionList) {
  179. $this->upgrade_postdata['code'] = $code;
  180. $this->upgrade_postdata['v'] = getWeappVersion($code);
  181. $upgradeLogic = new \app\admin\logic\UpgradeLogic;
  182. $upgradeLogic->GetKeyData($this->upgrade_postdata);
  183. $serviceVersionList = @httpRequest($this->upgrade_url, 'POST', $this->upgrade_postdata, [], 5);
  184. if (false === $serviceVersionList) {
  185. $url = $this->upgrade_url.'&'.http_build_query($this->upgrade_postdata);
  186. $context = stream_context_set_default(array('http' => array('timeout' => 5,'method'=>'GET')));
  187. $serviceVersionList = @file_get_contents($url, false, $context);
  188. }
  189. if (false === $serviceVersionList) {
  190. return ['code' => 0, 'msg' => "无法连接远程升级服务器!"];
  191. } else {
  192. $serviceVersionList = json_decode($serviceVersionList,true);
  193. if (isset($serviceVersionList['code']) && empty($serviceVersionList['code'])) {
  194. $msg = empty($serviceVersionList['msg']) ? 'API请求超时' : $serviceVersionList['msg'];
  195. return ['code' => 0, 'msg' => "<font color='red'>{$msg}</font>"];
  196. }
  197. }
  198. }
  199. if(!empty($serviceVersionList))
  200. {
  201. $upgradeArr = array();
  202. $introStr = '';
  203. $upgradeStr = '';
  204. foreach ($serviceVersionList as $key => $val) {
  205. $upgrade = !empty($val['upgrade']) ? $val['upgrade'] : array();
  206. $upgradeArr = array_merge($upgradeArr, $upgrade);
  207. $introStr .= '<br/>'.filter_line_return($val['intro'], '<br/>');
  208. }
  209. $upgradeArr = array_unique($upgradeArr);
  210. $upgradeStr = implode('<br/>', $upgradeArr); // 升级提示需要覆盖哪些文件
  211. $introArr = explode('<br/>', $introStr);
  212. $introStr = '更新日志:';
  213. foreach ($introArr as $key => $val) {
  214. if (empty($val)) {
  215. continue;
  216. }
  217. $introStr .= "<br/>{$key}、".$val;
  218. }
  219. $lastupgrade = $serviceVersionList[count($serviceVersionList) - 1];
  220. if (!empty($lastupgrade['upgrade_title'])) {
  221. $introStr .= '<br/>'.$lastupgrade['upgrade_title'];
  222. }
  223. $lastupgrade['intro'] = htmlspecialchars_decode($introStr);
  224. $lastupgrade['upgrade'] = htmlspecialchars_decode($upgradeStr); // 升级提示需要覆盖哪些文件
  225. /*升级公告*/
  226. if (!empty($lastupgrade['notice'])) {
  227. $lastupgrade['notice'] = htmlspecialchars_decode($lastupgrade['notice']) . '<br>';
  228. }
  229. /*--end*/
  230. return ['code' => 2, 'msg' => $lastupgrade];
  231. }
  232. return ['code' => 1, 'msg' => '已是最新版'];
  233. }
  234. /**
  235. * 批量检查是否有更新包
  236. * @return type 提示语
  237. */
  238. public function checkBatchVersion($upgradeArr)
  239. {
  240. $result = array();
  241. if (is_array($upgradeArr) && !empty($upgradeArr)) {
  242. foreach ($upgradeArr as $key => $upgrade) {
  243. if ($key == 'Sample') {
  244. tpCache('system', ['system_usecodelist'=>$upgradeArr['Sample']]);
  245. } else {
  246. $result[$key] = $this->checkVersion($key, $upgrade);
  247. }
  248. }
  249. }
  250. return $result;
  251. }
  252. /**
  253. * 一键更新
  254. */
  255. public function OneKeyUpgrade($code){
  256. error_reporting(0);//关闭所有错误报告
  257. if (empty($code)) {
  258. return ['code' => 0, 'msg' => "URL传参错误,缺少插件标识参数值!"];
  259. }
  260. $allow_url_fopen = ini_get('allow_url_fopen');
  261. if (!$allow_url_fopen) {
  262. return ['code' => 0, 'msg' => "请联系空间商,设置 php.ini 中参数 allow_url_fopen = 1"];
  263. }
  264. if (!extension_loaded('zip')) {
  265. return ['code' => 0, 'msg' => "请联系空间商,开启 php.ini 中的php-zip扩展"];
  266. }
  267. $curent_version = getWeappVersion($code);
  268. $this->upgrade_postdata['code'] = $code;
  269. $this->upgrade_postdata['dev'] = config('global.upgrade_dev');
  270. $this->upgrade_postdata['v'] = $curent_version;
  271. $upgradeLogic = new \app\admin\logic\UpgradeLogic;
  272. $upgradeLogic->GetKeyData($this->upgrade_postdata);
  273. $url = $this->service_ey."/index.php?m=api&c=Weapp&a=upgradeVersion";
  274. $serviceVersionList = @httpRequest($url, 'POST', $this->upgrade_postdata, [], 5);
  275. if (false === $serviceVersionList) {
  276. $url = $url.'&'.http_build_query($this->upgrade_postdata);
  277. $context = stream_context_set_default(array('http' => array('timeout' => 5,'method'=>'GET')));
  278. $serviceVersionList = @file_get_contents($url, false, $context);
  279. }
  280. if (false === $serviceVersionList) {
  281. return ['code' => 0, 'msg' => "无法连接远程升级服务器!"];
  282. } else {
  283. $serviceVersionList = json_decode($serviceVersionList,true);
  284. if (isset($serviceVersionList['code']) && empty($serviceVersionList['code'])) {
  285. $msg = empty($serviceVersionList['msg']) ? 'API请求超时' : $serviceVersionList['msg'];
  286. return ['code' => 0, 'msg' => $msg];
  287. }
  288. }
  289. if (empty($serviceVersionList)) {
  290. return ['code' => 0, 'msg' => "当前没有可升级的版本!"];
  291. }
  292. clearstatcache(); // 清除文件夹权限缓存
  293. $config_path = $this->weapp_path.$code.DS.'config.php'; // 版本配置文件路径
  294. if(!is_writeable($config_path)) {
  295. return ['code' => 0, 'msg' => '文件'.$config_path.' 不可写,不能升级!!!'];
  296. }
  297. /*最新更新版本信息*/
  298. $lastServiceVersion = $serviceVersionList[count($serviceVersionList) - 1];
  299. /*--end*/
  300. /*批量下载更新包*/
  301. $upgradeArr = array(); // 更新的文件列表
  302. $sqlfileArr = array(); // 更新SQL文件列表
  303. $folderName = $code.'-'.$lastServiceVersion['key_num'];
  304. foreach ($serviceVersionList as $key => $val) {
  305. // 下载更新包
  306. $result = $this->downloadFile($val['down_url'], $val['file_md5']);
  307. if (!isset($result['code']) || $result['code'] != 1) {
  308. return $result;
  309. }
  310. /*第一个循环执行的业务*/
  311. if ($key == 0) {
  312. /*解压到最后一个更新包的文件夹*/
  313. $lastDownFileName = explode('/', $lastServiceVersion['down_url']);
  314. $lastDownFileName = end($lastDownFileName);
  315. $folderName = $code.'-'.str_replace(".zip", "", $lastDownFileName); // 文件夹
  316. /*--end*/
  317. /*解压之前,删除已重复的文件夹*/
  318. delFile($this->data_path.'backup'.DS.$folderName);
  319. /*--end*/
  320. }
  321. /*--end*/
  322. $downFileName = explode('/', $val['down_url']);
  323. $downFileName = end($downFileName);
  324. /*解压文件*/
  325. $zip = new \ZipArchive();//新建一个ZipArchive的对象
  326. if($zip->open($this->data_path.'backup'.DS.$downFileName) != true) {
  327. return ['code' => 0, 'msg' => "升级包读取失败!"];
  328. }
  329. $zip->extractTo($this->data_path.'backup'.DS.$folderName.DS);//假设解压缩到在当前路径下backup文件夹内
  330. $zip->close();//关闭处理的zip文件
  331. /*--end*/
  332. if(!file_exists($this->data_path.'backup'.DS.$folderName.DS.'www'.DS.'weapp'.DS.$code.DS.'config.php')) {
  333. return ['code' => 0, 'msg' => $code."插件目录缺少config.php文件,请联系客服"];
  334. }
  335. /*更新的文件列表*/
  336. $upgrade = !empty($val['upgrade']) ? $val['upgrade'] : array();
  337. $upgradeArr = array_merge($upgradeArr, $upgrade);
  338. /*--end*/
  339. /*更新的SQL文件列表*/
  340. $sql_file = !empty($val['sql_file']) ? $val['sql_file'] : array();
  341. $sqlfileArr = array_merge($sqlfileArr, $sql_file);
  342. /*--end*/
  343. }
  344. /*--end*/
  345. /*将多个更新包重新组建一个新的完全更新包*/
  346. $upgradeArr = array_unique($upgradeArr); // 移除文件列表里重复的文件
  347. $sqlfileArr = array_unique($sqlfileArr); // 移除文件列表里重复的文件
  348. $serviceVersion = $lastServiceVersion;
  349. $serviceVersion['upgrade'] = $upgradeArr;
  350. $serviceVersion['sql_file'] = $sqlfileArr;
  351. /*--end*/
  352. /*升级之前,备份涉及的源文件*/
  353. $upgrade = $serviceVersion['upgrade'];
  354. if (!empty($upgrade) && is_array($upgrade)) {
  355. foreach ($upgrade as $key => $val) {
  356. $source_file = $this->root_path.$val;
  357. if (file_exists($source_file)) {
  358. $destination_file = $this->data_path.'backup'.DS.$code.'-'.$curent_version.'_www'.DS.$val;
  359. tp_mkdir(dirname($destination_file));
  360. $copy_bool = @copy($source_file, $destination_file);
  361. if (false == $copy_bool) {
  362. return ['code' => 0, 'msg' => "更新前备份文件失败,请检查所有目录是否有读写权限"];
  363. }
  364. }
  365. }
  366. }
  367. /*--end*/
  368. /*升级的 sql文件*/
  369. if(!empty($serviceVersion['sql_file']))
  370. {
  371. foreach($serviceVersion['sql_file'] as $key => $val)
  372. {
  373. //读取数据文件
  374. $sqlpath = $this->data_path.'backup'.DS.$folderName.DS.'sql'.DS.trim($val);
  375. $execute_sql = file_get_contents($sqlpath);
  376. $sqlFormat = $this->sql_split($execute_sql, PREFIX);
  377. /**
  378. * 执行SQL语句
  379. */
  380. try {
  381. $counts = count($sqlFormat);
  382. for ($i = 0; $i < $counts; $i++) {
  383. $sql = trim($sqlFormat[$i]);
  384. if (stristr($sql, 'CREATE TABLE')) {
  385. Db::execute($sql);
  386. } else {
  387. if(trim($sql) == '')
  388. continue;
  389. Db::execute($sql);
  390. }
  391. }
  392. } catch (\Exception $e) {
  393. return ['code' => 0, 'msg' => "数据库执行中途失败,请第一时间请求技术支持,否则将影响该插件后续的版本升级!"];
  394. }
  395. }
  396. }
  397. /*--end*/
  398. // 递归复制文件夹
  399. $copy_data = $this->recurse_copy($this->data_path.'backup'.DS.$folderName.DS.'www', rtrim($this->root_path, DS), $folderName);
  400. // 清空缓存
  401. delFile(RUNTIME_PATH.'cache');
  402. delFile(RUNTIME_PATH.'temp');
  403. tpCache('global');
  404. /*删除下载的升级包*/
  405. $ziplist = glob($this->data_path.'backup'.DS.'*.zip');
  406. @array_map('unlink', $ziplist);
  407. /*--end*/
  408. // 推送回服务器 记录升级成功
  409. $this->UpgradeLog($code, $serviceVersion['key_num']);
  410. return ['code' => $copy_data['code'], 'msg' => "升级成功{$copy_data['msg']}"];
  411. }
  412. /**
  413. * 自定义函数递归的复制带有多级子目录的目录
  414. * 递归复制文件夹
  415. *
  416. * @param string $src 原目录
  417. * @param string $dst 复制到的目录
  418. * @param string $folderName 存放升级包目录名称
  419. * @return string
  420. */
  421. //参数说明:
  422. //自定义函数递归的复制带有多级子目录的目录
  423. private function recurse_copy($src, $dst, $folderName)
  424. {
  425. static $badcp = 0; // 累计覆盖失败的文件总数
  426. static $n = 0; // 累计执行覆盖的文件总数
  427. static $total = 0; // 累计更新的文件总数
  428. $dir = opendir($src);
  429. tp_mkdir($dst);
  430. while (false !== $file = readdir($dir)) {
  431. if (($file != '.') && ($file != '..')) {
  432. if (is_dir($src . '/' . $file)) {
  433. $this->recurse_copy($src . '/' . $file, $dst . '/' . $file, $folderName);
  434. }
  435. else {
  436. if (file_exists($src . DIRECTORY_SEPARATOR . $file)) {
  437. $rs = @copy($src . DIRECTORY_SEPARATOR . $file, $dst . DIRECTORY_SEPARATOR . $file);
  438. if($rs) {
  439. $n++;
  440. @unlink($src . DIRECTORY_SEPARATOR . $file);
  441. } else {
  442. $n++;
  443. $badcp++;
  444. }
  445. } else {
  446. $n++;
  447. }
  448. $total++;
  449. }
  450. }
  451. }
  452. closedir($dir);
  453. $code = 1;
  454. $msg = '!';
  455. if($badcp > 0)
  456. {
  457. $code = 2;
  458. $msg = ",其中失败 <font color='red'>{$badcp}</font> 个文件,<br />请从升级包目录[<font color='red'>data/backup/{$folderName}/www</font>]中的取出全部文件覆盖到根目录,完成手工升级。";
  459. }
  460. $this->copy_speed($n, $total);
  461. return ['code'=>$code, 'msg'=>$msg];
  462. }
  463. /**
  464. * 复制文件进度
  465. */
  466. private function copy_speed($n, $total)
  467. {
  468. $data = false;
  469. if ($n < $total) {
  470. $this->copy_speed($n, $total);
  471. } else {
  472. $data = true;
  473. }
  474. return $data;
  475. }
  476. public function sql_split($sql, $tablepre) {
  477. $sql = str_replace("`#@__", '`'.$tablepre, $sql);
  478. $sql = preg_replace("/TYPE=(InnoDB|MyISAM|MEMORY)( DEFAULT CHARSET=[^; ]+)?/", "ENGINE=\\1 DEFAULT CHARSET=utf8", $sql);
  479. $sql = str_replace("\r", "\n", $sql);
  480. $ret = array();
  481. $num = 0;
  482. $queriesarray = explode(";\n", trim($sql));
  483. unset($sql);
  484. foreach ($queriesarray as $query) {
  485. $ret[$num] = '';
  486. $queries = explode("\n", trim($query));
  487. $queries = array_filter($queries);
  488. foreach ($queries as $query) {
  489. $str1 = substr($query, 0, 1);
  490. if ($str1 != '#' && $str1 != '-')
  491. $ret[$num] .= $query;
  492. }
  493. $num++;
  494. }
  495. return $ret;
  496. }
  497. /**
  498. * @param type $fileUrl 下载文件地址
  499. * @param type $md5File 文件MD5 加密值 用于对比下载是否完整
  500. * @return string 错误或成功提示
  501. */
  502. private function downloadFile($fileUrl,$md5File)
  503. {
  504. $upgradeLogic = new \app\admin\logic\UpgradeLogic;
  505. return $upgradeLogic->downloadFile($fileUrl, $md5File, 'weapp');
  506. }
  507. // 升级记录 log 日志
  508. private function UpgradeLog($code, $to_key_num){
  509. $serial_number = DEFAULT_SERIALNUMBER;
  510. $constsant_path = APP_PATH.MODULE_NAME.'/conf/constant.php';
  511. if (file_exists($constsant_path)) {
  512. require_once($constsant_path);
  513. defined('SERIALNUMBER') && $serial_number = SERIALNUMBER;
  514. }
  515. $mysqlinfo = \think\Db::query("SELECT VERSION() as version");
  516. $mysql_version = $mysqlinfo[0]['version'];
  517. $values = array(
  518. 'domain'=>request()->host(), //用户域名
  519. 'code' => $code, // 插件标识
  520. 'key_num'=>getWeappVersion($code), // 用户版本号
  521. 'to_key_num'=>$to_key_num, // 用户要升级的版本号
  522. 'add_time'=>time(), // 升级时间
  523. 'serial_number'=>$serial_number,
  524. 'ip' => GetHostByName($_SERVER['SERVER_NAME']),
  525. 'phpv' => phpversion(),
  526. 'mysql_version' => $mysql_version,
  527. 'web_server' => $_SERVER['SERVER_SOFTWARE'],
  528. );
  529. // api_Weapp_upgradeLog
  530. $upgradeLogic = new \app\admin\logic\UpgradeLogic;
  531. $upgradeLogic->GetKeyData($values);
  532. $url = $this->service_ey.'/index.php?m=api&c=Weapp&a=upgradeLog';
  533. httpRequest($url, 'POST', $values, [], 5);
  534. }
  535. /**
  536. * 兼容早期版本,1.4.5或以下版本
  537. * @param array &$assign_data [description]
  538. * @return [type] [description]
  539. */
  540. public function installpwd_145(&$assign_data = [])
  541. {
  542. $main_lang = get_main_lang();
  543. /*插件安装密码设置*/
  544. $weapp_installpwd = tpCache('weapp.weapp_installpwd', [], $main_lang);
  545. if (!empty($weapp_installpwd)) {
  546. $weapp_installpwd = 1;
  547. } else {
  548. $weapp_installpwd = 0;
  549. }
  550. $assign_data['weapp_installpwd'] = $weapp_installpwd;
  551. /*--end*/
  552. $admin_info = session('admin_info');
  553. /*是否创始人*/
  554. $isFounder = 0;
  555. if (empty($admin_info['parent_id']) && -1 == $admin_info['role_id']) {
  556. $isFounder = 1;
  557. }
  558. $assign_data['isFounder'] = $isFounder;
  559. /*--end*/
  560. /*登录第一次输入插件安装密码之后,在退出之前安装所有插件都不再输入安装密码*/
  561. $is_weapp_installpwd = 0;
  562. $weapp_installpwd = tpCache('weapp.weapp_installpwd', [], $main_lang);
  563. $firstInstallpwd = empty($admin_info['weapp_info']['firstInstallpwd']) ? '' : $admin_info['weapp_info']['firstInstallpwd'];
  564. if (!empty($firstInstallpwd) && $firstInstallpwd == $weapp_installpwd) {
  565. $is_weapp_installpwd = 1;
  566. }
  567. $assign_data['is_weapp_installpwd'] = $is_weapp_installpwd;
  568. /*--end*/
  569. }
  570. /**
  571. * 加密函数
  572. *
  573. * @access public
  574. * @param string $string 字符串
  575. * @param string $operation 操作
  576. * @return string
  577. */
  578. public function mchStrCode($string, $operation = 'ENCODE', $auth_code = '')
  579. {
  580. if (empty($auth_code)) {
  581. if (function_exists('get_auth_code')) {
  582. $auth_code = get_auth_code();
  583. } else {
  584. $auth_code = tpCache('system.system_auth_code');
  585. if (empty($auth_code)) {
  586. $auth_code = \think\Config::get('AUTH_CODE');
  587. /*多语言*/
  588. if (is_language()) {
  589. $langRow = \think\Db::name('language')->order('id asc')->select();
  590. foreach ($langRow as $key => $val) {
  591. tpCache('system', ['system_auth_code'=>$auth_code], $val['mark']);
  592. }
  593. } else { // 单语言
  594. tpCache('system', ['system_auth_code'=>$auth_code]);
  595. }
  596. /*--end*/
  597. }
  598. }
  599. }
  600. if (function_exists('mchStrCode')) {
  601. return mchStrCode($string, $operation, $auth_code);
  602. }
  603. $key_length = 4;
  604. $expiry = 0;
  605. $key = md5($auth_code);
  606. $fixedkey = md5($key);
  607. $egiskeys = md5(substr($fixedkey, 16, 16));
  608. $runtokey = $key_length ? ($operation == 'ENCODE' ? substr(md5(microtime(true)), -$key_length) : substr($string, 0, $key_length)) : '';
  609. $keys = md5(substr($runtokey, 0, 16) . substr($fixedkey, 0, 16) . substr($runtokey, 16) . substr($fixedkey, 16));
  610. $string = $operation == 'ENCODE' ? sprintf('%010d', $expiry ? $expiry + time() : 0) . substr(md5($string . $egiskeys), 0, 16) . $string : base64_decode(substr($string, $key_length));
  611. $i = 0;
  612. $result = '';
  613. $string_length = strlen($string);
  614. for ($i = 0; $i < $string_length; $i++) {
  615. $result .= chr(ord($string[$i]) ^ ord($keys[$i % 32]));
  616. }
  617. if ($operation == 'ENCODE') {
  618. return $runtokey . str_replace('=', '', base64_encode($result));
  619. } else {
  620. $str1 = substr($result, 0, 10);
  621. if(version_compare(PHP_VERSION,'8.0.0','>')) {
  622. $str1 = !empty($str1) ? $str1 : 0;
  623. }
  624. if (($str1 == 0 || intval($str1) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26) . $egiskeys), 0, 16)) {
  625. return substr($result, 26);
  626. } else {
  627. return '';
  628. }
  629. }
  630. }
  631. }
  632. ?>