Update.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. * 访问权限
  26. */
  27. protected function initialize()
  28. {
  29. $domain = $this->app->request->host(true);
  30. $isDemo = is_numeric(stripos($domain, 'thinkadmin.top'));
  31. $isLocal = in_array($domain, ['127.0.0.1', 'localhost']);
  32. if (!$isLocal && !$isDemo) $this->error('只允许访问本地或官方代码!');
  33. }
  34. /**
  35. * 获取文件列表
  36. */
  37. public function tree()
  38. {
  39. $sync = new Sync('Update');
  40. $this->success('获取当前文件列表成功!', $sync->build());
  41. }
  42. /**
  43. * 读取线上文件数据
  44. * @param string $encode
  45. */
  46. public function read($encode)
  47. {
  48. $this->file = env('root_path') . decode($encode);
  49. if (file_exists($this->file)) {
  50. $this->success('读取文件成功!', [
  51. 'format' => 'base64',
  52. 'content' => base64_encode(file_get_contents($this->file)),
  53. ]);
  54. } else {
  55. $this->error('获取文件内容失败!');
  56. }
  57. }
  58. }