File size: 3,063 Bytes
08c964e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | #coding: utf-8
#-------------------------------------------------------------------
# 宝塔Linux面板
#-------------------------------------------------------------------
# Copyright (c) 2015-2099 宝塔软件(http://bt.cn) All rights reserved.
#-------------------------------------------------------------------
# Author: cjxin <cjxin@bt.cn>
#-------------------------------------------------------------------
# 免费IP库1
#------------------------------
import os,re,json,time
from safeModel.base import safeBase
import public
class main(safeBase):
_sfile = '{}/data/free_ip_area.json'.format(public.get_panel_path())
def __init__(self):
try:
self.user_info = public.get_user_info()
except:
self.user_info = None
def get_ip_area(self,get):
"""
@获取IP地址所在地
@param get: dict/array
"""
ips = get['ips']
arrs,result = [],{}
for ip in ips:arrs.append(ip)
if len(arrs) > 0:
data = self.__get_cloud_ip_info(arrs)
for ip in data:
result[ip] = data[ip]
return result
def __get_cloud_ip_info(self,ips):
"""
@获取IP地址所在地
@得判断是否是我们的用户
@param ips:
"""
result = {}
try:
'''
@从云端获取IP地址所在地
@param data 是否是宝塔用户,如果不是则不返回
@param ips: IP地址
'''
data = {}
data['ip'] = ','.join(ips)
data['uid'] = self.user_info['uid']
data["serverid"]=self.user_info["serverid"]
#如果不是我们的用户,那么不返回数据
res = public.httpPost('https://www.bt.cn/api/ip/info',data)
res = json.loads(res)
data = self.get_ip_area_cache()
for key in res:
info = res[key]
if public.is_local_ip(key):
res[key]['city']="内网地址"
if not res[key]['city']: continue
if not res[key]['city'].strip() and not res[key]['continent'].strip():
info = {'info':'未知归属地'}
else:
info['info'] = '{} {} {} {}'.format(info['carrier'],info['country'],info['province'],info['city']).strip()
data[key] = info
result[key] = info
self.set_ip_area_cache(data)
except:
pass
return result
def get_ip_area_cache(self):
"""
@获取IP地址所在地
@param get:
"""
data = {}
try:
data = json.loads(public.readFile(self._sfile))
except:
public.writeFile(self._sfile,json.dumps({}))
return data
def set_ip_area_cache(self,data):
"""
@设置IP地址所在地
@param data:
"""
public.writeFile(self._sfile,json.dumps(data))
return True |