18 changed files with 754 additions and 106 deletions
@ -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; |
||||
|
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
} |
@ -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; |
||||
} |
||||
} |
@ -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(); |
||||
} |
@ -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(); |
||||
} |
@ -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(); |
||||
} |
||||
} |
@ -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()); |
||||
} |
||||
|
||||
} |
||||
|
@ -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> |
Loading…
Reference in new issue