-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathplugin.py
476 lines (391 loc) · 16.4 KB
/
plugin.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
# Copyright (C) 2022 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
"""This module handles the usage of third party plugins"""
from argparse import RawTextHelpFormatter
from enum import Enum
from shutil import rmtree, copytree
from tarfile import is_tarfile, open as tar_open
from zipfile import is_zipfile, ZipFile
from pathlib import Path
from toml import loads as toml_loads
from kit.utils.constants import Constants, PluginsConfig, PluginState
from kit.utils.yes import is_yes
from kit.utils.subparsers import (
get_options_description,
get_plugin_arg_choices,
validate_input,
)
from kit.utils.files import list_dirs, load_toml, dump_toml, dash_to_underscore
from kit.utils.tab_completion import plugins_enable_completer, plugins_disable_completer
PluginSettings = dict[str, str]
PluginSettingsList = list[PluginSettings]
ConfigDict = dict[str, PluginSettings]
class InvalidPluginError(Exception):
"""InvalidPluginError exception raised for an invalid plugin"""
class PluginType(Enum):
"""Categories of files"""
DIR = 1
TAR = 2
ZIP = 3
def load_plugins_config_file(source_file: Path = PluginsConfig.FILE) -> ConfigDict:
"""Return plugins dictionary"""
try:
# Get the plugins data
return load_toml(source_file)[PluginsConfig.KEY]
except FileNotFoundError as e:
raise FileNotFoundError(
f"{str(e)}. Please execute: hekit init --default-config"
) from e
def update_plugins_config_file(
config_dict: ConfigDict, dest_file: Path = PluginsConfig.FILE
) -> None:
"""Save changes in the plugins data"""
sorted_dict = {PluginsConfig.KEY: dict(sorted(config_dict.items()))}
dump_toml(dest_file, sorted_dict)
def get_plugin_type(plugin_path: Path) -> PluginType:
"""Return plugin type"""
if not plugin_path.exists():
raise FileNotFoundError(f"File '{plugin_path}' not found")
if plugin_path.is_dir():
return PluginType.DIR
if is_tarfile(plugin_path):
return PluginType.TAR
if is_zipfile(plugin_path):
return PluginType.ZIP
raise TypeError("This program only supports tarball or zip files")
def check_plugin_structure(
plugin_path: Path, plugin_type: PluginType
) -> PluginSettingsList:
"""Check the minimum plugin structure (a directory with a plugin.py file)
and return its name"""
plugin_settings_list = []
exp_toml = "plugin.toml"
try:
if PluginType.DIR == plugin_type:
exp_file = exp_toml
plugin_settings_dict = load_toml(plugin_path / exp_file)["plugin"]
exp_file = plugin_path / plugin_settings_dict["start"]
if not Path(exp_file).exists():
raise FileNotFoundError()
plugin_settings_list = [plugin_settings_dict]
elif PluginType.TAR == plugin_type:
with tar_open(plugin_path) as f:
# get the list of plugin.toml files
exp_file = exp_toml
tar_toml_list = [
item.name for item in f.getmembers() if exp_file in item.name
]
if not tar_toml_list:
raise FileNotFoundError()
# getmember and extractfile raise a KeyError if the file cannot be found
for toml_file in tar_toml_list:
# Verify the toml file is in a directory
exp_file = f"DIRECTORY/{exp_toml}"
dir_name = toml_file.split("/")[0]
f.getmember(dir_name)
# Read the toml file and check that the file
# defined in "start" is present
file = f.extractfile(toml_file)
if file is None:
raise TypeError(f"{toml_file} is not valid file")
with file:
file_content = file.read().decode("utf-8")
plugin_settings_dict = toml_loads(file_content)["plugin"]
exp_file = f'{dir_name}/{plugin_settings_dict["start"]}'
f.getmember(exp_file)
plugin_settings_list.append(plugin_settings_dict)
elif PluginType.ZIP == plugin_type:
with ZipFile(plugin_path) as f:
# get the list of plugin.toml files
exp_file = exp_toml
zip_toml_list = [
item.filename for item in f.infolist() if exp_file in item.filename
]
if not zip_toml_list:
raise FileNotFoundError()
# getinfo and open raise a KeyError if the file cannot be found
for toml_file in zip_toml_list:
# Verify the toml file is in a directory
exp_file = f"DIRECTORY/{exp_toml}"
dir_name = toml_file.split("/")[0]
f.getinfo(f"{dir_name}/")
# Read the toml file and check that the file
# defined in "start" is present
with f.open(toml_file) as file:
file_content = file.read().decode("utf-8")
plugin_settings_dict = toml_loads(file_content)["plugin"]
exp_file = f'{dir_name}/{plugin_settings_dict["start"]}'
f.getinfo(exp_file)
plugin_settings_list.append(plugin_settings_dict)
except (FileNotFoundError, KeyError) as e:
raise InvalidPluginError(
f"File '{exp_file}' not found in '{plugin_path.name}'"
) from e
return plugin_settings_list
def move_plugin_data(
plugin_name: str,
plugin_path: Path,
plugin_type: PluginType,
dest_path: Path = PluginsConfig.ROOT_DIR,
) -> None:
"""Move the plugin data to ~/.hekit/plugins"""
if PluginType.DIR == plugin_type:
copytree(plugin_path, dest_path / dash_to_underscore(plugin_name))
elif PluginType.TAR == plugin_type:
with tar_open(plugin_path) as f:
tar_items = [item for item in f.getmembers() if plugin_name in item.name]
f.extractall(dest_path, tar_items)
elif PluginType.ZIP == plugin_type:
with ZipFile(plugin_path) as f:
zip_items = [item for item in f.infolist() if plugin_name in item.filename]
f.extractall(dest_path, zip_items)
def remove_plugin_data(
plugin_name: str, dest_path: Path = PluginsConfig.ROOT_DIR
) -> None:
"""Remove a plugin folder if it exists"""
plugin_path = dest_path / dash_to_underscore(plugin_name)
if Path(plugin_path).exists():
rmtree(plugin_path)
def are_plugin_args_correct(
plugin_name: str, is_plugin_present: bool, hekit_parsers_list: list[str]
) -> bool:
"""Verify that all plugin names are valid and unique"""
# Get plugin names
arg_choices_list = get_plugin_arg_choices(plugin_name)
# verify the argument parser was defined for the plugin
if len(arg_choices_list) == 0:
print(
f"{plugin_name} cannot be installed because its argument parser was not defined"
)
return False
for plugin_arg_choice in arg_choices_list:
# verify the prog name of the parser is equal to plugin name
if plugin_arg_choice != plugin_name:
print(
f"Invalid argument definition, found '{plugin_arg_choice}', expected '{plugin_name}'"
)
return False
# Verify argument is not a reserved word
if plugin_arg_choice in Constants.HEKIT_COMMANDS:
print(
f"Invalid argument definition, '{plugin_arg_choice}' is a reserved HE Toolkit command"
)
return False
# Verify it is not a new version and the argument is unique
if not is_plugin_present and plugin_arg_choice in hekit_parsers_list:
print(
f"Invalid argument definition, '{plugin_arg_choice}' is already used by another plugin"
)
return False
return True
def install_plugin(args) -> None:
"""Install third party plugins"""
config_dict = load_plugins_config_file()
plugin_path = Path(args.plugin).resolve()
plugin_type = get_plugin_type(plugin_path)
plugin_settings_list = check_plugin_structure(plugin_path, plugin_type)
update_config = False
for plugin_settings_dict in plugin_settings_list:
plugin_name = plugin_settings_dict["name"]
plugin_version = plugin_settings_dict["version"]
is_plugin_present = plugin_name in config_dict.keys()
if args.force:
# remove the present version
remove_plugin_data(plugin_name)
elif is_plugin_present:
# check the versions because the plugin is on the system
config_version = config_dict[plugin_name]["version"]
if config_version == plugin_version:
print(
f"{plugin_name} version {plugin_version} is already installed on the system"
)
continue
# Installing a different version
user_answer = input(
f"You are trying to install {plugin_name} version {plugin_version}.\n"
f"However the version {config_version} was found on the system.\n"
"Do you want to remove the present version and continue? (y/n) "
)
if not is_yes(user_answer):
continue
# remove the present version
remove_plugin_data(plugin_name)
move_plugin_data(plugin_name, plugin_path, plugin_type)
# verify the plugin arguments
if not are_plugin_args_correct(
plugin_name, is_plugin_present, args.hekit_parsers_list
):
remove_plugin_data(plugin_name)
continue
config_dict[plugin_name] = {
"version": plugin_version,
"state": PluginState.ENABLE,
"start": plugin_settings_dict["start"],
}
update_config = True
print(f"Plugin {plugin_name} was installed successfully")
if update_config:
update_plugins_config_file(config_dict)
def remove_plugin(args) -> None:
"""Remove third party plugins"""
config_dict = load_plugins_config_file()
if args.all:
# Remove all third party plugins
user_answer = input(
"All plugins will be deleted. Do you want to continue? (y/n) "
)
if not is_yes(user_answer):
return
for plugin_name in config_dict.keys():
remove_plugin_data(plugin_name)
config_dict.clear()
print("All plugins were uninstalled successfully")
else:
# Remove a specific third party plugins
plugin_name = args.plugin
if not plugin_name:
raise ValueError("A plugin name should be specified as argument")
if plugin_name not in config_dict.keys():
print(f"Plugin {plugin_name} was not found on the system")
return
remove_plugin_data(plugin_name)
del config_dict[plugin_name]
print(f"Plugin {plugin_name} was uninstalled successfully")
update_plugins_config_file(config_dict)
def update_plugin_state(args) -> None:
"""Enable third party plugins"""
config_dict = load_plugins_config_file()
plugin_name = args.plugin
plugin_state = args.state
if plugin_name not in config_dict.keys():
print(f"Plugin {plugin_name} was not found on the system")
return
if config_dict[plugin_name]["state"] == plugin_state:
print(f"Plugin {plugin_name} is already {plugin_state} on the system")
return
config_dict[plugin_name]["state"] = plugin_state
update_plugins_config_file(config_dict)
print(f"Plugin {plugin_name} was {plugin_state} successfully")
def list_plugins(args) -> None:
"""Print the list of all plugins"""
config_dict = load_plugins_config_file()
state = args.state
width_name = max(map(len, config_dict.keys()), default=0) + 3
width_status = 10
filtered_config_dict = (
config_dict.items()
if state == "all"
else ((k, v) for k, v in config_dict.items() if state == v["state"])
)
print(
f"{'PLUGIN':{width_name}} {'VERSION':{width_status}} {'STATE':{width_status}}"
)
for k, v in filtered_config_dict:
print(
f"{k:{width_name}} {v['version']:{width_status}} {v['state']:{width_status}}"
)
def refresh_plugins(args) -> None: # pylint: disable=unused-argument
"""Synchronize the information regarding the plugins on the system"""
def get_plugin_settings():
root_dir = args.root_dir
for plugin_dir in list_dirs(root_dir):
plugin_path = root_dir / plugin_dir
# Verify TOML file exists
toml_file = plugin_path / "plugin.toml"
if not Path(toml_file).exists():
raise FileNotFoundError(f"plugin.toml not found in {plugin_path}")
plugin_settings_dict = load_toml(toml_file)["plugin"]
name, version, start = (
plugin_settings_dict["name"],
plugin_settings_dict["version"],
plugin_settings_dict["start"],
)
# Verify main python file exists
python_file = plugin_path / start
if not Path(python_file).exists():
raise FileNotFoundError(f"{start} not found in {plugin_path}")
yield name, version, start
config_dict = {
name: {"version": version, "state": PluginState.ENABLE, "start": start}
for name, version, start in get_plugin_settings()
}
update_plugins_config_file(config_dict)
def set_plugin_subparser(subparsers) -> None:
"""Create the parser for the 'plugin' command"""
parser_plugin = subparsers.add_parser(
"plugins",
description="handle third party plugins",
formatter_class=RawTextHelpFormatter,
)
subparsers_plugin = parser_plugin.add_subparsers(metavar="sub-command")
# list options
state_choices = ["all", PluginState.ENABLE, PluginState.DISABLE]
parser_list = subparsers_plugin.add_parser(
"list", description="print the list of all plugins"
)
parser_list.add_argument(
"--state",
default="all",
choices=state_choices,
help=f"filter the plugins by their state. Options are: {', '.join(state_choices)}",
metavar="STATE",
)
parser_list.set_defaults(fn=list_plugins)
# install options
parser_install = subparsers_plugin.add_parser(
"install", description="install a new plugin"
)
parser_install.add_argument(
"plugin",
type=validate_input,
help="file with the plugin",
)
parser_install.add_argument(
"--force", action="store_true", help="forces the installation process"
)
parser_install.set_defaults(
fn=install_plugin, hekit_parsers_list=subparsers.choices.keys()
)
# remove options
parser_remove = subparsers_plugin.add_parser(
"remove", description="remove a plugin"
)
parser_remove.add_argument(
"plugin",
type=validate_input,
help="plugin name",
nargs="?",
default="",
).completer = plugins_enable_completer
parser_remove.add_argument(
"--all",
action="store_true",
help="Remove all plugins on the system",
)
parser_remove.set_defaults(fn=remove_plugin)
# enable options
parser_enable = subparsers_plugin.add_parser(
"enable", description="enable a plugin"
)
parser_enable.add_argument(
"plugin", type=validate_input, help="plugin name"
).completer = plugins_disable_completer
parser_enable.set_defaults(fn=update_plugin_state, state=PluginState.ENABLE)
# disable options
parser_disable = subparsers_plugin.add_parser(
"disable", description="disable a plugin"
)
parser_disable.add_argument(
"plugin", type=validate_input, help="plugin name"
).completer = plugins_enable_completer
parser_disable.set_defaults(fn=update_plugin_state, state=PluginState.DISABLE)
# refresh options
parser_list = subparsers_plugin.add_parser(
"refresh",
description="synchronize the information regarding the plugins on the system",
)
parser_list.set_defaults(fn=refresh_plugins, root_dir=PluginsConfig.ROOT_DIR)
# Get the name and description for each sub-command
subparsers_plugin.help = get_options_description(
subparsers_plugin.choices, width=10
)