Update.php 1.6 KB

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