Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
smartlock/Setup.py

44 lines
1.5 KiB
Python

import io, socket, subprocess, shelve
from requests import post, get
from flask import request, Flask
#hostapd system
#http://192.168.43.155:5000/setup?ssid=cimaphone&password=cimakodu30&id=1
app = Flask(__name__)
def writeconfig(ssid, password):
rtline = "\n"
with io.open("/etc/wpa_supplicant/wpa_supplicant.conf", "w", encoding="utf8") as note:
conf = str()
for i in ["ctrl_interface=/var/run/wpa_supplicant\nupdate_config=1\ncountry=FR\nnetwork={\nssid=\"", ssid, "\"\nscan_ssid=1\npsk=\"", password, "\"\n}"]:
conf += i
note.write(conf)
subprocess.check_call(["sudo", "wpa_cli", "-i", "wlan0", "reconfigure"])
def testinternet():
result = True
try:
socket.gethostbyname("www.google.com")
except:
result = False
return result
@app.route("/setup")
def web_setup():
if not (request.args.get("ssid") and request.args.get("password") and request.args.get("id")):
return "Error"
else:
writeconfig(request.args.get("ssid"), request.args.get("password"))
if testinternet():
mac = io.open("/sys/class/net/wlan0/address").read()
id = request.args.get("id")
with shelve.open("Settings.conf") as settings:
settings["token"] = id
r = get(f"http://vps.flifloo.fr:5000/locksetup?mac={mac}&id={id}")
else:
return "Cant connect"
return "Done"
if __name__ == "__main__":
app.run(debug=True, port=6000, host="0.0.0.0")