加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Reboot.py 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
# -*- 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 = 'reboot'
def onConfirm(self, input):
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("reboot -f", shell=True)
return
self.say('授权失败,操作已取消,请重新尝试', cache=True)
def handle(self, text, parsed):
try:
self.say('将要重新启动系统,请在滴一声后进行确认,授权相关操作', cache=True, onCompleted=self.onConfirm(self.activeListen()))
except Exception as e:
logger.error(e)
self.say('抱歉,重新启动系统失败', cache=True)
def isValid(self, text, parsed):
return any(word in text for word in [u"重启", u"重新启动"])
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化