Addon.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <?php
  2. namespace app\admin\command;
  3. use think\addons\AddonException;
  4. use think\addons\Service;
  5. use think\Config;
  6. use think\console\Command;
  7. use think\console\Input;
  8. use think\console\input\Option;
  9. use think\console\Output;
  10. use think\Db;
  11. use think\Exception;
  12. use think\exception\PDOException;
  13. class Addon extends Command
  14. {
  15. protected function configure()
  16. {
  17. $this
  18. ->setName('addon')
  19. ->addOption('name', 'a', Option::VALUE_REQUIRED, 'addon name', null)
  20. ->addOption('action', 'c', Option::VALUE_REQUIRED, 'action(create/enable/disable/install/uninstall/refresh/upgrade/package)', 'create')
  21. ->addOption('force', 'f', Option::VALUE_OPTIONAL, 'force override', null)
  22. ->addOption('release', 'r', Option::VALUE_OPTIONAL, 'addon release version', null)
  23. ->addOption('uid', 'u', Option::VALUE_OPTIONAL, 'fastadmin uid', null)
  24. ->addOption('token', 't', Option::VALUE_OPTIONAL, 'fastadmin token', null)
  25. ->setDescription('Addon manager');
  26. }
  27. protected function execute(Input $input, Output $output)
  28. {
  29. $name = $input->getOption('name') ?: '';
  30. $action = $input->getOption('action') ?: '';
  31. if (stripos($name, 'addons/') !== false) {
  32. $name = explode('/', $name)[1];
  33. }
  34. //强制覆盖
  35. $force = $input->getOption('force');
  36. //版本
  37. $release = $input->getOption('release') ?: '';
  38. //uid
  39. $uid = $input->getOption('uid') ?: '';
  40. //token
  41. $token = $input->getOption('token') ?: '';
  42. include dirname(__DIR__) . DS . 'common.php';
  43. if (!$name) {
  44. throw new Exception('Addon name could not be empty');
  45. }
  46. if (!$action || !in_array($action, ['create', 'disable', 'enable', 'install', 'uninstall', 'refresh', 'upgrade', 'package'])) {
  47. throw new Exception('Please input correct action name');
  48. }
  49. // 查询一次SQL,判断连接是否正常
  50. Db::execute("SELECT 1");
  51. $addonDir = ADDON_PATH . $name . DS;
  52. switch ($action) {
  53. case 'create':
  54. //非覆盖模式时如果存在则报错
  55. if (is_dir($addonDir) && !$force) {
  56. throw new Exception("addon already exists!\nIf you need to create again, use the parameter --force=true ");
  57. }
  58. //如果存在先移除
  59. if (is_dir($addonDir)) {
  60. rmdirs($addonDir);
  61. }
  62. mkdir($addonDir, 0755, true);
  63. mkdir($addonDir . DS . 'controller', 0755, true);
  64. $menuList = \app\common\library\Menu::export($name);
  65. $createMenu = $this->getCreateMenu($menuList);
  66. $prefix = Config::get('database.prefix');
  67. $createTableSql = '';
  68. try {
  69. $result = Db::query("SHOW CREATE TABLE `" . $prefix . $name . "`;");
  70. if (isset($result[0]) && isset($result[0]['Create Table'])) {
  71. $createTableSql = $result[0]['Create Table'];
  72. }
  73. } catch (PDOException $e) {
  74. }
  75. $data = [
  76. 'name' => $name,
  77. 'addon' => $name,
  78. 'addonClassName' => ucfirst($name),
  79. 'addonInstallMenu' => $createMenu ? "\$menu = " . var_export_short($createMenu, "\t") . ";\n\tMenu::create(\$menu);" : '',
  80. 'addonUninstallMenu' => $menuList ? 'Menu::delete("' . $name . '");' : '',
  81. 'addonEnableMenu' => $menuList ? 'Menu::enable("' . $name . '");' : '',
  82. 'addonDisableMenu' => $menuList ? 'Menu::disable("' . $name . '");' : '',
  83. ];
  84. $this->writeToFile("addon", $data, $addonDir . ucfirst($name) . '.php');
  85. $this->writeToFile("config", $data, $addonDir . 'config.php');
  86. $this->writeToFile("info", $data, $addonDir . 'info.ini');
  87. $this->writeToFile("controller", $data, $addonDir . 'controller' . DS . 'Index.php');
  88. if ($createTableSql) {
  89. $createTableSql = str_replace("`" . $prefix, '`__PREFIX__', $createTableSql);
  90. file_put_contents($addonDir . 'install.sql', $createTableSql);
  91. }
  92. $output->info("Create Successed!");
  93. break;
  94. case 'disable':
  95. case 'enable':
  96. try {
  97. //调用启用、禁用的方法
  98. Service::$action($name, 0);
  99. } catch (AddonException $e) {
  100. if ($e->getCode() != -3) {
  101. throw new Exception($e->getMessage());
  102. }
  103. if (!$force) {
  104. //如果有冲突文件则提醒
  105. $data = $e->getData();
  106. foreach ($data['conflictlist'] as $k => $v) {
  107. $output->warning($v);
  108. }
  109. $output->info("Are you sure you want to " . ($action == 'enable' ? 'override' : 'delete') . " all those files? Type 'yes' to continue: ");
  110. $line = fgets(STDIN);
  111. if (trim($line) != 'yes') {
  112. throw new Exception("Operation is aborted!");
  113. }
  114. }
  115. //调用启用、禁用的方法
  116. Service::$action($name, 1);
  117. } catch (Exception $e) {
  118. throw new Exception($e->getMessage());
  119. }
  120. $output->info(ucfirst($action) . " Successed!");
  121. break;
  122. case 'install':
  123. //非覆盖模式时如果存在则报错
  124. if (is_dir($addonDir) && !$force) {
  125. throw new Exception("addon already exists!\nIf you need to install again, use the parameter --force=true ");
  126. }
  127. //如果存在先移除
  128. if (is_dir($addonDir)) {
  129. rmdirs($addonDir);
  130. }
  131. try {
  132. Service::install($name, 0, ['version' => $release]);
  133. } catch (AddonException $e) {
  134. if ($e->getCode() != -3) {
  135. throw new Exception($e->getMessage());
  136. }
  137. if (!$force) {
  138. //如果有冲突文件则提醒
  139. $data = $e->getData();
  140. foreach ($data['conflictlist'] as $k => $v) {
  141. $output->warning($v);
  142. }
  143. $output->info("Are you sure you want to override all those files? Type 'yes' to continue: ");
  144. $line = fgets(STDIN);
  145. if (trim($line) != 'yes') {
  146. throw new Exception("Operation is aborted!");
  147. }
  148. }
  149. Service::install($name, 1, ['version' => $release, 'uid' => $uid, 'token' => $token]);
  150. } catch (Exception $e) {
  151. throw new Exception($e->getMessage());
  152. }
  153. $output->info("Install Successed!");
  154. break;
  155. case 'uninstall':
  156. //非覆盖模式时如果存在则报错
  157. if (!$force) {
  158. throw new Exception("If you need to uninstall addon, use the parameter --force=true ");
  159. }
  160. try {
  161. Service::uninstall($name, 0);
  162. } catch (AddonException $e) {
  163. if ($e->getCode() != -3) {
  164. throw new Exception($e->getMessage());
  165. }
  166. if (!$force) {
  167. //如果有冲突文件则提醒
  168. $data = $e->getData();
  169. foreach ($data['conflictlist'] as $k => $v) {
  170. $output->warning($v);
  171. }
  172. $output->info("Are you sure you want to delete all those files? Type 'yes' to continue: ");
  173. $line = fgets(STDIN);
  174. if (trim($line) != 'yes') {
  175. throw new Exception("Operation is aborted!");
  176. }
  177. }
  178. Service::uninstall($name, 1);
  179. } catch (Exception $e) {
  180. throw new Exception($e->getMessage());
  181. }
  182. $output->info("Uninstall Successed!");
  183. break;
  184. case 'refresh':
  185. Service::refresh();
  186. $output->info("Refresh Successed!");
  187. break;
  188. case 'upgrade':
  189. Service::upgrade($name, ['version' => $release, 'uid' => $uid, 'token' => $token]);
  190. $output->info("Upgrade Successed!");
  191. break;
  192. case 'package':
  193. $infoFile = $addonDir . 'info.ini';
  194. if (!is_file($infoFile)) {
  195. throw new Exception(__('Addon info file was not found'));
  196. }
  197. $info = get_addon_info($name);
  198. if (!$info) {
  199. throw new Exception(__('Addon info file data incorrect'));
  200. }
  201. $infoname = isset($info['name']) ? $info['name'] : '';
  202. if (!$infoname || !preg_match("/^[a-z]+$/i", $infoname) || $infoname != $name) {
  203. throw new Exception(__('Addon info name incorrect'));
  204. }
  205. $infoversion = isset($info['version']) ? $info['version'] : '';
  206. if (!$infoversion || !preg_match("/^\d+\.\d+\.\d+$/i", $infoversion)) {
  207. throw new Exception(__('Addon info version incorrect'));
  208. }
  209. $addonTmpDir = RUNTIME_PATH . 'addons' . DS;
  210. if (!is_dir($addonTmpDir)) {
  211. @mkdir($addonTmpDir, 0755, true);
  212. }
  213. $addonFile = $addonTmpDir . $infoname . '-' . $infoversion . '.zip';
  214. if (!class_exists('ZipArchive')) {
  215. throw new Exception(__('ZinArchive not install'));
  216. }
  217. $zip = new \ZipArchive;
  218. $zip->open($addonFile, \ZipArchive::CREATE | \ZipArchive::OVERWRITE);
  219. $files = new \RecursiveIteratorIterator(
  220. new \RecursiveDirectoryIterator($addonDir), \RecursiveIteratorIterator::LEAVES_ONLY
  221. );
  222. foreach ($files as $name => $file) {
  223. if (!$file->isDir()) {
  224. $filePath = $file->getRealPath();
  225. $relativePath = str_replace(DS, '/', substr($filePath, strlen($addonDir)));
  226. if (!in_array($file->getFilename(), ['.git', '.DS_Store', 'Thumbs.db'])) {
  227. $zip->addFile($filePath, $relativePath);
  228. }
  229. }
  230. }
  231. $zip->close();
  232. $output->info("Package Successed!");
  233. break;
  234. default :
  235. break;
  236. }
  237. }
  238. /**
  239. * 获取创建菜单的数组
  240. * @param array $menu
  241. * @return array
  242. */
  243. protected function getCreateMenu($menu)
  244. {
  245. $result = [];
  246. foreach ($menu as $k => & $v) {
  247. $arr = [
  248. 'name' => $v['name'],
  249. 'title' => $v['title'],
  250. ];
  251. if ($v['icon'] != 'fa fa-circle-o') {
  252. $arr['icon'] = $v['icon'];
  253. }
  254. if ($v['ismenu']) {
  255. $arr['ismenu'] = $v['ismenu'];
  256. }
  257. if (isset($v['childlist']) && $v['childlist']) {
  258. $arr['sublist'] = $this->getCreateMenu($v['childlist']);
  259. }
  260. $result[] = $arr;
  261. }
  262. return $result;
  263. }
  264. /**
  265. * 写入到文件
  266. * @param string $name
  267. * @param array $data
  268. * @param string $pathname
  269. * @return mixed
  270. */
  271. protected function writeToFile($name, $data, $pathname)
  272. {
  273. $search = $replace = [];
  274. foreach ($data as $k => $v) {
  275. $search[] = "{%{$k}%}";
  276. $replace[] = $v;
  277. }
  278. $stub = file_get_contents($this->getStub($name));
  279. $content = str_replace($search, $replace, $stub);
  280. if (!is_dir(dirname($pathname))) {
  281. mkdir(strtolower(dirname($pathname)), 0755, true);
  282. }
  283. return file_put_contents($pathname, $content);
  284. }
  285. /**
  286. * 获取基础模板
  287. * @param string $name
  288. * @return string
  289. */
  290. protected function getStub($name)
  291. {
  292. return __DIR__ . '/Addon/stubs/' . $name . '.stub';
  293. }
  294. }