代码拉取完成,页面将自动刷新
# -*- coding: utf-8-*-
# 关闭系统插件
import time
import subprocess
from robot import logging
from robot.sdk.AbstractPlugin import AbstractPlugin
logger = logging.getLogger(__name__)
class Plugin(AbstractPlugin):
SLUG = "halt"
def onAsk(self, input):
try:
if input is not None and any(word in input for word in [u"确认", u"好", u"是", u"OK"]):
self.say('授权成功,开始进行相关操作', cache=True)
time.sleep(3)
subprocess.Popen("shutdown -h now", shell=True)
return
self.say('授权失败,操作已取消,请重新尝试', cache=True)
except Exception as e:
logger.error(e)
self.say('抱歉,关闭系统失败', cache=True)
def handle(self, text, parsed):
self.say('将要关闭系统,请在滴一声后进行确认,授权相关操作', cache=True, onCompleted=lambda: self.onAsk(self.activeListen()))
def isValid(self, text, parsed):
return any(word in text for word in [u"关机", u"关闭系统"])
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。