Addon.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use fast\Http;
  5. use think\addons\AddonException;
  6. use think\addons\Service;
  7. use think\Cache;
  8. use think\Config;
  9. use think\Exception;
  10. /**
  11. * 插件管理
  12. *
  13. * @icon fa fa-cube
  14. * @remark 可在线安装、卸载、禁用、启用插件,同时支持添加本地插件。FastAdmin已上线插件商店 ,你可以发布你的免费或付费插件:<a href="https://www.fastadmin.net/store.html" target="_blank">https://www.fastadmin.net/store.html</a>
  15. */
  16. class Addon extends Backend
  17. {
  18. protected $model = null;
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. }
  23. /**
  24. * 查看
  25. */
  26. public function index()
  27. {
  28. $addons = get_addon_list();
  29. foreach ($addons as $k => &$v) {
  30. $config = get_addon_config($v['name']);
  31. $v['config'] = $config ? 1 : 0;
  32. $v['url'] = str_replace($this->request->server('SCRIPT_NAME'), '', $v['url']);
  33. }
  34. $this->assignconfig(['addons' => $addons]);
  35. return $this->view->fetch();
  36. }
  37. /**
  38. * 配置
  39. */
  40. public function config($ids = null)
  41. {
  42. $name = $this->request->get("name");
  43. if (!$name) {
  44. $this->error(__('Parameter %s can not be empty', $ids ? 'id' : 'name'));
  45. }
  46. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  47. $this->error(__('Addon name incorrect'));
  48. }
  49. if (!is_dir(ADDON_PATH . $name)) {
  50. $this->error(__('Directory not found'));
  51. }
  52. $info = get_addon_info($name);
  53. $config = get_addon_fullconfig($name);
  54. if (!$info) {
  55. $this->error(__('No Results were found'));
  56. }
  57. if ($this->request->isPost()) {
  58. $params = $this->request->post("row/a", [], 'trim');
  59. if ($params) {
  60. foreach ($config as $k => &$v) {
  61. if (isset($params[$v['name']])) {
  62. if ($v['type'] == 'array') {
  63. $params[$v['name']] = is_array($params[$v['name']]) ? $params[$v['name']] : (array)json_decode($params[$v['name']], true);
  64. $value = $params[$v['name']];
  65. } else {
  66. $value = is_array($params[$v['name']]) ? implode(',', $params[$v['name']]) : $params[$v['name']];
  67. }
  68. $v['value'] = $value;
  69. }
  70. }
  71. try {
  72. //更新配置文件
  73. set_addon_fullconfig($name, $config);
  74. Service::refresh();
  75. $this->success();
  76. } catch (Exception $e) {
  77. $this->error(__($e->getMessage()));
  78. }
  79. }
  80. $this->error(__('Parameter %s can not be empty', ''));
  81. }
  82. $tips = [];
  83. foreach ($config as $index => &$item) {
  84. if ($item['name'] == '__tips__') {
  85. $tips = $item;
  86. unset($config[$index]);
  87. }
  88. }
  89. $this->view->assign("addon", ['info' => $info, 'config' => $config, 'tips' => $tips]);
  90. $configFile = ADDON_PATH . $name . DS . 'config.html';
  91. $viewFile = is_file($configFile) ? $configFile : '';
  92. return $this->view->fetch($viewFile);
  93. }
  94. /**
  95. * 安装
  96. */
  97. public function install()
  98. {
  99. $name = $this->request->post("name");
  100. $force = (int)$this->request->post("force");
  101. if (!$name) {
  102. $this->error(__('Parameter %s can not be empty', 'name'));
  103. }
  104. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  105. $this->error(__('Addon name incorrect'));
  106. }
  107. try {
  108. $uid = $this->request->post("uid");
  109. $token = $this->request->post("token");
  110. $version = $this->request->post("version");
  111. $faversion = $this->request->post("faversion");
  112. $extend = [
  113. 'uid' => $uid,
  114. 'token' => $token,
  115. 'version' => $version,
  116. 'faversion' => $faversion
  117. ];
  118. Service::install($name, $force, $extend);
  119. $info = get_addon_info($name);
  120. $info['config'] = get_addon_config($name) ? 1 : 0;
  121. $info['state'] = 1;
  122. $this->success(__('Install successful'), null, ['addon' => $info]);
  123. } catch (AddonException $e) {
  124. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  125. } catch (Exception $e) {
  126. $this->error(__($e->getMessage()), $e->getCode());
  127. }
  128. }
  129. /**
  130. * 卸载
  131. */
  132. public function uninstall()
  133. {
  134. $name = $this->request->post("name");
  135. $force = (int)$this->request->post("force");
  136. if (!$name) {
  137. $this->error(__('Parameter %s can not be empty', 'name'));
  138. }
  139. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  140. $this->error(__('Addon name incorrect'));
  141. }
  142. try {
  143. Service::uninstall($name, $force);
  144. $this->success(__('Uninstall successful'));
  145. } catch (AddonException $e) {
  146. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  147. } catch (Exception $e) {
  148. $this->error(__($e->getMessage()));
  149. }
  150. }
  151. /**
  152. * 禁用启用
  153. */
  154. public function state()
  155. {
  156. $name = $this->request->post("name");
  157. $action = $this->request->post("action");
  158. $force = (int)$this->request->post("force");
  159. if (!$name) {
  160. $this->error(__('Parameter %s can not be empty', 'name'));
  161. }
  162. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  163. $this->error(__('Addon name incorrect'));
  164. }
  165. try {
  166. $action = $action == 'enable' ? $action : 'disable';
  167. //调用启用、禁用的方法
  168. Service::$action($name, $force);
  169. Cache::rm('__menu__');
  170. $this->success(__('Operate successful'));
  171. } catch (AddonException $e) {
  172. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  173. } catch (Exception $e) {
  174. $this->error(__($e->getMessage()));
  175. }
  176. }
  177. /**
  178. * 本地上传
  179. */
  180. public function local()
  181. {
  182. Config::set('default_return_type', 'json');
  183. $file = $this->request->file('file');
  184. $addonTmpDir = RUNTIME_PATH . 'addons' . DS;
  185. if (!is_dir($addonTmpDir)) {
  186. @mkdir($addonTmpDir, 0755, true);
  187. }
  188. $info = $file->rule('uniqid')->validate(['size' => 10240000, 'ext' => 'zip'])->move($addonTmpDir);
  189. if ($info) {
  190. $tmpName = substr($info->getFilename(), 0, stripos($info->getFilename(), '.'));
  191. $tmpAddonDir = ADDON_PATH . $tmpName . DS;
  192. $tmpFile = $addonTmpDir . $info->getSaveName();
  193. try {
  194. Service::unzip($tmpName);
  195. unset($info);
  196. @unlink($tmpFile);
  197. $infoFile = $tmpAddonDir . 'info.ini';
  198. if (!is_file($infoFile)) {
  199. throw new Exception(__('Addon info file was not found'));
  200. }
  201. $config = Config::parse($infoFile, '', $tmpName);
  202. $name = isset($config['name']) ? $config['name'] : '';
  203. if (!$name) {
  204. throw new Exception(__('Addon info file data incorrect'));
  205. }
  206. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  207. throw new Exception(__('Addon name incorrect'));
  208. }
  209. $newAddonDir = ADDON_PATH . $name . DS;
  210. if (is_dir($newAddonDir)) {
  211. throw new Exception(__('Addon already exists'));
  212. }
  213. //重命名插件文件夹
  214. rename($tmpAddonDir, $newAddonDir);
  215. try {
  216. //默认禁用该插件
  217. $info = get_addon_info($name);
  218. if ($info['state']) {
  219. $info['state'] = 0;
  220. set_addon_info($name, $info);
  221. }
  222. //执行插件的安装方法
  223. $class = get_addon_class($name);
  224. if (class_exists($class)) {
  225. $addon = new $class();
  226. $addon->install();
  227. }
  228. //导入SQL
  229. Service::importsql($name);
  230. $info['config'] = get_addon_config($name) ? 1 : 0;
  231. $this->success(__('Offline installed tips'), null, ['addon' => $info]);
  232. } catch (Exception $e) {
  233. @rmdirs($newAddonDir);
  234. throw new Exception(__($e->getMessage()));
  235. }
  236. } catch (Exception $e) {
  237. unset($info);
  238. @unlink($tmpFile);
  239. @rmdirs($tmpAddonDir);
  240. $this->error(__($e->getMessage()));
  241. }
  242. } else {
  243. // 上传失败获取错误信息
  244. $this->error(__($file->getError()));
  245. }
  246. }
  247. /**
  248. * 更新插件
  249. */
  250. public function upgrade()
  251. {
  252. $name = $this->request->post("name");
  253. $addonTmpDir = RUNTIME_PATH . 'addons' . DS;
  254. if (!$name) {
  255. $this->error(__('Parameter %s can not be empty', 'name'));
  256. }
  257. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  258. $this->error(__('Addon name incorrect'));
  259. }
  260. if (!is_dir($addonTmpDir)) {
  261. @mkdir($addonTmpDir, 0755, true);
  262. }
  263. try {
  264. $uid = $this->request->post("uid");
  265. $token = $this->request->post("token");
  266. $version = $this->request->post("version");
  267. $faversion = $this->request->post("faversion");
  268. $extend = [
  269. 'uid' => $uid,
  270. 'token' => $token,
  271. 'version' => $version,
  272. 'faversion' => $faversion
  273. ];
  274. //调用更新的方法
  275. Service::upgrade($name, $extend);
  276. Cache::rm('__menu__');
  277. $this->success(__('Operate successful'));
  278. } catch (AddonException $e) {
  279. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  280. } catch (Exception $e) {
  281. $this->error(__($e->getMessage()));
  282. }
  283. }
  284. /**
  285. * 已装插件
  286. */
  287. public function downloaded()
  288. {
  289. $offset = (int)$this->request->get("offset");
  290. $limit = (int)$this->request->get("limit");
  291. $filter = $this->request->get("filter");
  292. $search = $this->request->get("search");
  293. $search = htmlspecialchars(strip_tags($search));
  294. $onlineaddons = Cache::get("onlineaddons");
  295. if (!is_array($onlineaddons)) {
  296. $onlineaddons = [];
  297. $result = Http::sendRequest(config('fastadmin.api_url') . '/addon/index');
  298. if ($result['ret']) {
  299. $json = (array)json_decode($result['msg'], true);
  300. $rows = isset($json['rows']) ? $json['rows'] : [];
  301. foreach ($rows as $index => $row) {
  302. $onlineaddons[$row['name']] = $row;
  303. }
  304. }
  305. Cache::set("onlineaddons", $onlineaddons, 600);
  306. }
  307. $filter = (array)json_decode($filter, true);
  308. $addons = get_addon_list();
  309. $list = [];
  310. foreach ($addons as $k => $v) {
  311. if ($search && stripos($v['name'], $search) === false && stripos($v['intro'], $search) === false) {
  312. continue;
  313. }
  314. if (isset($onlineaddons[$v['name']])) {
  315. $v = array_merge($v, $onlineaddons[$v['name']]);
  316. } else {
  317. $v['category_id'] = 0;
  318. $v['flag'] = '';
  319. $v['banner'] = '';
  320. $v['image'] = '';
  321. $v['donateimage'] = '';
  322. $v['demourl'] = '';
  323. $v['price'] = __('None');
  324. $v['screenshots'] = [];
  325. $v['releaselist'] = [];
  326. }
  327. $v['url'] = addon_url($v['name']);
  328. $v['url'] = str_replace($this->request->server('SCRIPT_NAME'), '', $v['url']);
  329. $v['createtime'] = filemtime(ADDON_PATH . $v['name']);
  330. if ($filter && isset($filter['category_id']) && is_numeric($filter['category_id']) && $filter['category_id'] != $v['category_id']) {
  331. continue;
  332. }
  333. $list[] = $v;
  334. }
  335. $total = count($list);
  336. if ($limit) {
  337. $list = array_slice($list, $offset, $limit);
  338. }
  339. $result = array("total" => $total, "rows" => $list);
  340. $callback = $this->request->get('callback') ? "jsonp" : "json";
  341. return $callback($result);
  342. }
  343. }