asp.net core为IHttpClientFactory添加动态命名配置
比如如何使用ihttpclientfactory动态添加cer证书
有三种方法推荐方法
- 方法一: 推荐的做法是这样子
services.addhttpclient("a业务").configureprimaryhttpmessagehandler(...a业务证书) services.addhttpclient("b业务").configureprimaryhttpmessagehandler(...b业务证书) serviceprovider.getservice<ihttpclientfactory>().createclient("a业务")....
- 方法二:
如果你要完全自定义则可以用 new system.net.http.httpclient(handler)
- 方法三:
在或者用骚操作, 替换配置的方式也可以 逻辑就是实现一个自己的httpclientfactoryoptions, 然后动态生成它.
get_cert_handler_by_name 是你自己的方法,可以根据任何是否使用区别业务名称a,b,c new 一个handler.
但是要注意, 这样子所有从serviceprovider获取httpclient都会走到这个自定义配置类上面, 要做好兼容性.
class myclass : ipostconfigureoptions<httpclientfactoryoptions> { public void postconfigure(string name, httpclientfactoryoptions options) => options.httpmessagehandlerbuilderactions.add(p => p.primaryhandler = get_cert_handler_by_name(name)); } //注册这个服务 services.addsingleton<microsoft.extensions.options.ipostconfigureoptions<microsoft.extensions.http.httpclientfactoryoptions>, myclass>();
上述是一些前情概要, 那么接下来我们就来实现这个需求.
秒想到一个方法, 我们可以直接new httpclient()
, 在每一次要使用的时候都直接来一个, 简单粗暴.
秒想到第二个方法, 又或者用一个dictionary<string,httpclient>
根据名字缓存client对象.
但是前者性能是个问题,而且涉及到端口的占用释放问题, 在调用量稍大的情况下得凉凉, 后者则是有已知的问题httpclient对象没法感知dns的变更.
其他一些更不靠谱的方法还有: 使用代码配置方式(services.addhttpclient("callback provider side").configureprimaryhttpmessagehandler()
)配置所有证书, 还有把所有证书都安装的本机上并设置为信任证书.
那么能除了上面这些不靠谱的方式(或者说有致命缺陷的方式), 还有靠谱的么, 那当然是有的, 例如运行时的动态配置实现方案.
所以, 接下来, 我来推荐 2 种方式式,就是我们的ihttpmessagehandlerbuilderfilter
和ipostconfigureoptions
.
官方有什么推荐么?
针对如何为httpclient对象添加证书, 官方文档的实现是:使用证书和来自 ihttpclientfactory 的命名 httpclient 实现 httpclient 和 使用证书和 httpclienthandler 实现 httpclient, 但是在这里显然没法解决我们的运行时配置的需求, 但是它给出了一条线索, 那就是命名配置. 它可以为我们的每一个不同的provider提供自定义配置. 只要我们能为每一个不同的provider能提供运行时配置即可, 接下来就是源码阅读时间了:
下文中的所有代码都来自netcore 3.1, 并且仅copy关键代码, 完整代码可以前往github查看.
ihttpclientfactory.createclient是如何将httpclient创建出来的?
- 每次
createclient
出来的都是一个新的httpclient
实例 - 在
createhandler
中的_activehandlers
将为我们缓存我们的handler, 默认是2分钟(定义在httpclientfactoryoptions.handlerlifetime
)- 这里有一个知识点就是如果我的请求刚好在过期时间前一点点获取到这个缓存的对象,就是有可能我当前的请求还在进行中, 但是2分钟过去后这个handler就要被回收的. 那官方是如何替我们解决这个可能的bug的呢, 请查看文章cleaning up expired handlers, 我就不赘述了, 关键点在于用了一个
weakreference
- 这里有一个知识点就是如果我的请求刚好在过期时间前一点点获取到这个缓存的对象,就是有可能我当前的请求还在进行中, 但是2分钟过去后这个handler就要被回收的. 那官方是如何替我们解决这个可能的bug的呢, 请查看文章cleaning up expired handlers, 我就不赘述了, 关键点在于用了一个
-
createhandlerentry
方法则是真正的创建以及配置我们的handlers的地方.- 从
iconfiguration
获得一个httpclientfactoryoptions
对象 - 应用
ihttpmessagehandlerbuilderfilter
- 应用
httpmessagehandlerbuilderactions
- 从
//microsoft.extensions.http.defaulthttpclientfactory public httpclient createclient(string name) { httpclient httpclient = new httpclient(this.createhandler(name), disposehandler: false); return httpclient; } public httpmessagehandler createhandler(string name) { activehandlertrackingentry value = this._activehandlers.getoradd(name, this._entryfactory).value; //_entryfactory可以直接理解为是createhandlerentry方法.它真实的类型是lazy<>(createhandlerentry,lazythreadsafetymode.executionandpublication)的, 也就是并发安全的调用createhandlerentry. return value.handler; } internal activehandlertrackingentry createhandlerentry(string name) { httpclientfactoryoptions options = this._optionsmonitor.get(name); httpmessagehandlerbuilder requiredservice = provider.getrequiredservice<httpmessagehandlerbuilder>(); requiredservice.name = name; action<httpmessagehandlerbuilder> action = configure; // 扩展点二 httpclientfactoryoptions.httpmessagehandlerbuilderactions for (int num = this._filters.length - 1; num >= 0; num--) { action = this._filters[num].configure(action); //扩展点一 _filters(构造函数传入的ienumerable<ihttpmessagehandlerbuilderfilter> filters). } action(requiredservice); lifetimetrackinghttpmessagehandler handler = new lifetimetrackinghttpmessagehandler(requiredservice.build()); return new activehandlertrackingentry(name, handler, servicescope, options.handlerlifetime); void configure(httpmessagehandlerbuilder b) { for (int i = 0; i < options.httpmessagehandlerbuilderactions.count; i++) { options.httpmessagehandlerbuilderactions[i](b); } } }
关键点代码就是上面代码中标记出来的扩展点一 和 扩展点二.
- 扩展点一: 需要注入适当的ihttpmessagehandlerbuilderfilter对象,就可以改写
requiredservice
对象, 也就可以实现我们要的运行时动态配置了. - 扩展点二: 需要实现自定义的iconfiguration配置, 只要
this._optionsmonitor.get(name)
拿到的对象的httpmessagehandlerbuilderactions
属性包含我们相应的改写代码即可.
扩展点一的实现
为httpclient的handler增加一个配置的filter, 针对符合的handlerbuilder增加一些自己的改写逻辑.
我们在用httpclient对象的时候产生的日志("sending http request......","received http response headers after......")就是由这个filter特性注入的. 官方参考代码:logginghttpmessagehandlerbuilderfilter
个人见解: 觉得在这个扩展点加这个业务不是特别的符合应用场景, 所以我建议在扩展点二做这个事情.
class myhttpclienthandlerfilter : ihttpmessagehandlerbuilderfilter { public action<httpmessagehandlerbuilder> configure(action<httpmessagehandlerbuilder> next) { void configure(httpmessagehandlerbuilder builder) { next(builder); //一开始就调用next, 这样我们的整个handlerbuilder的执行顺序就是依次call _filters, 最后call options.httpmessagehandlerbuilderactions(扩展点二). if (builder.name.startswith("callbackproviderside-")) //我们可以为这类业务统一加一个前缀做区别, 这样就不会影响其他的httpclient对象了. { //builder.primaryhandler= your custom handler. 参考官方文档的实现. } } return configure; } } //然后在di容器中注入我们的filter. servicecollection.addsingleton<ihttpmessagehandlerbuilderfilter,myhttpclienthandlerfilter>();
扩展点二的实现
class myhttpclientcustomconfigure : ipostconfigureoptions<httpclientfactoryoptions> { public void postconfigure(string name, httpclientfactoryoptions options) { if (name.startswith("callbackproviderside-")) //我们可以为这类业务统一加一个前缀做区别, 这样就不会影响其他的httpclient对象了. { options.httpmessagehandlerbuilderactions.add(p => { //p.primaryhandler= your custom handler. 参考官方文档的实现. }); } } } //然后在di容器中注入我们的这个配置扩展类. servicecollection.addsingleton<microsoft.extensions.options.ipostconfigureoptions<microsoft.extensions.http.httpclientfactoryoptions>, myhttpclientcustomconfigure>();
为什么这里注入的类型是microsoft.extensions.options.ipostconfigureoptions<microsoft.extensions.http.httpclientfactoryoptions>
, 是因为optionsfactory
它的构造函数需要的就是这个. 至于有关configuration系统的扩展和源代码在这里就不在这里展开了.
使用
至于用它就简单了
var factory = serviceprovider.getservice<ihttpclientfactory>(); var httpclientforbaidu = factory.createclient("callbackproviderside-baidu"); var httpclientforcnblogs = factory.createclient("callbackproviderside-cnblogs");
总结一下
这样子, 我们的这个运行时动态配置httpclient就算完成了, 我也轻轻松松又水了一篇文章.
另外,有关ihttpclientfactory
背后的故事可以查看文章exploring the code behind ihttpclientfactory in depth, 很完整的流程图在配上代码, 把它讲解的清清楚楚.
以上就是asp.net core为ihttpclientfactory添加动态命名配置的详细内容,更多关于asp.net core 添加动态命名配置的资料请关注其它相关文章!