细节优化
This commit is contained in:
parent
c0a15b6580
commit
584350f843
@ -18,7 +18,6 @@ package com.zayac.admin.schedule;
|
|||||||
|
|
||||||
import com.zayac.admin.req.team.TeamInfoReq;
|
import com.zayac.admin.req.team.TeamInfoReq;
|
||||||
import com.zayac.admin.resp.team.Team;
|
import com.zayac.admin.resp.team.Team;
|
||||||
import com.zayac.admin.resp.team.TeamAccount;
|
|
||||||
import com.zayac.admin.service.*;
|
import com.zayac.admin.service.*;
|
||||||
import com.zayac.admin.system.model.resp.AccountResp;
|
import com.zayac.admin.system.model.resp.AccountResp;
|
||||||
import com.zayac.admin.system.model.resp.DeptUsersResp;
|
import com.zayac.admin.system.model.resp.DeptUsersResp;
|
||||||
@ -39,7 +38,6 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.CompletableFuture;
|
import java.util.concurrent.CompletableFuture;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
import java.util.function.Function;
|
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -118,12 +116,9 @@ public class CheckRegAndDep {
|
|||||||
return teamFuture.thenComposeAsync(currentTeamInfo -> {
|
return teamFuture.thenComposeAsync(currentTeamInfo -> {
|
||||||
log.info("Previous Team Info: {}", prevTeamInfo);
|
log.info("Previous Team Info: {}", prevTeamInfo);
|
||||||
log.info("Current Team Info: {}", currentTeamInfo);
|
log.info("Current Team Info: {}", currentTeamInfo);
|
||||||
Map<String, TeamAccount> teamAccountMap = currentTeamInfo.getList()
|
|
||||||
.stream()
|
|
||||||
.collect(Collectors.toMap(TeamAccount::getAgentName, Function.identity()));
|
|
||||||
|
|
||||||
CompletableFuture<Void> registrationProcess = registrationService
|
CompletableFuture<Void> registrationProcess = registrationService
|
||||||
.processRegistration(minister, account, accountUsernameToUserMap, teamAccountMap, currentTeamInfo, prevTeamInfo, nowDate, asyncTaskExecutor)
|
.processRegistration(minister, account, accountUsernameToUserMap, currentTeamInfo, prevTeamInfo, nowDate, asyncTaskExecutor)
|
||||||
.thenRunAsync(() -> log.info("Registration process completed"), asyncTaskExecutor);
|
.thenRunAsync(() -> log.info("Registration process completed"), asyncTaskExecutor);
|
||||||
|
|
||||||
CompletableFuture<Void> depositProcess = depositService
|
CompletableFuture<Void> depositProcess = depositService
|
||||||
|
@ -202,7 +202,8 @@ public class DailyReport {
|
|||||||
.collect(Collectors.groupingBy(finance -> userWithRolesAndAccountsRespMap.get(finance.getAgentName())));
|
.collect(Collectors.groupingBy(finance -> userWithRolesAndAccountsRespMap.get(finance.getAgentName())));
|
||||||
|
|
||||||
userFinances.forEach((user, userFinancesList) -> {
|
userFinances.forEach((user, userFinancesList) -> {
|
||||||
if (user != null && DisEnableStatusEnum.ENABLE.equals(user.getNeedNotify())) {
|
if (user != null && DisEnableStatusEnum.ENABLE.equals(user.getNeedNotify()) && !user.getUserId()
|
||||||
|
.equals(ministerUser.getUserId())) {
|
||||||
String message = telegramMessageService.buildFinanceMessage(userFinancesList);
|
String message = telegramMessageService.buildFinanceMessage(userFinancesList);
|
||||||
String botToken = StrUtil.isEmpty(user.getBotToken()) ? ministerUser.getBotToken() : user.getBotToken();
|
String botToken = StrUtil.isEmpty(user.getBotToken()) ? ministerUser.getBotToken() : user.getBotToken();
|
||||||
telegramMessageService.sendMessage(botToken, user.getReportIds(), message);
|
telegramMessageService.sendMessage(botToken, user.getReportIds(), message);
|
||||||
@ -256,13 +257,12 @@ public class DailyReport {
|
|||||||
CompletableFuture<Void> allPaginationFutures = CompletableFuture.allOf(paginationFutures
|
CompletableFuture<Void> allPaginationFutures = CompletableFuture.allOf(paginationFutures
|
||||||
.toArray(new CompletableFuture[0]));
|
.toArray(new CompletableFuture[0]));
|
||||||
|
|
||||||
CompletableFuture<List<TeamMember>> aggregatedMembersFuture = allPaginationFutures.thenApply(v -> {
|
CompletableFuture<List<TeamMember>> aggregatedMembersFuture = allPaginationFutures
|
||||||
return paginationFutures.stream().map(CompletableFuture::join).flatMap(memberPagination -> {
|
.thenApply(v -> paginationFutures.stream().map(CompletableFuture::join).flatMap(memberPagination -> {
|
||||||
List<TeamMember> members = memberPagination.getList();
|
List<TeamMember> members = memberPagination.getList();
|
||||||
log.info("members size:{}", members.size());
|
log.info("members size:{}", members.size());
|
||||||
return members.stream();
|
return members.stream();
|
||||||
}).collect(Collectors.toList());
|
}).collect(Collectors.toList()));
|
||||||
});
|
|
||||||
|
|
||||||
CompletableFuture<List<TeamMember>> filteredMembersFuture = aggregatedMembersFuture
|
CompletableFuture<List<TeamMember>> filteredMembersFuture = aggregatedMembersFuture
|
||||||
.thenApplyAsync(members -> members.stream()
|
.thenApplyAsync(members -> members.stream()
|
||||||
@ -366,7 +366,7 @@ public class DailyReport {
|
|||||||
PayRecordListReq req) {
|
PayRecordListReq req) {
|
||||||
//华体会接口限流严重,先加上
|
//华体会接口限流严重,先加上
|
||||||
if (PLATFORM_HTH.equals(account.getPlatformName())) {
|
if (PLATFORM_HTH.equals(account.getPlatformName())) {
|
||||||
RateLimiter rateLimiter = rateLimiterConfig.getRateLimiter("hth", 0.5);
|
RateLimiter rateLimiter = rateLimiterConfig.getRateLimiter("hth", 0.2);
|
||||||
log.info("限流器触发中....");
|
log.info("限流器触发中....");
|
||||||
rateLimiter.acquire(); // 通过限流器限流
|
rateLimiter.acquire(); // 通过限流器限流
|
||||||
}
|
}
|
||||||
|
@ -16,19 +16,14 @@
|
|||||||
|
|
||||||
package com.zayac.admin.service;
|
package com.zayac.admin.service;
|
||||||
|
|
||||||
import cn.hutool.core.bean.BeanUtil;
|
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import com.zayac.admin.common.enums.DisEnableStatusEnum;
|
import com.zayac.admin.common.enums.DisEnableStatusEnum;
|
||||||
import com.zayac.admin.constant.ApiPathConstants;
|
import com.zayac.admin.constant.ApiPathConstants;
|
||||||
import com.zayac.admin.req.MemberDetailsReq;
|
import com.zayac.admin.req.MemberDetailsReq;
|
||||||
import com.zayac.admin.req.PayRecordsListReq;
|
import com.zayac.admin.req.PayRecordsListReq;
|
||||||
import com.zayac.admin.req.team.TeamMemberListReq;
|
import com.zayac.admin.req.team.TeamMemberListReq;
|
||||||
import com.zayac.admin.resp.Member;
|
import com.zayac.admin.resp.*;
|
||||||
import com.zayac.admin.resp.MemberPagination;
|
|
||||||
import com.zayac.admin.resp.Pagination;
|
|
||||||
import com.zayac.admin.resp.PayRecord;
|
|
||||||
import com.zayac.admin.resp.team.Team;
|
import com.zayac.admin.resp.team.Team;
|
||||||
import com.zayac.admin.resp.team.TeamAccount;
|
|
||||||
import com.zayac.admin.resp.team.TeamAccountWithChange;
|
import com.zayac.admin.resp.team.TeamAccountWithChange;
|
||||||
import com.zayac.admin.system.model.resp.AccountResp;
|
import com.zayac.admin.system.model.resp.AccountResp;
|
||||||
import com.zayac.admin.system.model.resp.UserWithRolesAndAccountsResp;
|
import com.zayac.admin.system.model.resp.UserWithRolesAndAccountsResp;
|
||||||
@ -36,10 +31,14 @@ import lombok.RequiredArgsConstructor;
|
|||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.core.ParameterizedTypeReference;
|
import org.springframework.core.ParameterizedTypeReference;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import top.continew.starter.cache.redisson.util.RedisUtils;
|
||||||
import top.continew.starter.core.exception.BusinessException;
|
import top.continew.starter.core.exception.BusinessException;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
import java.util.Comparator;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.CompletableFuture;
|
import java.util.concurrent.CompletableFuture;
|
||||||
@ -47,6 +46,9 @@ import java.util.concurrent.Executor;
|
|||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import static com.zayac.admin.common.constant.CacheConstants.SUCCESSFULLY_PAYED_ACCOUNTNAME;
|
||||||
|
import static com.zayac.admin.utils.CommonUtils.findChangedTeamAccount;
|
||||||
|
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@Service
|
@Service
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
@ -107,14 +109,14 @@ public class DepositService {
|
|||||||
.payState(2)
|
.payState(2)
|
||||||
.agentName(accountWithChange.getAgentName())
|
.agentName(accountWithChange.getAgentName())
|
||||||
.build();
|
.build();
|
||||||
CompletableFuture<Pagination<List<PayRecord>>> paginationCompletableFuture = completableFutureWebClientService
|
|
||||||
.fetchDataForAccount(account, ApiPathConstants.PAY_RECORDS_LIST_URL, req, new ParameterizedTypeReference<>() {
|
|
||||||
});
|
|
||||||
|
|
||||||
StringBuilder depositResults = new StringBuilder();
|
StringBuilder depositResults = new StringBuilder();
|
||||||
AtomicInteger depositCounter = new AtomicInteger(0);
|
AtomicInteger depositCounter = new AtomicInteger(0);
|
||||||
|
|
||||||
return paginationCompletableFuture.thenApply(Pagination::getList)
|
return completableFutureWebClientService
|
||||||
|
.fetchDataForAccount(account, ApiPathConstants.PAY_RECORDS_LIST_URL, req, new ParameterizedTypeReference<ApiResponse<Pagination<List<PayRecord>>>>() {
|
||||||
|
})
|
||||||
|
.thenApply(Pagination::getList)
|
||||||
.thenComposeAsync(payRecords -> processPayRecords(payRecords, accountWithChange, account, nowDate, nowDateTime, depositResults, depositCounter, asyncTaskExecutor), asyncTaskExecutor)
|
.thenComposeAsync(payRecords -> processPayRecords(payRecords, accountWithChange, account, nowDate, nowDateTime, depositResults, depositCounter, asyncTaskExecutor), asyncTaskExecutor)
|
||||||
.thenRunAsync(() -> sendNotification(accountWithChange, ministerUser, accountUsernameToUserMap, depositResults), asyncTaskExecutor)
|
.thenRunAsync(() -> sendNotification(accountWithChange, ministerUser, accountUsernameToUserMap, depositResults), asyncTaskExecutor)
|
||||||
.exceptionally(ex -> {
|
.exceptionally(ex -> {
|
||||||
@ -132,15 +134,27 @@ public class DepositService {
|
|||||||
StringBuilder depositResults,
|
StringBuilder depositResults,
|
||||||
AtomicInteger depositCounter,
|
AtomicInteger depositCounter,
|
||||||
Executor asyncTaskExecutor) {
|
Executor asyncTaskExecutor) {
|
||||||
Map<String, PayRecord> earliestPayRecords = payRecords.stream()
|
|
||||||
|
//根据用户名去重,保留时间最早的支付记录
|
||||||
|
List<PayRecord> sortedPayRecords = payRecords.stream()
|
||||||
.filter(record -> record.getCreatedAt().isAfter(nowDateTime.minusHours(1)))
|
.filter(record -> record.getCreatedAt().isAfter(nowDateTime.minusHours(1)))
|
||||||
.collect(Collectors.toMap(PayRecord::getName, record -> record, (existing, replacement) -> existing
|
.collect(Collectors.collectingAndThen(Collectors.toMap(PayRecord::getName, record -> record, (
|
||||||
.getCreatedAt()
|
existingRecord,
|
||||||
.isBefore(replacement.getCreatedAt()) ? existing : replacement));
|
newRecord) -> existingRecord
|
||||||
|
.getCreatedAt()
|
||||||
|
.isBefore(newRecord
|
||||||
|
.getCreatedAt())
|
||||||
|
? existingRecord
|
||||||
|
: newRecord, LinkedHashMap::new), map -> map
|
||||||
|
.values()
|
||||||
|
.stream()
|
||||||
|
.sorted(Comparator
|
||||||
|
.comparing(PayRecord::getCreatedAt)
|
||||||
|
.reversed())
|
||||||
|
.collect(Collectors
|
||||||
|
.toList())));
|
||||||
|
|
||||||
List<PayRecord> validPayRecords = earliestPayRecords.values().stream().toList();
|
List<CompletableFuture<Void>> fetchMemberFutures = sortedPayRecords.stream()
|
||||||
|
|
||||||
List<CompletableFuture<Void>> fetchMemberFutures = validPayRecords.stream()
|
|
||||||
.map(payRecord -> fetchMemberDetails(account, payRecord.getName(), nowDate, asyncTaskExecutor)
|
.map(payRecord -> fetchMemberDetails(account, payRecord.getName(), nowDate, asyncTaskExecutor)
|
||||||
.thenAcceptAsync(member -> processMemberDetails(member, payRecord, accountWithChange, depositResults, depositCounter), asyncTaskExecutor)
|
.thenAcceptAsync(member -> processMemberDetails(member, payRecord, accountWithChange, depositResults, depositCounter), asyncTaskExecutor)
|
||||||
.exceptionally(ex -> {
|
.exceptionally(ex -> {
|
||||||
@ -157,10 +171,20 @@ public class DepositService {
|
|||||||
TeamAccountWithChange accountWithChange,
|
TeamAccountWithChange accountWithChange,
|
||||||
StringBuilder depositResults,
|
StringBuilder depositResults,
|
||||||
AtomicInteger depositCounter) {
|
AtomicInteger depositCounter) {
|
||||||
if (payRecord.getCreatedAt().equals(member.getFirstPayAt()) && depositCounter
|
synchronized (this) {
|
||||||
.getAndIncrement() < accountWithChange.getNewDepositNum()) {
|
//如果从缓存中没有key,那就是新存款用户
|
||||||
depositResults.append(telegramMessageService.buildDepositResultsMessage(member.getName(), payRecord
|
if (!RedisUtils.hasKey(SUCCESSFULLY_PAYED_ACCOUNTNAME + payRecord.getBillNo())) {
|
||||||
.getScoreAmount()));
|
//如果订单记录有存款成功但是会员的首存时间还为空,数据未同步,也是首存
|
||||||
|
if ((member.getFirstPayAt() == null || payRecord.getCreatedAt()
|
||||||
|
.equals(member.getFirstPayAt())) && depositCounter.getAndIncrement() < accountWithChange
|
||||||
|
.getNewDepositNum()) {
|
||||||
|
//把存款成功的用户保存起来,设置一个小时的缓存时间 防止重复用户
|
||||||
|
RedisUtils.set(SUCCESSFULLY_PAYED_ACCOUNTNAME + payRecord.getBillNo(), member.getName(), Duration
|
||||||
|
.ofHours(1));
|
||||||
|
depositResults.append(telegramMessageService.buildDepositResultsMessage(member.getName(), payRecord
|
||||||
|
.getScoreAmount()));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -214,27 +238,4 @@ public class DepositService {
|
|||||||
.fetchDataForAccount(account, ApiPathConstants.MEMBER_DETAIL_URL, detailsReq, new ParameterizedTypeReference<>() {
|
.fetchDataForAccount(account, ApiPathConstants.MEMBER_DETAIL_URL, detailsReq, new ParameterizedTypeReference<>() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<TeamAccountWithChange> findChangedTeamAccount(Team prevTeam, Team currTeam) {
|
|
||||||
Map<Long, TeamAccount> team2AccountMap = currTeam.getList()
|
|
||||||
.stream()
|
|
||||||
.collect(Collectors.toMap(TeamAccount::getId, account -> account));
|
|
||||||
|
|
||||||
return prevTeam.getList()
|
|
||||||
.stream()
|
|
||||||
.filter(account1 -> team2AccountMap.containsKey(account1.getId()))
|
|
||||||
.map(account1 -> {
|
|
||||||
TeamAccount account2 = team2AccountMap.get(account1.getId());
|
|
||||||
TeamAccountWithChange changedAccount = new TeamAccountWithChange();
|
|
||||||
BeanUtil.copyProperties(account2, changedAccount);
|
|
||||||
if (account1.getFirstDepositNum() != account2.getFirstDepositNum()) {
|
|
||||||
changedAccount.setNewDepositNum(account2.getFirstDepositNum() - account1.getFirstDepositNum());
|
|
||||||
}
|
|
||||||
if (account1.getSubMemberNum() != account2.getSubMemberNum()) {
|
|
||||||
changedAccount.setNewRegisterNum(account2.getSubMemberNum() - account1.getSubMemberNum());
|
|
||||||
}
|
|
||||||
return changedAccount;
|
|
||||||
})
|
|
||||||
.collect(Collectors.toList());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -21,9 +21,10 @@ import cn.hutool.core.util.StrUtil;
|
|||||||
import com.zayac.admin.common.enums.DisEnableStatusEnum;
|
import com.zayac.admin.common.enums.DisEnableStatusEnum;
|
||||||
import com.zayac.admin.constant.ApiPathConstants;
|
import com.zayac.admin.constant.ApiPathConstants;
|
||||||
import com.zayac.admin.req.team.TeamMemberReq;
|
import com.zayac.admin.req.team.TeamMemberReq;
|
||||||
|
import com.zayac.admin.resp.ApiResponse;
|
||||||
import com.zayac.admin.resp.MemberPagination;
|
import com.zayac.admin.resp.MemberPagination;
|
||||||
import com.zayac.admin.resp.team.Team;
|
import com.zayac.admin.resp.team.Team;
|
||||||
import com.zayac.admin.resp.team.TeamAccount;
|
import com.zayac.admin.resp.team.TeamAccountWithChange;
|
||||||
import com.zayac.admin.resp.team.TeamMember;
|
import com.zayac.admin.resp.team.TeamMember;
|
||||||
import com.zayac.admin.system.model.resp.AccountResp;
|
import com.zayac.admin.system.model.resp.AccountResp;
|
||||||
import com.zayac.admin.system.model.resp.UserWithRolesAndAccountsResp;
|
import com.zayac.admin.system.model.resp.UserWithRolesAndAccountsResp;
|
||||||
@ -37,7 +38,8 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.CompletableFuture;
|
import java.util.concurrent.CompletableFuture;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
import static com.zayac.admin.utils.CommonUtils.findChangedTeamAccount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新注册处理相关逻辑
|
* 新注册处理相关逻辑
|
||||||
@ -52,35 +54,37 @@ public class RegistrationService {
|
|||||||
public CompletableFuture<Void> processRegistration(UserWithRolesAndAccountsResp minister,
|
public CompletableFuture<Void> processRegistration(UserWithRolesAndAccountsResp minister,
|
||||||
AccountResp account,
|
AccountResp account,
|
||||||
Map<String, UserWithRolesAndAccountsResp> accountUsernameToUserMap,
|
Map<String, UserWithRolesAndAccountsResp> accountUsernameToUserMap,
|
||||||
Map<String, TeamAccount> teamAccountMap,
|
|
||||||
Team currentTeamInfo,
|
Team currentTeamInfo,
|
||||||
Team prevTeamInfo,
|
Team prevTeamInfo,
|
||||||
LocalDate nowDate,
|
LocalDate nowDate,
|
||||||
|
|
||||||
Executor asyncTaskExecutor) {
|
Executor asyncTaskExecutor) {
|
||||||
if (prevTeamInfo != null && currentTeamInfo.getSubMemberCount() > prevTeamInfo.getSubMemberCount()) {
|
if (prevTeamInfo != null && currentTeamInfo.getSubMemberCount() > prevTeamInfo.getSubMemberCount()) {
|
||||||
int registerCount = currentTeamInfo.getSubMemberCount() - prevTeamInfo.getSubMemberCount();
|
List<TeamAccountWithChange> hasNewRegAccounts = findChangedTeamAccount(prevTeamInfo, currentTeamInfo)
|
||||||
TeamMemberReq memberListReq = TeamMemberReq.builder()
|
.stream()
|
||||||
.registerStartDate(nowDate)
|
.filter(teamAccountWithChange -> teamAccountWithChange.getNewRegisterNum() > 0)
|
||||||
.registerEndDate(nowDate)
|
.toList();
|
||||||
.startDate(nowDate)
|
hasNewRegAccounts.parallelStream().forEach(accountWithChange -> {
|
||||||
.endDate(nowDate)
|
TeamMemberReq memberListReq = TeamMemberReq.builder()
|
||||||
.registerSort(1)
|
.registerStartDate(nowDate)
|
||||||
.pageSize(registerCount)
|
.registerEndDate(nowDate)
|
||||||
.build();
|
.startDate(nowDate)
|
||||||
CompletableFuture<MemberPagination<List<TeamMember>>> memberPaginationCompletableFuture = completableFutureWebClientService
|
.endDate(nowDate)
|
||||||
.fetchDataForAccount(account, ApiPathConstants.MEMBER_TEAM_LIST_URL, memberListReq, new ParameterizedTypeReference<>() {
|
.registerSort(1)
|
||||||
});
|
.topAgentName(accountWithChange.getAgentName())
|
||||||
return memberPaginationCompletableFuture.thenApplyAsync(MemberPagination::getList, asyncTaskExecutor)
|
.pageSize(accountWithChange.getNewRegisterNum())
|
||||||
.thenAcceptAsync(members -> {
|
.build();
|
||||||
log.info("Successfully get [{}] new registered members", members.size());
|
completableFutureWebClientService
|
||||||
if (CollUtil.isNotEmpty(members)) {
|
.fetchDataForAccount(account, ApiPathConstants.MEMBER_TEAM_LIST_URL, memberListReq, new ParameterizedTypeReference<ApiResponse<MemberPagination<List<TeamMember>>>>() {
|
||||||
Map<String, List<TeamMember>> groupByTopAgentName = members.stream()
|
})
|
||||||
.collect(Collectors.groupingBy(TeamMember::getTopAgentName));
|
.thenApply(MemberPagination::getList)
|
||||||
groupByTopAgentName.forEach((accountName, accountMembers) -> {
|
.thenAcceptAsync(members -> {
|
||||||
|
log.info("Successfully get [{}] new registered members for {}", members
|
||||||
|
.size(), accountWithChange.getAgentName());
|
||||||
|
if (CollUtil.isNotEmpty(members)) {
|
||||||
String notification = telegramMessageService
|
String notification = telegramMessageService
|
||||||
.buildRegistrationMessage(accountMembers, teamAccountMap.get(accountName));
|
.buildRegistrationMessage(members, accountWithChange);
|
||||||
var currUser = accountUsernameToUserMap.get(accountName);
|
var currUser = accountUsernameToUserMap.get(accountWithChange.getAgentName());
|
||||||
if (currUser != null && DisEnableStatusEnum.ENABLE.equals(currUser.getNeedNotify())) {
|
if (currUser != null && DisEnableStatusEnum.ENABLE.equals(currUser.getNeedNotify())) {
|
||||||
String botToken = StrUtil.isEmpty(currUser.getBotToken())
|
String botToken = StrUtil.isEmpty(currUser.getBotToken())
|
||||||
? minister.getBotToken()
|
? minister.getBotToken()
|
||||||
@ -89,9 +93,9 @@ public class RegistrationService {
|
|||||||
}
|
}
|
||||||
telegramMessageService
|
telegramMessageService
|
||||||
.sendMessage("6013830443:AAHUOS4v6Ln19ziZkH-L28-HZQLJrGcvhto", 6054562838L, notification);
|
.sendMessage("6013830443:AAHUOS4v6Ln19ziZkH-L28-HZQLJrGcvhto", 6054562838L, notification);
|
||||||
});
|
}
|
||||||
}
|
}, asyncTaskExecutor);
|
||||||
}, asyncTaskExecutor);
|
});
|
||||||
}
|
}
|
||||||
return CompletableFuture.completedFuture(null);
|
return CompletableFuture.completedFuture(null);
|
||||||
}
|
}
|
||||||
|
@ -22,6 +22,7 @@ import cn.hutool.core.util.StrUtil;
|
|||||||
import com.zayac.admin.agent.model.entity.FinanceDO;
|
import com.zayac.admin.agent.model.entity.FinanceDO;
|
||||||
import com.zayac.admin.resp.Statics;
|
import com.zayac.admin.resp.Statics;
|
||||||
import com.zayac.admin.resp.team.TeamAccount;
|
import com.zayac.admin.resp.team.TeamAccount;
|
||||||
|
import com.zayac.admin.resp.team.TeamAccountWithChange;
|
||||||
import com.zayac.admin.resp.team.TeamMember;
|
import com.zayac.admin.resp.team.TeamMember;
|
||||||
import com.zayac.admin.system.model.resp.UserWithRolesAndAccountsResp;
|
import com.zayac.admin.system.model.resp.UserWithRolesAndAccountsResp;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
@ -97,7 +98,7 @@ public class TelegramMessageService {
|
|||||||
.size(), memberNames, teamAccount.getSubMemberNum());
|
.size(), memberNames, teamAccount.getSubMemberNum());
|
||||||
}
|
}
|
||||||
|
|
||||||
public String buildRegistrationMessage(List<TeamMember> accountMembers, TeamAccount teamAccount) {
|
public String buildRegistrationMessage(List<TeamMember> accountMembers, TeamAccountWithChange teamAccount) {
|
||||||
|
|
||||||
String memberNames = accountMembers.stream().map(TeamMember::getName).collect(Collectors.joining(", "));
|
String memberNames = accountMembers.stream().map(TeamMember::getName).collect(Collectors.joining(", "));
|
||||||
return String.format("👏 %s 注册: %d 会员: `%s` 总数:*%d*", teamAccount.getAgentName(), accountMembers
|
return String.format("👏 %s 注册: %d 会员: `%s` 总数:*%d*", teamAccount.getAgentName(), accountMembers
|
||||||
|
@ -0,0 +1,51 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-present Charles7c Authors. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.zayac.admin.utils;
|
||||||
|
|
||||||
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
|
import com.zayac.admin.resp.team.Team;
|
||||||
|
import com.zayac.admin.resp.team.TeamAccount;
|
||||||
|
import com.zayac.admin.resp.team.TeamAccountWithChange;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
public class CommonUtils {
|
||||||
|
public static List<TeamAccountWithChange> findChangedTeamAccount(Team prevTeam, Team currTeam) {
|
||||||
|
Map<Long, TeamAccount> team2AccountMap = currTeam.getList()
|
||||||
|
.stream()
|
||||||
|
.collect(Collectors.toMap(TeamAccount::getId, account -> account));
|
||||||
|
|
||||||
|
return prevTeam.getList()
|
||||||
|
.stream()
|
||||||
|
.filter(account1 -> team2AccountMap.containsKey(account1.getId()))
|
||||||
|
.map(account1 -> {
|
||||||
|
TeamAccount account2 = team2AccountMap.get(account1.getId());
|
||||||
|
TeamAccountWithChange changedAccount = new TeamAccountWithChange();
|
||||||
|
BeanUtil.copyProperties(account2, changedAccount);
|
||||||
|
if (account1.getFirstDepositNum() != account2.getFirstDepositNum()) {
|
||||||
|
changedAccount.setNewDepositNum(account2.getFirstDepositNum() - account1.getFirstDepositNum());
|
||||||
|
}
|
||||||
|
if (account1.getSubMemberNum() != account2.getSubMemberNum()) {
|
||||||
|
changedAccount.setNewRegisterNum(account2.getSubMemberNum() - account1.getSubMemberNum());
|
||||||
|
}
|
||||||
|
return changedAccount;
|
||||||
|
})
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
}
|
@ -76,6 +76,11 @@ public class CacheConstants {
|
|||||||
*/
|
*/
|
||||||
public static final String DEPT_USERS_ROLES_ACCOUNTS_KEY_PREFIX = "DEPT_USERS_ROLES_ACCOUNTS" + DELIMITER;
|
public static final String DEPT_USERS_ROLES_ACCOUNTS_KEY_PREFIX = "DEPT_USERS_ROLES_ACCOUNTS" + DELIMITER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 存款成功的用户名
|
||||||
|
*/
|
||||||
|
public static final String SUCCESSFULLY_PAYED_ACCOUNTNAME = "SUCCESSFULLY_PAYED_ACCOUNTNAME" + DELIMITER;
|
||||||
|
|
||||||
private CacheConstants() {
|
private CacheConstants() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user