Remove http

This commit is contained in:
Changhua
2023-05-29 11:25:44 +08:00
parent 96549e310c
commit c736a8c15f
3 changed files with 0 additions and 98 deletions

View File

@@ -10,7 +10,6 @@ from wcferry import Wcf, WxMsg
from configuration import Config
from func_chatgpt import ChatGPT
from func_chengyu import cy
from func_http import Http
from func_news import News
from job_mgmt import Job
@@ -191,19 +190,6 @@ class Robot(Job):
self.allContacts[msg.sender] = nickName[0]
self.sendTextMsg(f"Hi {nickName[0]},我自动通过了你的好友请求。", msg.sender)
def enableHTTP(self) -> None:
"""暴露 HTTP 发送消息接口供外部调用,不配置则忽略"""
c = self.config.HTTP
if not c:
return
home = "https://github.com/lich0821/WeChatFerry"
http = Http(wcf=self.wcf,
title="API for send text",
description=f"Github: <a href='{home}'>WeChatFerry</a>",)
Http.start(http, c["host"], c["port"])
self.LOG.info(f"HTTP listening on http://{c['host']}:{c['port']}")
def newsReport(self) -> None:
receivers = self.config.NEWS
if not receivers: