V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
sdyung
V2EX  ›  Python

用 ChatGPT 写了个备份自部署 bitwarden 数据发送到 tg bot 的脚本

  •  
  •   sdyung · 6 小时 7 分钟前 · 410 次点击

    代码需修改三处:

    1. 修改为自己本地 bitwarden/vaultwarden 的 Data 文件夹路径
    2. 修改为自己 telegram 帐号 chat id
    3. 修改为自己 telegram bot token 然后添加定时自动执行就可以了。
    import os
    import shutil
    import requests
    from datetime import datetime
    
    # 获取当前日期和时间
    current_date = datetime.now().strftime("%Y 年%m 月%d 日")
    current_time = datetime.now().strftime("%H 点%M 分%S 秒")
    backup_date = datetime.now().strftime("%Y%m%d")  # 用于文件名的简洁日期格式
    
    # 文件路径和压缩包名称(使用日期命名)
    folder_to_backup = "此处修改路径为自己 bitwarden 的 DATA 文件夹路径"
    backup_zip = f"/tmp/Bitwarden_{backup_date}.zip"
    
    print("[1/4] 开始压缩文件夹...")
    # 压缩文件夹
    shutil.make_archive(backup_zip.replace('.zip', ''), 'zip', folder_to_backup)
    print(f"[2/4] 文件夹已成功压缩,生成的备份文件:{backup_zip}")
    
    # 获取备份文件大小(单位:MB ,保留两位小数)
    file_size_mb = os.path.getsize(backup_zip) / (1024 * 1024)
    file_size_text = f"{file_size_mb:.2f}MB"
    print(f"备份文件大小:{file_size_text}")
    
    # Telegram bot 信息
    chat_id = "此处修改为自己 telegram 帐号 chat id"
    bot_token = "此处修改为自己 telegram bot token"
    telegram_api_url = f"https://api.telegram.org/bot{bot_token}/sendDocument"
    
    # 推送文件和文字说明
    message_caption = (
        f"今日份 Bitwarden 自动备份成功,以下是本次备份的详细信息:\n"
        f"备份时间:{current_date} {current_time}\n"
        f"备份大小:{file_size_text}"
    )
    
    print("[3/4] 开始推送文件到 Telegram...")
    with open(backup_zip, 'rb') as file:
        response = requests.post(
            telegram_api_url,
            data={'chat_id': chat_id, 'caption': message_caption},
            files={'document': file}
        )
    
    # 检查请求是否成功
    if response.status_code == 200:
        print("[4/4] 备份文件已成功发送到 Telegram !")
        print(f"推送文件名:Bitwarden_{backup_date}.zip")
        # 删除本地的 zip 文件
        os.remove(backup_zip)
        print(f"本地备份文件 {backup_zip} 已删除。")
    else:
        print(f"[4/4] 推送失败,错误信息:{response.text}")
    
    
    4 条回复    2024-11-30 17:20:27 +08:00
    azio7
        1
    azio7  
       2 小时 51 分钟前
    服务端没有需要备份的东西吧,客户端你多端使用,有一端炸了可以用另一端的数据恢复
    aezx
        2
    aezx  
       2 小时 18 分钟前
    有没有邮箱版本?
    sdyung
        3
    sdyung  
    OP
       2 小时 15 分钟前
    @aezx 如果用宝塔的话,在宝塔直接添加定时任务就有发送到邮箱的选项。
    aezx
        4
    aezx  
       2 小时 13 分钟前
    @sdyung #3 没用宝塔
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2616 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 11:34 · PVG 19:34 · LAX 03:34 · JFK 06:34
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.