-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage_managers.py
182 lines (144 loc) · 5.29 KB
/
package_managers.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
""" Package management commands for Mac, Ubuntu, and CentOS.
This module is meant to provide support for multiple platforms so it is easy
to define how tools are defined on different operating systems.
"""
from __future__ import print_function
import logging
import os
import sh
from cli import Authentication, CommandInterface
class GitHub(CommandInterface):
""" Clones packages from GitHub repositories. """
def __init__(self, repo, dest):
self.repo = repo
self.dest = dest
def execute(self):
if os.path.exists(self.dest):
return True
try:
sh.git("clone", self.repo, self.dest)
except sh.ErrorReturnCode as err:
err_message = "\n\t" + err.stderr.replace("\n", "\n\t")
logging.error(
"Error with `git clone %s`: %s",
self.repo,
err_message
)
return False
return True
class Brew(CommandInterface):
""" Installs packages using MacOS Homebrew. """
def __init__(self, package):
self.package = package
def execute(self):
try:
sh.brew("list", self.package)
except sh.ErrorReturnCode_1:
try:
sh.brew("install", self.package)
except sh.ErrorReturnCode as err:
err_message = "\n\t" + err.stderr.replace("\n", "\n\t")
logging.error(
"Error with `brew install %s`: %s",
self.package,
err_message
)
return False
return True
class BrewCask(CommandInterface):
""" Installs casks (UI apps) from MacOS homebrew """
def __init__(self, package):
self.package = package
def execute(self):
try:
sh.brew("cask", "list", self.package)
except sh.ErrorReturnCode_1:
try:
sh.brew("cask", "install", self.package)
except sh.ErrorReturnCode as err:
err_message = "\n\t" + err.stderr.replace("\n", "\n\t")
logging.error(
"Error with `brew cask install %s`: %s",
self.package,
err_message
)
return False
return True
class Apt(CommandInterface):
""" Installs packages on Debian-based computers. """
def __init__(self, package):
self.package = package
def execute(self):
try:
sh.dpkg("-l", self.package)
except sh.ErrorReturnCode_1:
try:
with Authentication():
sh.apt_get("install", "-y", self.package)
except sh.ErrorReturnCode as err:
err_message = "\n\t" + err.stderr.replace("\n", "\n\t")
logging.error(
"Error with `apt-get install %s`: %s",
self.package,
err_message
)
return False
return True
# TODO (plemons): All of these package manager classes look very similar. Is
# there a way we could reduce the amount of replicated code?
class Yum(CommandInterface):
""" Installs packages on CentOS machines. """
def __init__(self, package):
self.package = package
def execute(self):
with Authentication():
try:
sh.yum("list", "installed", self.package)
except sh.ErrorReturnCode_1:
try:
sh.yum("install", "-y", self.package)
except sh.ErrorReturnCode as err:
err_message = "\n\t" + err.stderr.replace("\n", "\n\t")
logging.error(
"Error with `sudo yum install %s`: %s",
self.package,
err_message
)
return False
return True
# TODO (plemons): This currently installs using sudo. If we wanted to install
# into a virtual environment, we would need to run as the user instead of root.
class Pip(CommandInterface):
""" Installs python packages using pip.
This will install python packages using pip as the root user. This class
will need to be updated if you want to install into a virtual environment.
"""
def __init__(self, package):
self.package = package
def execute(self):
with Authentication():
try:
sh.pip("show", self.package)
except sh.ErrorReturnCode_1:
try:
sh.pip("install", self.package)
except sh.ErrorReturnCode as err:
err_message = "\n\t" + err.stderr.replace("\n", "\n\t")
logging.error(
"Error with `sudo pip install %s`: %s",
self.package,
err_message
)
return False
return True
if __name__ == "__main__":
from system_info import get_platform
plat = get_platform()
if plat == "darwin":
print("Installing rolldice with homebrew")
Brew("rolldice").execute()
elif plat == "debian":
print("Installing rolldice with apt-get")
Apt("rolldice").execute()
else:
print("Unsupported platform:", plat)