| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?php
- namespace crmeb\command;
- use app\services\system\log\SystemFileInfoServices;
- use app\services\system\SystemRouteServices;
- use crmeb\exceptions\AdminException;
- use think\console\Command;
- use think\console\Input;
- use think\console\input\Argument;
- use think\console\input\Option;
- use think\console\Output;
- use think\facade\Config;
- use think\facade\Db;
- class Util extends Command
- {
- protected function configure()
- {
- $this->setName('util')
- ->addArgument('type', Argument::REQUIRED, '类型replace/route/file/apifox')
- ->addOption('h', null, Option::VALUE_REQUIRED, '替换成当前域名')
- ->addOption('u', null, Option::VALUE_REQUIRED, '替换的域名')
- ->addOption('a', null, Option::VALUE_REQUIRED, '应用名')
- ->addOption('f', null, Option::VALUE_REQUIRED, '导入文件路径,文件只能在项目根目录下或者根目录下的其他文件夹内')
- ->setDescription('工具类');
- }
- protected function execute(Input $input, Output $output)
- {
- $type = $input->getArgument('type');
- switch ($type) {
- case 'replace':
- $host = $input->getOption('h');
- $url = $input->getOption('u');
- if (!$host) {
- return $output->error('缺少替换域名');
- }
- if (!$url) {
- return $output->error('缺少替换的域名');
- }
- $this->replaceSiteUrl($url, $host);
- break;
- case 'route':
- $appName = $input->getOption('a');
- if (!$appName) {
- return $output->error('缺少应用名称');
- }
- app()->make(SystemRouteServices::class)->syncRoute($appName);
- break;
- case 'file':
- app()->make(SystemFileInfoServices::class)->syncfile();
- break;
- case 'apifox':
- $filePath = $input->getOption('f');
- if (!$filePath) {
- return $output->error('缺少导入文件地址');
- }
- $this->import($filePath);
- break;
- }
- $output->info('执行成功');
- }
- protected function replaceSiteUrl(string $url, string $siteUrl)
- {
- $siteUrlJosn = str_replace('http://', 'http:\\\/\\\/', $siteUrl);
- $siteUrlJosn = str_replace('https://', 'https:\\\/\\\/', $siteUrlJosn);
- $valueJosn = str_replace('http://', 'http:\\\/\\\/', $url);
- $valueJosn = str_replace('https://', 'https:\\\/\\\/', $valueJosn);
- $prefix = Config::get('database.connections.' . Config::get('database.default') . '.prefix');
- $sql = [
- "UPDATE `{$prefix}article` SET `image_input` = replace(`image_input` ,'{$siteUrl}','{$url}')",
- "UPDATE `{$prefix}article_category` SET `image` = replace(`image` ,'{$siteUrl}','{$url}')",
- "UPDATE `{$prefix}article_content` SET `content` = replace(`content` ,'{$siteUrl}','{$url}')",
- "UPDATE `{$prefix}diy` SET `value` = replace(value ,'{$siteUrlJosn}','{$valueJosn}'),`default_value` = replace(default_value ,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}luck_lottery` SET `image` = replace(image ,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}luck_prize` SET `image` = replace(image ,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}store_bargain` SET `image` = replace(image ,'{$siteUrl}','{$url}'),`images` = replace(images,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}store_category` SET `pic` = replace(`pic` ,'{$siteUrl}','{$url}'),`big_pic` = replace(`big_pic` ,'{$siteUrl}','{$url}')",
- "UPDATE `{$prefix}store_combination` SET `image` = replace(image ,'{$siteUrl}','{$url}'),`images` = replace(images,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}store_integral` SET `image` = replace(image ,'{$siteUrl}','{$url}'),`images` = replace(images,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}store_product` SET `image` = replace(image ,'{$siteUrl}','{$url}'),`slider_image` = replace(slider_image ,'{$siteUrlJosn}','{$valueJosn}'),`recommend_image` = replace(recommend_image ,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}store_product_attr_result` SET `result` = replace(result ,'{$siteUrl}','{$url}')",
- "UPDATE `{$prefix}store_product_attr_value` SET `image` = replace(image ,'{$siteUrl}','{$url}')",
- "UPDATE `{$prefix}store_product_description` SET `description`= replace(description,'{$siteUrl}','{$url}')",
- "UPDATE `{$prefix}store_seckill` SET `image` = replace(image ,'{$siteUrl}','{$url}'),`images` = replace(images,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}system_attachment` SET `att_dir` = replace(att_dir ,'{$siteUrl}','{$url}'),`satt_dir` = replace(satt_dir ,'{$siteUrl}','{$url}')",
- "UPDATE `{$prefix}system_config` SET `value` = replace(value ,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}system_group_data` SET `value` = replace(value ,'{$siteUrlJosn}','{$valueJosn}')",
- "UPDATE `{$prefix}user` SET `avatar` = replace(avatar ,'{$siteUrlJosn}','{$valueJosn}')",
- ];
- return Db::transaction(function () use ($sql) {
- try {
- foreach ($sql as $item) {
- Db::execute($item);
- }
- } catch (\Throwable $e) {
- throw new AdminException(400612, ['msg' => $e->getMessage()]);
- }
- });
- }
- /**
- * 导入数据
- * @param string $filePath
- * @return mixed
- * @author 等风来
- * @email 136327134@qq.com
- * @date 2023/4/26
- */
- protected function import(string $filePath)
- {
- $preg = '/\{+[a-zA-Z0-9]+\}/';
- $res = file_get_contents(app()->getRootPath() . $filePath);
- $data = json_decode($res, true)['apiCollection'][0]['items'];
- $route = [];
- foreach ($data as $item) {
- foreach ($item['items'] as $value) {
- if (isset($value['api'])) {
- $path = str_replace('//', '/', str_replace('{}', '', $value['api']['path']));
- $paramePath = $this->getPathValue($value['api']['parameters']['path'] ?? []);
- if (strstr($path, ':') !== false) {
- $path = str_replace(':', '', $path);
- }
- if (preg_match_all($preg, $path, $matches)) {
- $paramePathMatche = [];
- if (isset($matches[0]) && $matches[0]) {
- foreach ($matches[0] as $v) {
- $paramePathMatche[] = str_replace(['{', '}'], ['<', '>'], $v);
- }
- }
- if ($paramePathMatche) {
- $paramePath = implode('/', $paramePathMatche);
- }
- }
- if ($path[0] === '/') {
- $path = substr($path, 1);
- }
- $route[] = [
- 'method' => strtoupper($value['api']['method']),
- 'path' => $path . $paramePath,
- 'request_type' => $value['api']['requestBody']['type'],
- 'request' => $this->getRequest($value['api']['requestBody']['parameters'] ?? []),
- 'response' => $this->getResponse($value['api']['responses'][0]['jsonSchema']['properties'] ?? []),
- ];
- }
- }
- }
- return app()->make(SystemRouteServices::class)->importData($route);
- }
- /**
- * 获取请求返回数据
- * @param array $options
- * @param string $parentId
- * @return array
- * @author 等风来
- * @email 136327134@qq.com
- * @date 2023/4/26
- */
- protected function getResponse(array $options, $parentId = '')
- {
- $response = [];
- foreach ($options as $key => $option) {
- $id = uniqid();
- $response[] = [
- 'attribute' => $key,
- 'type' => $option['type'],
- 'trip' => '',
- 'id' => $id,
- 'parentId' => $parentId,
- ];
- if (isset($option['properties'])) {
- $response = array_merge($response, $this->getResponse($option['properties'], $id));
- }
- }
- return $response;
- }
- /**
- * 获取请求数据
- * @param array $options
- * @return array
- * @author 等风来
- * @email 136327134@qq.com
- * @date 2023/4/26
- */
- protected function getRequest(array $options)
- {
- $request = [];
- foreach ($options as $option) {
- $request[] = [
- 'attribute' => $option['name'],
- 'type' => $option['type'] === 'text' ? 'string' : $option['type'],
- 'must' => 0,
- 'trip' => $option['description'],
- 'id' => $option['id'],
- ];
- }
- return $request;
- }
- /**
- * 处理path路径
- * @param array $options
- * @return string
- * @author 等风来
- * @email 136327134@qq.com
- * @date 2023/4/26
- */
- protected function getPathValue(array $options)
- {
- $path = [];
- foreach ($options as $option) {
- if (strstr($option['name'], '?') !== false) {
- $option['name'] = str_replace('?', '', $option['name']) . '?';
- }
- $path[] = '<' . $option['name'] . '>';
- }
- return implode('/', $path);
- }
- }
|