dashboarddefaults: key display mappings by stable FQDN (from BIOS serial), IP fallback
A display's DHCP IP can change; its FQDN (F<serial>.<domain>, domain from the display_fqdn_domain setting) is stable and the collector already reports the serial. Add a nullable unique fqdn column (varchar191 so the index fits utf8mb4 without innodb_large_prefix), make ipaddress nullable, and require fqdn OR ip. visitor-location + display-role resolve by FQDN first, then IP; create/update accept fqdn. Core migration 7d31, verified up/down/idempotent on MySQL 5.6. 'Business unit' wording -> 'location' in the validation messages.
This commit is contained in:
@@ -18,14 +18,41 @@ DISPLAY_ROLE_PATHS = {
|
||||
}
|
||||
DISPLAY_ROLES = tuple(DISPLAY_ROLE_PATHS.keys())
|
||||
|
||||
# GE device naming: a PC's DNS name is 'F' + its BIOS serial under the device
|
||||
# domain, e.g. FABC1234.device.geaerospace.net. The domain is a setting so other
|
||||
# sites can point elsewhere; the collector already reports the serial, so the
|
||||
# server derives the stable FQDN without the kiosk having to report it.
|
||||
DEFAULT_DISPLAY_FQDN_DOMAIN = 'device.geaerospace.net'
|
||||
|
||||
|
||||
def derive_display_fqdn(serialnumber):
|
||||
"""FQDN for a display PC from its BIOS serial: F<serial>.<domain> (lower).
|
||||
|
||||
Returns None when there is no serial. Domain from the display_fqdn_domain
|
||||
setting, falling back to DEFAULT_DISPLAY_FQDN_DOMAIN.
|
||||
"""
|
||||
serial = (serialnumber or '').strip()
|
||||
if not serial:
|
||||
return None
|
||||
from .setting import Setting
|
||||
domain = (Setting.get('display_fqdn_domain', DEFAULT_DISPLAY_FQDN_DOMAIN)
|
||||
or DEFAULT_DISPLAY_FQDN_DOMAIN).strip().strip('.')
|
||||
return f'F{serial}.{domain}'.lower()
|
||||
|
||||
|
||||
class DashboardDefault(BaseModel):
|
||||
"""Maps a display PC IP address to its display role (+ business unit)."""
|
||||
"""Maps a display PC (by FQDN, or IP) to its display role (+ location)."""
|
||||
__tablename__ = 'dashboarddefaults'
|
||||
|
||||
dashboarddefaultid = db.Column(db.Integer, primary_key=True)
|
||||
ipaddress = db.Column(db.String(50), unique=True, nullable=False)
|
||||
# Which display the IP drives. Only the dashboard role uses businessunitid.
|
||||
# A mapping is keyed by FQDN (stable, DHCP-proof) and/or IP. At least one is
|
||||
# required (enforced in the API). FQDN is preferred; IP is the fallback for a
|
||||
# manual entry or a PC not yet reporting a serial.
|
||||
# 191 = the utf8mb4-safe unique-index length (191*4 < 767) so the index does
|
||||
# not depend on innodb_large_prefix; FQDNs (F<serial>.<domain>) fit easily.
|
||||
fqdn = db.Column(db.String(191), unique=True, nullable=True, index=True)
|
||||
ipaddress = db.Column(db.String(50), unique=True, nullable=True)
|
||||
# Which display the mapping drives. Only the dashboard role uses businessunitid.
|
||||
displayrole = db.Column(db.String(20), nullable=False, default='dashboard')
|
||||
businessunitid = db.Column(
|
||||
db.Integer,
|
||||
@@ -41,4 +68,4 @@ class DashboardDefault(BaseModel):
|
||||
return DISPLAY_ROLE_PATHS.get(self.displayrole)
|
||||
|
||||
def __repr__(self):
|
||||
return f"<DashboardDefault {self.ipaddress} -> {self.displayrole}>"
|
||||
return f"<DashboardDefault {self.fqdn or self.ipaddress} -> {self.displayrole}>"
|
||||
|
||||
Reference in New Issue
Block a user