|
@@ -1,20 +1,18 @@
|
|
|
package org.jeecg.modules.okki.site.service.impl;
|
|
|
|
|
|
-import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.lark.oapi.Client;
|
|
|
-import com.lark.oapi.core.utils.Jsons;
|
|
|
import com.lark.oapi.service.bitable.v1.model.*;
|
|
|
-import com.lark.oapi.service.im.v1.model.*;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.checkerframework.checker.units.qual.A;
|
|
|
import org.jeecg.common.util.FastJsonUtil;
|
|
|
import org.jeecg.modules.okki.account.entity.OkkiAccount;
|
|
|
import org.jeecg.modules.okki.account.service.IOkkiAccountService;
|
|
|
import org.jeecg.modules.okki.site.dto.FeiShuRecordSheetDto;
|
|
|
+import org.jeecg.modules.okki.site.entity.FeiShuConfigEnum;
|
|
|
import org.jeecg.modules.okki.site.entity.OkkiSite;
|
|
|
import org.jeecg.modules.okki.site.service.IFeiShuCommonService;
|
|
|
+import org.jeecg.modules.okki.site.service.IFeiShuGroupService;
|
|
|
import org.jeecg.modules.okki.site.service.IFeiShuMsgService;
|
|
|
import org.jeecg.modules.okki.site.service.IFeiShuSheetService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -41,21 +39,8 @@ public class FeiShuSheetServiceImpl implements IFeiShuSheetService {
|
|
|
@Autowired
|
|
|
private IOkkiAccountService okkiAccountService;
|
|
|
|
|
|
- public static String APP_ID = "cli_a61c977059f01013";
|
|
|
-
|
|
|
- public static String APP_SECRET = "saNlFj2YdMXZ0uEAucyRodfSEp5ZHikR";
|
|
|
-
|
|
|
- public static String APP_TOKEN = "X16RbjCVCasCmds7fn0c0k21nju";
|
|
|
-
|
|
|
- /*
|
|
|
- prod:客服团队表格ID
|
|
|
- */
|
|
|
- public static String KF_TABLE_ID = "tblSkc8HfEYDL99U";
|
|
|
-
|
|
|
- /*
|
|
|
- * dev:客服团队表格ID
|
|
|
- */
|
|
|
-// public static String KF_TABLE_ID = "tblqGDRNN9cDgCJm";
|
|
|
+ @Autowired
|
|
|
+ private IFeiShuGroupService feiShuGroupService;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -63,14 +48,15 @@ public class FeiShuSheetServiceImpl implements IFeiShuSheetService {
|
|
|
*/
|
|
|
@Override
|
|
|
public void syncWebsiteToFeiShuSheet(OkkiSite okkiSite) {
|
|
|
- Client client = Client.newBuilder(APP_ID, APP_SECRET).build();
|
|
|
+ FeiShuConfigEnum configEnum = FeiShuConfigEnum.valueOf("DEV");
|
|
|
+ Client client = Client.newBuilder(configEnum.getAppId(), configEnum.getAppSecret()).build();
|
|
|
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
map.put("公司名称", okkiSite.getCompanyName());
|
|
|
map.put("网站ID", Integer.valueOf(okkiSite.getSiteId()));
|
|
|
map.put("服务套餐", okkiSite.getTcName());
|
|
|
map.put("状态", "正常");
|
|
|
- CreateAppTableRecordReq req = CreateAppTableRecordReq.newBuilder().appToken(APP_TOKEN).tableId(KF_TABLE_ID)
|
|
|
+ CreateAppTableRecordReq req = CreateAppTableRecordReq.newBuilder().appToken(configEnum.getAppToken()).tableId(configEnum.getKfTableId())
|
|
|
.appTableRecord(AppTableRecord.newBuilder()
|
|
|
.fields(map)
|
|
|
.build())
|
|
@@ -101,7 +87,14 @@ public class FeiShuSheetServiceImpl implements IFeiShuSheetService {
|
|
|
*/
|
|
|
@Override
|
|
|
public boolean updateFeiShuTableSheetField(FeiShuRecordSheetDto recordSheetDto) {
|
|
|
- Map<String, List<JSONObject>> teamSheetMap = feiShuCommonService.getFeiShuTeamSheet(recordSheetDto.getGroupName());
|
|
|
+ List<String> targetGroups = new ArrayList<>();
|
|
|
+ targetGroups.add(recordSheetDto.getGroupName());
|
|
|
+ targetGroups.add("UI设计");
|
|
|
+ targetGroups.add("质检组");
|
|
|
+ // todo 临时增加
|
|
|
+ targetGroups.add("技术支持");
|
|
|
+// targetGroups.add("项目管理");
|
|
|
+ Map<String, List<JSONObject>> teamSheetMap = feiShuCommonService.getFeiShuTeamSheet(targetGroups);
|
|
|
log.info("teamSheetMap:{}", FastJsonUtil.toJSONString(teamSheetMap));
|
|
|
|
|
|
List<JSONObject> jzGroups = teamSheetMap.get(recordSheetDto.getGroupName());
|
|
@@ -139,12 +132,9 @@ public class FeiShuSheetServiceImpl implements IFeiShuSheetService {
|
|
|
if (result) {
|
|
|
List<String> omsAccountIds = new ArrayList<>();
|
|
|
for (Map.Entry<String, List<JSONObject>> entry : teamSheetMap.entrySet()) {
|
|
|
- String groupName = entry.getKey();
|
|
|
List<JSONObject> groupList = entry.getValue();
|
|
|
- System.out.println("组名: " + groupName);
|
|
|
for (JSONObject group : groupList) {
|
|
|
String omsId = group.getString("OMS系统ID");
|
|
|
- System.out.println("OMS系统ID: " + omsId);
|
|
|
omsAccountIds.add(omsId);
|
|
|
}
|
|
|
}
|
|
@@ -163,10 +153,13 @@ public class FeiShuSheetServiceImpl implements IFeiShuSheetService {
|
|
|
sb.append(",").append(recordSheetDto.getSiteId());
|
|
|
account.setSiteIds(sb.toString());
|
|
|
|
|
|
- okkiAccountService.bindSites(account);
|
|
|
+// okkiAccountService.bindSites(account);
|
|
|
log.info("结束:第{}个 omsId:{} 的用户,绑定新站点", i + 1, omsId);
|
|
|
log.info("```````````````````");
|
|
|
}
|
|
|
+
|
|
|
+ // 创建飞书群
|
|
|
+ feiShuGroupService.createFeiShuGroup(recordSheetDto.getCustomerName(), recordSheetDto.getSiteId(), recordSheetDto.getPlanName(), recordSheetDto.getGroupName());
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
@@ -178,11 +171,12 @@ public class FeiShuSheetServiceImpl implements IFeiShuSheetService {
|
|
|
* @return
|
|
|
*/
|
|
|
public boolean sendUpdateRequestFeiShuSheet(Map<String, Object> updateMap, FeiShuRecordSheetDto recordSheetDto) {
|
|
|
- Client client = Client.newBuilder(APP_ID, APP_SECRET).build();
|
|
|
+ FeiShuConfigEnum configEnum = FeiShuConfigEnum.valueOf("DEV");
|
|
|
+ Client client = Client.newBuilder(configEnum.getAppId(), configEnum.getAppSecret()).build();
|
|
|
|
|
|
UpdateAppTableRecordReq updateReq = UpdateAppTableRecordReq.newBuilder()
|
|
|
.appTableRecord(AppTableRecord.newBuilder()
|
|
|
- .fields(updateMap).build()).appToken(APP_TOKEN).tableId(KF_TABLE_ID).recordId(recordSheetDto.getRecordId())
|
|
|
+ .fields(updateMap).build()).appToken(configEnum.getAppToken()).tableId(configEnum.getKfTableId()).recordId(recordSheetDto.getRecordId())
|
|
|
.build();
|
|
|
|
|
|
// 发起请求
|
|
@@ -203,67 +197,4 @@ public class FeiShuSheetServiceImpl implements IFeiShuSheetService {
|
|
|
feiShuMsgService.sendUpdateFeiShuSheetMsg(recordSheetDto.getCustomerName(), recordSheetDto.getSiteId(), recordSheetDto.getGroupName(), status);
|
|
|
return updateResp.success();
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 发送创建飞书群
|
|
|
- *
|
|
|
- * @return
|
|
|
- */
|
|
|
- public void sendCreateFeiShuGroupRequest() {
|
|
|
- // 构建client
|
|
|
- Client client = Client.newBuilder("YOUR_APP_ID", "YOUR_APP_SECRET").build();
|
|
|
-
|
|
|
- // 创建请求对象
|
|
|
- CreateChatReq req = CreateChatReq.newBuilder()
|
|
|
- .createChatReqBody(CreateChatReqBody.newBuilder()
|
|
|
- .avatar("default-avatar_44ae0ca3-e140-494b-956f-78091e348435")
|
|
|
- .name("测试群名称")
|
|
|
- .description("测试群描述")
|
|
|
- .i18nNames(I18nNames.newBuilder()
|
|
|
- .zhCn("群聊")
|
|
|
- .enUs("group chat")
|
|
|
- .build())
|
|
|
- .ownerId("ou_7d8a6e6df7621556ce0d21922b676706ccs")
|
|
|
- .userIdList(new String[]{
|
|
|
- "ou_7d8a6e6df7621556ce0d21922b676706ccs"
|
|
|
- })
|
|
|
- .botIdList(new String[]{
|
|
|
- "cli_a10fbf7e94b8d01d"
|
|
|
- })
|
|
|
- .groupMessageType("chat")
|
|
|
- .chatMode("group")
|
|
|
- .chatType("private")
|
|
|
- .joinMessageVisibility("all_members")
|
|
|
- .leaveMessageVisibility("all_members")
|
|
|
- .membershipApproval("no_approval_required")
|
|
|
- .restrictedModeSetting(RestrictedModeSetting.newBuilder()
|
|
|
- .status(false)
|
|
|
- .screenshotHasPermissionSetting("all_members")
|
|
|
- .downloadHasPermissionSetting("all_members")
|
|
|
- .messageHasPermissionSetting("all_members")
|
|
|
- .build())
|
|
|
- .urgentSetting("all_members")
|
|
|
- .videoConferenceSetting("all_members")
|
|
|
- .editPermission("all_members")
|
|
|
- .hideMemberCountSetting("all_members")
|
|
|
- .build())
|
|
|
- .build();
|
|
|
-
|
|
|
- // 发起请求
|
|
|
- CreateChatResp resp = null;
|
|
|
- try {
|
|
|
- resp = client.im().chat().create(req);
|
|
|
- } catch (Exception e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
- }
|
|
|
-
|
|
|
- // 处理服务端错误
|
|
|
- if (!resp.success()) {
|
|
|
- System.out.println(String.format("code:%s,msg:%s,reqId:%s", resp.getCode(), resp.getMsg(), resp.getRequestId()));
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 业务数据处理
|
|
|
- System.out.println(Jsons.DEFAULT.toJson(resp.getData()));
|
|
|
- }
|
|
|
}
|