-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfreebox-os-reboot.py
250 lines (205 loc) · 7.38 KB
/
freebox-os-reboot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
#!/usr/bin/python3
import sys
import hmac
import hashlib
import time
import argparse
import subprocess
import requests
# ---------------
# CONFIGURATION
# ---------------
APP_TOKEN = ""
FREEBOX_IP = "212.27.38.253"
CHECK_IPS = ["8.8.8.8", "1.1.1.1"]
WHITELIST_IPS = [FREEBOX_IP]
USE_HTTPS = False # Si activé, le port HTTPs sera utilisé mais le certificat non vérifié
class FreeboxReboot:
APP_CONFIG = {
"app_id": "fr.umeda.reboot_utility",
"app_name": "Freebox Reboot Utility",
"app_version": "1.0.0",
"device_name": "Freebox Client",
}
CONFIGURATION_MESSAGE = """
Copiez ce token dans la variable APP_TOKEN du fichier {} :
{}
!!! ATTENTION !!!
Vous devez maintenant autoriser l'application à redémarrer la Freebox :
- Connectez-vous à l'interface d'administration sur http://{}/
- Cliquez sur le menu Free, puis "Paramètres" et "Paramètres de la Freebox"
- Ouvrez "Gestion des accès", puis l'onglet "Applications"
- Cliquez sur le bouton éditer sur la ligne "Freebox Reboot Utility"
- Activez "Modification des réglages de la Freebox"
Vérifiez ensuite la configuration à l'aide de la commande :
{} verify
"""
def __init__(self, app_token, freebox_ip, check_ips, whitelist_ips):
self._app_token = app_token
self._freebox_ip = freebox_ip
self._check_ips = check_ips
self._whitelist_ips = whitelist_ips
self._base_url = None
self._login_info = None
def _req(self, url, json=None, auth=False):
# Fetch configuration
if self._base_url is None:
# Fetch configuration
configuration = requests.get(
"http://{}/api_version".format(self._freebox_ip)
).json()
api_base_url = configuration["api_base_url"]
port = configuration["https_port"]
api_version = configuration["api_version"].split(".")[0]
if configuration["https_available"] and USE_HTTPS:
self._base_url = "https://{}:{}{}v{}/".format(
self._freebox_ip, port, api_base_url, api_version
)
else:
self._base_url = "http://{}{}v{}/".format(
self._freebox_ip, api_base_url, api_version
)
# Handle authentification
headers = {}
if auth:
if self._login_info is None:
self._login()
headers["X-Fbx-App-Auth"] = self._login_info["session_token"]
# Build and launch request
# FIXME SSL Validation
if json is None:
req = requests.get(self._base_url + url, verify=False, headers=headers)
else:
req = requests.post(
self._base_url + url, json=json, verify=False, headers=headers
)
# Check result
req.raise_for_status()
data = req.json()
if not data["success"]:
raise Exception("Error")
# Return result
return data.get("result")
def _ping(self, ip):
return (
subprocess.call(
["ping", "-c", "1", "-W", "1", ip],
stdin=subprocess.DEVNULL,
stdout=subprocess.DEVNULL,
)
== 0
)
def _login(self):
# Logging in
challenge = self._req("login/")["challenge"]
token_b = bytes(self._app_token, "latin-1")
challenge_b = bytes(challenge, "latin-1")
password = hmac.new(token_b, challenge_b, hashlib.sha1).hexdigest()
self._login_info = self._req(
"login/session/",
json={
"app_id": FreeboxReboot.APP_CONFIG["app_id"],
"app_version": FreeboxReboot.APP_CONFIG["app_version"],
"password": password,
},
)
def _verify_app_token(self):
if self._app_token == "":
raise Exception(
"APP_TOKEN n'est pas définie.\nVeuillez lancer la commande suivante et suivre les instructions :\n\n{} register".format(
sys.argv[0]
)
)
def logout(self):
if self._login_info is None:
return
self._req("login/logout/", json={}, auth=True)
def register(self):
""" Registers the application on FreeboxOS
"""
# Fetch challenge
data = self._req("login/authorize", json=FreeboxReboot.APP_CONFIG)
app_token = data["app_token"]
track_id = data["track_id"]
# Wait until user validates the app
print("Veuillez autoriser l'application sur l'écran de la Freebox...")
status = "pending"
while status == "pending":
time.sleep(1)
status = self._req("login/authorize/{}".format(track_id))["status"]
# Check result
if status != "granted":
raise Exception("Impossible d'autoriser l'application : {}".format(status))
print(
FreeboxReboot.CONFIGURATION_MESSAGE.format(
sys.argv[0], app_token, self._freebox_ip, sys.argv[0]
)
)
def check(self):
# Check user configured the token
self._verify_app_token()
# Ping whitelist
for ip in self._whitelist_ips:
if not self._ping(ip):
raise Exception(
'L\'adresse IP sur liste blanche "{}" ne répond pas.'.format(ip)
)
# Ping check ips
for ip in self._check_ips:
if self._ping(ip):
return # All good !
# Internet is down
print(
"Impossible de contacter les adresses IP {}...".format(
", ".join(self._check_ips)
)
)
self.reboot()
def reboot(self):
print("Lancement du redémarrage de la Freebox...")
self._req("system/reboot", json={}, auth=True)
def verify(self):
self._verify_app_token()
self._login()
if not self._login_info["permissions"]["settings"]:
raise Exception("Les permissions de l'application ne sont pas correctes.")
print("OK")
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Outil pour redémarrer la Freebox lorsqu'une déconnexion est détectée."
)
parser.set_defaults(func="check")
subparsers = parser.add_subparsers(title="Commandes")
parser_register = subparsers.add_parser(
"register", help="Enregistre l'application sur FreeboxOS"
)
parser_register.set_defaults(func="register")
parser_verify = subparsers.add_parser(
"verify", help="Vérifie la configuration du script"
)
parser_verify.set_defaults(func="verify")
parser_reboot = subparsers.add_parser("reboot", help="Redémarre la Freebox")
parser_reboot.set_defaults(func="reboot")
parser_check = subparsers.add_parser(
"check", help="Vérifie l'accès à internet et redémarre la Freebox si nécessaire"
)
parser_check.set_defaults(func="check")
args = parser.parse_args()
# Run the command
client = FreeboxReboot(
app_token=APP_TOKEN,
freebox_ip=FREEBOX_IP,
check_ips=CHECK_IPS,
whitelist_ips=WHITELIST_IPS,
)
try:
func = getattr(client, args.func)
func()
except KeyboardInterrupt:
pass
except Exception as e:
print("ERREUR")
print(str(e))
exit(1)
finally:
client.logout()