forked from binarywang/WxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from Wechat-Group/develop
Develop
- Loading branch information
Showing
98 changed files
with
2,389 additions
and
649 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
258 changes: 138 additions & 120 deletions
258
...ain/java/com/binarywang/spring/starter/wxjava/mp/config/WxMpStorageAutoConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,148 +1,166 @@ | ||
package com.binarywang.spring.starter.wxjava.mp.config; | ||
|
||
import java.util.Set; | ||
|
||
import org.apache.commons.lang3.StringUtils; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | ||
import org.springframework.context.ApplicationContext; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.data.redis.core.StringRedisTemplate; | ||
|
||
import com.binarywang.spring.starter.wxjava.mp.enums.StorageType; | ||
import com.binarywang.spring.starter.wxjava.mp.properties.RedisProperties; | ||
import com.binarywang.spring.starter.wxjava.mp.properties.WxMpProperties; | ||
import com.google.common.collect.Sets; | ||
|
||
import lombok.RequiredArgsConstructor; | ||
import lombok.extern.slf4j.Slf4j; | ||
import me.chanjar.weixin.common.redis.JedisWxRedisOps; | ||
import me.chanjar.weixin.common.redis.RedisTemplateWxRedisOps; | ||
import me.chanjar.weixin.common.redis.WxRedisOps; | ||
import me.chanjar.weixin.mp.bean.WxMpHostConfig; | ||
import me.chanjar.weixin.mp.config.WxMpConfigStorage; | ||
import me.chanjar.weixin.mp.config.impl.WxMpDefaultConfigImpl; | ||
import me.chanjar.weixin.mp.config.impl.WxMpRedisConfigImpl; | ||
import org.apache.commons.lang3.StringUtils; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | ||
import org.springframework.context.ApplicationContext; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.data.redis.core.StringRedisTemplate; | ||
import redis.clients.jedis.JedisPool; | ||
import redis.clients.jedis.JedisPoolAbstract; | ||
import redis.clients.jedis.JedisPoolConfig; | ||
import redis.clients.jedis.JedisSentinelPool; | ||
|
||
import java.util.Set; | ||
|
||
/** | ||
* 微信公众号存储策略自动配置. | ||
* | ||
* @author someone | ||
*/ | ||
@Slf4j | ||
@Configuration | ||
@RequiredArgsConstructor | ||
public class WxMpStorageAutoConfiguration { | ||
private final ApplicationContext applicationContext; | ||
|
||
private final WxMpProperties wxMpProperties; | ||
|
||
@Value("${wx.mp.config-storage.redis.host:") | ||
private String redisHost; | ||
|
||
@Value("${wx.mp.configStorage.redis.host:") | ||
private String redisHost2; | ||
|
||
@Bean | ||
@ConditionalOnMissingBean(WxMpConfigStorage.class) | ||
public WxMpConfigStorage wxMpConfigStorage() { | ||
StorageType type = wxMpProperties.getConfigStorage().getType(); | ||
WxMpConfigStorage config; | ||
switch (type) { | ||
case Jedis: | ||
config = jedisConfigStorage(); | ||
break; | ||
case RedisTemplate: | ||
config = redisTemplateConfigStorage(); | ||
break; | ||
default: | ||
config = defaultConfigStorage(); | ||
break; | ||
} | ||
// wx host config | ||
if (null != wxMpProperties.getHosts() && StringUtils.isNotEmpty(wxMpProperties.getHosts().getApiHost())) { | ||
WxMpHostConfig hostConfig = new WxMpHostConfig(); | ||
hostConfig.setApiHost(wxMpProperties.getHosts().getApiHost()); | ||
hostConfig.setMpHost(wxMpProperties.getHosts().getMpHost()); | ||
hostConfig.setOpenHost(wxMpProperties.getHosts().getOpenHost()); | ||
config.setHostConfig(hostConfig); | ||
} | ||
return config; | ||
} | ||
|
||
private WxMpConfigStorage defaultConfigStorage() { | ||
WxMpDefaultConfigImpl config = new WxMpDefaultConfigImpl(); | ||
setWxMpInfo(config); | ||
return config; | ||
} | ||
|
||
private WxMpConfigStorage jedisConfigStorage() { | ||
JedisPoolAbstract jedisPool; | ||
if (StringUtils.isNotEmpty(redisHost) || StringUtils.isNotEmpty(redisHost2)) { | ||
jedisPool = getJedisPool(); | ||
} else { | ||
jedisPool = applicationContext.getBean(JedisPool.class); | ||
} | ||
WxRedisOps redisOps = new JedisWxRedisOps(jedisPool); | ||
WxMpRedisConfigImpl wxMpRedisConfig = new WxMpRedisConfigImpl(redisOps, | ||
wxMpProperties.getConfigStorage().getKeyPrefix()); | ||
setWxMpInfo(wxMpRedisConfig); | ||
return wxMpRedisConfig; | ||
} | ||
|
||
private WxMpConfigStorage redisTemplateConfigStorage() { | ||
StringRedisTemplate redisTemplate = applicationContext.getBean(StringRedisTemplate.class); | ||
WxRedisOps redisOps = new RedisTemplateWxRedisOps(redisTemplate); | ||
WxMpRedisConfigImpl wxMpRedisConfig = new WxMpRedisConfigImpl(redisOps, | ||
wxMpProperties.getConfigStorage().getKeyPrefix()); | ||
setWxMpInfo(wxMpRedisConfig); | ||
return wxMpRedisConfig; | ||
} | ||
|
||
private void setWxMpInfo(WxMpDefaultConfigImpl config) { | ||
WxMpProperties properties = wxMpProperties; | ||
WxMpProperties.ConfigStorage configStorageProperties = properties.getConfigStorage(); | ||
config.setAppId(properties.getAppId()); | ||
config.setSecret(properties.getSecret()); | ||
config.setToken(properties.getToken()); | ||
config.setAesKey(properties.getAesKey()); | ||
|
||
config.setHttpProxyHost(configStorageProperties.getHttpProxyHost()); | ||
config.setHttpProxyUsername(configStorageProperties.getHttpProxyUsername()); | ||
config.setHttpProxyPassword(configStorageProperties.getHttpProxyPassword()); | ||
if (configStorageProperties.getHttpProxyPort() != null) { | ||
config.setHttpProxyPort(configStorageProperties.getHttpProxyPort()); | ||
} | ||
} | ||
|
||
private JedisPoolAbstract getJedisPool() { | ||
WxMpProperties.ConfigStorage storage = wxMpProperties.getConfigStorage(); | ||
RedisProperties redis = storage.getRedis(); | ||
|
||
JedisPoolConfig config = new JedisPoolConfig(); | ||
if (redis.getMaxActive() != null) { | ||
config.setMaxTotal(redis.getMaxActive()); | ||
} | ||
if (redis.getMaxIdle() != null) { | ||
config.setMaxIdle(redis.getMaxIdle()); | ||
} | ||
if (redis.getMaxWaitMillis() != null) { | ||
config.setMaxWaitMillis(redis.getMaxWaitMillis()); | ||
} | ||
if (redis.getMinIdle() != null) { | ||
config.setMinIdle(redis.getMinIdle()); | ||
} | ||
config.setTestOnBorrow(true); | ||
config.setTestWhileIdle(true); | ||
if (StringUtils.isNotEmpty(redis.getSentinelIps())) { | ||
Set<String> sentinels = Sets.newHashSet(redis.getSentinelIps().split(",")); | ||
return new JedisSentinelPool(redis.getSentinelName(), sentinels); | ||
} | ||
|
||
return new JedisPool(config, redis.getHost(), redis.getPort(), redis.getTimeout(), redis.getPassword(), | ||
redis.getDatabase()); | ||
} | ||
private final ApplicationContext applicationContext; | ||
|
||
private final WxMpProperties wxMpProperties; | ||
|
||
@Value("${wx.mp.config-storage.redis.host:") | ||
private String redisHost; | ||
|
||
@Value("${wx.mp.configStorage.redis.host:") | ||
private String redisHost2; | ||
|
||
@Bean | ||
@ConditionalOnMissingBean(WxMpConfigStorage.class) | ||
public WxMpConfigStorage wxMpConfigStorage() { | ||
StorageType type = wxMpProperties.getConfigStorage().getType(); | ||
WxMpConfigStorage config; | ||
switch (type) { | ||
case Jedis: | ||
config = jedisConfigStorage(); | ||
break; | ||
case RedisTemplate: | ||
config = redisTemplateConfigStorage(); | ||
break; | ||
default: | ||
config = defaultConfigStorage(); | ||
break; | ||
} | ||
// wx host config | ||
if (null != wxMpProperties.getHosts() && StringUtils.isNotEmpty(wxMpProperties.getHosts().getApiHost())) { | ||
WxMpHostConfig hostConfig = new WxMpHostConfig(); | ||
hostConfig.setApiHost(wxMpProperties.getHosts().getApiHost()); | ||
hostConfig.setMpHost(wxMpProperties.getHosts().getMpHost()); | ||
hostConfig.setOpenHost(wxMpProperties.getHosts().getOpenHost()); | ||
config.setHostConfig(hostConfig); | ||
} | ||
return config; | ||
} | ||
|
||
private WxMpConfigStorage defaultConfigStorage() { | ||
WxMpDefaultConfigImpl config = new WxMpDefaultConfigImpl(); | ||
setWxMpInfo(config); | ||
return config; | ||
} | ||
|
||
private WxMpConfigStorage jedisConfigStorage() { | ||
JedisPoolAbstract jedisPool; | ||
if (StringUtils.isNotEmpty(redisHost) || StringUtils.isNotEmpty(redisHost2)) { | ||
jedisPool = getJedisPool(); | ||
} else { | ||
jedisPool = applicationContext.getBean(JedisPool.class); | ||
} | ||
WxRedisOps redisOps = new JedisWxRedisOps(jedisPool); | ||
WxMpRedisConfigImpl wxMpRedisConfig = new WxMpRedisConfigImpl(redisOps, | ||
wxMpProperties.getConfigStorage().getKeyPrefix()); | ||
setWxMpInfo(wxMpRedisConfig); | ||
return wxMpRedisConfig; | ||
} | ||
|
||
private WxMpConfigStorage redisTemplateConfigStorage() { | ||
StringRedisTemplate redisTemplate = null; | ||
try { | ||
redisTemplate = applicationContext.getBean(StringRedisTemplate.class); | ||
} catch (Exception e) { | ||
log.error(e.getMessage(), e); | ||
} | ||
try { | ||
if (null == redisTemplate) { | ||
redisTemplate = (StringRedisTemplate) applicationContext.getBean("stringRedisTemplate"); | ||
} | ||
} catch (Exception e) { | ||
log.error(e.getMessage(), e); | ||
} | ||
|
||
if (null == redisTemplate) { | ||
redisTemplate = (StringRedisTemplate) applicationContext.getBean("redisTemplate"); | ||
} | ||
|
||
WxRedisOps redisOps = new RedisTemplateWxRedisOps(redisTemplate); | ||
WxMpRedisConfigImpl wxMpRedisConfig = new WxMpRedisConfigImpl(redisOps, | ||
wxMpProperties.getConfigStorage().getKeyPrefix()); | ||
|
||
setWxMpInfo(wxMpRedisConfig); | ||
return wxMpRedisConfig; | ||
} | ||
|
||
private void setWxMpInfo(WxMpDefaultConfigImpl config) { | ||
WxMpProperties properties = wxMpProperties; | ||
WxMpProperties.ConfigStorage configStorageProperties = properties.getConfigStorage(); | ||
config.setAppId(properties.getAppId()); | ||
config.setSecret(properties.getSecret()); | ||
config.setToken(properties.getToken()); | ||
config.setAesKey(properties.getAesKey()); | ||
|
||
config.setHttpProxyHost(configStorageProperties.getHttpProxyHost()); | ||
config.setHttpProxyUsername(configStorageProperties.getHttpProxyUsername()); | ||
config.setHttpProxyPassword(configStorageProperties.getHttpProxyPassword()); | ||
if (configStorageProperties.getHttpProxyPort() != null) { | ||
config.setHttpProxyPort(configStorageProperties.getHttpProxyPort()); | ||
} | ||
} | ||
|
||
private JedisPoolAbstract getJedisPool() { | ||
WxMpProperties.ConfigStorage storage = wxMpProperties.getConfigStorage(); | ||
RedisProperties redis = storage.getRedis(); | ||
|
||
JedisPoolConfig config = new JedisPoolConfig(); | ||
if (redis.getMaxActive() != null) { | ||
config.setMaxTotal(redis.getMaxActive()); | ||
} | ||
if (redis.getMaxIdle() != null) { | ||
config.setMaxIdle(redis.getMaxIdle()); | ||
} | ||
if (redis.getMaxWaitMillis() != null) { | ||
config.setMaxWaitMillis(redis.getMaxWaitMillis()); | ||
} | ||
if (redis.getMinIdle() != null) { | ||
config.setMinIdle(redis.getMinIdle()); | ||
} | ||
config.setTestOnBorrow(true); | ||
config.setTestWhileIdle(true); | ||
if (StringUtils.isNotEmpty(redis.getSentinelIps())) { | ||
Set<String> sentinels = Sets.newHashSet(redis.getSentinelIps().split(",")); | ||
return new JedisSentinelPool(redis.getSentinelName(), sentinels); | ||
} | ||
|
||
return new JedisPool(config, redis.getHost(), redis.getPort(), redis.getTimeout(), redis.getPassword(), | ||
redis.getDatabase()); | ||
} | ||
} |
22 changes: 11 additions & 11 deletions
22
...-starter/src/main/java/com/binarywang/spring/starter/wxjava/mp/properties/HostConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
package com.binarywang.spring.starter.wxjava.mp.properties; | ||
|
||
import java.io.Serializable; | ||
|
||
import lombok.Data; | ||
|
||
import java.io.Serializable; | ||
|
||
@Data | ||
public class HostConfig implements Serializable { | ||
private static final long serialVersionUID = -4172767630740346001L; | ||
|
||
private String apiHost; | ||
private String openHost; | ||
private String mpHost; | ||
|
||
private static final long serialVersionUID = -4172767630740346001L; | ||
|
||
private String apiHost; | ||
|
||
private String openHost; | ||
|
||
private String mpHost; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.