截流自动化的商城平台
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.

Upgrade.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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\controller\system;
  20. use app\admin\logic\system\UpgradeLogic;
  21. use app\admin\validate\UpgradeValidate;
  22. use app\common\basics\AdminBase;
  23. use app\common\server\JsonServer;
  24. /**
  25. * 升级更新
  26. * Class Upgrade
  27. * @package app\admin\controller
  28. */
  29. class Upgrade extends AdminBase
  30. {
  31. /**
  32. * Notes: 更新列表页
  33. * @author 段誉(2021/7/12 16:17)
  34. * @return \think\response\Json|\think\response\View
  35. */
  36. public function index()
  37. {
  38. if ($this->request->isAjax()) {
  39. $page = $this->request->get('page/d', $this->page_no);
  40. $size = $this->request->get('limit/d', $this->page_size);
  41. $data = UpgradeLogic::index($page, $size);
  42. return JsonServer::success('', $data);
  43. }
  44. return view();
  45. }
  46. /**
  47. * Notes: 提示
  48. * @author 段誉(2021/7/12 16:17)
  49. * @return \think\response\View
  50. */
  51. public function choosePage()
  52. {
  53. return view();
  54. }
  55. /**
  56. * Notes: 执行更新
  57. * @author 段誉(2021/7/12 16:18)
  58. * @return \think\response\Json
  59. */
  60. public function handleUpgrade()
  61. {
  62. if ($this->request->isAjax()) {
  63. (new UpgradeValidate())->goCheck();
  64. $post = $this->request->post();
  65. $post['update_type'] = 1;
  66. $post['link'] = "package_link";
  67. $res = UpgradeLogic::upgrade($post);
  68. if (true === $res) {
  69. return JsonServer::success('更新成功');
  70. } else {
  71. return JsonServer::error(UpgradeLogic::getError() ?? '系统错误');
  72. }
  73. }
  74. return JsonServer::error('更新失败');
  75. }
  76. /**
  77. * Notes: 添加日志
  78. * @author 段誉(2021/7/12 16:18)
  79. * @return \think\response\Json
  80. */
  81. public function getPkg()
  82. {
  83. $post = $this->request->post();
  84. $res = UpgradeLogic::getPkgLine($post);
  85. if($res === false) {
  86. return JsonServer::error(UpgradeLogic::getError() ?? '系统错误');
  87. }
  88. return JsonServer::success('', $res);
  89. }
  90. }