Browse Source

自动创建临时站点

chenlei1231 4 months ago
parent
commit
effb0a33ee

+ 27 - 23
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/service/impl/AdwebEnquiryServiceImpl.java

@@ -9,14 +9,14 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.fasterxml.jackson.core.JsonProcessingException;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import com.xkcoding.http.util.StringUtil;
-
 import jakarta.annotation.Resource;
-
 import lombok.extern.slf4j.Slf4j;
-
 import org.apache.commons.collections4.CollectionUtils;
 import org.apache.commons.lang.StringUtils;
+import org.jeecg.common.api.dto.message.MessageDTO;
 import org.jeecg.common.constant.CacheConstant;
+import org.jeecg.common.constant.CommonConstant;
+import org.jeecg.common.constant.enums.SysAnnmentTypeEnum;
 import org.jeecg.common.system.vo.DictModel;
 import org.jeecg.common.system.vo.DictPropertyModel;
 import org.jeecg.common.util.FastJsonUtil;
@@ -38,12 +38,11 @@ import org.jeecg.modules.adweb.system.entity.SysException;
 import org.jeecg.modules.adweb.system.service.IMasterSubAccountRelationService;
 import org.jeecg.modules.adweb.system.service.ISysExceptionService;
 import org.jeecg.modules.adweb.system.service.impl.SysAdwebApiImpl;
-import org.jeecg.modules.message.websocket.WebSocket;
+import org.jeecg.modules.message.handle.impl.SystemSendMsgHandle;
 import org.jeecg.modules.system.entity.SysDictItem;
 import org.jeecg.modules.system.entity.SysUser;
 import org.jeecg.modules.system.service.ISysDictService;
 import org.jeecg.modules.system.service.ISysUserService;
-import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.context.annotation.Lazy;
 import org.springframework.http.HttpEntity;
@@ -132,7 +131,7 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
     private SysAdwebApiImpl sysAdwebApiImpl;
 
     @Resource
-    private WebSocket webSocket;
+    private SystemSendMsgHandle systemSendMsgHandle;
 
     private static final byte[] redisKey = EnquiryConstants.ENQUIRY_EMAIL.getBytes();
 
@@ -264,13 +263,18 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
                 this.save(target);
                 adwebEnquiryFormService.save(form);
 
-                //创建业务消息信息
-                JSONObject obj = new JSONObject();
-                obj.put("cmd", "user");//业务类型
-                obj.put("msgId", target.getId());//消息id
-                obj.put("msgTxt",  target.getEmail());//消息内容
-                //单个用户发送 (userId为用户id)
-                webSocket.sendMessage("e9ca23d68d884d4ebb19d07889727dae", obj.toJSONString());
+                MessageDTO messageDTO = new MessageDTO();
+                String title = "您已经收到询盘 ";
+                messageDTO.setTitle(title);
+                Map<String, Object> data = new HashMap<>();
+                //update-begin---author:wangshuai---date:2024-03-11---for:【QQYUN-8425】用户导入成功后 消息提醒 跳转至同意页面---
+                data.put(CommonConstant.NOTICE_MSG_BUS_TYPE, SysAnnmentTypeEnum.BPM.getType());
+                //update-end---author:wangshuai---date:2024-03-11---for:【QQYUN-8425】用户导入成功后 消息提醒 跳转至同意页面---
+                messageDTO.setData(data);
+                messageDTO.setContent("您已经收到询盘 您已经收到询盘 您已经收到询盘 您已经收到询盘 ");
+                messageDTO.setToUser("admin");
+                messageDTO.setFromUser("system");
+                systemSendMsgHandle.sendMessage(messageDTO);
             } catch (Exception e) {
                 log.error("站点为:{},  recordId为:{} 保存询盘到数据库失败,原因是:{}", adwebSite.getName(), enquiryDto.getRecordId(), e.getMessage());
             }
