mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 11:37:02 +08:00
Dict Xiong
c834980b29
* use update.sh to update safely * add unknown command "version". available: update, force-update, reset, cd and replace tabs with spaces * bug fix * bug fix * uninstall will rm update.sh * new force-update * bug fix * remove thefuck just use `pls` * init post-log.py * update uuid filepath * update.sh will post log * dfs log * bug fix * bug fix * use logging * logging format * bug fix * standarlize the config path * bug fix * add ssh key: ltp2
73 lines
2.2 KiB
Python
Executable File
73 lines
2.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import os, uuid, socket, argparse, logging
|
|
|
|
namespace = uuid.UUID("cc23b903-1993-44eb-9c90-48bd841eeac3")
|
|
logging.basicConfig(level=logging.INFO, format="[%(filename)s:%(lineno)d][%(levelname)s] %(message)s")
|
|
|
|
try:
|
|
import requests
|
|
except ImportError:
|
|
logging.fatal("Please install requests module")
|
|
exit(1)
|
|
|
|
|
|
def get_uuid_raw() -> str:
|
|
possible_uuid_files = [
|
|
"/var/lib/dbus/machine-id",
|
|
"/etc/machine-id",
|
|
os.path.join(os.path.expanduser('~'), ".config/dotfiles/uuid"),
|
|
]
|
|
for i in possible_uuid_files:
|
|
if os.path.exists(i):
|
|
with open(i, "r") as f:
|
|
return f.read().strip()
|
|
if not os.path.exists(os.path.dirname(possible_uuid_files[-1])):
|
|
os.makedirs(os.path.dirname(possible_uuid_files[-1]))
|
|
with open(possible_uuid_files[-1], 'w') as f:
|
|
ans = str(uuid.uuid4())
|
|
f.write(ans)
|
|
return ans
|
|
|
|
|
|
def get_uuid() -> str:
|
|
return str(uuid.uuid5(namespace, get_uuid_raw()))
|
|
|
|
|
|
def get_hostname() -> str:
|
|
ans = socket.gethostname()
|
|
if '-' not in ans:
|
|
ans += "-ibd-ink"
|
|
return ans
|
|
|
|
|
|
def post_log(url:str, hostname:str, uuid:str, content:str):
|
|
ans = requests.post(url, params={"hostname": hostname, "uuid": uuid}, data=content)
|
|
return ans
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description="post log to server")
|
|
parser.add_argument("-u", "--url", help="url to post to", default="https://api.beardic.cn/post-log")
|
|
parser.add_argument("content")
|
|
args = parser.parse_args()
|
|
url = args.url
|
|
content = args.content
|
|
hostname = get_hostname()
|
|
uuid = get_uuid()
|
|
content=content.strip()
|
|
if not content:
|
|
logging.error("empty log content")
|
|
exit(1)
|
|
resp = post_log(url, hostname, uuid, content)
|
|
if resp.status_code == 200:
|
|
logging.info("200 ok")
|
|
exit(0)
|
|
elif resp.status_code == 403:
|
|
logging.error("403 forbidden")
|
|
logging.info("you may need to register your hostname and uuid")
|
|
else:
|
|
logging.error("unknown error ")
|
|
logging.error(f"{resp.status_code}: {resp.text}")
|
|
logging.info(f"hostname: {hostname}, uuid: {uuid}")
|
|
exit(1)
|