mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🎨 增加switchoverTo方法在mpId不存在时的Storage实例获取获取
This commit is contained in:
parent
bcc4839ff0
commit
90e1a9ebc1
@ -20,6 +20,7 @@ import me.chanjar.weixin.mp.config.WxMpConfigStorage;
|
|||||||
import me.chanjar.weixin.mp.enums.WxMpApiUrl;
|
import me.chanjar.weixin.mp.enums.WxMpApiUrl;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import java.util.function.Function;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 微信公众号API的Service.
|
* 微信公众号API的Service.
|
||||||
@ -393,6 +394,8 @@ public interface WxMpService extends WxService {
|
|||||||
*/
|
*/
|
||||||
boolean switchover(String mpId);
|
boolean switchover(String mpId);
|
||||||
|
|
||||||
|
boolean switchover(String mpId, Function<String, WxMpConfigStorage> func);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 进行相应的公众号切换.
|
* 进行相应的公众号切换.
|
||||||
*
|
*
|
||||||
@ -401,6 +404,8 @@ public interface WxMpService extends WxService {
|
|||||||
*/
|
*/
|
||||||
WxMpService switchoverTo(String mpId);
|
WxMpService switchoverTo(String mpId);
|
||||||
|
|
||||||
|
WxMpService switchoverTo(String mpId, Function<String, WxMpConfigStorage> func);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 返回客服接口方法实现类,以方便调用其各个接口.
|
* 返回客服接口方法实现类,以方便调用其各个接口.
|
||||||
*
|
*
|
||||||
|
@ -43,6 +43,7 @@ import java.util.HashMap;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.locks.Lock;
|
import java.util.concurrent.locks.Lock;
|
||||||
|
import java.util.function.Function;
|
||||||
|
|
||||||
import static me.chanjar.weixin.mp.enums.WxMpApiUrl.Other.*;
|
import static me.chanjar.weixin.mp.enums.WxMpApiUrl.Other.*;
|
||||||
|
|
||||||
@ -156,6 +157,10 @@ public abstract class BaseWxMpServiceImpl<H, P> implements WxMpService, RequestH
|
|||||||
@Setter
|
@Setter
|
||||||
private WxMpFreePublishService freePublishService = new WxMpFreePublishServiceImpl(this);
|
private WxMpFreePublishService freePublishService = new WxMpFreePublishServiceImpl(this);
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
private Function<String, WxMpConfigStorage> configStorageFunction;
|
||||||
|
|
||||||
private Map<String, WxMpConfigStorage> configStorageMap = new HashMap<>();
|
private Map<String, WxMpConfigStorage> configStorageMap = new HashMap<>();
|
||||||
|
|
||||||
private int retrySleepMillis = 1000;
|
private int retrySleepMillis = 1000;
|
||||||
@ -575,21 +580,43 @@ public abstract class BaseWxMpServiceImpl<H, P> implements WxMpService, RequestH
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WxMpService switchoverTo(String mpId) {
|
public WxMpService switchoverTo(String mpId) {
|
||||||
|
return switchoverTo(mpId, configStorageFunction);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public WxMpService switchoverTo(String mpId, Function<String, WxMpConfigStorage> func) {
|
||||||
if (this.configStorageMap.containsKey(mpId)) {
|
if (this.configStorageMap.containsKey(mpId)) {
|
||||||
WxMpConfigStorageHolder.set(mpId);
|
WxMpConfigStorageHolder.set(mpId);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
if (func != null) {
|
||||||
|
WxMpConfigStorage storage = func.apply(mpId);
|
||||||
|
if (storage != null) {
|
||||||
|
this.addConfigStorage(mpId, storage);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
throw new WxRuntimeException(String.format("无法找到对应【%s】的公众号配置信息,请核实!", mpId));
|
throw new WxRuntimeException(String.format("无法找到对应【%s】的公众号配置信息,请核实!", mpId));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean switchover(String mpId) {
|
public boolean switchover(String mpId) {
|
||||||
|
return switchover(mpId, configStorageFunction);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean switchover(String mpId, Function<String, WxMpConfigStorage> func) {
|
||||||
if (this.configStorageMap.containsKey(mpId)) {
|
if (this.configStorageMap.containsKey(mpId)) {
|
||||||
WxMpConfigStorageHolder.set(mpId);
|
WxMpConfigStorageHolder.set(mpId);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (func != null) {
|
||||||
|
WxMpConfigStorage storage = func.apply(mpId);
|
||||||
|
if (storage != null) {
|
||||||
|
this.addConfigStorage(mpId, storage);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
log.error("无法找到对应【{}】的公众号配置信息,请核实!", mpId);
|
log.error("无法找到对应【{}】的公众号配置信息,请核实!", mpId);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user