Update.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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;
  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://demo.thinkadmin.top';
  29. /**
  30. * 获取文件列表
  31. */
  32. public function tree()
  33. {
  34. $sync = new Sync('Update');
  35. $this->success('获取当前文件列表成功!', $sync->build());
  36. }
  37. /**
  38. * 读取线上文件数据
  39. * @param string $encode
  40. */
  41. public function read($encode)
  42. {
  43. $this->file = env('root_path') . decode($encode);
  44. if (file_exists($this->file)) {
  45. $this->success('读取文件成功!', [
  46. 'format' => 'base64',
  47. 'content' => base64_encode(file_get_contents($this->file)),
  48. ]);
  49. } else {
  50. $this->error('获取文件内容失败!');
  51. }
  52. }
  53. }