Merge branch 'main' into dev

This commit is contained in:
镀铬酸钾
2026-02-01 23:56:13 +08:00
committed by GitHub
3 changed files with 595 additions and 235 deletions

View File

@@ -1,249 +1,57 @@
name: 部署到生产环境 name: Auto Deploy NeoBot (Full Env Secrets)
# 触发条件推送到main分支 或 手动触发
on: on:
push: push:
branches: [ main ] branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch: workflow_dispatch:
inputs:
reason:
description: '手动触发部署的原因'
required: false
default: '手动部署'
jobs: jobs:
deploy: deploy-to-server:
# 关联你的仓库环境ENV
environment: ENV
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: SSH-KEY
timeout-minutes: 15
steps: steps:
- uses: actions/checkout@v4 - name: 检查环境密钥配置
# ========== 新增:检出代码失败时的错误处理 ==========
- name: 处理代码检出失败
if: failure()
run: | run: |
echo "❌ 代码检出失败!请检查仓库权限或网络问题" echo "✅ 已关联环境: ${{ github.environment }}"
exit 1 echo "✅ API_URL 密钥是否存在: ${{ secrets.API_URL != '' }}"
# ========== 原有步骤:安装系统依赖工具(强化错误处理) ========== echo "✅ API_TOKEN 密钥是否存在: ${{ secrets.NEOBOT_DEPLOY_TOKEN != '' }}"
- name: 安装依赖工具
id: install_sys_deps - name: 调用部署API
env:
# 从环境密钥中读取API地址和Token均为密文
API_URL: ${{ secrets.API_URL }}
API_TOKEN: ${{ secrets.NEOBOT_DEPLOY_TOKEN }}
run: | run: |
set -euo pipefail # 安装jq用于解析JSON
echo "=== 开始安装系统依赖工具 ===" sudo apt-get update && sudo apt-get install -y jq
# 配置清华源加速apt更新可选提升安装速度
sudo sed -i 's/archive.ubuntu.com/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list
sudo apt-get update -y || { echo "❌ apt更新失败"; exit 1; }
# 安装工具并验证 # 打印关键信息(脱敏,仅验证是否读取到值)
TOOLS="sshpass expect openssh-client" echo "📌 调用的API地址脱敏: $(echo $API_URL | sed 's/http:\/\///; s/\/deploy//')"
for TOOL in $TOOLS; do
echo "📦 安装 $TOOL..."
if sudo apt-get install -y --no-install-recommends $TOOL; then
echo "✅ $TOOL 安装成功"
else
echo "❌ $TOOL 安装失败"
exit 1
fi
done
# 验证工具可用性 # 发送POST请求到部署API所有配置均来自密钥
sshpass -V >/dev/null || { echo "❌ sshpass安装后不可用"; exit 1; } RESPONSE=$(curl -s -X POST \
expect -v >/dev/null || { echo "❌ expect安装后不可用"; exit 1; } $API_URL \
continue-on-error: false -H "Content-Type: application/json" \
-H "X-API-Token: $API_TOKEN" \
-d '{"script_name":"deploy.sh"}')
# ========== 原有步骤配置SSH密钥 ========== # 打印完整响应(便于调试)
- name: 配置SSH密钥并启动ssh-agent echo "📝 API响应详情"
id: config_ssh echo $RESPONSE | jq .
run: |
set -euo pipefail
echo "=== 开始配置SSH密钥 ==="
# 创建SSH目录并严格控制权限 # 解析status字段判断部署结果
mkdir -p ~/.ssh STATUS=$(echo $RESPONSE | jq -r '.status')
chmod 700 ~/.ssh if [ "$STATUS" = "success" ]; then
# 处理私钥换行符问题
echo "${{ secrets.KEY }}" | tr -d '\r' > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
# 启动ssh-agent并加载私钥
eval $(ssh-agent -s)
export SSH_AGENT_PID SSH_AUTH_SOCK
echo "🔑 加载SSH私钥..."
expect -c "
set timeout 15
spawn ssh-add ~/.ssh/id_rsa
expect {
\"Enter passphrase for /home/runner/.ssh/id_rsa:\" {
send \"${{ secrets.PASSPHRASE }}\r\"
exp_continue
}
\"Identity added: /home/runner/.ssh/id_rsa\" {
puts \"✅ 私钥加载成功\"
exit 0
}
\"Bad passphrase, try again\" {
puts \"❌ 私钥密码错误PASSPHRASE\"
exit 1
}
timeout {
puts \"❌ 私钥加载超时\"
exit 1
}
eof {
puts \"❌ 私钥加载失败\"
exit 1
}
}
" || { echo "❌ 私钥加载失败,终止流程"; exit 1; }
# 配置SSH免主机检查
cat > ~/.ssh/config << EOF
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
GlobalKnownHostsFile /dev/null
ConnectTimeout 30
EOF
chmod 600 ~/.ssh/config
echo "✅ SSH密钥配置完成"
continue-on-error: false
# ========== 原有步骤:执行部署(强化错误处理) ==========
- name: 执行部署
id: run_deploy
run: |
set -euo pipefail
echo "=== 开始执行服务器部署 ==="
# 定义部署命令(抽离便于维护)
DEPLOY_CMD=$(cat << 'EOF'
set -exuo pipefail
echo "=== 服务器部署开始($(date)==="
# 服务器端也配置清华源可选如需在服务器安装pip依赖
pip3.14 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple || true
# 测试sudo权限
echo "${SERVER_PASSWORD}" | sudo -S -k -p '' whoami || { echo "❌ sudo权限验证失败"; exit 1; }
# 停止服务(失败不终止,避免服务未启动导致部署中断)
echo "🛑 停止neobot服务..."
echo "${SERVER_PASSWORD}" | sudo -S -k -p '' systemctl stop neobot.service || true
sleep 2
# 切换到项目目录
cd /home/luoxiaolei/neobot/NeoBot || { echo "❌ 项目目录不存在"; exit 1; }
echo "📁 当前目录:$(pwd)"
# 修复文件权限
echo "🔧 修复文件权限..."
echo "${SERVER_PASSWORD}" | sudo -S -k -p '' chown -R "${SERVER_USER}":"${SERVER_USER}" /home/luoxiaolei/neobot/NeoBot || { echo "❌ 文件权限修复失败"; exit 1; }
# 拉取最新代码
echo "⬇️ 拉取最新代码..."
git pull origin main || { echo "❌ 代码拉取失败"; exit 1; }
# 使用pip3.14更新依赖
echo "📦 使用pip3.14更新项目依赖..."
if [ -f "requirements.txt" ]; then
echo "📄 发现requirements.txt使用pip3.14安装/升级依赖..."
# 尝试使用pip3.14如果不存在则使用pip3
if command -v pip3.14 &> /dev/null; then
pip3.14 install --upgrade -r requirements.txt || { echo "❌ pip3.14依赖安装失败"; exit 1; }
echo "✅ pip3.14依赖安装完成"
else
echo "⚠️ pip3.14未找到尝试使用pip3..."
pip3 install --upgrade -r requirements.txt || { echo "❌ pip3.14依赖安装失败"; exit 1; }
echo "✅ pip3.14依赖安装完成"
fi
else
echo "⚠️ 未找到requirements.txt文件跳过依赖安装"
fi
# 启动服务
echo "🚀 启动neobot服务..."
echo "${SERVER_PASSWORD}" | sudo -S -k -p '' systemctl start neobot.service || { echo "❌ 服务启动失败"; exit 1; }
sleep 3
# 检查服务状态
echo "📋 检查服务状态..."
if ! echo "${SERVER_PASSWORD}" | sudo -S -k -p '' systemctl status neobot.service --no-pager --full; then
echo "❌ neobot服务启动异常查看日志"
echo "${SERVER_PASSWORD}" | sudo -S -k -p '' journalctl -u neobot.service --no-pager -n 50
exit 1
fi
echo "✅ 服务器部署完成($(date)==="
EOF
)
# 替换变量并执行部署
export SERVER_PASSWORD="${{ secrets.SERVER_PASSWORD }}"
export SERVER_USER="${{ secrets.SERVER_USER }}"
DEPLOY_CMD=$(echo "$DEPLOY_CMD" | sed "s/\${SERVER_PASSWORD}/${{ secrets.SERVER_PASSWORD }}/g")
DEPLOY_CMD=$(echo "$DEPLOY_CMD" | sed "s/\${SERVER_USER}/${{ secrets.SERVER_USER }}/g")
# 执行部署带SSH调试日志
if ! sshpass -p "${{ secrets.SERVER_PASSWORD }}" ssh -v \
-o IdentityFile=~/.ssh/id_rsa \
-o ConnectTimeout=30 \
-p 42422 ${{ secrets.SERVER_USER }}@${{ secrets.SERVER_ADDRESS }} "$DEPLOY_CMD"; then
echo "❌ 部署命令执行失败"
exit 1
fi
echo "✅ 部署流程全部完成"
continue-on-error: false
# ========== 强化错误处理:步骤失败后的详细提示 ==========
- name: 部署失败详细排查
if: failure()
run: |
echo "=================================================="
echo "❌ 部署失败!详细排查信息:"
echo "=================================================="
# 输出各步骤状态
echo "🔍 步骤状态:"
echo " - 代码检出:${{ steps.install_pip_deps.outcome }}"
echo " - pip依赖安装${{ steps.install_pip_deps.outcome }}"
echo " - 系统依赖安装:${{ steps.install_sys_deps.outcome }}"
echo " - SSH配置${{ steps.config_ssh.outcome }}"
echo " - 部署执行:${{ steps.run_deploy.outcome }}"
# 按失败步骤给出排查建议
if [ "${{ steps.install_pip_deps.outcome }}" = "failure" ]; then
echo "📌 排查重点pip依赖安装失败"
echo " 1. 检查requirements.txt文件格式是否正确"
echo " 2. 检查清华源是否可访问curl https://pypi.tuna.tsinghua.edu.cn/simple"
echo " 3. 检查依赖包名称/版本是否存在错误"
fi
if [ "${{ steps.config_ssh.outcome }}" = "failure" ]; then
echo "📌 排查重点SSH配置失败"
echo " 1. 检查KEY私钥是否完整包含BEGIN/END标记"
echo " 2. 检查PASSPHRASE私钥密码是否正确"
echo " 3. 检查服务器公钥是否已添加到authorized_keys"
fi
if [ "${{ steps.run_deploy.outcome }}" = "failure" ]; then
echo "📌 排查重点(部署执行失败):"
echo " 1. 检查SERVER_PASSWORD服务器密码是否正确"
echo " 2. 检查服务器42422端口是否开放"
echo " 3. 检查服务器项目目录是否存在:/home/luoxiaolei/neobot/NeoBot"
echo " 4. 查看服务器日志journalctl -u neobot.service -n 50"
fi
exit 1
# ========== 部署成功提示 ==========
- name: 部署成功提示
if: success()
run: |
echo "✅ 部署成功!" echo "✅ 部署成功!"
echo "📝 部署信息:" exit 0
echo " - 触发方式:${{ github.event_name }}" else
echo " - 分支:${{ github.ref_name }}" echo "❌ 部署失败!错误信息:$(echo $RESPONSE | jq -r '.message')"
echo " - 提交ID${{ github.sha }}" exit 1
echo " - 手动触发原因:${{ github.event.inputs.reason || '自动触发' }}" fi
- name: 部署失败通知(可选)
if: failure()
run: |
echo "⚠️ 部署失败,可在此添加通知逻辑"

