截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UpgradeLogic.php 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\system;
  20. use app\common\basics\Logic;
  21. use think\facade\Cache;
  22. use think\facade\Db;
  23. use Requests;
  24. use think\Exception;
  25. use think\facade\Log;
  26. /**
  27. * 更新逻辑
  28. * Class UpgradeLogic
  29. * @package app\admin\logic\system
  30. */
  31. class UpgradeLogic extends Logic
  32. {
  33. protected static $base_url = 'https://server.likeshop.cn';
  34. /**
  35. * Notes: 版本列表
  36. * @param $page_no
  37. * @param $page_size
  38. * @author 段誉(2021/7/9 0:55)
  39. * @return array
  40. */
  41. public static function index($page_no, $page_size)
  42. {
  43. $result = self::getRemoteVersion($page_no, $page_size) ?? [];
  44. if (empty($result)) {
  45. return ['count' => 0, 'lists' => []];
  46. }
  47. $local_data = local_version();
  48. $local_version = self::formatVersion($local_data['version']);
  49. $count = $result['count'] ?? 0;
  50. $lists = $result['lists'] ?? 0;
  51. foreach ($lists as $k => $item) {
  52. $item['version_no'] = self::formatVersion($item['version_no']);
  53. //版本描述
  54. $lists[$k]['version_str'] = '';
  55. $lists[$k]['able_update'] = 0;
  56. if ($local_version == $item['version_no']) {
  57. $lists[$k]['version_str'] = '您的系统当前处于此版本';
  58. }
  59. if ($local_version < $item['version_no'] && !empty($item['package_link'])) {
  60. $lists[$k]['version_str'] = '系统可更新至此版本';
  61. $lists[$k]['able_update'] = 1;
  62. }
  63. //最新的版本号标志
  64. $lists[$k]['new_version'] = 0;
  65. $lists[0]['new_version'] = ($page_no == 1) ? 1 : 0;
  66. //注意,是否需要重新发布描述
  67. $lists[$k]['notice'] = [];
  68. if ($item['is_republish']) {
  69. $lists[$k]['notice'][] = '更新至当前版本后需重新发布前端商城';
  70. }
  71. if ($item['pc_shop_publish']) {
  72. $lists[$k]['notice'][] = '更新至当前版本后需重新发布PC商城端';
  73. }
  74. if ($item['pc_admin_publish']) {
  75. $lists[$k]['notice'][] = '更新至当前版本后需重新发布PC管理端';
  76. }
  77. if ($item['uniapp_publish']) {
  78. $lists[$k]['notice'][] = '更新至当前版本后需重新发布移动端商城';
  79. }
  80. if ($item['business_publish']) {
  81. $lists[$k]['notice'][] = '更新至当前版本后需重新发布商家移动端';
  82. }
  83. if ($item['kefu_publish']) {
  84. $lists[$k]['notice'][] = '更新至当前版本后需重新发布客服端';
  85. }
  86. //处理更新内容信息
  87. $contents = $item['update_content'];
  88. $add = [];
  89. $optimize = [];
  90. $repair = [];
  91. if (!empty($contents)) {
  92. foreach ($contents as $content) {
  93. if ($content['type'] == 1) {
  94. $add[] = '新增:'.$content['update_function'];
  95. }
  96. if ($content['type'] == 2) {
  97. $optimize[] = '优化:'.$content['update_function'];
  98. }
  99. if ($content['type'] == 3) {
  100. $repair[] = '修复:'.$content['update_function'];
  101. }
  102. }
  103. }
  104. $lists[$k]['add'] = $add;
  105. $lists[$k]['optimize'] = $optimize;
  106. $lists[$k]['repair'] = $repair;
  107. unset($lists[$k]['update_content']);
  108. }
  109. return ['count' => $count, 'lists' => $lists];
  110. }
  111. /**
  112. * Notes: 获取远程数据
  113. * @param string $page_no
  114. * @param string $page_size
  115. * @author 段誉(2021/7/9 0:54)
  116. * @return mixed
  117. */
  118. public static function getRemoteVersion($page_no = '', $page_size = '')
  119. {
  120. $cache_version = Cache::get('version_lists' . $page_no);
  121. if (!empty($cache_version)) {
  122. return $cache_version;
  123. }
  124. if (empty($page_no) || empty($page_size)) {
  125. $remote_url = self::$base_url."/api/version/lists?product_id=2&type=2&page=1";
  126. } else {
  127. $remote_url = self::$base_url."/api/version/lists?product_id=2&type=2&page_no=$page_no&page_size=$page_size&page=1";
  128. }
  129. $result = Requests::get($remote_url);
  130. $result = json_decode($result->body, true);
  131. $result = $result['data'] ?? [];
  132. Cache::set('version_lists' . $page_no, $result, 1800);
  133. return $result;
  134. }
  135. /**
  136. * Notes: 更新主程序
  137. * @param $version
  138. * @return bool|string
  139. * @author 段誉(2021/7/7 18:34)
  140. */
  141. public static function upgrade($params)
  142. {
  143. //更新状态
  144. $upgrade_status = true;
  145. // 本地更新路径
  146. $local_upgrade_dir = ROOT_PATH . '/upgrade/';
  147. // 本地更新临时文件
  148. $temp_dir = ROOT_PATH . '/upgrade/temp/';
  149. Db::startTrans();
  150. try {
  151. // 授权验证
  152. $result = self::verify($params);
  153. if (!$result['has_permission']) {
  154. $tips = !empty($result['msg']) ? $result['msg'] : '请先联系客服获取授权';
  155. throw new \Exception($tips);
  156. }
  157. //远程下载链接
  158. $remote_url = $result['link'];
  159. if (!is_dir($local_upgrade_dir)) {
  160. mkdir(iconv("UTF-8", "GBK", $local_upgrade_dir), 0777, true);
  161. }
  162. //下载更新压缩包保存到本地
  163. $remote_data = self::downFile($remote_url, $local_upgrade_dir);
  164. if (false === $remote_data) {
  165. throw new \Exception('获取文件错误');
  166. }
  167. //解压缩
  168. if (false === unzip($remote_data['save_path'], $temp_dir)) {
  169. throw new \Exception('解压文件错误');
  170. }
  171. //更新sql
  172. if (false === self::upgradeSql($temp_dir . 'sql/data/')) {
  173. throw new \Exception('更新数据库数据失败');
  174. }
  175. //更新文件
  176. if (false === self::upgradeDir($temp_dir . 'server/', self::getProjectPath())) {
  177. throw new \Exception('更新文件失败');
  178. }
  179. Db::commit();
  180. } catch (\Exception $e) {
  181. Db::rollback();
  182. //错误日志
  183. self::$error = $e->getMessage();
  184. $upgrade_status = false;
  185. }
  186. if ($upgrade_status) {
  187. try {
  188. //更新sql->更新数据结构
  189. if (false === self::upgradeSql($temp_dir . 'sql/structure/')) {
  190. throw new \Exception('更新数据库结构失败');
  191. }
  192. } catch (\Exception $e) {
  193. self::$error = $e->getMessage();
  194. $upgrade_status = false;
  195. }
  196. }
  197. //记录日志
  198. self::addlog($params, $upgrade_status);
  199. //删除临时文件(压缩包不删除,删除解压的文件)
  200. if (false === del_target_dir($temp_dir, true)) {
  201. Log::write('删除系统更新临时文件失败');
  202. }
  203. self::delUpgradeLock($params['version_no']);
  204. return $upgrade_status;
  205. }
  206. /**
  207. * @notes 授权验证
  208. * @param $params
  209. * @author Tab
  210. * @date 2021/10/26 17:12
  211. */
  212. public static function verify($params)
  213. {
  214. $domain = $_SERVER['SERVER_NAME'];
  215. $remoteUrl = self::$base_url . "/api/version/verify?domain=".$domain."&product_id=2&type=2&version_id=".$params['id']."&link=".$params['link'];
  216. $result = Requests::get($remoteUrl);
  217. $result = json_decode($result->body, true);
  218. $result = $result['data'] ?? ['has_permission' => false, 'link' => '', 'msg' => ''];
  219. return $result;
  220. }
  221. /**
  222. * Notes: 添加日志
  223. * @param $data
  224. * @param bool $status
  225. * @author 段誉(2021/7/12 14:56)
  226. * @return bool|\Requests_Response
  227. */
  228. public static function addlog($data, $status = true)
  229. {
  230. try{
  231. $post_data = [
  232. 'version_id' => $data['id'],
  233. 'version_no' => $data['version_no'],
  234. 'domain' => $_SERVER['SERVER_NAME'],
  235. 'type' => 2, //企业版
  236. 'product_id' => 2,//多商户
  237. 'update_type' => $data['update_type'],
  238. 'status' => $status ? 1 : 0,
  239. 'error' => empty(self::$error) ? '' : self::$error
  240. ];
  241. $request_url = self::$base_url.'/api/version/log';
  242. return Requests::post($request_url, [], $post_data);
  243. } catch(\Exception $e) {
  244. Log::write('更新日志添加失败:'.$e->getMessage());
  245. return false;
  246. }
  247. }
  248. /**
  249. * Notes: 下载压缩包
  250. * @param $url
  251. * @param string $savePath
  252. * @author 段誉(2021/7/12 14:56)
  253. * @return array|bool
  254. */
  255. public static function downFile($url, $savePath = './upgrade/')
  256. {
  257. $ch = curl_init();
  258. curl_setopt($ch, CURLOPT_URL, $url);
  259. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  260. curl_setopt($ch, CURLOPT_HEADER, TRUE);
  261. curl_setopt($ch, CURLOPT_NOBODY, FALSE);
  262. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  263. $response = curl_exec($ch);
  264. $header = '';
  265. $body = '';
  266. if (curl_getinfo($ch, CURLINFO_HTTP_CODE) == '200') {
  267. $headerSize = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
  268. $header = substr($response, 0, $headerSize);
  269. $body = substr($response, $headerSize);
  270. }
  271. curl_close($ch);
  272. //文件名
  273. $fullName = basename($url);
  274. //文件保存完整路径
  275. $savePath = $savePath . $fullName;
  276. //创建目录并设置权限
  277. $basePath = dirname($savePath);
  278. if (!file_exists($basePath)) {
  279. @mkdir($basePath, 0777, true);
  280. @chmod($basePath, 0777);
  281. }
  282. if (file_put_contents($savePath, $body)) {
  283. return [
  284. 'save_path' => $savePath,
  285. 'file_name' => $fullName,
  286. ];
  287. }
  288. return false;
  289. }
  290. /**
  291. * Notes: 获取项目路径
  292. * @return string
  293. * @author 段誉(2021/7/7 18:18)
  294. */
  295. public static function getProjectPath()
  296. {
  297. $path = dirname(ROOT_PATH);
  298. if(substr($path, -1) != '/') {
  299. $path = $path . '/';
  300. }
  301. return $path;
  302. }
  303. /**
  304. * Notes: 执行指定文件夹内的sql文件
  305. * @param $dir
  306. * @return bool
  307. * @author 段誉(2021/7/7 18:13)
  308. */
  309. public static function upgradeSql($dir)
  310. {
  311. //没有sql文件时无需更新
  312. if (!file_exists($dir)) {
  313. return true;
  314. }
  315. //遍历指定目录下的指定后缀文件
  316. $sql_files = get_scandir($dir, '', 'sql');
  317. if (false === $sql_files) {
  318. return false;
  319. }
  320. //当前数据库前缀
  321. $sql_prefix = config('database.connections.mysql.prefix');
  322. foreach ($sql_files as $k => $sql_file) {
  323. if (get_extension($sql_file) != 'sql') {
  324. continue;
  325. }
  326. $sql_content = file_get_contents($dir . $sql_file);
  327. if (empty($sql_content)) {
  328. continue;
  329. }
  330. $sqls = explode(';', $sql_content);
  331. //执行sql
  332. foreach ($sqls as $sql) {
  333. if (!empty(trim($sql))) {
  334. $sql = str_replace('`ls_', '`' . $sql_prefix, trim($sql)) . ';';
  335. Db::execute($sql);
  336. }
  337. }
  338. }
  339. return true;
  340. }
  341. /**
  342. * Notes: 更新文件
  343. * @param $temp_file //临时更新文件路径 (新的更新文件)
  344. * @param $old_file //需要更新的文件路囧 (旧的文件)
  345. * @author 段誉(2021/7/7 18:18)
  346. * @return bool|int
  347. */
  348. public static function upgradeDir($temp_file, $old_file)
  349. {
  350. if (empty(trim($temp_file)) || empty(trim($old_file))) {
  351. return false;
  352. }
  353. // 目录不存在就新建
  354. if (!is_dir($old_file)) {
  355. mkdir($old_file, 0777, true);
  356. }
  357. foreach (glob($temp_file . '*') as $file_name) {
  358. // 要处理的是目录时,递归处理文件目录。
  359. if (is_dir($file_name)) {
  360. self::upgradeDir($file_name . '/', $old_file . basename($file_name) . '/');
  361. }
  362. // 要处理的是文件时,判断是否存在 或者 与原来文件不一致 则覆盖
  363. if (is_file($file_name)) {
  364. if (!file_exists($old_file . basename($file_name))
  365. || md5(file_get_contents($file_name)) != md5(file_get_contents($old_file . basename($file_name)))
  366. ) {
  367. copy($file_name, $old_file . basename($file_name));
  368. }
  369. }
  370. }
  371. return true;
  372. }
  373. /**
  374. * @notes 格式化版本号
  375. * @param $version
  376. * @return array|string|string[]
  377. * @author 段誉
  378. * @date 2021/8/30 19:16
  379. */
  380. public static function formatVersion($version)
  381. {
  382. $version = trim($version);
  383. return str_replace('.', '', $version);
  384. }
  385. //获取更新包下载链接
  386. public static function getPkgLine($params)
  387. {
  388. //处理状态
  389. $status = true;
  390. // 授权验证
  391. $params['link'] = self::pkgLineMap($params['update_type']);
  392. $result = self::verify($params);
  393. if (!$result['has_permission']) {
  394. self::$error = !empty($result['msg']) ? $result['msg'] : '请先联系客服获取授权';
  395. $status = false;
  396. }
  397. //增加日志记录
  398. self::addlog($params, $status);
  399. if ($status) {
  400. return ['link' => $result['link']];
  401. }
  402. return false;
  403. }
  404. /**
  405. * @notes 更新类型映射
  406. * @param $type
  407. * @return string
  408. * @author 段誉
  409. * @date 2021/11/1 16:08
  410. */
  411. public static function pkgLineMap($type)
  412. {
  413. $data = [
  414. 1 => 'package_link', //一键更新类型 : 服務端更新包
  415. 2 => 'package_link', //服務端更新包
  416. 3 => 'pc_package_link', //pc端更新包
  417. 4 => 'uniapp_package_link', //uniapp更新包
  418. 5 => 'web_package_link', //后台前端更新包
  419. 6 => 'integral_package_link', //完整包
  420. 7 => 'business_package_link', //商家后台更新包
  421. 8 => 'kefu_package_link', //客服更新包
  422. ];
  423. return $data[$type] ?? '未知类型';
  424. }
  425. /**
  426. * @notes 设置更新锁
  427. * @param $version_no
  428. * @author 段誉
  429. * @date 2021/11/16 14:44
  430. */
  431. public static function setUpgradeLock($version_no)
  432. {
  433. Cache::set('upgrade_'.$version_no, $version_no, '60');
  434. }
  435. /**
  436. * @notes 获取更新锁
  437. * @param $version_no
  438. * @return mixed
  439. * @author 段誉
  440. * @date 2021/11/16 14:45
  441. */
  442. public static function getUpgradeLock($version_no)
  443. {
  444. return Cache::get('upgrade_'.$version_no);
  445. }
  446. /**
  447. * @notes 删除更新锁
  448. * @param $version_no
  449. * @author 段誉
  450. * @date 2021/11/16 14:45
  451. */
  452. public static function delUpgradeLock($version_no)
  453. {
  454. Cache::set('upgrade_'.self::formatVersion($version_no), null);
  455. }
  456. }