xiaoyong931011
2021-05-12 f1ad6e801cc68cfe90efb620df3484293044aea3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package com.xcong.excoin.quartz.job;
 
import cn.hutool.core.collection.CollUtil;
import com.alibaba.fastjson.JSONObject;
import com.xcong.excoin.modules.yunding.dao.YdBasicSettingDao;
import com.xcong.excoin.modules.yunding.entity.YdBasicSettingEntity;
import com.xcong.excoin.modules.yunding.service.XchProfitService;
import com.xcong.excoin.utils.RedisUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
 
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.List;
 
/**
 * @author xxx
 **/
@Slf4j
@Component
@ConditionalOnProperty(prefix = "app", name = "xch-job", havingValue = "true")
public class XchBaseDataUpdateJob {
 
    @Autowired
    private YdBasicSettingDao ydBasicSettingDao;
    @Autowired
    private RedisUtils redisUtils;
    @Autowired
    private XchProfitService xchProfitService;
 
    @Scheduled(cron = "* */1 * * * ? ")
    public void baseDataUpdate() {
        // 请求价格等数据
        String result = getUrlResponse("https://api2.chiaexplorer.com/blockchainSummary");
        // 每t预计收益
        String profitPerT = getUrlResponse("https://api2.chiaexplorer.com/chart/xchTibDay?period=2w");
 
        String xchPrice24HStr = getUrlResponse("https://api2.chiaexplorer.com/chart/xchPriceChart?period=24h");
        JSONObject jsonObject = (JSONObject) JSONObject.parse(result);
        JSONObject perTObject = (JSONObject) JSONObject.parse(profitPerT);
        JSONObject xchPrice24HObj = (JSONObject) JSONObject.parse(xchPrice24HStr);
        List<YdBasicSettingEntity> list = ydBasicSettingDao.selectList(null);
        if (CollUtil.isNotEmpty(list)) {
            YdBasicSettingEntity settingEntity = list.get(0);
            String netspaceStr = jsonObject.getString("netspace");
            BigDecimal baseUnit = BigDecimal.valueOf(1024);
            BigDecimal netspace = new BigDecimal(netspaceStr).divide(baseUnit.multiply(baseUnit.multiply(baseUnit.multiply(baseUnit.multiply(baseUnit)))), 2, BigDecimal.ROUND_DOWN);
            settingEntity.setAllPower(netspace);
 
            BigDecimal newPrice = new BigDecimal(jsonObject.getString("price"));
            redisUtils.set("XCH_NEW_PRICE", newPrice);
            settingEntity.setCurrentPrice(newPrice);
 
            List<String> xchPrice24H = JSONObject.parseArray(xchPrice24HObj.getString("data"), String.class);
            BigDecimal newestPrice = new BigDecimal(xchPrice24H.get(xchPrice24H.size() - 1));
            BigDecimal lastPrice = new BigDecimal(xchPrice24H.get(xchPrice24H.size() - 1 -24));
            BigDecimal upOrDown = newestPrice.subtract(lastPrice).multiply(BigDecimal.valueOf(100)).divide(lastPrice, 2, BigDecimal.ROUND_HALF_UP);
            redisUtils.set("XCH_UP_DOWN", upOrDown);
            List<String> data = JSONObject.parseArray(perTObject.getString("data"), String.class);
            settingEntity.setPrifitT(new BigDecimal(data.get(0)));
            settingEntity.setProfitDay(new BigDecimal(data.get(0)).multiply(BigDecimal.valueOf(1024)));
 
            ydBasicSettingDao.updateById(settingEntity);
        }
    }
 
    private String getUrlResponse(String url) {
        BufferedReader reader = null;
        String result = null;
        StringBuffer sbf = new StringBuffer();
        // 模拟浏览器
        String userAgent = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36";
        try {
            System.setProperty("https.protocols", "TLSv1,TLSv1.1,TLSv1.2");
            URL request = new URL(url);
            HttpURLConnection connection = (HttpURLConnection) request.openConnection();
            connection.setRequestMethod("GET");
            connection.setReadTimeout(30000);
            connection.setConnectTimeout(30000);
            connection.setRequestProperty("User-agent", userAgent);
            connection.connect();
            InputStream is = connection.getInputStream();
            reader = new BufferedReader(new InputStreamReader(is, "UTF-8"));
            String strRead = null;
            while ((strRead = reader.readLine()) != null) {
                sbf.append(strRead);
                sbf.append("\r\n");
            }
            reader.close();
            result = sbf.toString();
 
        } catch (Exception e) {
            e.printStackTrace();
        }
 
        return result;
    }
 
//    @Scheduled(cron = "0 0 23 * * ?")
    public void xchProfitJob() {
        log.info("XCH收益返利任务");
//        xchProfitService.xchProfitDistributor();
    }
 
//    @Scheduled(cron = "0 0 22 * * ?")
    public void usdtProfitJob() {
        log.info("USDT返利任务");
        xchProfitService.agentUsdtProfitDistributor();
    }
}