-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.py
133 lines (101 loc) · 4.1 KB
/
update.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
import general_use
import dependencies
import subprocess
import os
def update(toolname):
#github tools
repo_canbus_utils = 'https://github.com/digitalbond/canbus-utils.git'
repo_kayak = 'https://github.com/dschanoeh/Kayak.git'
repo_caringcaribou = 'https://github.com/CaringCaribou/caringcaribou.git' #want to check this to make sure it works, instructions a bit unclear
repo_c0f = 'https://github.com/zombieCraig/c0f.git'
repo_udsim = 'https://github.com/zombieCraig/UDSim.git'
repo_j1939 = 'https://github.com/wang701/can-utils-j1939.git'
repo_canbadger = 'https://github.com/Gutenshit/CANBadger.git'
repo_canbadger_server = 'https://github.com/Gutenshit/CANBadger-Server.git'
repo_katoolin = 'https://github.com/LionSec/katoolin.git'
repo_bluelog = 'https://github.com/MS3FGX/Bluelog.git'
repo_bluemaho = 'https://github.com/zenware/bluemaho.git'
#downloaded tools
link_pyobd = 'http://www.obdtester.com/download/pyobd_0.9.3.tar.gz' #this might not work
link_o2oo = 'https://www.vanheusden.com/O2OO/O2OO-0.9.tgz'
link_romraider = 'http://assembla.com/spaces/romraider/documents/a5Ao9gHEir5P9Udmr6QqzO/download/RomRaider0.5.9RC3-linux.jar'
#add exception to check if the tool is installed, in case they accidentally click this. Possibly add a pop-up that says "need to install first"
#check path to make sure it's in the autopen directory
curr = os.getcwd()
back_index = curr.rfind('/')
ap_index = curr.find('autopen')
if curr[back_index:] != '/autopen':
path = curr[:ap_index+7]
else:
path = curr
os.chdir(path)
github_tools = ['canbus-utils', 'Kayak', 'caringcaribou', 'c0f', 'udsim', 'j1939', 'canbadger-hw', 'canbadger-sw', 'katoolin', 'bluelog', 'bluemaho']
downloaded_tools = ['pyobd', 'o2oo', 'romraider']
commandline_tools = ['bluez', 'btscanner', 'gnuradio', 'aircrack-ng', 'wireshark', 'can-utils', 'tshark', 'gqrx']
try:
if toolname in github_tools:
if toolname == 'canbus-utils':
p = os.getcwd() + '/canbus-utils'
os.chdir(p)
elif toolname == 'Kayak':
p = os.getcwd() + '/Kayak'
os.chdir(p)
elif toolname == 'caringcaribou':
p = os.getcwd() + '/caringcaribou'
os.chdir(p)
elif toolname == 'c0f':
p = os.getcwd() + '/c0f'
os.chdir(p)
elif toolname == 'udsim':
p = os.getcwd() + '/UDSim'
os.chdir(p)
elif toolname == 'j1939':
p = os.getcwd() + '/can-utils-j1939'
os.chdir(p)
elif toolname == 'canbadger-hw':
p = os.getcwd() + '/CANBadger'
os.chdir(p)
elif toolname == 'canbadger-sw':
p = os.getcwd() + '/CANBadger-Server'
os.chdir(p)
elif toolname == 'katoolin':
p = os.getcwd() + '/katoolin'
os.chdir(p)
elif toolname == 'bluelog':
p = os.getcwd() + '/Bluelog'
os.chdir(p)
elif toolname == 'bluemaho':
p = os.getcwd() + '/bluemaho'
os.chdir(p)
# github tools are updated based on whether local commit is the same version as the master commit
master = subprocess.run(['git', 'rev-parse', 'master'], stdout=subprocess.PIPE).stdout
origin_master = subprocess.run(['git', 'rev-parse', 'master'], stdout=subprocess.PIPE).stdout
master_id = master.decode('utf-8')
origin_master_id = origin_master.decode('utf-8')
#users repo is behind master
if master_id != origin_master_id:
print ('Updating', toolname, '...')
pull_rc = subprocess.run(['git', 'pull', 'origin', 'master']).returncode
if pull_rc != 0:
print ('UPDATE FAILED: Failed to update', toolname)
print ('ERROR CODE:', pull_rc)
else:
print ('UPDATE SUCCESSFUL: Successfully updated', toolname)
return 0
else:
print (toolname, 'is already up to date')
return 0
elif toolname in commandline_tools:
print ('Updating', toolname, '...')
update_rc = subprocess.run(['sudo', 'apt-get', '--only-upgrade', '-y', 'install', toolname]).returncode
if update_rc != 0:
print ('UPDATE FAILED: Failed to update', toolname)
print ('ERROR CODE:', update_rc)
else:
print ('UPDATE SUCCESSFUL: Successfully updated', toolname)
return 0
except:
print ('Make sure tool is installed. Tool needs to be installed before updating')
return 0
def test(name):
return 0