-
Notifications
You must be signed in to change notification settings - Fork 1
/
create_barcode_from_wifi.py
executable file
·81 lines (73 loc) · 2.88 KB
/
create_barcode_from_wifi.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
#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright (C) 2015 Tobias Mueller <[email protected]>
#
import json
import logging
import sys
import pyqrcode
from read_connections import list_connections
from create_barcode_string import create_string
from get_active_connections import get_active_connections
def barcode_from_connection(connection):
s = create_string(connection)
barcode = pyqrcode.create(s)
return barcode
if __name__ == '__main__':
import textwrap
logging.basicConfig(level=logging.INFO)
log = logging.getLogger(__name__)
connections = list_connections()
if len(sys.argv) == 1:
for i, c in enumerate(connections):
print(("%5d: %s" % (i, c['connection']['id'])))
print ()
connection = next(get_active_connections())
print("Using active connection")
log.debug("Connection: %s", connection)
else:
try:
selection = int(sys.argv[1])
except ValueError:
filter = sys.argv[1]
for i, c in enumerate(connections):
log.debug("Filtering Connection %d: %s", i, json.dumps(c, indent=4))
ssid = bytes(c['802-11-wireless']['ssid']).decode('ascii')
if filter in ssid:
print(("%5d: %s" % (i, c['connection']['id'])))
print ()
sys.exit(0)
else:
print(("Selecting %d" % selection))
connection = connections[selection]
try:
key = connection['802-11-wireless-security'].get('psk', None) or \
connection['802-11-wireless-security']['wep-key0']
except KeyError:
log.exception("Could not find psk nor wep-key0 in keys: %s",
connection['802-11-wireless-security'].keys())
log.info("Connection: %s", json.dumps(connection, indent=4))
raise
s = barcode_from_connection(connection)
log.info(("String: %s", s.data))
print(("%s" % s.terminal(quiet_zone=1,
module_color='black', background='white'
)))
print(("%s - %s") % (bytes(connection['802-11-wireless']['ssid']).decode('ascii'), key))
#s.svg('/tmp/barcode.svg')
#s.eps('/tmp/barcode.epg')
#s.png('/tmp/barcode.png')