mirror of https://github.com/openspug/spug
78 lines
2.2 KiB
Python
78 lines
2.2 KiB
Python
# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
|
|
# Copyright: (c) <spug.dev@gmail.com>
|
|
# Released under the AGPL-3.0 License.
|
|
from django.db import close_old_connections
|
|
from apps.host.models import Host
|
|
from socket import socket
|
|
import subprocess
|
|
import platform
|
|
import requests
|
|
import logging
|
|
|
|
logging.captureWarnings(True)
|
|
|
|
|
|
def site_check(url):
|
|
try:
|
|
res = requests.get(url, timeout=10, verify=False)
|
|
return 200 <= res.status_code < 400, f'返回状态码:{res.status_code}'
|
|
except Exception as e:
|
|
return False, f'异常信息:{e}'
|
|
|
|
|
|
def port_check(addr, port):
|
|
try:
|
|
sock = socket()
|
|
sock.settimeout(5)
|
|
sock.connect((addr, int(port)))
|
|
sock.close()
|
|
return True, '端口状态检测正常'
|
|
except Exception as e:
|
|
return False, f'异常信息:{e}'
|
|
|
|
|
|
def ping_check(addr):
|
|
try:
|
|
if platform.system().lower() == 'windows':
|
|
command = f'ping -n 1 -w 3000 {addr}'
|
|
else:
|
|
command = f'ping -c 1 -W 3 {addr}'
|
|
task = subprocess.run(command, shell=True, stdout=subprocess.PIPE)
|
|
if task.returncode == 0:
|
|
return True, 'Ping检测正常'
|
|
else:
|
|
return False, 'Ping检测失败'
|
|
except Exception as e:
|
|
return False, f'异常信息:{e}'
|
|
|
|
|
|
def host_executor(host, command):
|
|
try:
|
|
cli = host.get_ssh()
|
|
exit_code, out = cli.exec_command(command)
|
|
if exit_code == 0:
|
|
return True, out or '检测状态正常'
|
|
else:
|
|
return False, out or f'退出状态码:{exit_code}'
|
|
except Exception as e:
|
|
return False, f'异常信息:{e}'
|
|
|
|
|
|
def dispatch(tp, addr, extra, in_view=False):
|
|
if not in_view:
|
|
close_old_connections()
|
|
if tp == '1':
|
|
return site_check(addr)
|
|
elif tp == '2':
|
|
return port_check(addr, extra)
|
|
elif tp == '5':
|
|
return ping_check(addr)
|
|
elif tp == '3':
|
|
command = f'ps -ef|grep -v grep|grep {extra!r}'
|
|
elif tp == '4':
|
|
command = extra
|
|
else:
|
|
raise TypeError(f'invalid monitor type: {tp!r}')
|
|
host = Host.objects.filter(pk=addr).first()
|
|
return host_executor(host, command)
|