Subtext分析3-Subtext.Akismet

Akismet是Subtext的一个非常经典的应用方式,将过滤系统通过webservice完全托管给了Akismet,从而减小了自己的负担,相对来说还不会影响客户体验。

我们通过结构可以看到IComment,Comment,HttpClient,AkismetClient,InvalidResponseException。

IComment是评论接口,Comment继承了IComment,作用是封装了ip地址,url,评论等一些基础属性。

HttpClient说起来就就一个方法PostRequest,实际上是实现了一个post请求,并且读取返回的数据。

InvalidResponseException没什么好说的,处理200异常的。

AkismetClient是具体操作,调用HttpClient把Comment中的内容发送,InvalidResponseException来管理异常
在第一次启动时VerifyApiKey方法调用密钥,此后不用调用。
通过SubmitComment方法来拼接要发送的内容。
CheckCommentForSpam确定是否是垃圾评论,返回true是垃圾信息

 

Subtext分析3-Subtext.Akismet_第1张图片

 Akismet的配置内容在web.config下,不多解释了,看名字就能知道个大概了。

 1    < add key = " ProxyHost "  value = "" />   
 2    < add key = " ProxyPort "  value = "" />
 3    < add key = " ProxyUsername "  value = "" />
 4    < add key = " ProxyPassword "  value = "" />
 5    <!--  Aggregate Blog Stuff  -->
 6    < add key = " AggregateEnabled "  value = " false " />
 7    < add key = " AggregateTitle "  value = " A Subtext Community " />
 8    < add key = " AggregateUrl "  value = " http://localhost/%22/>
 9    < add key = " AggregateDescription "  value = " .NET by Subtext " />
10    <!-- UI Text  -->
11    < add key = " PostCollection "  value = " Post Categories " />
12    < add key = " ArticleCollection "  value = " Article Categories " />
13    < add key = " ImageCollection "  value = " Image Galleries " />
14    < add key = " Archives "  value = " Archives " />

 

 

余下的代码说明里都有说明,是个简单但经典的应用,更多的是理念。如果想要改变验证方式的话就可以改写此处,自己接管评论管理,我国制度于他国不同所以还是建议自己管理。

 

你可能感兴趣的:(Subtext分析3-Subtext.Akismet)