4 Commits

Author SHA1 Message Date
ramius
7ac40e14a4 Merge pull request #1 from ramiuslr/feat/quick_restart
Feat/quick restart
2025-04-30 16:51:43 +02:00
e1b48596ca Fixed formatting 2025-04-30 16:50:32 +02:00
fa150dc23a Fastest shutdown using specific handler, and better log system 2025-04-30 16:49:46 +02:00
35b99caaac Add license and readme 2025-04-28 16:34:40 +02:00
4 changed files with 87 additions and 14 deletions

21
LICENSE Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2025 RamiusLr
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

16
README.md Normal file
View File

@@ -0,0 +1,16 @@
pybeemo
===
Use this tool to export as CSV backup data from Beemo console.
# Usage
```bash
docker compose up -d
```
# Endpoints
- `http://yourserver:8000/backupsets.csv`
- `http://yourserver:8000/licenses.csv`
- `http://yourserver:8000/groups.csv`
You can import this data into a custom Grafana dashboard using Infinity datasource.

62
pybeemo
View File

@@ -2,7 +2,9 @@
import http.server
import io
import logging
import os
import signal
import socketserver
import sys
import time
@@ -11,8 +13,30 @@ from threading import Lock, Thread
import pandas as pd
from dotenv import load_dotenv
from fastapi import FastAPI
from requests import Session
# Configure logging system
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(message)s",
handlers=[logging.StreamHandler(sys.stdout)],
)
# Enable quick restart in docker
app = FastAPI()
def shutdown_handler(signum, frame):
logging.info("Received shutdown signal")
sys.exit(0)
signal.signal(signal.SIGTERM, shutdown_handler)
signal.signal(signal.SIGINT, shutdown_handler)
# Global variables
data_lock = Lock()
csv_data = {"licenses": None, "backupsets": None, "groups": None}
@@ -49,6 +73,16 @@ class BeemoHandler(http.server.SimpleHTTPRequestHandler):
self.end_headers()
self.wfile.write(data.encode("utf-8"))
def log_message(self, format, *args):
logging.info(
"%s - - [%s] %s"
% (
self.address_string(),
self.log_date_time_string(),
format % args,
)
)
def main():
# Read parameters from env
@@ -56,19 +90,19 @@ def main():
username = os.getenv("PYBEEMO_USER")
if not username:
print("ERROR: Please set username")
logging.error("Please set username")
sys.exit(1)
password = os.getenv("PYBEEMO_PASSWORD")
if not password:
print("ERROR: Please set a password")
logging.error("Please set a password")
sys.exit(1)
port = 8000
interval = os.getenv("PYBEEMO_INTERVAL")
if not interval:
print("No interval provided, setting default (30)")
logging.info("No interval provided, setting default (30)")
interval = 30
else:
interval = int(interval)
@@ -84,12 +118,12 @@ def main():
# Start HTTP server
Handler = BeemoHandler
with socketserver.TCPServer(("", port), Handler) as httpd:
print(f"[{datetime.now()}] Running at http://localhost:{port}")
print("Available endpoints:")
print(f" http://localhost:{port}/licenses.csv")
print(f" http://localhost:{port}/backupsets.csv")
print(f" http://localhost:{port}/groups.csv")
print(f"Data refresh interval: {interval} minutes")
logging.info(f"[{datetime.now()}] Running at http://localhost:{port}")
logging.info("Available endpoints:")
logging.info(f" http://localhost:{port}/licenses.csv")
logging.info(f" http://localhost:{port}/backupsets.csv")
logging.info(f" http://localhost:{port}/groups.csv")
logging.info(f"Data refresh interval: {interval} minutes")
httpd.serve_forever()
@@ -104,7 +138,7 @@ def login(s: Session, username: str, password: str) -> bool:
# Handle failed login checking response url
if r.url == "https://client.beemotechnologie.com/login.php":
print("Login failure, please check username and password")
logging.error("Login failure, please check username and password")
sys.exit(1)
@@ -182,25 +216,25 @@ def get_groups(s: Session):
def update_data(s: Session, interval):
while True:
print(f"[{datetime.now()}] Updating data...")
logging.info(f"[{datetime.now()}] Updating data...")
# Update licenses
data = get_licenses(s)
with data_lock:
csv_data["licenses"] = data
print(f"[{datetime.now()}] Updated licenses.csv in memory")
logging.info(f"[{datetime.now()}] Updated licenses.csv in memory")
# Update licenses
data = get_backupsets(s)
with data_lock:
csv_data["backupsets"] = data
print(f"[{datetime.now()}] Updated backupsets.csv in memory")
logging.info(f"[{datetime.now()}] Updated backupsets.csv in memory")
# Update groups
data = get_groups(s)
with data_lock:
csv_data["groups"] = data
print(f"[{datetime.now()}] Updated groups.csv in memory")
logging.info(f"[{datetime.now()}] Updated groups.csv in memory")
# Wait time interval before updating again
time.sleep(interval * 60)

View File

@@ -1,3 +1,5 @@
pandas
requests
dotenv
fastapi
logging