diff --git a/conflux-admin/src/main/java/com/conflux/RuoYiApplication.java b/conflux-admin/src/main/java/com/conflux/RuoYiApplication.java index 895eaa2..b256860 100644 --- a/conflux-admin/src/main/java/com/conflux/RuoYiApplication.java +++ b/conflux-admin/src/main/java/com/conflux/RuoYiApplication.java @@ -3,6 +3,9 @@ package com.conflux; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; +import org.springframework.context.annotation.Bean; +import org.springframework.scheduling.TaskScheduler; +import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler; /** * 启动程序 @@ -18,4 +21,11 @@ public class RuoYiApplication SpringApplication.run(RuoYiApplication.class, args); System.out.println("(♥◠‿◠)ノ゙"); } + @Bean + public TaskScheduler taskScheduler() { + ThreadPoolTaskScheduler taskScheduler = new ThreadPoolTaskScheduler(); + taskScheduler.setPoolSize(5); + taskScheduler.setThreadNamePrefix("conflux-cfx-task"); + return taskScheduler; + } } diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/api/ConfluxAipController.java b/conflux-admin/src/main/java/com/conflux/web/controller/api/ConfluxAipController.java index a879a1b..f584068 100644 --- a/conflux-admin/src/main/java/com/conflux/web/controller/api/ConfluxAipController.java +++ b/conflux-admin/src/main/java/com/conflux/web/controller/api/ConfluxAipController.java @@ -5,6 +5,7 @@ import com.conflux.web.controller.nft.domain.CheckArgs; import com.conflux.web.controller.nft.service.ConfluxService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; +import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; @@ -15,12 +16,14 @@ import org.springframework.web.bind.annotation.*; @Api(tags = "区块链上链接口") @RestController @RequestMapping("/api/conflux") +@Slf4j public class ConfluxAipController { @Autowired private ConfluxService confluxService; /** * 上链接口 + * * @param checkArgs * @return */ @@ -29,7 +32,8 @@ public class ConfluxAipController { public AjaxResult confluxPush(@RequestBody CheckArgs checkArgs) { try { return confluxService.confluxPush(checkArgs); - }catch (Exception e){ + } catch (Exception e) { + log.info("上链异常-*-*-*-*-*-*-》:", e); return AjaxResult.error("服务器异常,请稍后再试!"); } @@ -37,6 +41,7 @@ public class ConfluxAipController { /** * 获取token + * * @return */ @ApiOperation("获取token") diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/collect/service/ICollectConfigService.java b/conflux-admin/src/main/java/com/conflux/web/controller/collect/service/ICollectConfigService.java index 08575e6..3566724 100644 --- a/conflux-admin/src/main/java/com/conflux/web/controller/collect/service/ICollectConfigService.java +++ b/conflux-admin/src/main/java/com/conflux/web/controller/collect/service/ICollectConfigService.java @@ -73,4 +73,5 @@ public interface ICollectConfigService * @return */ public CollectConfig selectCollectConfigByStatus(); + } diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/event/EventHandler.java b/conflux-admin/src/main/java/com/conflux/web/controller/event/EventHandler.java new file mode 100644 index 0000000..9fa1ab9 --- /dev/null +++ b/conflux-admin/src/main/java/com/conflux/web/controller/event/EventHandler.java @@ -0,0 +1,40 @@ +package com.conflux.web.controller.event; + + +import cn.hutool.core.date.DateUtil; +import com.conflux.web.controller.collect.domain.CollectConfig; +import com.conflux.web.controller.collect.service.ICollectConfigService; +import com.conflux.web.controller.nft.domain.EventParam; +import com.conflux.web.controller.nft.domain.vo.FilterMapVO; +import com.conflux.web.controller.nft.service.IHandlerStrategy; +import com.conflux.web.controller.util.CfxUtils; +import com.google.gson.Gson; +import conflux.web3j.Cfx; +import conflux.web3j.Request; +import conflux.web3j.request.Epoch; +import conflux.web3j.request.LogFilter; +import conflux.web3j.response.Log; +import conflux.web3j.types.Address; +import lombok.extern.slf4j.Slf4j; +import org.apache.commons.collections.CollectionUtils; +import org.springframework.context.annotation.Configuration; +import org.springframework.scheduling.annotation.Scheduled; + +import javax.annotation.Resource; +import java.math.BigInteger; +import java.util.*; +import java.util.stream.Collectors; + +@Slf4j +@Configuration +public class EventHandler { + + @Resource + private ICollectConfigService collectConfigService; + + @Resource + private IHandlerStrategy iHandlerStrategy; + + + +} diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/nft/domain/EventParam.java b/conflux-admin/src/main/java/com/conflux/web/controller/nft/domain/EventParam.java new file mode 100644 index 0000000..8b0c4f2 --- /dev/null +++ b/conflux-admin/src/main/java/com/conflux/web/controller/nft/domain/EventParam.java @@ -0,0 +1,27 @@ +package com.conflux.web.controller.nft.domain; + +import lombok.Data; + +import java.io.Serializable; + +/** + *

+ * + *

+ * + * @author ban123 + * @since 2021-04-26 + */ +@Data +public class EventParam implements Serializable { + + private static final long serialVersionUID = 1L; + private Integer id; + private Integer chainId; + private String contract; + private String param; + private String method; + private Integer type; + private String remark; + +} diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/nft/mapper/NftCollectionMapper.java b/conflux-admin/src/main/java/com/conflux/web/controller/nft/mapper/NftCollectionMapper.java index 7f2c1b8..024bd85 100644 --- a/conflux-admin/src/main/java/com/conflux/web/controller/nft/mapper/NftCollectionMapper.java +++ b/conflux-admin/src/main/java/com/conflux/web/controller/nft/mapper/NftCollectionMapper.java @@ -22,6 +22,8 @@ public interface NftCollectionMapper */ public NftCollection selectNftCollectionById(Long id); + public NftCollection selectNftCollectionByIdSting(String id); + /** * 查询nft上链列表 * @@ -63,4 +65,6 @@ public interface NftCollectionMapper * @return 结果 */ public int deleteNftCollectionByIds(Long[] ids); + + int updateByTokenId(String hexTokenId); } diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/INftCollectionService.java b/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/INftCollectionService.java index 0644123..bce8722 100644 --- a/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/INftCollectionService.java +++ b/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/INftCollectionService.java @@ -2,6 +2,7 @@ package com.conflux.web.controller.nft.service; import com.conflux.web.controller.nft.domain.NftCollection; +import com.conflux.web.controller.nft.domain.dto.NftDTO; import java.util.List; @@ -68,4 +69,6 @@ public interface INftCollectionService * @return 结果 */ public int deleteNftCollectionById(Long id); + + void updateCollect(NftDTO nftDTO); } diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/ConfluxServiceImpl.java b/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/ConfluxServiceImpl.java index 9f01bc6..6772ba2 100644 --- a/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/ConfluxServiceImpl.java +++ b/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/ConfluxServiceImpl.java @@ -9,19 +9,29 @@ import com.conflux.web.controller.collect.service.ICollectConfigService; import com.conflux.web.controller.contract.domain.ContractConfig; import com.conflux.web.controller.contract.service.IContractConfigService; import com.conflux.web.controller.nft.domain.*; +import com.conflux.web.controller.nft.domain.vo.FilterMapVO; import com.conflux.web.controller.nft.service.ConfluxService; +import com.conflux.web.controller.nft.service.IHandlerStrategy; import com.conflux.web.controller.nft.service.INftCollectionService; import com.conflux.web.controller.nft.service.INftLogService; import com.conflux.web.controller.util.AESUtil; import com.conflux.web.controller.util.AddressUtil; +import com.conflux.web.controller.util.CfxUtils; import com.conflux.web.controller.util.redis.RedisUtils; +import com.google.gson.Gson; import conflux.web3j.Account; import conflux.web3j.Cfx; +import conflux.web3j.Request; +import conflux.web3j.request.Epoch; +import conflux.web3j.request.LogFilter; +import conflux.web3j.response.Log; import conflux.web3j.response.UsedGasAndCollateral; import conflux.web3j.types.Address; import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; +import org.apache.commons.collections.CollectionUtils; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -49,6 +59,10 @@ public class ConfluxServiceImpl implements ConfluxService { private INftCollectionService nftCollectionService; @Autowired private INftLogService nftLogService; + @Resource + private IHandlerStrategy iHandlerStrategy; + @Autowired + private ThreadPoolTaskExecutor executor; @SneakyThrows @Override @@ -64,73 +78,81 @@ public class ConfluxServiceImpl implements ConfluxService { if (checkArgs.getIds().length > 100) { return AjaxResult.error("上链数量超出100!"); } - String checkArgsToken = AESUtil.decrypt(checkArgs.getToken(), ConfluxArt.AESKEY); - String token = (String) redisUtils.get(checkArgsToken); - String sign = AESUtil.decrypt(checkArgs.getSign(), ConfluxArt.AESKEY); - //校验token和sign签名 - if (token.equals(checkArgsToken) && sign.equals(ConfluxArt.SIGN)) { - //校验时间戳 - long time = Long.valueOf(checkArgs.getTimesTamp()); - long timesTamp = System.currentTimeMillis(); - if (timesTamp - time > 10000l) { - return AjaxResult.error("参数错误!"); - } - //删除缓存 - redisUtils.del(checkArgsToken); - redisUtils.del(sign); - //判断上链的数量 - CollectConfig collectConfig = collectConfigService.selectCollectConfigByStatus(); - if (collectConfig.getMintPause()) { - log.info("[--------------------->mintNft][start pause]"); - Thread.sleep(5000); - return AjaxResult.error("pause参数异常!"); - } - Cfx cfx = Cfx.create(collectConfig.getNode(), 3, 1000); - ContractConfig contractConfig = contractConfigService.selectContractConfigByUnitName(checkArgs.getUnitName()); - Account account = Account.create(cfx, AESUtil.decrypt(contractConfig.getPrivateKey())); - Account.Option opt = new Account.Option(); - opt.withValue(BigInteger.ZERO); - opt.withChainId(collectConfig.getChainId()); - opt.withEpochHeight(cfx.getEpochNumber().sendAndGet()); - opt.withGasPrice(contractConfig.getGasPrice()); - //获取余额 - BigInteger balance = cfx.getBalance(account.getAddress()).sendAndGet(); - log.info("[--------------------->mintNft][balance]{}", balance); - if (balance.compareTo(new BigInteger("50000000000000000000")) < 0) { - log.info("[--------------------->mintNft][balance not enough 50]{}", balance); - //sms notice - return AjaxResult.error("账户余额不足!"); - } - String contract = contractConfig.getContract(); - String owner = contractConfig.getContract(); - ConfluxExecutor confluxExecutor=new ConfluxExecutor(account,contract); - List list = Arrays.asList(checkArgs.getIds()); - long start = DateUtil.currentSeconds(); - log.info("[--------------------->mintNft][time]{}", new SimpleDateFormat("HH:mm:ss").format(new Date(start * 1000))); - List tokenIds = list.stream().map(n -> new BigInteger(n, 16)).collect(Collectors.toList()); - log.info("[--------------------->mintNft][tokenIds]:{}", tokenIds); - UsedGasAndCollateral est = confluxExecutor.getEstimate(cfx, new Address(owner), - new Address(contract), AddressUtil.getHexAddress(owner), tokenIds); - log.info("[--------------------->mintNft][GasUsed]{}", est.getGasUsed()); - log.info("[--------------------->mintNft][StorageCollateralized]{}", est.getStorageCollateralized()); - opt.withGasLimit(est.getGasUsed()); - opt.withStorageLimit(est.getStorageCollateralized()); - String hash = confluxExecutor.mulMint(opt, - AddressUtil.getHexAddress(owner), tokenIds - ); - log.info("[--------------------->mintNft][hash],{}", hash); - log.info("[--------------------->mintNft][time end]{}", +(DateUtil.currentSeconds() - start)); - //保存上链的id - nftCollectionService.insertListNftCollection(contractConfig.getUnitName(),list); - //保存日志记录 - NftLog nftLog=new NftLog(); - nftLog.setUnitName(contractConfig.getUnitName()); - nftLog.setCreateTime(new Date()); - nftLog.setNftNum(checkArgs.getIds().length); - nftLogService.insertNftLog(nftLog); - log.info("上链日志----->:{"+contractConfig.getUnitName()+"}{"+new Date()+"}{"+checkArgs.getIds().length+"}"); - return AjaxResult.success("上链成功!"); + String checkArgsToken = AESUtil.decrypt(checkArgs.getToken(), ConfluxArt.AESKEY); + String token = (String) redisUtils.get(checkArgsToken); + if (null == token) { + return AjaxResult.error("token已过期!"); + } + String sign = AESUtil.decrypt(checkArgs.getSign(), ConfluxArt.AESKEY); + //校验token和sign签名 + if (token.equals(checkArgsToken) && sign.equals(ConfluxArt.SIGN)) { + //校验时间戳 + long time = Long.valueOf(checkArgs.getTimesTamp()); + long timesTamp = System.currentTimeMillis(); + if (timesTamp - time > 10000l) { + return AjaxResult.error("参数错误!"); + } + //删除缓存 +// redisUtils.del(checkArgsToken); +// redisUtils.del(sign); + //判断上链的数量 + CollectConfig collectConfig = collectConfigService.selectCollectConfigByStatus(); + if (collectConfig.getMintPause()) { + log.info("[--------------------->mintNft][start pause]"); + Thread.sleep(5000); + return AjaxResult.error("pause参数异常!"); } + Cfx cfx = Cfx.create(collectConfig.getNode(), 3, 1000); + ContractConfig contractConfig = contractConfigService.selectContractConfigByUnitName(checkArgs.getUnitName()); + Account account = Account.create(cfx, AESUtil.decrypt(contractConfig.getPrivateKey())); + Account.Option opt = new Account.Option(); + opt.withValue(BigInteger.ZERO); + opt.withChainId(collectConfig.getChainId()); + opt.withEpochHeight(cfx.getEpochNumber().sendAndGet()); + opt.withGasPrice(contractConfig.getGasPrice()); + //获取余额 + BigInteger balance = cfx.getBalance(account.getAddress()).sendAndGet(); + log.info("[--------------------->mintNft][balance]{}", balance); + if (balance.compareTo(new BigInteger("50000000000000000000")) < 0) { + log.info("[--------------------->mintNft][balance not enough 50]{}", balance); + //sms notice + return AjaxResult.error("账户余额不足!"); + } + String contract = contractConfig.getContract(); + String owner = contractConfig.getContract(); + ConfluxExecutor confluxExecutor = new ConfluxExecutor(account, contract); + List list = Arrays.asList(checkArgs.getIds()); + long start = DateUtil.currentSeconds(); + log.info("[--------------------->mintNft][time]{}", new SimpleDateFormat("HH:mm:ss").format(new Date(start * 1000))); + List tokenIds = list.stream().map(n -> new BigInteger(n, 16)).collect(Collectors.toList()); + log.info("[--------------------->mintNft][tokenIds]:{}", tokenIds); + UsedGasAndCollateral est = confluxExecutor.getEstimate(cfx, new Address(owner), + new Address(contract), AddressUtil.getHexAddress(owner), tokenIds); + log.info("[--------------------->mintNft][GasUsed]{}", est.getGasUsed()); + log.info("[--------------------->mintNft][StorageCollateralized]{}", est.getStorageCollateralized()); + opt.withGasLimit(est.getGasUsed()); + opt.withStorageLimit(est.getStorageCollateralized()); + String hash = confluxExecutor.mulMint(opt, + AddressUtil.getHexAddress(owner), tokenIds + ); + log.info("[--------------------->mintNft][hash],{}", hash); + log.info("[--------------------->mintNft][time end]{}", +(DateUtil.currentSeconds() - start)); + //保存上链的id + nftCollectionService.insertListNftCollection(contractConfig.getUnitName(), list); + //保存日志记录 + NftLog nftLog = new NftLog(); + nftLog.setUnitName(contractConfig.getUnitName()); + nftLog.setCreateTime(new Date()); + nftLog.setNftNum(checkArgs.getIds().length); + nftLogService.insertNftLog(nftLog); + log.info("上链日志----->:{" + contractConfig.getUnitName() + "}{" + new Date() + "}{" + checkArgs.getIds().length + "}"); + + executor.execute(()->{ + executeMakeUp(contract, contractConfig.getUnitName()); + }); + System.out.println("------------------->"); + return AjaxResult.success("上链成功!"); + } return AjaxResult.error(); } @@ -145,4 +167,145 @@ public class ConfluxServiceImpl implements ConfluxService { redisUtils.set(token, token); return AjaxResult.success(map); } + + public void executeMakeUp(String contract, String markName) { + log.info("[dispatchHandler]{}", "开始监听数据"); + CollectConfig collect = collectConfigService.selectCollectConfigByStatus(); + if (collect.getOnPause()) { + log.info("[dispatchHandler]{}", "暂停中"); + try { + Thread.sleep(5000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + return; + } + //=======检查数据======= + List eventParams = new ArrayList<>(); + EventParam eventParam = new EventParam(); + eventParam.setChainId(collect.getChainId()); + eventParam.setContract(contract); + eventParam.setParam("address,address,uint256"); + eventParam.setMethod("Transfer"); + eventParam.setType(20000); + eventParam.setRemark(markName); + eventParams.add(eventParam); + if (CollectionUtils.isEmpty(eventParams)) { + log.error("[dispatchHandler]{}", "没有需要监听的数据"); + return; + } + + Gson gson = new Gson(); + //获取event,使用 webService + //记录数据 + Cfx cfx = null; + try { + cfx = Cfx.create(collect.getNode(), 3, 1000); + } catch (Exception e) { + e.printStackTrace(); + return; + } + FilterMapVO vo = getFilter(eventParams); + //获取数据高度 + long from = collect.getEpochNumber(); + // Invoke cfx method + BigInteger epoch = cfx.getEpochNumber().sendAndGet(); + log.info("[executeMakeUp][Current epoch]:{}", epoch); + long to = epoch.intValue() - 5; + if (to - from > collect.getLimitCount()) { + to = from + collect.getLimitCount(); + } + vo.getLogFilter().setFromEpoch(Epoch.numberOf(from)); + //当前高度 + vo.getLogFilter().setToEpoch(Epoch.numberOf(to)); + Request, Log.Response> events = cfx.getLogs(vo.getLogFilter()); + try { + events = cfx.getLogs(vo.getLogFilter()); + } catch (Exception e) { + e.printStackTrace(); + } + if (events == null) { + log.info("[executeMakeUp][请重启服务]"); + return; + } + List logList = events.sendAndGet(); + boolean isSuccess = false; + if (CollectionUtils.isEmpty(logList)) { + log.info("[executeMakeUp][此区间暂无日志]:from:{} to:{}", from, to); + isSuccess = true; + } + for (Log l : logList) { + //处理高度信息 + String evAddress = l.getTopics().get(0); + String tokenAddress = l.getAddress().getAddress(); + if (tokenAddress.contains("TYPE")) { + Address a = new Address(tokenAddress); + tokenAddress = a.getAddress(); + } + int type = vo.getMap().get(evAddress + "-" + tokenAddress.toLowerCase()); + if (type == 0) { + log.info("[dispatchHandler][暂无符合条件的数据]"); + return; + } + boolean res; + try { + res = iHandlerStrategy.relayHandler(cfx, gson.toJson(l), type); + } catch (Exception e) { + e.printStackTrace(); + isSuccess = false; + log.info("[dispatchHandler][数据错误未分配]{}", l.getData()); + break; + } + if (res) { + log.info("[dispatchHandler][分配成功]{}", evAddress); + isSuccess = true; + } else { + log.info("[dispatchHandler][数据错误未分配]{}", l.getData()); + isSuccess = false; + break; + } + } + //分析数据拉取成功 + CollectConfig t = new CollectConfig(); + t.setId(collect.getId()); + t.setUpdateTime(DateUtil.currentSeconds()); + if (isSuccess) { + t.setEpochNumber(to); + log.info("[dispatchHandler][更新高度]:{}", to); + int i = collectConfigService.updateCollectConfig(t); + if (i <= 0) { + log.error("[dispatchHandler][更新高度失败]:{}", to); + throw new RuntimeException("更新高度失败"); + } + } else { + + } + + } + + private FilterMapVO getFilter(List eventParams) { + // PubSub Subscribe to incoming events and process incoming events + LogFilter filter = new LogFilter(); + //添加监听合约: + List
moList = eventParams.stream().map( + eventParam -> new Address(eventParam.getContract())).collect(Collectors.toList()); + filter.setAddress(moList); + //添加监听方法 + List list = new ArrayList<>(); + //Transfer + Map map = new HashMap<>(eventParams.size()); + eventParams.forEach(eventParam -> { + String evAddress = CfxUtils.getEventKeccak(eventParam.getMethod(), Arrays.asList(eventParam.getParam().split(","))); +// log.info("token:{} method:{} kec:{}", eventParam.getContract(), eventParam.getMethod(), evAddress); + map.put(evAddress + "-" + eventParam.getContract().toLowerCase(), eventParam.getType()); + list.add(evAddress); + }); + List> lists = new ArrayList<>(); + lists.add(list); + filter.setTopics(lists); + FilterMapVO vo = new FilterMapVO(); + vo.setLogFilter(filter); + vo.setMap(map); + return vo; + } } diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftCollectionServiceImpl.java b/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftCollectionServiceImpl.java index 816f1dc..817ad7e 100644 --- a/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftCollectionServiceImpl.java +++ b/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftCollectionServiceImpl.java @@ -1,12 +1,17 @@ package com.conflux.web.controller.nft.service.impl; +import com.conflux.web.controller.collect.domain.CollectConfig; +import com.conflux.web.controller.collect.service.ICollectConfigService; import com.conflux.web.controller.nft.domain.NftCollection; +import com.conflux.web.controller.nft.domain.dto.NftDTO; import com.conflux.web.controller.nft.mapper.NftCollectionMapper; import com.conflux.web.controller.nft.service.INftCollectionService; +import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import java.math.BigInteger; import java.util.List; /** @@ -16,9 +21,12 @@ import java.util.List; * @date 2022-06-02 */ @Service +@Slf4j public class NftCollectionServiceImpl implements INftCollectionService { @Autowired private NftCollectionMapper nftCollectionMapper; + @Autowired + private ICollectConfigService collectConfigService; /** * 查询nft上链 @@ -54,8 +62,8 @@ public class NftCollectionServiceImpl implements INftCollectionService { * @return 结果 */ @Override - public int insertListNftCollection(String unitName,List strings) { - return nftCollectionMapper.insertListNftCollection(unitName,strings); + public int insertListNftCollection(String unitName, List strings) { + return nftCollectionMapper.insertListNftCollection(unitName, strings); } /** @@ -90,4 +98,32 @@ public class NftCollectionServiceImpl implements INftCollectionService { public int deleteNftCollectionById(Long id) { return nftCollectionMapper.deleteNftCollectionById(id); } + + @Override + public void updateCollect(NftDTO nftDTO) { + BigInteger tokenId = nftDTO.getTokenId(); + String hexTokenId = tokenId.toString(16); + if (hexTokenId.length() < 32) { + int len = 32 - hexTokenId.length(); + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < len; i++) { + sb.append("0"); + } + hexTokenId = sb.toString() + hexTokenId; + } + NftCollection nftCollection = nftCollectionMapper.selectNftCollectionByIdSting(hexTokenId); + if (nftCollection == null) { + log.info("[WjMyCollection][Not exist]{}", nftDTO); + return; + } + if (nftCollection.getOnChainStatus() == 2) { + log.info("[WjMyCollection][has mint]{}", nftDTO); + return; + } + int row = nftCollectionMapper.updateByTokenId(hexTokenId); + if (row < 1) { + log.info("[WjMyCollection][updateCollect]{}", nftDTO); + throw new RuntimeException("updateCollect error"); + } + } } diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftInfoV2ImplHandler.java b/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftInfoV2ImplHandler.java index 2c87e15..ca4f71c 100644 --- a/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftInfoV2ImplHandler.java +++ b/conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftInfoV2ImplHandler.java @@ -2,6 +2,7 @@ package com.conflux.web.controller.nft.service.impl; import cn.hutool.core.date.DateUtil; import com.conflux.web.controller.nft.domain.dto.NftDTO; +import com.conflux.web.controller.nft.service.INftCollectionService; import com.conflux.web.controller.nft.service.INftInfoV2Handler; import com.conflux.web.controller.util.CfxUtils; import conflux.web3j.Cfx; @@ -23,31 +24,10 @@ import java.util.List; @Slf4j @Service public class NftInfoV2ImplHandler extends BaseHandler implements INftInfoV2Handler { - -// @Resource -// private WjMyCollectionService wjMyCollectionService; + @Resource + private INftCollectionService nftCollectionService; /** - * { - * "address":"0x8b432262c89b58b1c808beb9df879a6134045c01", - * "topics":[ - * "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", topic pair 0 - * "0x000000000000000000000000186dbddd61814ad28665afce757ae97ccf077a9b", operator 1 - * "0x0000000000000000000000000000000000000000000000000000000000000000", from 2 - * "0x000000000000000000000000186dbddd61814ad28665afce757ae97ccf077a9b" to 3 - * ], - * "data":"0x00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000001", - * "blockHash":"0x4df4cf81f99b9f8668e615fe5f4b4e5cd56ed8ce9fd4c415231d8cfba700bc63", - * "epochNumber":"0x666916", - * "transactionHash":"0xf54026a68b55de515465bc9de30b2f9a5822db627db56014d88fc144f71bb352", - * "transactionIndex":"0x0", - * "logIndex":"0x0", - * "transactionLogIndex":"0x0" - * } - * 0000000000000000000000000000000000000000000000000000000000000005 id - * 0000000000000000000000000000000000000000000000000000000000000001 value - *

- * event Transfer(address indexed operator, address indexed from, address indexed to); * * @param json json */ @@ -59,8 +39,8 @@ public class NftInfoV2ImplHandler extends BaseHandler implements INftInfoV2Handl nftDTO.setTokenId(CfxUtils.getNumber(logInfo.getTopics().get(3))); nftDTO.setEpochNumber(logInfo.getEpochNumber().get().longValue()); nftDTO.setUpdateTime(DateUtil.currentSeconds()); - // - //wjMyCollectionService.updateCollect(nftDTO); + log.info("-------------->json:",json); + nftCollectionService.updateCollect(nftDTO); } public static Address decode(String encodedResult) { diff --git a/conflux-admin/src/main/java/com/conflux/web/controller/util/AESUtil.java b/conflux-admin/src/main/java/com/conflux/web/controller/util/AESUtil.java index 69dbd5e..1e08380 100644 --- a/conflux-admin/src/main/java/com/conflux/web/controller/util/AESUtil.java +++ b/conflux-admin/src/main/java/com/conflux/web/controller/util/AESUtil.java @@ -175,7 +175,7 @@ public final class AESUtil { public static void main(String[] args) { try { - String encrypt = encrypt("cbe3bbb2-8a6e-48e5-9a4f-42377d381b9c","CONFLUX@123"); + String encrypt = encrypt("a92ccc5a-d74c-4b58-9092-c91ff4a4fb9a","CONFLUX@123"); System.err.println(encrypt); } catch (Exception e) { e.printStackTrace(); diff --git a/conflux-quartz/src/main/java/com/conflux/quartz/domain/NftJob.java b/conflux-quartz/src/main/java/com/conflux/quartz/domain/NftJob.java new file mode 100644 index 0000000..e0085b1 --- /dev/null +++ b/conflux-quartz/src/main/java/com/conflux/quartz/domain/NftJob.java @@ -0,0 +1,152 @@ +package com.conflux.quartz.domain; + +import com.conflux.common.annotation.Excel; + +import java.io.Serializable; + +/** + * conflux对象 collect_config + * + * @author conflux + * @date 2022-05-31 + */ +public class NftJob implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * id + */ + private Integer id; + + /** + * node + */ + @Excel(name = "node") + private String node; + + /** + * limit_count + */ + @Excel(name = "limit_count") + private Integer limitCount; + + /** + * chain_id + */ + @Excel(name = "chain_id") + private Integer chainId; + + /** + * epoch_number + */ + @Excel(name = "epoch_number") + private Long epochNumber; + + /** + * on_pause + */ + @Excel(name = "on_pause") + private Boolean onPause; + + /** + * mint_pause + */ + @Excel(name = "mint_pause") + private Boolean mintPause; + + /** + * createTime + */ + @Excel(name = "createTime") + private Long createTime; + + /** + * updateTime + */ + @Excel(name = "updateTime") + private Long updateTime; + + @Excel(name = "帐号状态", readConverterExp = "0=正常,1=停用") + private String status; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getNode() { + return node; + } + + public void setNode(String node) { + this.node = node; + } + + public Integer getLimitCount() { + return limitCount; + } + + public void setLimitCount(Integer limitCount) { + this.limitCount = limitCount; + } + + public Integer getChainId() { + return chainId; + } + + public void setChainId(Integer chainId) { + this.chainId = chainId; + } + + public Long getEpochNumber() { + return epochNumber; + } + + public void setEpochNumber(Long epochNumber) { + this.epochNumber = epochNumber; + } + + public Boolean getOnPause() { + return onPause; + } + + public void setOnPause(Boolean onPause) { + this.onPause = onPause; + } + + public Boolean getMintPause() { + return mintPause; + } + + public void setMintPause(Boolean mintPause) { + this.mintPause = mintPause; + } + + public Long getCreateTime() { + return createTime; + } + + public void setCreateTime(Long createTime) { + this.createTime = createTime; + } + + public Long getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } +} diff --git a/conflux-quartz/src/main/java/com/conflux/quartz/mapper/NftJobMapper.java b/conflux-quartz/src/main/java/com/conflux/quartz/mapper/NftJobMapper.java new file mode 100644 index 0000000..b71de95 --- /dev/null +++ b/conflux-quartz/src/main/java/com/conflux/quartz/mapper/NftJobMapper.java @@ -0,0 +1,69 @@ +package com.conflux.quartz.mapper; + + + +import com.conflux.quartz.domain.NftJob; + +import java.util.List; + +/** + * confluxMapper接口 + * + * @author conflux + * @date 2022-05-31 + */ +public interface NftJobMapper +{ + /** + * 查询conflux + * + * @param id conflux主键 + * @return conflux + */ + public NftJob selectCollectConfigById(Long id); + + /** + * 查询conflux列表 + * + * @param nftjob conflux + * @return conflux集合 + */ + public List selectCollectConfigList(NftJob nftjob); + + /** + * 新增conflux + * + * @param nftjob conflux + * @return 结果 + */ + public int insertCollectConfig(NftJob nftjob); + + /** + * 修改conflux + * + * @param nftjob conflux + * @return 结果 + */ + public int updateCollectConfig(NftJob nftjob); + + /** + * 删除conflux + * + * @param id conflux主键 + * @return 结果 + */ + public int deleteCollectConfigById(Long id); + + /** + * 批量删除conflux + * + * @param ids 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteCollectConfigByIds(Long[] ids); + + + public int updateStatus(Integer id); + + public NftJob selectCollectConfigByStatus(); +} diff --git a/conflux-quartz/src/main/java/com/conflux/quartz/service/INftJobService.java b/conflux-quartz/src/main/java/com/conflux/quartz/service/INftJobService.java new file mode 100644 index 0000000..26d5c41 --- /dev/null +++ b/conflux-quartz/src/main/java/com/conflux/quartz/service/INftJobService.java @@ -0,0 +1,13 @@ +package com.conflux.quartz.service; + +import com.conflux.quartz.domain.NftJob; + +/** + * @Author _007long + * @Date 2022 06 02 + **/ +public interface INftJobService { + public int updateCollectConfig(NftJob collectConfig); + + NftJob selectCollectConfigByStatus(); +} diff --git a/conflux-quartz/src/main/java/com/conflux/quartz/service/impl/NftJobServiceImpl.java b/conflux-quartz/src/main/java/com/conflux/quartz/service/impl/NftJobServiceImpl.java new file mode 100644 index 0000000..0b1336a --- /dev/null +++ b/conflux-quartz/src/main/java/com/conflux/quartz/service/impl/NftJobServiceImpl.java @@ -0,0 +1,28 @@ +package com.conflux.quartz.service.impl; + +import com.conflux.quartz.domain.NftJob; +import com.conflux.quartz.mapper.NftJobMapper; +import com.conflux.quartz.service.INftJobService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +/** + * @Author _007long + * @Date 2022 06 02 + **/ +@Service +public class NftJobServiceImpl implements INftJobService { + @Autowired + NftJobMapper nftJobMapper; + + @Override + public int updateCollectConfig(NftJob collectConfig) { + collectConfig.setUpdateTime(System.currentTimeMillis()); + return nftJobMapper.updateCollectConfig(collectConfig); + } + + @Override + public NftJob selectCollectConfigByStatus() { + return nftJobMapper.selectCollectConfigByStatus(); + } +} diff --git a/conflux-quartz/src/main/java/com/conflux/quartz/task/RyTask.java b/conflux-quartz/src/main/java/com/conflux/quartz/task/RyTask.java index 5fb631b..924a6a2 100644 --- a/conflux-quartz/src/main/java/com/conflux/quartz/task/RyTask.java +++ b/conflux-quartz/src/main/java/com/conflux/quartz/task/RyTask.java @@ -1,28 +1,35 @@ package com.conflux.quartz.task; +import com.conflux.quartz.domain.NftJob; +import com.conflux.quartz.service.INftJobService; import org.springframework.stereotype.Component; import com.conflux.common.utils.StringUtils; +import javax.annotation.Resource; + /** * 定时任务调度测试 - * + * * @author conflux */ @Component("ryTask") -public class RyTask -{ - public void ryMultipleParams(String s, Boolean b, Long l, Double d, Integer i) - { +public class RyTask { + @Resource + private INftJobService iNftJobService; + + public void ryMultipleParams(String s, Boolean b, Long l, Double d, Integer i) { System.out.println(StringUtils.format("执行多参方法: 字符串类型{},布尔类型{},长整型{},浮点型{},整形{}", s, b, l, d, i)); } - public void ryParams(String params) - { + public void ryParams(String params) { System.out.println("执行有参方法:" + params); } - public void ryNoParams() - { - System.out.println("执行无参方法"); + public void ryNoParams() { + NftJob collectConfig = iNftJobService.selectCollectConfigByStatus(); + + + System.out.println("执行无参方法"+collectConfig.toString()); } + } diff --git a/conflux-quartz/src/main/resources/mapper/quartz/NftJobMapper.xml b/conflux-quartz/src/main/resources/mapper/quartz/NftJobMapper.xml new file mode 100644 index 0000000..2e8e33d --- /dev/null +++ b/conflux-quartz/src/main/resources/mapper/quartz/NftJobMapper.xml @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + select id, node, limit_count, chain_id, epoch_number, on_pause, mint_pause, create_time, update_time from collect_config + + + + + + + + + insert into collect_config + + node, + limit_count, + chain_id, + epoch_number, + on_pause, + mint_pause, + create_time, + update_time, + + + #{node}, + #{limitCount}, + #{chainId}, + #{epochNumber}, + #{onPause}, + #{mintPause}, + #{createTime}, + #{updateTime}, + + + + + update collect_config + + node = #{node}, + limit_count = #{limitCount}, + chain_id = #{chainId}, + epoch_number = #{epochNumber}, + on_pause = #{onPause}, + mint_pause = #{mintPause}, + create_time = #{createTime}, + update_time = #{updateTime}, + status = #{status}, + + where id = #{id} + + + update collect_config + set status =1 + where id != #{id} + + + + delete from collect_config where id = #{id} + + + + delete from collect_config where id in + + #{id} + + + \ No newline at end of file diff --git a/conflux-system/src/main/resources/mapper/system/NftCollectionMapper.xml b/conflux-system/src/main/resources/mapper/system/NftCollectionMapper.xml index 125c98d..88a7a06 100644 --- a/conflux-system/src/main/resources/mapper/system/NftCollectionMapper.xml +++ b/conflux-system/src/main/resources/mapper/system/NftCollectionMapper.xml @@ -36,7 +36,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" where id = #{id} - + + insert into nft_collection @@ -80,6 +84,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" where id = #{id} + + UPDATE nft_collection + SET on_chain_status = 2 + where information_table_id = #{hexTokenId} + AND on_chain_status = 1 + delete from nft_collection where id = #{id}