Mercurial > libervia-backend
view sat/plugins/plugin_exp_lang_detect.py @ 4044:3900626bc100
plugin XEP-0166: refactoring, and various improvments:
- add models for transport and applications handlers and linked data
- split models into separate file
- some type hints
- some documentation comments
- add actions to prepare confirmation, useful to do initial parsing of all contents
- application arg/kwargs and some transport data can be initialised during Jingle
`initiate` call, this is notably useful when a call is made with transport data (this is
the call for A/V calls where codecs and ICE candidate can be specified when starting a
call)
- session data can be specified during Jingle `initiate` call
- new `store_in_session` argument in `_parse_elements`, which can be used to avoid
race-condition when a context element (<decription> or <transport>) is being parsed for
an action while an other action happens (like `transport-info`)
- don't sed `sid` in `transport_elt` during a `transport-info` action anymore in
`build_action`: this is specific to Jingle File Transfer and has been moved there
rel 419
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 15 May 2023 16:23:11 +0200 |
parents | 524856bd7b19 |
children | c23cad65ae99 |
line wrap: on
line source
#!/usr/bin/env python3 # SAT plugin to detect language (experimental) # Copyright (C) 2009-2021 Jérôme Poisson (goffi@goffi.org) # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. from sat.core.i18n import _, D_ from sat.core.constants import Const as C from sat.core.log import getLogger log = getLogger(__name__) from sat.core import exceptions try: from langid.langid import LanguageIdentifier, model except ImportError: raise exceptions.MissingModule( 'Missing module langid, please download/install it with "pip install langid")' ) identifier = LanguageIdentifier.from_modelstring(model, norm_probs=False) PLUGIN_INFO = { C.PI_NAME: "Language detection plugin", C.PI_IMPORT_NAME: "EXP-LANG-DETECT", C.PI_TYPE: "EXP", C.PI_PROTOCOLS: [], C.PI_DEPENDENCIES: [], C.PI_MAIN: "LangDetect", C.PI_HANDLER: "no", C.PI_DESCRIPTION: _("""Detect and set message language when unknown"""), } CATEGORY = D_("Misc") NAME = "lang_detect" LABEL = D_("language detection") PARAMS = """ <params> <individual> <category name="{category_name}"> <param name="{name}" label="{label}" type="bool" value="true" /> </category> </individual> </params> """.format( category_name=CATEGORY, name=NAME, label=_(LABEL) ) class LangDetect(object): def __init__(self, host): log.info(_("Language detection plugin initialization")) self.host = host host.memory.update_params(PARAMS) host.trigger.add("messageReceived", self.message_received_trigger) host.trigger.add("sendMessage", self.message_send_trigger) def add_language(self, mess_data): message = mess_data["message"] if len(message) == 1 and list(message.keys())[0] == "": msg = list(message.values())[0].strip() if msg: lang = identifier.classify(msg)[0] mess_data["message"] = {lang: msg} return mess_data def message_received_trigger(self, client, message_elt, post_treat): """ Check if source is linked and repeat message, else do nothing """ lang_detect = self.host.memory.param_get_a( NAME, CATEGORY, profile_key=client.profile ) if lang_detect: post_treat.addCallback(self.add_language) return True def message_send_trigger(self, client, data, pre_xml_treatments, post_xml_treatments): lang_detect = self.host.memory.param_get_a( NAME, CATEGORY, profile_key=client.profile ) if lang_detect: self.add_language(data) return True