闲来无事的时候看了下微信api,发现未认证用户可用接口少的可怜,不过自动回复功能还是有点用的,就用django写了个微信自动回复的功能,回复的数据是通过solr去搜索获取的。加上url,绑定到二级域名就可以直接用了。注意view方法必须加@csrf_exempt
,django写这种类似的接口还是太重,tornado会简洁很多。
示例截图:
实际应用中,应该先要判断用户是否搜索还是正常对话,实现基本的help等帮助提示。
核心代码
from django.views.decorators.csrf import csrf_exempt
import hashlib
from django.shortcuts import loader
from django.http import HttpResponse
from lxml import etree
import time,re
import pysolr
# Create your views here.
@csrf_exempt
def yunsearch_index(request):
# if这里用来实现微信api的验证,验证使用GET,用户发送消息是POST请求
if request.method == 'GET':
signature = request.GET.get('signature',None)
timestamp = request.GET.get('timestamp',None)
nonce = request.GET.get('nonce',None)
echostr = request.GET.get('echostr',None)
#配置自己申请的token
token = 'yourtoken'
hashlist = [token,timestamp,nonce]
hashlist.sort()
try:
hashstr = ''.join(hashlist)
except:
hashstr = ''
hashstr = hashlib.sha1(hashstr).hexdigest()
if hashstr == signature:
return HttpResponse(echostr)
else:
return HttpResponse('hahaha')
else:
# 这里是根据公众号中收到的消息(/关键词)去返回相关的资源信息,使用文本消息接口
str_xml = etree.fromstring(request.body)
fromUser = str_xml.find('ToUserName').text
toUser = str_xml.find('FromUserName').text
query = str_xml.find('Content').text
nowtime = str(int(time.time()))
regq = re.compile(r'\/.*$')
# 这里是去获取数据的方法,根据需要去获取自己网站的数据就好
if regq.search(query):
solr = pysolr.Solr('http://127.0.0.1:8080/solr/solrindex/',timeout=4)
contextsolr = solr.search(query.strip('/'),fl="shorturl,text",df="text",wt="python",start=0,rows=5).docs
else:
contextsolr = []
#用模板构建返回给微信的数据
t = loader.get_template('text.xml')
c = {'toUser': toUser, 'fromUser': fromUser,'nowtime': nowtime, 'contextsolr': contextsolr}
return HttpResponse(t.render(c))
xml模板
根据搜索出来的shorturl,直接返回网盘链接给用户
<xml>
<ToUserName><![CDATA[{{ toUser }}]]></ToUserName>
<FromUserName><![CDATA[{{ fromUser }}]]></FromUserName>
<CreateTime>{{ nowtime }}</CreateTime>
<MsgType><![CDATA[text]]></MsgType>
{% if contextsolr %}
<Content>{% for item in contextsolr %}{{item.text}} http://pan.baidu.com/s/{{item.shorturl}}
{% endfor %}需更多结果请前往网站xxxx.com</Content>
{% else %}
<Content><![CDATA[没有相关的资源,请更换关键词搜索,关键词前加斜杠"/"即可搜索,例如"/小说"]]></Content>
{% endif %}
</xml>