-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrmDevice.py
executable file
·78 lines (59 loc) · 1.99 KB
/
rmDevice.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
#!/usr/bin/env python3
import sys
import os
import configparser
from argparse import ArgumentParser
from HardwareCheckout.models import DeviceQueue
from HardwareCheckout.config import db_path
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
parser = ArgumentParser()
parser.add_argument("-u", "--username", help="Device user name", required=False)
parser.add_argument(
"-i", "--ini", help="Ini file containing list of devices", required=False
)
args = parser.parse_args()
session = sessionmaker(bind=create_engine(db_path))
s = session()
def iniParse(confPath):
config = configparser.ConfigParser()
config.read(confPath)
result = []
for item in config.sections():
result.append(config[item]["username"])
return result
def removeDevice(devicename):
device = s.query(DeviceQueue).filter_by(name=devicename).first()
if not device:
print("no device found - {}!".format(devicename))
sys.exit(0)
s.delete(device)
s.commit()
def printHelp():
print("Deleting multiple devices:")
print("python3 rmDevice.py -i <path/to/inifile>")
print()
print("Remove a single device:")
print("python3 rmDevice.py -u <devicename>")
sys.exit(1)
def main():
if args.ini and args.username:
print("You cannot define a device name and a ini file at the same time!!")
elif args.username:
removeDevice(args.username)
else:
if not args.ini or not args.username:
parser.print_help(sys.stderr)
print("")
printHelp()
if not os.path.isfile(args.ini):
print("Ini file {} doesn't exist!".format(args.ini))
parser.print_help(sys.stderr)
sys.exit(1)
# for parsing csv files replace this with
# csvParse(csvPath) --> Note that csvParse expects device type in the file
devices = iniParse(args.ini)
for devicename in devices:
removeDevice(devicename)
if __name__ == "__main__":
main()