Update.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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 think\admin\Controller;
  16. use think\admin\service\ModuleService;
  17. use think\admin\service\SystemService;
  18. /**
  19. * 安装服务端支持
  20. * Class Update
  21. * @package app\admin\controller\api
  22. */
  23. class Update extends Controller
  24. {
  25. /**
  26. * 访问环境拦截
  27. */
  28. protected function initialize()
  29. {
  30. if (!SystemService::instance()->checkRunMode('dev')) {
  31. $this->error('只允许访问本地或官方代码!');
  32. }
  33. }
  34. /**
  35. * 读取文件内容
  36. */
  37. public function get()
  38. {
  39. $filename = decode(input('encode', '0'));
  40. if (!ModuleService::instance()->checkAllowDownload($filename)) {
  41. $this->error('下载的文件不在认证规则中!');
  42. }
  43. if (file_exists($realname = $this->app->getRootPath() . $filename)) {
  44. $this->success('读取文件内容成功!', [
  45. 'content' => base64_encode(file_get_contents($realname)),
  46. ]);
  47. } else {
  48. $this->error('读取文件内容失败!');
  49. }
  50. }
  51. /**
  52. * 读取文件列表
  53. */
  54. public function node()
  55. {
  56. $this->success('获取文件列表成功!', ModuleService::instance()->getChanges(
  57. json_decode($this->request->post('rules', '[]', ''), true),
  58. json_decode($this->request->post('ignore', '[]', ''), true)
  59. ));
  60. }
  61. /**
  62. * 获取模块信息
  63. */
  64. public function version()
  65. {
  66. $this->success('获取模块信息成功!', ModuleService::instance()->getModules());
  67. }
  68. }