Browse Source

完成铸造

master
long 3 years ago
parent
commit
d528c4cd2b
  1. 10
      conflux-admin/src/main/java/com/conflux/RuoYiApplication.java
  2. 7
      conflux-admin/src/main/java/com/conflux/web/controller/api/ConfluxAipController.java
  3. 1
      conflux-admin/src/main/java/com/conflux/web/controller/collect/service/ICollectConfigService.java
  4. 40
      conflux-admin/src/main/java/com/conflux/web/controller/event/EventHandler.java
  5. 27
      conflux-admin/src/main/java/com/conflux/web/controller/nft/domain/EventParam.java
  6. 4
      conflux-admin/src/main/java/com/conflux/web/controller/nft/mapper/NftCollectionMapper.java
  7. 3
      conflux-admin/src/main/java/com/conflux/web/controller/nft/service/INftCollectionService.java
  8. 295
      conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/ConfluxServiceImpl.java
  9. 40
      conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftCollectionServiceImpl.java
  10. 30
      conflux-admin/src/main/java/com/conflux/web/controller/nft/service/impl/NftInfoV2ImplHandler.java
  11. 2
      conflux-admin/src/main/java/com/conflux/web/controller/util/AESUtil.java
  12. 152
      conflux-quartz/src/main/java/com/conflux/quartz/domain/NftJob.java
  13. 69
      conflux-quartz/src/main/java/com/conflux/quartz/mapper/NftJobMapper.java
  14. 13
      conflux-quartz/src/main/java/com/conflux/quartz/service/INftJobService.java
  15. 28
      conflux-quartz/src/main/java/com/conflux/quartz/service/impl/NftJobServiceImpl.java
  16. 27
      conflux-quartz/src/main/java/com/conflux/quartz/task/RyTask.java
  17. 100
      conflux-quartz/src/main/resources/mapper/quartz/NftJobMapper.xml
  18. 12
      conflux-system/src/main/resources/mapper/system/NftCollectionMapper.xml

10
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;
}
}

7
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")

1
conflux-admin/src/main/java/com/conflux/web/controller/collect/service/ICollectConfigService.java

@ -73,4 +73,5 @@ public interface ICollectConfigService
* @return
*/
public CollectConfig selectCollectConfigByStatus();
}

40
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;
}