@@ -661,7 +665,7 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
         // 外部编号暂无作用,且多查询一次数据库,暂时注释
 //        adwebEnquiry.setNoOut(DateUtil.dateToString(new Date(), DateUtil.DATE_FORMAT_THREE) + adwebOpenApiService.loadOutNoByUser(adwebSite.getUid()));
         adwebEnquiry.setWasteEnquiry(0);
-        adwebEnquiry.setRequestTime( new Date());
+        adwebEnquiry.setRequestTime(new Date());
         adwebEnquiry.setAcquireMessageTime(adwebSite.getEnquiryMessageTime());
         adwebEnquiry.setIsEnquirySync("enquirySync");
 
@@ -1752,16 +1756,16 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
     }
 
     @Override
-    public void returnSalesperson(String siteCode,String inquiryId,String sales) {
+    public void returnSalesperson(String siteCode, String inquiryId, String sales) {
         log.info("返回跟进人名称开始");
         //获取站点
         QueryWrapper<AdwebSite> queryWrapper = new QueryWrapper<>();
-        queryWrapper.eq("code",siteCode);
+        queryWrapper.eq("code", siteCode);
         AdwebSite adwebSite = adwebSiteService.getOne(queryWrapper);
 
         RestTemplate restTemplate = new RestTemplate();
         String url = adwebSite.getDomain() + "/wp-json/inquiry/v1/add-sales";
-        log.info("请求地址{}",url);
+        log.info("请求地址{}", url);
         // 如果需要传递参数
         HttpHeaders headers = new HttpHeaders();
         headers.set("Content-Type", "application/json");
@@ -1814,19 +1818,19 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
             updateWrapper.set("waste_enquiry_type", wasteEnquiryType);
 
             //特殊处理垃圾询盘是邮箱或者ip
-            if(wasteEnquiryType.equals("ip")){
+            if (wasteEnquiryType.equals("ip")) {
                 updateWrapper.set("effective_reason", "人工操作-ip-" + wasteEnquirySeason);
                 adwebSiteBlackIpService.addBlackIpByContent(effectiveEnquiryParamDto);
             }
-            if(wasteEnquiryType.equals("email")){
+            if (wasteEnquiryType.equals("email")) {
                 updateWrapper.set("effective_reason", "人工操作-邮箱-" + wasteEnquirySeason);
                 enquirySiteBlackEmailService.addBlackEmailByContent(effectiveEnquiryParamDto);
             }
-            if(wasteEnquiryType.equals("keyword")){
+            if (wasteEnquiryType.equals("keyword")) {
                 updateWrapper.set("effective_reason", "人工操作-关键词-" + wasteEnquirySeason);
                 adwebSiteEnquiryRuleService.addBlackKeywordByContent(effectiveEnquiryParamDto);
             }
-            if(wasteEnquiryType.equals("other")){
+            if (wasteEnquiryType.equals("other")) {
                 updateWrapper.set("effective_reason", "人工操作-其他-" + wasteEnquirySeason);
             }
         } else {  // 有效询盘
@@ -1851,7 +1855,7 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
 
                     //判断是否为产品询盘
                     for (AdwebEnquiry adwebEnquiry : enquiryList) {
-                        if(StringUtils.isNotBlank(adwebEnquiry.getCartItems())){
+                        if (StringUtils.isNotBlank(adwebEnquiry.getCartItems())) {
                             adwebEnquiry.setExistProductEnquiry(1);  // 产品询盘
                         }
                     }
@@ -1872,7 +1876,7 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
                     log.info("获取的子账户id:{}", FastJsonUtil.toJSONString(subAccountIdList));
                     if (CollectionUtils.isNotEmpty(subAccountIdList)) {
                         subAccountIdList.add(String.valueOf(adwebSite.getUid()));
-                        List<SysUser> principalEmailList = sysUserService.list(new QueryWrapper<SysUser>().in("id", subAccountIdList).eq("del_flag", 0).isNotNull("email").ne("email","").select("id", "email"));
+                        List<SysUser> principalEmailList = sysUserService.list(new QueryWrapper<SysUser>().in("id", subAccountIdList).eq("del_flag", 0).isNotNull("email").ne("email", "").select("id", "email"));
                         if (CollectionUtils.isNotEmpty(principalEmailList)) {
                             principalEmailMap = principalEmailList.stream().collect(Collectors.toMap(SysUser::getId, SysUser::getEmail));
 

+ 22 - 11
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/controller/wpSiteController.java

@@ -1,6 +1,7 @@
 package org.jeecg.modules.adweb.site.controller;
 
 
+import com.alibaba.fastjson.JSONObject;
 import jakarta.annotation.Resource;
 import jakarta.servlet.http.HttpServletRequest;
 import lombok.extern.slf4j.Slf4j;
@@ -13,6 +14,7 @@ import org.jeecg.modules.adweb.site.entity.AdwebSite;
 import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
 import org.jeecg.modules.adweb.site.service.SelfWebSiteService;
 import org.jeecg.modules.adweb.site.service.SelfWebSiteServiceCommon;
+import org.jeecg.modules.message.websocket.WebSocket;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
@@ -50,24 +52,26 @@ public class wpSiteController {
     @Resource
     private AdwebRedisUtil adwebRedisUtil;
 
+    @Resource
+    private WebSocket webSocket;
 
     /**
      * 创建站点
      *
-     * @param tempId  模板id
-     * @param planId  域名
-     * @param name    站点名称
-     * @param uid     站点所属用户名称
-     * @param request 请求信息
+     * @param templateId 模板id
+     * @param planId     域名
+     * @param name       站点名称
+     * @param uid        站点所属用户名称
+     * @param request    请求信息
      * @return 创建的站点信息
      */
     @RequestMapping("addWebsite")
-    public Result<?> createWebSiteByTempId(HttpServletRequest request, Long tempId, String planId, String name, String uid, Integer giveDay, Integer compensateDay) {
-        log.info("新建站点模板:" + tempId + "; 站点名称:" + name + "; 套餐id:" + planId);
+    public Result<?> createWebSiteByTempId(HttpServletRequest request, Long templateId, String planId, String name, String uid, Integer giveDay, Integer compensateDay) {
+        log.info("新建站点模板:" + templateId + "; 站点名称:" + name + "; 套餐id:" + planId);
         LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
         // 如果2分钟内有创建过站点,则不允许再次创建站点
-        String flag = adwebRedisUtil.getString(tempId + "_" + uid);
-        if (StringUtils.isBlank(flag)) {
+        String flag = adwebRedisUtil.getString(templateId + "_" + uid);
+        if (StringUtils.isNotBlank(flag)) {
             log.info("2分钟内重复拉站点");
             try {
                 Thread.sleep(5 * 60 * 1000);
@@ -76,14 +80,21 @@ public class wpSiteController {
             }
             return Result.OK("ignore");
         }
-        adwebRedisUtil.set(tempId + "_" + uid, "flag", 2 * 60);
+        adwebRedisUtil.set(templateId + "_" + uid, "flag", 2 * 60);
 
         AdwebSite adwebSite = null;
         try {
             // 建站服务
-            adwebSite = selfWebSiteService.createSite(request, tempId, uid, name, planId, sysUser, giveDay, compensateDay);
+            adwebSite = selfWebSiteService.createSite(request, templateId, uid, name, planId, sysUser, giveDay, compensateDay);
             if (null != adwebSite) {
                 log.info("创建站点成功");
+                //创建业务消息信息
+                JSONObject obj = new JSONObject();
+                obj.put("cmd", "user");//业务类型
+                obj.put("msgId", "test");//消息id
+                obj.put("msgTxt", "站点创建成功");//消息内容
+                //单个用户发送 (userId为用户id)
+                webSocket.sendMessage("e9ca23d68d884d4ebb19d07889727dae", obj.toJSONString());
                 return Result.OK(adwebSite.getDomainDev());
             }
         } catch (Exception e) {

+ 8 - 6
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/service/SelfWebSiteService.java

@@ -90,6 +90,8 @@ public class SelfWebSiteService {
      * @return
      */
     public AdwebSite createSite(HttpServletRequest request, Long tempId, String uid, String name, String planId, LoginUser sysUser, Integer giveDay, Integer compensateDay) {
+        // 创建站点信息,生成code,拼接域名等,并将站点信息写入数据库
+
         AdwebSite adwebSite = null;
         try {
             adwebSite = selfWebSiteServiceCommon.saveNewSiteInfo(tempId, uid, name, planId, sysUser, giveDay, compensateDay);
@@ -106,25 +108,25 @@ public class SelfWebSiteService {
                 HttpSession session = request.getSession();
                 session.setAttribute("shellLineModular", "");
             }
-            String cmd = "/home/ci-user/shell/auto-website " + adwebSite.getCode() + " " + adwebSite.getInCode() + " " + adwebSite.getDomainDev() + " " + tempDomain + " " + tempCname;
-            AdwebSite finalAdwebSite = adwebSite;
+
+            // 执行临时服务器shell脚本,生成临时站点
+            String cmd = "/opt/adweb3/shell/auto-website " + adwebSite.getCode() + " " + adwebSite.getParentCode();
+
             shellService.createShareSiteByPwd(cmd, host, port, username, password, new ShellSSH2Util.StdoutListener() {
                 @Override
                 public void stdout(String line) {
-                    log.info("标准 :" + line);
+                    log.info("标准 :{}", line);
                     if (request != null) {
                         msgSetInSession(request, line);
                     }
                     if (line.startsWith("执行命令成功")) {
                         log.info("站点创建成功!更新站点状态");
-                        //建站流程添加数据
-//                        executeNodeService.copySiteFlow(finalAdwebSite.getCode());
                     }
                 }
 
                 @Override
                 public void stderr(String line) {
-                    log.info("错误 :" + line);
+                    log.info("错误 :{}", line);
                 }
             });
         } catch (Exception e) {

+ 8 - 2
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/service/SelfWebSiteServiceCommon.java

@@ -15,6 +15,8 @@ import org.jeecg.modules.adweb.seo.service.ISeoPlanSubscriptionService;
 import org.jeecg.modules.adweb.site.entity.AdwebSite;
 import org.jeecg.modules.adweb.subscribePlan.entity.SubscribePlan;
 import org.jeecg.modules.adweb.subscribePlan.service.ISubscribePlanService;
+import org.jeecg.modules.adweb.theme.entity.AdwebTheme;
+import org.jeecg.modules.adweb.theme.service.IAdwebThemeService;
 import org.jeecg.modules.system.entity.SysUser;
 import org.jeecg.modules.system.service.ISysUserService;
 import org.springframework.beans.factory.annotation.Value;
@@ -53,6 +55,9 @@ public class SelfWebSiteServiceCommon {
     private IAdwebSiteService siteService;
 
     @Resource
+    private IAdwebThemeService adwebThemeService;
+
+    @Resource
     private ISeoPlanSubscriptionService seoPlanSubscriptionService;
 
     @Resource
@@ -61,12 +66,13 @@ public class SelfWebSiteServiceCommon {
     @Transactional
     public AdwebSite saveNewSiteInfo(Long tempId, String uid, String name, String planId, LoginUser sysUser, Integer giveDay, Integer compensateDay) {
         AdwebSite adwebTemplate = siteService.getById(tempId);
+        AdwebTheme adwebTheme = adwebThemeService.getById(tempId);
         if (adwebTemplate == null) {
             log.error("未查询到模板数据退出执行,模板ID=" + tempId);
             return null;
         }
         // 站点CODE
-        String siteCode = siteManageService.getSiteCode(null);
+        String siteCode = siteManageService.getSiteCode(null); // 自动生成临时站点code
         String domain = siteCode + "." + tempDomain;
         //站点对象
         AdwebSite adwebSite = new AdwebSite();
@@ -80,7 +86,7 @@ public class SelfWebSiteServiceCommon {
         adwebSite.setEtime(endTime);
         adwebSite.setManageUrl("https://" + domain + "/adweb-admin/");
         adwebSite.setRunStatus(1);
-        adwebSite.setParentCode(adwebTemplate.getCode());
+        adwebSite.setParentCode(adwebTheme.getCode());
         adwebSite.setCreateType("wp");
         adwebSite.setName(name);
         //域名

+ 65 - 41
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/theme/entity/AdwebTheme.java

@@ -1,90 +1,114 @@
 package org.jeecg.modules.adweb.theme.entity;
 
-import java.io.Serializable;
-import java.io.UnsupportedEncodingException;
-import java.util.Date;
-import java.math.BigDecimal;
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
-import lombok.Data;
 import com.fasterxml.jackson.annotation.JsonFormat;
-import org.springframework.format.annotation.DateTimeFormat;
-import org.jeecgframework.poi.excel.annotation.Excel;
-import org.jeecg.common.aspect.annotation.Dict;
 import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
 import lombok.EqualsAndHashCode;
 import lombok.experimental.Accessors;
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
 
 /**
  * @Description: adweb主题库
  * @Author: jeecg-boot
- * @Date:   2024-09-30
+ * @Date: 2024-09-30
  * @Version: V1.0
  */
 @Data
 @TableName("adweb_theme")
 @Accessors(chain = true)
 @EqualsAndHashCode(callSuper = false)
-@Schema(description="adweb主题库")
+@Schema(description = "adweb主题库")
 public class AdwebTheme implements Serializable {
     private static final long serialVersionUID = 1L;
 
-	/**主键*/
-	@TableId(type = IdType.ASSIGN_ID)
+    /**
+     * 主键
+     */
+    @TableId(type = IdType.ASSIGN_ID)
     @Schema(description = "主键")
     private java.lang.String id;
-	/**创建人*/
+    /**
+     * 创建人
+     */
     @Schema(description = "创建人")
     private java.lang.String createBy;
-	/**创建日期*/
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 创建日期
+     */
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "创建日期")
     private java.util.Date createTime;
-	/**更新人*/
+    /**
+     * 更新人
+     */
     @Schema(description = "更新人")
     private java.lang.String updateBy;
-	/**更新日期*/
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 更新日期
+     */
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "更新日期")
     private java.util.Date updateTime;
-	/**模板名称*/
-	@Excel(name = "模板名称", width = 15)
+    /**
+     * 模板名称
+     */
+    @Excel(name = "模板名称", width = 15)
     @Schema(description = "模板名称")
     private java.lang.String name;
-	/**上架状态:0:未上架;1:已上架;默认0*/
-	@Excel(name = "上架状态:0:未上架;1:已上架;默认0", width = 15)
+    /**
+     * 上架状态:0:未上架;1:已上架;默认0
+     */
+    @Excel(name = "上架状态:0:未上架;1:已上架;默认0", width = 15)
     @Schema(description = "上架状态:0:未上架;1:已上架;默认0")
     private java.lang.Integer putaway;
-	/**图片路径*/
-	@Excel(name = "图片路径", width = 15)
+    /**
+     * 图片路径
+     */
+    @Excel(name = "图片路径", width = 15)
     @Schema(description = "图片路径")
     private java.lang.String images;
-	/**模板价格*/
-	@Excel(name = "模板价格", width = 15)
+    /**
+     * 模板价格
+     */
+    @Excel(name = "模板价格", width = 15)
     @Schema(description = "模板价格")
     private java.math.BigDecimal templatePrice;
-	/**模板标签*/
-	@Excel(name = "模板标签", width = 15)
+    /**
+     * 模板标签
+     */
+    @Excel(name = "模板标签", width = 15)
     @Schema(description = "模板标签")
     private java.lang.String templateTags;
-	/**主题颜色ID*/
-	@Excel(name = "主题颜色ID", width = 15)
+    /**
+     * 主题颜色ID
+     */
+    @Excel(name = "主题颜色ID", width = 15)
     @Schema(description = "主题颜色ID")
     private java.lang.Integer templateColorId;
-	/**站点域名*/
-	@Excel(name = "站点域名", width = 15)
+    /**
+     * 站点域名
+     */
+    @Excel(name = "站点域名", width = 15)
     @Schema(description = "站点域名")
     private java.lang.String domain;
-	/**站点备注*/
-	@Excel(name = "站点备注", width = 15)
+    /**
+     * 站点备注
+     */
+    @Excel(name = "站点备注", width = 15)
     @Schema(description = "站点备注")
     private java.lang.String descirbe;
-	/**站点状态:0:创建失败,1:正常运行,2:运行异常 3:站点停止*/
-	@Excel(name = "站点状态:0:创建失败,1:正常运行,2:运行异常 3:站点停止", width = 15)
-    @Schema(description = "站点状态:0:创建失败,1:正常运行,2:运行异常 3:站点停止")
-    private java.lang.Integer runStatus;
+    /**
+     * 站点code,生成6位长度随机码,取值范围[a-z0-9],保证系统唯一
+     */
+    @Excel(name = "站点code,生成6位长度随机码,取值范围[a-z0-9],保证系统唯一", width = 15)
+    @Schema(description = "站点code,生成6位长度随机码,取值范围[a-z0-9],保证系统唯一")
+    private java.lang.String code;
 }

+ 4 - 4
jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml

@@ -460,11 +460,11 @@ v2:
 
 #建站链接测试环境配置
 AdwebSiteConnect:
-  host: 52.83.132.56
-  port: 9922
-  username: centos
+  host: 52.83.163.165
+  port: 22
+  username: ubuntu
   password: Admin@123.com
-  tempDomain: adwebcloud.com
+  tempDomain: adweb3.topxuetang.com
   tempCname: devci2.adwebcloud.com
 
 serverIp:

+ 59 - 1
jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml

@@ -394,4 +394,62 @@ enquiry:
 aws:
   translate:
     accessKey: AKIAS37NJDKDETZ7PPEN
-    secretKey: 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
+    secretKey: b05X9U/zQ7jJwtIP8edIw1bZGk9p/L6iz9UxcBn5
+
+
+### 自定义 start, TODO 改位置配置将要再数据库中配置
+###配置测试文件上传路径
+adcloud:
+  file:
+    rootpath: /opt/adweb3/static/
+  picture:
+    ###图片压缩程度
+    size: 0.8
+
+#物料收集打包临时存放路径
+admp:
+  #脚本
+  shell:
+    path: /opt/adweb3/shell/
+
+#跳板机配置
+jumpServer:
+  pulicIp: 52.11.145.237
+  privateIp: 10.10.54.109
+  username: ubuntu
+  pem: /home/jiangning/adweb2.1/static/jumpserver.pem
+#建站链接生产环境配置
+AdwebSiteProdConnect:
+  privateIp: 10.10.182.222
+
+#118机器信息
+usWest118Server:
+  ip: 44.227.32.118
+  username: centos
+  pem: D:/Advich/pem/197529246342-oregon.cer
+  port: 50002
+  shellpath: /usr/local/adweb-v2/shell
+
+#v2项目路径
+v2:
+  projectPath: /opt/adweb3/pem
+  seoReportPath: /seopdf/report/
+  domainUrl: https://cyan.feishu.adwebcloud.com
+  pdfExportServiceUrl: https://puppeteer.advichcloud.com:7020
+
+#建站链接测试环境配置
+AdwebSiteConnect:
+  host: 52.83.163.165
+  port: 22
+  username: ubuntu
+  password: Admin@123.com
+  tempDomain: adweb3.topxuetang.com
+  tempCname: devci2.adwebcloud.com
+
+serverIp:
+  new: 52.83.132.56
+  old: 52.83.52.93
+#pem文件上传公网地址前缀
+pemFileDownLoad:
+  prefix: https://v2.adwebcloud.com/keys/
+### 自定义 end TODO 改位置配置将要再数据库中配置