sync: auto-sync from HOWARD-HOME at 2026-07-04 09:24:45

Author: Howard Enos
Machine: HOWARD-HOME
Timestamp: 2026-07-04 09:24:45
This commit is contained in:
2026-07-04 09:25:14 -07:00
parent 4e739abe5f
commit a1f0a3e5e8
2 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
#!/usr/bin/env python3
# reassign-staging.py — move GuruRMM agents out of the "Staging - Auto Enroll" catch-all
# into their real client, by matching hostname -> Syncro customer -> GuruRMM client.
#
# Flow: a generic installer (site DARK-STORM-3150) is pushed via a Syncro policy to every
# managed machine; they enroll into Staging. This tool then reassigns each to the right
# client automatically. Idempotent — run it on a schedule or on demand.
#
# Env: RMM, TOK (GuruRMM), SK (Syncro api key). --dry = report only.
import json,urllib.request,ssl,os,sys
RMM=os.environ["RMM"]; TOK=os.environ["TOK"]; SK=os.environ["SK"]
ctx=ssl.create_default_context(); DRY="--dry" in sys.argv
STAGING_CLIENT="Staging - Auto Enroll"
def rget(path):
return json.loads("".join(c for c in urllib.request.urlopen(urllib.request.Request(f"{RMM}{path}",headers={"Authorization":f"Bearer {TOK}"}),context=ctx,timeout=30).read().decode("utf-8","replace") if ord(c)>=32 or c in "\t\n\r"))
def move(aid,site_id):
req=urllib.request.Request(f"{RMM}/api/agents/{aid}/move",data=json.dumps({"site_id":site_id}).encode(),method="POST",headers={"Authorization":f"Bearer {TOK}","Content-Type":"application/json"})
urllib.request.urlopen(req,context=ctx,timeout=20)
def syncro_customer(hostname):
raw=urllib.request.urlopen(urllib.request.Request(f"https://computerguru.syncromsp.com/api/v1/customer_assets?query={urllib.parse.quote(hostname)}&api_key={SK}"),context=ctx,timeout=25).read()
raw="".join(chr(b) for b in raw if b>=32 or b in (9,10,13))
for a in json.loads(raw).get("assets",[]):
if (a.get("name") or "").lower()==hostname.lower():
c=a.get("customer") or {}
return c.get("business_name") or c.get("fullname")
return None
import urllib.parse
agents=rget("/api/agents")
staging=[a for a in agents if a.get("client_name")==STAGING_CLIENT]
print(f"{len(staging)} agents in Staging")
# GuruRMM client -> a target site id (prefer 'Main'/'Main Office', else first)
clients=rget("/api/clients")
name2site={}
for c in clients:
if c["name"]==STAGING_CLIENT: continue
sites=rget(f"/api/clients/{c['id']}/sites")
if not sites: continue
main=next((s for s in sites if s["name"].lower() in ("main","main office","office")), sites[0])
name2site[c["name"].lower()]=main["id"]
moved=0; unmatched=[]
for a in staging:
cust=syncro_customer(a["hostname"])
site=name2site.get((cust or "").lower())
if cust and site:
if not DRY: move(a["id"],site)
moved+=1; print(f" {a['hostname']} -> '{cust}'")
else:
unmatched.append(f"{a['hostname']} (syncro='{cust}')")
print(f"\n{'WOULD move' if DRY else 'Moved'} {moved}; unmatched {len(unmatched)} (stay in Staging):")
for u in unmatched: print(" "+u)