240
plugins/weather.py Normal file
View File

@@ -0,0 +1,240 @@
# -*- coding: utf-8 -*-
import re
from datetime import datetime
from typing import Any, Dict, List
import requests
from core.managers.command_manager import matcher
from core.managers.image_manager import image_manager
from core.utils.logger import logger
from models import MessageEvent, MessageSegment
# 插件元数据
__plugin_meta__ = {
"name": "weather",
"description": "查询天气信息,支持中国天气网数据。",
"usage": "/天气 [城市代码] - 查询指定城市的天气信息\n例如:/天气 101190207 (南京)",
}
# 城市代码映射(可以扩展)
CITY_CODES = {
"北京": "101010100",
"上海": "101020100",
"广州": "101280101",
"深圳": "101280601",
"南京": "101190101",
"苏州": "101190401",
"杭州": "101210101",
"武汉": "101200101",
"成都": "101270101",
"重庆": "101040100",
"西安": "101110101",
"天津": "101030100",
"沈阳": "101070101",
"大连": "101070201",
"青岛": "101120201",
"济南": "101120101",
"郑州": "101180101",
"长沙": "101250101",
"南昌": "101240101",
"合肥": "101220101",
"福州": "101230101",
"厦门": "101230201",
"南宁": "101300101",
"海口": "101310101",
"昆明": "101290101",
"贵阳": "101260101",
"拉萨": "101140101",
"兰州": "101160101",
"西宁": "101150101",
"银川": "101170101",
"乌鲁木齐": "101130101",
"哈尔滨": "101050101",
"长春": "101060101",
"呼和浩特": "101080101",
"太原": "101100101",
"石家庄": "101090101",
}
HEADERS = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
}
def get_weather_data(city_code: str) -> Dict[str, Any]:
"""
获取天气数据
Args:
city_code (str): 城市代码
Returns:
Dict[str, Any]: 包含城市信息和天气数据的字典
"""
try:
url = f"https://www.weather.com.cn/weather/{city_code}.shtml"
response = requests.get(url, headers=HEADERS, timeout=10)
response.encoding = "utf-8"
html_content = response.text
# 提取城市信息
city_info = (
html_content.split('<a href="http://www.weather.com.cn/forecast/" ')[-1]
.split("</div>")[0]
.strip()
)
city_parts = []
city_parts.append(city_info.split("<a>")[-1].split("</a>")[0])
if city_info.count("_blank") == 1:
city_parts.append(
city_info.split("<span>></span>")[-1]
.replace("</span>", "")
.replace("<span>", "")
.strip()
)
else:
additional_parts = (
city_info.split('target="_blank">')[-1]
.replace("<span>></span> <span>", "")
.replace("</span>", "")
.split("</a>")
)
city_parts.extend(additional_parts)
city_name = " ".join([part for part in city_parts if part.strip()])
# 提取天气信息
weather_data = []
for i in range(7):
try:
weather_info = (
html_content.split('<ul class="t clearfix">')[-1]
.split('on">')[1]
.split("</li>")[i]
)
day = weather_info.split("<h1>")[-1].split("</h1>")[0].strip()
weather = (
weather_info.split('<p title="')[-1]
.split('" class="wea">')[0]
.strip()
)
tem = (
weather_info.split("<span>")[-1]
.split("</i>")[0]
.replace("</span>/<i>", " / ")
.strip()
)
if len(tem) > 10:
tem = weather_info.split("<i>")[1].split("</i>")[0].strip()
wind = weather_info.split('<span title="')
wind_direction = []
if len(wind) > 2:
for j in range(2):
wind_direction.append(
wind[j + 1]
.split('"></span>')[0]
.replace('" class="', " / ")
)
else:
wind_direction.append(
wind[1].split('"></span>')[0].replace('" class="', " / ")
)
wind_power = weather_info.split("<i>")[-1].split("</i>")[0].strip()
wind_direction_str = (
" / ".join(wind_direction) if wind_direction else "未知"
)
weather_data.append(
{
"day": day,
"weather": weather,
"temperature": tem,
"wind_power": wind_power,
"wind_direction": wind_direction_str,
}
)
except (IndexError, ValueError) as e:
logger.warning(f"解析第{i + 1}天天气数据失败: {e}")
continue
return {
"city_name": city_name,
"weather_data": weather_data,
"query_time": datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
"timestamp": datetime.now().strftime("%Y年%m月%d%H:%M"),
}
except Exception as e:
logger.error(f"获取天气数据失败: {e}")
return None
@matcher.command("天气")
async def handle_weather(bot, event: MessageEvent, args: List[str]):
"""
处理天气查询指令
Args:
bot: Bot实例
event: 消息事件
args: 指令参数
"""
if not args:
# 显示支持的城市列表
city_list = "\n".join(
[f"{name}: {code}" for name, code in list(CITY_CODES.items())[:10]]
)
reply_msg = f"请指定城市名称或城市代码,例如:\n/天气 北京\n/天气 101010100\n\n支持的城市:\n{city_list}\n..."
await event.reply(reply_msg)
return
city_input = args[0].strip()
# 尝试匹配城市名称或直接使用城市代码
city_code = None
if city_input in CITY_CODES:
city_code = CITY_CODES[city_input]
elif re.match(r"^\d{9}$", city_input):
city_code = city_input
else:
# 尝试模糊匹配城市名称
for name, code in CITY_CODES.items():
if city_input in name:
city_code = code
break
if not city_code:
await event.reply(f"未找到城市 '{city_input}',请检查城市名称或使用城市代码。")
return
# 获取天气数据
await event.reply("正在查询天气信息,请稍候...")
weather_info = get_weather_data(city_code)
if not weather_info or not weather_info.get("weather_data"):
await event.reply("获取天气信息失败,请稍后重试。")
return
try:
# 渲染HTML模板为图片
base64_image = await image_manager.render_template_to_base64(
"weather.html", weather_info, output_name="weather.png"
)
if base64_image:
# 发送图片消息
await event.reply(MessageSegment.image(base64_image))
else:
await event.reply("生成天气图片失败,请稍后重试。")
except Exception as e:
logger.error(f"渲染天气图片失败: {e}")
await event.reply("生成天气图片时发生错误,请稍后重试。")

