Addon.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use app\common\service\TransferCheck;
  5. use fast\Http;
  6. use think\addons\AddonException;
  7. use think\addons\Service;
  8. use think\Cache;
  9. use think\Config;
  10. use think\Db;
  11. use think\Exception;
  12. /**
  13. * 插件管理
  14. *
  15. * @icon fa fa-cube
  16. * @remark 可在线安装、卸载、禁用、启用、配置、升级插件,插件升级前请做好备份。
  17. */
  18. class Addon extends Backend
  19. {
  20. protected $model = null;
  21. protected $noNeedRight = ['get_table_list','guessLogistics'];
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. if (!$this->auth->isSuperAdmin() && in_array($this->request->action(), ['install', 'uninstall', 'local', 'upgrade'])) {
  26. $this->error(__('Access is allowed only to the super management group'));
  27. }
  28. }
  29. /**
  30. * 查看
  31. */
  32. public function index()
  33. {
  34. $addons = get_addon_list();
  35. foreach ($addons as $k => &$v) {
  36. $config = get_addon_config($v['name']);
  37. $v['config'] = $config ? 1 : 0;
  38. $v['url'] = str_replace($this->request->server('SCRIPT_NAME'), '', $v['url']);
  39. }
  40. $this->assignconfig(['addons' => $addons, 'api_url' => config('fastadmin.api_url'), 'faversion' => config('fastadmin.version')]);
  41. return $this->view->fetch();
  42. }
  43. /**
  44. * 配置
  45. */
  46. public function config($name = null)
  47. {
  48. $name = $name ? $name : $this->request->get("name");
  49. if (!$name) {
  50. $this->error(__('Parameter %s can not be empty', 'name'));
  51. }
  52. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  53. $this->error(__('Addon name incorrect'));
  54. }
  55. if (!is_dir(ADDON_PATH . $name)) {
  56. $this->error(__('Directory not found'));
  57. }
  58. $info = get_addon_info($name);
  59. $config = get_addon_fullconfig($name);
  60. if (!$info) {
  61. $this->error(__('No Results were found'));
  62. }
  63. if ($this->request->isPost()) {
  64. $params = $this->request->post("row/a", [], 'trim');
  65. if ($params) {
  66. foreach ($config as $k => &$v) {
  67. if (isset($params[$v['name']])) {
  68. if ($v['type'] == 'array') {
  69. $params[$v['name']] = is_array($params[$v['name']]) ? $params[$v['name']] : (array)json_decode($params[$v['name']], true);
  70. $value = $params[$v['name']];
  71. } else {
  72. $value = is_array($params[$v['name']]) ? implode(',', $params[$v['name']]) : $params[$v['name']];
  73. }
  74. $v['value'] = $value;
  75. }
  76. }
  77. try {
  78. //更新配置文件
  79. set_addon_fullconfig($name, $config);
  80. Service::refresh();
  81. $this->success();
  82. } catch (Exception $e) {
  83. $this->error(__($e->getMessage()));
  84. }
  85. }
  86. $this->error(__('Parameter %s can not be empty', ''));
  87. }
  88. $tips = [];
  89. foreach ($config as $index => &$item) {
  90. if ($item['name'] == '__tips__') {
  91. $tips = $item;
  92. unset($config[$index]);
  93. }
  94. }
  95. $this->view->assign("addon", ['info' => $info, 'config' => $config, 'tips' => $tips]);
  96. $configFile = ADDON_PATH . $name . DS . 'config.html';
  97. $viewFile = is_file($configFile) ? $configFile : '';
  98. return $this->view->fetch($viewFile);
  99. }
  100. /**
  101. * 安装
  102. */
  103. public function install()
  104. {
  105. $name = $this->request->post("name");
  106. $force = (int)$this->request->post("force");
  107. if (!$name) {
  108. $this->error(__('Parameter %s can not be empty', 'name'));
  109. }
  110. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  111. $this->error(__('Addon name incorrect'));
  112. }
  113. $info = [];
  114. try {
  115. $uid = $this->request->post("uid");
  116. $token = $this->request->post("token");
  117. $version = $this->request->post("version");
  118. $faversion = $this->request->post("faversion");
  119. $extend = [
  120. 'uid' => $uid,
  121. 'token' => $token,
  122. 'version' => $version,
  123. 'faversion' => $faversion
  124. ];
  125. $info = Service::install($name, $force, $extend);
  126. } catch (AddonException $e) {
  127. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  128. } catch (Exception $e) {
  129. $this->error(__($e->getMessage()), $e->getCode());
  130. }
  131. $this->success(__('Install successful'), '', ['addon' => $info]);
  132. }
  133. /**
  134. * 卸载
  135. */
  136. public function uninstall()
  137. {
  138. $name = $this->request->post("name");
  139. $force = (int)$this->request->post("force");
  140. $droptables = (int)$this->request->post("droptables");
  141. if (!$name) {
  142. $this->error(__('Parameter %s can not be empty', 'name'));
  143. }
  144. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  145. $this->error(__('Addon name incorrect'));
  146. }
  147. //只有开启调试且为超级管理员才允许删除相关数据库
  148. $tables = [];
  149. if ($droptables && Config::get("app_debug") && $this->auth->isSuperAdmin()) {
  150. $tables = get_addon_tables($name);
  151. }
  152. try {
  153. Service::uninstall($name, $force);
  154. if ($tables) {
  155. $prefix = Config::get('database.prefix');
  156. //删除插件关联表
  157. foreach ($tables as $index => $table) {
  158. //忽略非插件标识的表名
  159. if (!preg_match("/^{$prefix}{$name}/", $table)) {
  160. continue;
  161. }
  162. Db::execute("DROP TABLE IF EXISTS `{$table}`");
  163. }
  164. }
  165. } catch (AddonException $e) {
  166. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  167. } catch (Exception $e) {
  168. $this->error(__($e->getMessage()));
  169. }
  170. $this->success(__('Uninstall successful'));
  171. }
  172. /**
  173. * 禁用启用
  174. */
  175. public function state()
  176. {
  177. $name = $this->request->post("name");
  178. $action = $this->request->post("action");
  179. $force = (int)$this->request->post("force");
  180. if (!$name) {
  181. $this->error(__('Parameter %s can not be empty', 'name'));
  182. }
  183. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  184. $this->error(__('Addon name incorrect'));
  185. }
  186. try {
  187. $action = $action == 'enable' ? $action : 'disable';
  188. //调用启用、禁用的方法
  189. Service::$action($name, $force);
  190. Cache::rm('__menu__');
  191. } catch (AddonException $e) {
  192. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  193. } catch (Exception $e) {
  194. $this->error(__($e->getMessage()));
  195. }
  196. $this->success(__('Operate successful'));
  197. }
  198. /**
  199. * 本地上传
  200. */
  201. public function local()
  202. {
  203. Config::set('default_return_type', 'json');
  204. $info = [];
  205. $file = $this->request->file('file');
  206. try {
  207. $uid = $this->request->post("uid");
  208. $token = $this->request->post("token");
  209. $faversion = $this->request->post("faversion");
  210. if (!$uid || !$token) {
  211. throw new Exception(__('Please login and try to install'));
  212. }
  213. $extend = [
  214. 'uid' => $uid,
  215. 'token' => $token,
  216. 'faversion' => $faversion
  217. ];
  218. $info = Service::local($file, $extend);
  219. } catch (AddonException $e) {
  220. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  221. } catch (Exception $e) {
  222. $this->error(__($e->getMessage()));
  223. }
  224. $this->success(__('Offline installed tips'), '', ['addon' => $info]);
  225. }
  226. /**
  227. * 更新插件
  228. */
  229. public function upgrade()
  230. {
  231. $name = $this->request->post("name");
  232. $addonTmpDir = RUNTIME_PATH . 'addons' . DS;
  233. if (!$name) {
  234. $this->error(__('Parameter %s can not be empty', 'name'));
  235. }
  236. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  237. $this->error(__('Addon name incorrect'));
  238. }
  239. if (!is_dir($addonTmpDir)) {
  240. @mkdir($addonTmpDir, 0755, true);
  241. }
  242. $info = [];
  243. try {
  244. $uid = $this->request->post("uid");
  245. $token = $this->request->post("token");
  246. $version = $this->request->post("version");
  247. $faversion = $this->request->post("faversion");
  248. $extend = [
  249. 'uid' => $uid,
  250. 'token' => $token,
  251. 'version' => $version,
  252. 'faversion' => $faversion
  253. ];
  254. //调用更新的方法
  255. $info = Service::upgrade($name, $extend);
  256. Cache::rm('__menu__');
  257. } catch (AddonException $e) {
  258. $this->result($e->getData(), $e->getCode(), __($e->getMessage()));
  259. } catch (Exception $e) {
  260. $this->error(__($e->getMessage()));
  261. }
  262. $this->success(__('Operate successful'), '', ['addon' => $info]);
  263. }
  264. /**
  265. * 已装插件
  266. */
  267. public function downloaded()
  268. {
  269. $offset = (int)$this->request->get("offset");
  270. $limit = (int)$this->request->get("limit");
  271. $filter = $this->request->get("filter");
  272. $search = $this->request->get("search");
  273. $search = htmlspecialchars(strip_tags($search));
  274. $onlineaddons = Cache::get("onlineaddons");
  275. if (!is_array($onlineaddons) && config('fastadmin.api_url')) {
  276. $onlineaddons = [];
  277. $result = Http::sendRequest(config('fastadmin.api_url') . '/addon/index', [], 'GET', [
  278. CURLOPT_HTTPHEADER => ['Accept-Encoding:gzip'],
  279. CURLOPT_ENCODING => "gzip"
  280. ]);
  281. if ($result['ret']) {
  282. $json = (array)json_decode($result['msg'], true);
  283. $rows = isset($json['rows']) ? $json['rows'] : [];
  284. foreach ($rows as $index => $row) {
  285. $onlineaddons[$row['name']] = $row;
  286. }
  287. }
  288. Cache::set("onlineaddons", $onlineaddons, 600);
  289. }
  290. $filter = (array)json_decode($filter, true);
  291. $addons = get_addon_list();
  292. $list = [];
  293. foreach ($addons as $k => $v) {
  294. if ($search && stripos($v['name'], $search) === false && stripos($v['title'], $search) === false && stripos($v['intro'], $search) === false) {
  295. continue;
  296. }
  297. if (isset($onlineaddons[$v['name']])) {
  298. $v = array_merge($v, $onlineaddons[$v['name']]);
  299. } else {
  300. $v['category_id'] = 0;
  301. $v['flag'] = '';
  302. $v['banner'] = '';
  303. $v['image'] = '';
  304. $v['donateimage'] = '';
  305. $v['demourl'] = '';
  306. $v['price'] = __('None');
  307. $v['screenshots'] = [];
  308. $v['releaselist'] = [];
  309. }
  310. $v['url'] = addon_url($v['name']);
  311. $v['url'] = str_replace($this->request->server('SCRIPT_NAME'), '', $v['url']);
  312. $v['createtime'] = filemtime(ADDON_PATH . $v['name']);
  313. if ($filter && isset($filter['category_id']) && is_numeric($filter['category_id']) && $filter['category_id'] != $v['category_id']) {
  314. continue;
  315. }
  316. $list[] = $v;
  317. }
  318. $total = count($list);
  319. if ($limit) {
  320. $list = array_slice($list, $offset, $limit);
  321. }
  322. $result = array("total" => $total, "rows" => $list);
  323. $callback = $this->request->get('callback') ? "jsonp" : "json";
  324. return $callback($result);
  325. }
  326. /**
  327. * 获取插件相关表
  328. */
  329. public function get_table_list()
  330. {
  331. $name = $this->request->post("name");
  332. if (!preg_match("/^[a-zA-Z0-9]+$/", $name)) {
  333. $this->error(__('Addon name incorrect'));
  334. }
  335. $tables = get_addon_tables($name);
  336. $prefix = Config::get('database.prefix');
  337. foreach ($tables as $index => $table) {
  338. //忽略非插件标识的表名
  339. if (!preg_match("/^{$prefix}{$name}/", $table)) {
  340. unset($tables[$index]);
  341. }
  342. }
  343. $tables = array_values($tables);
  344. $this->success('', null, ['tables' => $tables]);
  345. }
  346. public function guessLogistics(){
  347. $no=input('no');
  348. if(!$no){
  349. $this->success('','',['id'=>null]);
  350. }
  351. $res=TransferCheck::instance()->setNo($no)->getCompany();
  352. $this->success('','',['id'=>$res]);
  353. }
  354. }