-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
170 lines (157 loc) · 7.27 KB
/
__init__.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
# NEON AI (TM) SOFTWARE, Software Development Kit & Application Framework
# All trademark and other rights reserved by their respective owners
# Copyright 2008-2022 Neongecko.com Inc.
# Contributors: Daniel McKnight, Guy Daniels, Elon Gasper, Richard Leeds,
# Regina Bloomstine, Casimiro Ferreira, Andrii Pernatii, Kirill Hrymailo
# BSD-3 License
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import json
from typing import List
from random import shuffle
from os.path import isdir
from ovos_plugin_manager.skills import get_skill_directories, get_plugin_skills
from ovos_utils import classproperty
from ovos_utils.process_utils import RuntimeRequirements
from neon_utils.skills.neon_skill import NeonSkill
from neon_utils.log_utils import LOG
from ovos_workshop.intents import IntentBuilder
from os import listdir, path
from ovos_workshop.decorators import skill_api_method, intent_handler
class AboutSkill(NeonSkill):
def __init__(self, **kwargs):
NeonSkill.__init__(self, **kwargs)
self.skill_info = None
# TODO: Reload skills list when skills are added/removed DM
self._update_skills_data()
@classproperty
def runtime_requirements(self):
return RuntimeRequirements(network_before_load=False,
internet_before_load=False,
gui_before_load=False,
requires_internet=False,
requires_network=False,
requires_gui=False,
no_internet_fallback=True,
no_network_fallback=True,
no_gui_fallback=True)
@property
def ignored_skills(self) -> List[str]:
"""
Get configured skills to ignore (default blacklisted skills)
"""
return self.config_core.get('skills').get('blacklisted_skills')
@intent_handler(IntentBuilder("LicenseIntent")
.require("tell").require("license")
.optionally("long"))
def read_license(self, message):
"""
Reads back the NeonAI license from skill dialog
:param message: Message associated with request
"""
if self.neon_in_request(message):
if message.data.get("long"):
self.speak_dialog("license_long")
else:
self.speak_dialog("license_short")
@intent_handler(IntentBuilder("ListSkillsIntent")
.optionally("tell").require("skills"))
def list_skills(self, message):
"""
Lists all installed skills by name.
:param message: Message associated with request
"""
if self.neon_in_request(message):
skills_list = [s['title'] for s in self.skill_info if s.get('title')]
skills_list.sort()
skills_to_speak = ", ".join(skills_list)
self.speak_dialog("skills_list", data={"list": skills_to_speak})
@skill_api_method
def skill_info_examples(self) -> list:
"""
API Method to build a list of examples as listed in skill metadata.
"""
examples = (d.get('examples') or list() for d in self.skill_info)
flat_list = [item for skill in examples
for item in skill if
not any((sym in item for sym in ('{', '/', '(', '[')))]
shuffle(flat_list)
return flat_list
def _update_skills_data(self):
"""
Loads skill metadata for all installed skills.
"""
skills = list()
skills_dirs = get_skill_directories()
for skills_dir in skills_dirs:
if not isdir(skills_dir):
LOG.warning(f"No such directory: {skills_dir}")
continue
for skill in listdir(skills_dir):
if skill in self.ignored_skills:
LOG.info(f"Ignoring: {skill}")
continue
if path.isdir(path.join(skills_dir, skill)) and \
path.isfile(path.join(skills_dir, skill,
"__init__.py")):
skills.append(self._load_skill_json(path.join(skills_dir,
skill)))
plugin_data = self._get_plugin_skill_data()
try:
combined = skills + plugin_data
self.skill_info = combined
except Exception as e:
LOG.exception(e)
self.skill_info = plugin_data
def _get_plugin_skill_data(self) -> list:
"""
Get a list of dict skill specs for all pip installed skills
"""
skills = list()
plugin_dirs, plugin_ids = get_plugin_skills()
plugins = {plugin_ids[i]: plugin_dirs[i]
for i in range(len(plugin_ids))}
for skill_id, skill_dir in plugins.items():
if skill_id in self.ignored_skills:
LOG.info(f"Ignoring: {skill_id}")
continue
skills.append(self._load_skill_json(skill_dir))
return skills
@staticmethod
def _load_skill_json(skill_dir: str) -> dict:
"""
Get a dict representation of the specified skill (directory)
:param skill_dir: directory containing skill files
:returns: dict spec read from `skill.json` or built from skill dirname
"""
if not path.isdir(skill_dir):
raise FileNotFoundError(f"{skill_dir} is not a valid directory")
if path.isfile(path.join(skill_dir, "skill.json")):
with open(path.join(skill_dir, "skill.json")) as f:
skill_data = json.load(f)
else:
skill_name = str(path.basename(skill_dir).split('.')[0]).\
replace('-', ' ').lower()
skill_data = {"title": skill_name}
return skill_data
def stop(self):
pass