scripts/python/ssid_check_valid_length.py

45 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2023-05-18 09:06:16 +02:00
"""
This script asks for a SSID name, counts it and tells whether it's of valid
length
2023-05-18 09:06:16 +02:00
"""
# Request input or assume "test" on empty.
GIVENSSID = str(
2023-05-18 09:06:16 +02:00
input(
2023-10-10 09:16:58 +02:00
"Please enter the SSID you are thinking of (preferably 26 chars to fit _nomap): ",
2023-05-18 09:06:16 +02:00
)
2023-10-10 09:16:58 +02:00
or "test",
2023-05-18 09:06:16 +02:00
)
# Ensure it's UTF-8 and store the size. E.g. åäö are longer than oao
# TODO: make this a function too
GIVENSSIDLEN = len(GIVENSSID.encode("utf8"))
2023-05-18 09:06:16 +02:00
# Checking the SSID length is done twice, so thus a function
def checkssidlen(GIVENSSIDLEN):
"""
This function checks that the given string is below 32 characters long and
can thus be used as an SSID.
"""
# 32 bytes should be the maximum SSID length
if GIVENSSIDLEN <= 32:
print(GIVENSSID, "is", GIVENSSIDLEN, "long and thus valid length")
else:
2023-10-17 06:34:05 +02:00
print(
GIVENSSID,
2023-10-17 06:34:05 +02:00
"is",
GIVENSSIDLEN,
2023-10-17 06:34:05 +02:00
"to long, please select a different SSID",
)
2023-05-18 09:06:16 +02:00
# Checking the SSID without _nomap
checkssidlen(GIVENSSIDLEN)
# TODO: make this a function too
GIVENSSIDLEN = len(GIVENSSID.encode("utf8"))
# Continuing with _nomap to ensure it also fits
GIVENSSID = GIVENSSID + "_nomap"
checkssidlen(GIVENSSIDLEN)