Update.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller\api;
  15. use library\command\Sync as UpdateLogic;
  16. use library\Controller;
  17. /**
  18. * 系统更新接口
  19. * Class Update
  20. * @package app\admin\controller\api
  21. */
  22. class Update extends Controller
  23. {
  24. /**
  25. * 基础URL地址
  26. * @var string
  27. */
  28. protected $baseUri = 'https://framework.thinkadmin.top';
  29. /**
  30. * 获取文件列表
  31. */
  32. public function tree()
  33. {
  34. $this->success('获取当前文件列表成功!', UpdateLogic::build());
  35. }
  36. /**
  37. * 读取线上文件数据
  38. * @param string $encode
  39. */
  40. public function read($encode)
  41. {
  42. $file = env('root_path') . decode($encode);
  43. if (!file_exists($file)) $this->error('获取文件内容失败!');
  44. $this->success('获取文件内容成功!', [
  45. 'format' => 'base64',
  46. 'content' => base64_encode(file_get_contents($file)),
  47. ]);
  48. }
  49. }