27
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;
/**
* <p>
*
* </p>
*
* @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;
}

4
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);
}

3
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);
}

295
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<String> list = Arrays.asList(checkArgs.getIds());
long start = DateUtil.currentSeconds();
log.info("[--------------------->mintNft][time]{}", new SimpleDateFormat("HH:mm:ss").format(new Date(start * 1000)));
List<BigInteger> 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<String> list = Arrays.asList(checkArgs.getIds());
long start = DateUtil.currentSeconds();
log.info("[--------------------->mintNft][time]{}", new SimpleDateFormat("HH:mm:ss").format(new Date(start * 1000)));
List<BigInteger> 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<EventParam> 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<List<Log>, 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<Log> 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<EventParam> eventParams) {
// PubSub Subscribe to incoming events and process incoming events
LogFilter filter = new LogFilter();
//添加监听合约:
List<Address> moList = eventParams.stream().map(
eventParam -> new Address(eventParam.getContract())).collect(Collectors.toList());
filter.setAddress(moList);
//添加监听方法
List<String> list = new ArrayList<>();
//Transfer
Map<String, Integer> 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<List<String>> lists = new ArrayList<>();
lists.add(list);
filter.setTopics(lists);
FilterMapVO vo = new FilterMapVO();
vo.setLogFilter(filter);
vo.setMap(map);
return vo;
}
}

40
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<String> strings) {
return nftCollectionMapper.insertListNftCollection(unitName,strings);
public int insertListNftCollection(String unitName, List<String> 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");
}
}
}

30
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
* <p>
* 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) {

2
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();

152
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;
}
}

69
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<NftJob> 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();
}

13
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();
}

28
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();
}
}

27
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());
}
}

100
conflux-quartz/src/main/resources/mapper/quartz/NftJobMapper.xml

@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.conflux.quartz.mapper.NftJobMapper">
<resultMap type="NftJob" id="CollectConfigResult">
<result property="id" column="id" />
<result property="node" column="node" />
<result property="limitCount" column="limit_count" />
<result property="chainId" column="chain_id" />
<result property="epochNumber" column="epoch_number" />
<result property="onPause" column="on_pause" />
<result property="mintPause" column="mint_pause" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
</resultMap>
<sql id="selectCollectConfigVo">
select id, node, limit_count, chain_id, epoch_number, on_pause, mint_pause, create_time, update_time from collect_config
</sql>
<select id="selectCollectConfigList" parameterType="NftJob" resultMap="CollectConfigResult">
<include refid="selectCollectConfigVo"/>
<where>
<if test="node != null and node != ''"> and node = #{node}</if>
<if test="limitCount != null "> and limit_count = #{limitCount}</if>
<if test="chainId != null "> and chain_id = #{chainId}</if>
<if test="epochNumber != null "> and epoch_number = #{epochNumber}</if>
<if test="onPause != null "> and on_pause = #{onPause}</if>
<if test="mintPause != null "> and mint_pause = #{mintPause}</if>
</where>
</select>
<select id="selectCollectConfigById" parameterType="Long" resultMap="CollectConfigResult">
<include refid="selectCollectConfigVo"/>
where id = #{id}
</select>
<select id="selectCollectConfigByStatus"
resultMap="CollectConfigResult">
<include refid="selectCollectConfigVo"/>
where status='0'
</select>
<insert id="insertCollectConfig" parameterType="NftJob" useGeneratedKeys="true" keyProperty="id">
insert into collect_config
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="node != null">node,</if>
<if test="limitCount != null">limit_count,</if>
<if test="chainId != null">chain_id,</if>
<if test="epochNumber != null">epoch_number,</if>
<if test="onPause != null">on_pause,</if>
<if test="mintPause != null">mint_pause,</if>
<if test="createTime != null">create_time,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="node != null">#{node},</if>
<if test="limitCount != null">#{limitCount},</if>
<if test="chainId != null">#{chainId},</if>
<if test="epochNumber != null">#{epochNumber},</if>
<if test="onPause != null">#{onPause},</if>
<if test="mintPause != null">#{mintPause},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateCollectConfig" parameterType="NftJob">
update collect_config
<trim prefix="SET" suffixOverrides=",">
<if test="node != null">node = #{node},</if>
<if test="limitCount != null">limit_count = #{limitCount},</if>
<if test="chainId != null">chain_id = #{chainId},</if>
<if test="epochNumber != null">epoch_number = #{epochNumber},</if>
<if test="onPause != null">on_pause = #{onPause},</if>
<if test="mintPause != null">mint_pause = #{mintPause},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="status != null">status = #{status},</if>
</trim>
where id = #{id}
</update>
<update id="updateStatus">
update collect_config
set status =1
where id != #{id}
</update>
<delete id="deleteCollectConfigById" parameterType="Long">
delete from collect_config where id = #{id}
</delete>
<delete id="deleteCollectConfigByIds" parameterType="String">
delete from collect_config where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

12
conflux-system/src/main/resources/mapper/system/NftCollectionMapper.xml

@ -36,7 +36,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include refid="selectNftCollectionVo"/>
where id = #{id}
</select>
<select id="selectNftCollectionByIdSting" resultMap="NftCollectionResult">
<include refid="selectNftCollectionVo"/>
where information_table_id = #{hexTokenId}
</select>
<insert id="insertNftCollection" parameterType="NftCollection" useGeneratedKeys="true" keyProperty="id">
insert into nft_collection
<trim prefix="(" suffix=")" suffixOverrides=",">
@ -80,6 +84,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</trim>
where id = #{id}
</update>
<update id="updateByTokenId">
UPDATE nft_collection
SET on_chain_status = 2
where information_table_id = #{hexTokenId}
AND on_chain_status = 1
</update>
<delete id="deleteNftCollectionById" parameterType="Long">
delete from nft_collection where id = #{id}

Loading…
Cancel
Save