312
templates/weather.html Normal file
View File

@@ -0,0 +1,312 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>天气查询结果</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Noto+Sans+SC:wght@400;500;700&display=swap');
:root {
--bg-color: #0f172a; /* 深蓝黑背景 */
--window-bg: rgba(30, 41, 59, 0.85); /* 窗口背景 */
--border-color: rgba(255, 255, 255, 0.08);
--accent: #6366f1; /* 核心强调色 - 靛蓝 */
--accent-glow: rgba(99, 102, 241, 0.4);
--text-title: #f8fafc;
--text-desc: #94a3b8;
--text-code: #a5f3fc; /* 代码高亮色 - 浅青 */
--card-bg: rgba(0, 0, 0, 0.2);
--weather-bg: #0b1120; /* 天气卡片深色背景 */
--sunny-color: #fbbf24; /* 晴天橙色 */
--cloudy-color: #6b7280; /* 多云灰色 */
--rainy-color: #3b82f6; /* 雨天蓝色 */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Noto Sans SC', system-ui, sans-serif;
background-color: var(--bg-color);
color: var(--text-title);
display: flex;
justify-content: center;
padding: 0;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* 窗口容器 */
.window {
width: 100%;
min-height: 100vh;
background: var(--window-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 0;
border: none;
box-shadow: none;
overflow: auto;
display: flex;
flex-direction: column;
}
/* 顶部标题栏 */
.header {
padding: 32px 40px;
border-bottom: 1px solid var(--border-color);
background: rgba(255, 255, 255, 0.02);
display: flex;
justify-content: space-between;
align-items: center;
}
.dots {
display: flex;
gap: 8px;
}
.dot {
width: 12px;
height: 12px;
border-radius: 50%;
}
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #10b981; }
.title {
font-size: 18px;
font-weight: 700;
letter-spacing: 1.5px;
color: var(--text-desc);
text-transform: uppercase;
}
/* 内容区域 */
.content {
padding: 40px;
display: flex;
flex-direction: column;
gap: 32px;
}
.page-title {
margin-bottom: 10px;
}
.page-title h1 {
font-size: 48px;
background: linear-gradient(to right, #fff, #94a3b8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.page-title p {
color: var(--text-desc);
font-size: 20px;
margin-top: 12px;
}
/* 城市信息 */
.city-info {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 32px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.city-name {
font-size: 36px;
font-weight: 700;
color: var(--text-title);
margin-bottom: 8px;
}
.query-time {
font-size: 16px;
color: var(--text-desc);
}
/* 天气网格 */
.weather-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}
/* 天气卡片 */
.weather-card {
background: var(--weather-bg);
border-radius: 16px;
padding: 24px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
border: 1px solid var(--border-color);
display: flex;
flex-direction: column;
gap: 16px;
transition: transform 0.2s;
}
.weather-card:hover {
transform: translateY(-2px);
}
.weather-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.weather-day {
font-size: 24px;
font-weight: 700;
color: var(--text-title);
}
.weather-condition {
font-size: 18px;
color: var(--text-desc);
}
.weather-main {
text-align: center;
}
.weather-temp {
font-size: 48px;
font-weight: 900;
color: var(--sunny-color);
margin: 16px 0;
}
.weather-details {
display: flex;
justify-content: space-between;
font-size: 14px;
color: var(--text-desc);
}
.weather-detail-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.detail-label {
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.detail-value {
color: var(--text-title);
}
/* 页脚 */
.footer {
margin-top: auto;
padding: 32px;
border-top: 1px solid var(--border-color);
text-align: center;
color: var(--text-desc);
font-size: 14px;
background: rgba(0, 0, 0, 0.1);
}
.footer .info-row {
margin-bottom: 8px;
}
.footer .version-info {
font-size: 12px;
opacity: 0.8;
margin-top: 16px;
}
/* 响应式设计 */
@media (max-width: 768px) {
.content {
padding: 20px;
}
.page-title h1 {
font-size: 36px;
}
.weather-grid {
grid-template-columns: 1fr;
}
.weather-card {
padding: 20px;
}
.weather-temp {
font-size: 36px;
}
}
</style>
</head>
<body>
<div class="window">
<div class="header">
<div class="dots">
<div class="dot red"></div>
<div class="dot yellow"></div>
<div class="dot green"></div>
</div>
<div class="title">天气查询</div>
</div>
<div class="content">
<div class="page-title">
<h1>天气查询结果</h1>
<p>{{ timestamp }}</p>
</div>
<div class="city-info">
<div class="city-name">{{ city_name }}</div>
<div class="query-time">查询时间: {{ query_time }}</div>
</div>
<div class="weather-grid">
{% for day_weather in weather_data %}
<div class="weather-card">
<div class="weather-header">
<div class="weather-day">{{ day_weather.day }}</div>
<div class="weather-condition">{{ day_weather.weather }}</div>
</div>
<div class="weather-main">
<div class="weather-temp">{{ day_weather.temperature }}</div>
</div>
<div class="weather-details">
<div class="weather-detail-item">
<div class="detail-label">风力</div>
<div class="detail-value">{{ day_weather.wind_power }}</div>
</div>
<div class="weather-detail-item">
<div class="detail-label">风向</div>
<div class="detail-value">{{ day_weather.wind_direction }}</div>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="footer">
<div class="info-row">数据来源: 中国天气网</div>
<div class="info-row">查询城市: {{ city_name }}</div>
<div class="version-info">
CalglauBot | Powered by NeoBot Framework
</div>
</div>
</div>
</div>
</body>
</html></content>