潘志宝
2024-11-11 31bd2c17088ec34072deabe106ff1d695c8b2b49
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
package com.iailab.framework.signature.core.redis;
 
import lombok.AllArgsConstructor;
import org.springframework.data.redis.core.StringRedisTemplate;
 
import java.util.concurrent.TimeUnit;
 
/**
 * HTTP API 签名 Redis DAO
 *
 * @author Zhougang
 */
@AllArgsConstructor
public class ApiSignatureRedisDAO {
 
    private final StringRedisTemplate stringRedisTemplate;
 
    /**
     * 验签随机数
     *
     * KEY 格式:signature_nonce:%s // 参数为 随机数
     * VALUE 格式:String
     * 过期时间:不固定
     */
    private static final String SIGNATURE_NONCE = "api_signature_nonce:%s";
 
    /**
     * 签名密钥
     *
     * HASH 结构
     * KEY 格式:%s // 参数为 appid
     * VALUE 格式:String
     * 过期时间:永不过期(预加载到 Redis)
     */
    private static final String SIGNATURE_APPID = "api_signature_app";
 
    // ========== 验签随机数 ==========
 
    public String getNonce(String nonce) {
        return stringRedisTemplate.opsForValue().get(formatNonceKey(nonce));
    }
 
    public void setNonce(String nonce, int time, TimeUnit timeUnit) {
        stringRedisTemplate.opsForValue().set(formatNonceKey(nonce), "", time, timeUnit);
    }
 
    private static String formatNonceKey(String key) {
        return String.format(SIGNATURE_NONCE, key);
    }
 
    // ========== 签名密钥 ==========
 
    public String getAppSecret(String appId) {
        return (String) stringRedisTemplate.opsForHash().get(SIGNATURE_APPID, appId);
    }
 
}