#2 Einstellungen für IP Adresse von Switch
#3 Einstellung für Abfrageintervall
This commit is contained in:
parent
5119ab736d
commit
7d7c218fdb
@ -2,12 +2,8 @@
|
|||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
import ssl
|
import ssl
|
||||||
import urllib2
|
|
||||||
|
|
||||||
import octoprint.plugin
|
import octoprint.plugin
|
||||||
from flask import make_response
|
|
||||||
from octoprint.events import eventManager, Events
|
|
||||||
from octoprint.server import user_permission
|
|
||||||
from octoprint.util import RepeatedTimer
|
from octoprint.util import RepeatedTimer
|
||||||
|
|
||||||
|
|
||||||
@ -17,109 +13,20 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
|
|||||||
octoprint.plugin.StartupPlugin):
|
octoprint.plugin.StartupPlugin):
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.url = ""
|
self._pollTimer = None
|
||||||
self.previousEventIsCancel = False
|
self.ip = None
|
||||||
self.gcode = "M81"
|
self.intervall = 1
|
||||||
self._mode_shutdown_gcode = True
|
|
||||||
self._mode_shutdown_api = False
|
|
||||||
self._mode_shutdown_api_custom = False
|
|
||||||
self.api_custom_GET = False
|
|
||||||
self.api_custom_POST = False
|
|
||||||
self.api_custom_PUT = False
|
|
||||||
self.api_custom_url = ""
|
|
||||||
self.api_custom_json_header = ""
|
|
||||||
self.api_custom_body = ""
|
|
||||||
self.api_key_plugin = ""
|
|
||||||
self.api_json_command = ""
|
|
||||||
self.api_plugin_name = ""
|
|
||||||
self.api_plugin_port = 5000
|
|
||||||
self.extraCommand = ""
|
|
||||||
self.abortTimeout = 0
|
|
||||||
self.temperatureValue = 0
|
|
||||||
self.temperatureTarget = False
|
|
||||||
self.printFailed = False
|
|
||||||
self.printCancelled = False
|
|
||||||
self.rememberCheckBox = False
|
|
||||||
self.lastCheckBoxValue = False
|
|
||||||
self._shutdown_printer_enabled = True
|
|
||||||
self._timeout_value = None
|
|
||||||
self._abort_timer = None
|
|
||||||
self._abort_timer_temp = None
|
|
||||||
self.ctx = ssl.create_default_context()
|
self.ctx = ssl.create_default_context()
|
||||||
self.ctx.check_hostname = False
|
self.ctx.check_hostname = False
|
||||||
self.ctx.verify_mode = ssl.CERT_NONE
|
self.ctx.verify_mode = ssl.CERT_NONE
|
||||||
|
|
||||||
def initialize(self):
|
def initialize(self):
|
||||||
self.gcode = self._settings.get(["gcode"])
|
self.ip = self._settings.get(["ip"])
|
||||||
self._logger.debug("gcode: %s" % self.gcode)
|
self._logger.debug("ip: %s" % self.ip)
|
||||||
|
|
||||||
self.url = self._settings.get(["url"])
|
self.intervall = self._settings.get_int(["intervall"])
|
||||||
self._logger.debug("url: %s" % self.url)
|
self._logger.debug("intervall: %s" % self.intervall)
|
||||||
|
|
||||||
self.api_key_plugin = self._settings.get(["api_key_plugin"])
|
|
||||||
self._logger.debug("api_key_plugin: %s" % self.api_key_plugin)
|
|
||||||
|
|
||||||
self._mode_shutdown_gcode = self._settings.get_boolean(["_mode_shutdown_gcode"])
|
|
||||||
self._logger.debug("_mode_shutdown_gcode: %s" % self._mode_shutdown_gcode)
|
|
||||||
|
|
||||||
self._mode_shutdown_api = self._settings.get_boolean(["_mode_shutdown_api"])
|
|
||||||
self._logger.debug("_mode_shutdown_api: %s" % self._mode_shutdown_api)
|
|
||||||
|
|
||||||
self._mode_shutdown_api_custom = self._settings.get_boolean(["_mode_shutdown_api_custom"])
|
|
||||||
self._logger.debug("_mode_shutdown_api_custom: %s" % self._mode_shutdown_api_custom)
|
|
||||||
|
|
||||||
self.api_custom_POST = self._settings.get_boolean(["api_custom_POST"])
|
|
||||||
self._logger.debug("api_custom_POST: %s" % self.api_custom_POST)
|
|
||||||
|
|
||||||
self.api_custom_GET = self._settings.get_boolean(["api_custom_GET"])
|
|
||||||
self._logger.debug("api_custom_GET: %s" % self.api_custom_GET)
|
|
||||||
|
|
||||||
self.api_custom_PUT = self._settings.get_boolean(["api_custom_PUT"])
|
|
||||||
self._logger.debug("api_custom_PUT: %s" % self.api_custom_PUT)
|
|
||||||
|
|
||||||
self.api_custom_url = self._settings.get(["api_custom_url"])
|
|
||||||
self._logger.debug("api_custom_url: %s" % self.api_custom_url)
|
|
||||||
|
|
||||||
self.api_custom_json_header = self._settings.get(["api_custom_json_header"])
|
|
||||||
self._logger.debug("api_custom_json_header: %s" % self.api_custom_json_header)
|
|
||||||
|
|
||||||
self.api_custom_body = self._settings.get(["api_custom_body"])
|
|
||||||
self._logger.debug("api_custom_body: %s" % self.api_custom_body)
|
|
||||||
|
|
||||||
self.api_json_command = self._settings.get(["api_json_command"])
|
|
||||||
self._logger.debug("api_json_command: %s" % self.api_json_command)
|
|
||||||
|
|
||||||
self.api_plugin_name = self._settings.get(["api_plugin_name"])
|
|
||||||
self._logger.debug("api_plugin_name: %s" % self.api_plugin_name)
|
|
||||||
|
|
||||||
self.api_plugin_port = self._settings.get_int(["api_plugin_port"])
|
|
||||||
self._logger.debug("api_plugin_port: %s" % self.api_plugin_port)
|
|
||||||
|
|
||||||
self.temperatureValue = self._settings.get_int(["temperatureValue"])
|
|
||||||
self._logger.debug("temperatureValue: %s" % self.temperatureValue)
|
|
||||||
|
|
||||||
self.temperatureTarget = self._settings.get_boolean(["temperatureTarget"])
|
|
||||||
self._logger.debug("temperatureTarget: %s" % self.temperatureTarget)
|
|
||||||
|
|
||||||
self.extraCommand = self._settings.get(["extraCommand"])
|
|
||||||
self._logger.debug("extraCommand: %s" % self.extraCommand)
|
|
||||||
|
|
||||||
self.abortTimeout = self._settings.get_int(["abortTimeout"])
|
|
||||||
self._logger.debug("abortTimeout: %s" % self.abortTimeout)
|
|
||||||
|
|
||||||
self.printFailed = self._settings.get_boolean(["printFailed"])
|
|
||||||
self._logger.debug("printFailed: %s" % self.printFailed)
|
|
||||||
|
|
||||||
self.printCancelled = self._settings.get_boolean(["printCancelled"])
|
|
||||||
self._logger.debug("printCancelled: %s" % self.printCancelled)
|
|
||||||
|
|
||||||
self.rememberCheckBox = self._settings.get_boolean(["rememberCheckBox"])
|
|
||||||
self._logger.debug("rememberCheckBox: %s" % self.rememberCheckBox)
|
|
||||||
|
|
||||||
self.lastCheckBoxValue = self._settings.get_boolean(["lastCheckBoxValue"])
|
|
||||||
self._logger.debug("lastCheckBoxValue: %s" % self.lastCheckBoxValue)
|
|
||||||
if self.rememberCheckBox:
|
|
||||||
self._shutdown_printer_enabled = self.lastCheckBoxValue
|
|
||||||
|
|
||||||
def get_assets(self):
|
def get_assets(self):
|
||||||
return dict(js=["js/mystromswitch.js"], css=["css/mystromswitch.css"])
|
return dict(js=["js/mystromswitch.js"], css=["css/mystromswitch.css"])
|
||||||
@ -131,88 +38,6 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
|
|||||||
icon="power-off"),
|
icon="power-off"),
|
||||||
dict(type="settings", custom_bindings=False)]
|
dict(type="settings", custom_bindings=False)]
|
||||||
|
|
||||||
def get_api_commands(self):
|
|
||||||
return dict(enable=["eventView"],
|
|
||||||
status=[],
|
|
||||||
update=["eventView"],
|
|
||||||
disable=["eventView"],
|
|
||||||
shutdown=["mode", "eventView"],
|
|
||||||
abort=["eventView"])
|
|
||||||
|
|
||||||
def on_api_command(self, command, data):
|
|
||||||
if not user_permission.can():
|
|
||||||
return make_response("Insufficient rights", 403)
|
|
||||||
|
|
||||||
if command == "status":
|
|
||||||
return make_response(str(self._shutdown_printer_enabled), 200)
|
|
||||||
elif command == "enable":
|
|
||||||
self._shutdown_printer_enabled = True
|
|
||||||
elif command == "disable":
|
|
||||||
self._shutdown_printer_enabled = False
|
|
||||||
elif command == "shutdown":
|
|
||||||
self._shutdown_printer_API_CMD(data["mode"]) # mode 1 = gcode, mode 2 = api, mode 3 = custom api
|
|
||||||
elif command == "abort":
|
|
||||||
if self._abort_timer is not None:
|
|
||||||
self._abort_timer.cancel()
|
|
||||||
self._abort_timer = None
|
|
||||||
if self._abort_timer_temp is not None:
|
|
||||||
self._abort_timer_temp.cancel()
|
|
||||||
self._abort_timer_temp = None
|
|
||||||
self._timeout_value = None
|
|
||||||
self._logger.info("Shutdown aborted.")
|
|
||||||
|
|
||||||
if command == "enable" or command == "disable":
|
|
||||||
self.lastCheckBoxValue = self._shutdown_printer_enabled
|
|
||||||
if self.rememberCheckBox:
|
|
||||||
self._settings.set_boolean(["lastCheckBoxValue"], self.lastCheckBoxValue)
|
|
||||||
self._settings.save()
|
|
||||||
eventManager().fire(Events.SETTINGS_UPDATED)
|
|
||||||
if data["eventView"] == True:
|
|
||||||
self._plugin_manager.send_plugin_message(self._identifier,
|
|
||||||
dict(mystromswitchEnabled=self._shutdown_printer_enabled,
|
|
||||||
type="timeout", timeout_value=self._timeout_value))
|
|
||||||
|
|
||||||
def on_event(self, event, payload):
|
|
||||||
|
|
||||||
# if event == Events.CLIENT_OPENED:
|
|
||||||
# self._plugin_manager.send_plugin_message(self._identifier, dict(mystromswitchEnabled=self._shutdown_printer_enabled, type="timeout", timeout_value=self._timeout_value))
|
|
||||||
# return
|
|
||||||
|
|
||||||
if not self._shutdown_printer_enabled:
|
|
||||||
return
|
|
||||||
|
|
||||||
if event == Events.PRINT_STARTED:
|
|
||||||
# self._logger.info("Print started")
|
|
||||||
self.previousEventIsCancel = False
|
|
||||||
|
|
||||||
if event not in [Events.PRINT_DONE, Events.PRINT_FAILED, Events.PRINT_CANCELLED]:
|
|
||||||
return
|
|
||||||
|
|
||||||
return
|
|
||||||
if event == Events.PRINT_DONE:
|
|
||||||
self._temperature_target()
|
|
||||||
return
|
|
||||||
elif event == Events.PRINT_CANCELLED and self.printCancelled:
|
|
||||||
# self._logger.info("Print cancelled")
|
|
||||||
self.previousEventIsCancel = True
|
|
||||||
self._temperature_target()
|
|
||||||
return
|
|
||||||
elif event == Events.PRINT_CANCELLED:
|
|
||||||
# self._logger.info("Print cancelled")
|
|
||||||
self.previousEventIsCancel = True
|
|
||||||
return
|
|
||||||
|
|
||||||
elif event == Events.PRINT_FAILED and self.printFailed:
|
|
||||||
if self.previousEventIsCancel == True:
|
|
||||||
self.previousEventIsCancel = False
|
|
||||||
return;
|
|
||||||
# self._logger.info("Print failed")
|
|
||||||
self._temperature_target()
|
|
||||||
return
|
|
||||||
else:
|
|
||||||
self.previousEventIsCancel = False
|
|
||||||
return
|
|
||||||
|
|
||||||
def _temperature_target(self):
|
def _temperature_target(self):
|
||||||
if self._abort_timer_temp is not None:
|
if self._abort_timer_temp is not None:
|
||||||
return
|
return
|
||||||
@ -255,14 +80,10 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
|
|||||||
return
|
return
|
||||||
|
|
||||||
self._timeout_value -= 1
|
self._timeout_value -= 1
|
||||||
self._plugin_manager.send_plugin_message(self._identifier,
|
|
||||||
dict(mystromswitchEnabled=self._shutdown_printer_enabled,
|
|
||||||
type="timeout", timeout_value=self._timeout_value))
|
|
||||||
if self._printer.get_state_id() == "PRINTING" and self._printer.is_printing() == True:
|
if self._printer.get_state_id() == "PRINTING" and self._printer.is_printing() == True:
|
||||||
self._timeout_value = 0
|
self._timeout_value = 0
|
||||||
self._plugin_manager.send_plugin_message(self._identifier,
|
|
||||||
dict(mystromswitchEnabled=self._shutdown_printer_enabled,
|
|
||||||
type="timeout", timeout_value=self._timeout_value))
|
|
||||||
self._abort_timer.cancel()
|
self._abort_timer.cancel()
|
||||||
self._abort_timer = None
|
self._abort_timer = None
|
||||||
return
|
return
|
||||||
@ -272,141 +93,19 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
|
|||||||
self._abort_timer = None
|
self._abort_timer = None
|
||||||
self._shutdown_printer()
|
self._shutdown_printer()
|
||||||
|
|
||||||
def _shutdown_printer(self):
|
|
||||||
if self._mode_shutdown_gcode == True:
|
|
||||||
self._shutdown_printer_by_gcode()
|
|
||||||
elif self._mode_shutdown_api == True:
|
|
||||||
self._shutdown_printer_by_API()
|
|
||||||
else:
|
|
||||||
self._shutdown_printer_by_API_custom()
|
|
||||||
|
|
||||||
def _shutdown_printer_API_CMD(self, mode):
|
|
||||||
if mode == 1:
|
|
||||||
self._shutdown_printer_by_gcode()
|
|
||||||
elif mode == 2:
|
|
||||||
self._shutdown_printer_by_API()
|
|
||||||
elif mode == 3:
|
|
||||||
self._shutdown_printer_by_API_custom()
|
|
||||||
|
|
||||||
def _extraCommand(self):
|
|
||||||
if self.extraCommand != "":
|
|
||||||
process = subprocess.Popen(mCmdFound, shell=True, stdin=None, stdout=subprocess.PIPE)
|
|
||||||
self.extraCommand = process.communicate()
|
|
||||||
self._logger.info("response extraCommand: %s" % mCmdFound.rstrip().strip())
|
|
||||||
|
|
||||||
def _shutdown_printer_by_API(self):
|
|
||||||
url = "http://127.0.0.1:" + str(self.api_plugin_port) + "/api/plugin/" + self.api_plugin_name
|
|
||||||
headers = {'Content-Type': 'application/json', 'X-Api-Key': self.api_key_plugin}
|
|
||||||
data = self.api_json_command
|
|
||||||
self._logger.info("Shutting down printer with API")
|
|
||||||
try:
|
|
||||||
request = urllib2.Request(url, data=data, headers=headers)
|
|
||||||
request.get_method = lambda: "POST"
|
|
||||||
contents = urllib2.urlopen(request, timeout=30, context=self.ctx).read()
|
|
||||||
self._logger.debug("call response (POST API octoprint): %s" % contents)
|
|
||||||
self._extraCommand()
|
|
||||||
except Exception as e:
|
|
||||||
self._logger.error("Failed to connect to call api: %s" % e.message)
|
|
||||||
return
|
|
||||||
|
|
||||||
def _shutdown_printer_by_API_custom(self):
|
|
||||||
headers = {}
|
|
||||||
if self.api_custom_json_header != "":
|
|
||||||
headers = eval(self.api_custom_json_header)
|
|
||||||
if self.api_custom_PUT == True:
|
|
||||||
data = self.api_custom_body
|
|
||||||
self._logger.info("Shutting down printer with API custom (PUT)")
|
|
||||||
try:
|
|
||||||
request = urllib2.Request(self.api_custom_url, data=data, headers=headers)
|
|
||||||
request.get_method = lambda: "PUT"
|
|
||||||
contents = urllib2.urlopen(request, timeout=30, context=self.ctx).read()
|
|
||||||
self._logger.debug("call response (PUT): %s" % contents)
|
|
||||||
self._extraCommand()
|
|
||||||
except Exception as e:
|
|
||||||
self._logger.error("Failed to connect to call api: %s" % e.message)
|
|
||||||
return
|
|
||||||
if self.api_custom_POST == True:
|
|
||||||
data = self.api_custom_body
|
|
||||||
self._logger.info("Shutting down printer with API custom (POST)")
|
|
||||||
try:
|
|
||||||
request = urllib2.Request(self.api_custom_url, data=data, headers=headers)
|
|
||||||
request.get_method = lambda: "POST"
|
|
||||||
contents = urllib2.urlopen(request, timeout=30, context=self.ctx).read()
|
|
||||||
self._logger.debug("call response (POST): %s" % contents)
|
|
||||||
self._extraCommand()
|
|
||||||
except Exception as e:
|
|
||||||
self._logger.error("Failed to connect to call api: %s" % e.message)
|
|
||||||
return
|
|
||||||
elif self.api_custom_GET == True:
|
|
||||||
self._logger.info("Shutting down printer with API custom (GET)")
|
|
||||||
try:
|
|
||||||
request = urllib2.Request(self.api_custom_url, headers=headers)
|
|
||||||
contents = urllib2.urlopen(request, timeout=30, context=self.ctx).read()
|
|
||||||
self._logger.debug("call response (GET): %s" % contents)
|
|
||||||
self._extraCommand()
|
|
||||||
except Exception as e:
|
|
||||||
self._logger.error("Failed to connect to call api: %s" % e.message)
|
|
||||||
return
|
|
||||||
|
|
||||||
def _shutdown_printer_by_gcode(self):
|
|
||||||
self._printer.commands(self.gcode + " " + self.url)
|
|
||||||
self._logger.info("Shutting down printer with command: " + self.gcode + " " + self.url)
|
|
||||||
self._extraCommand()
|
|
||||||
|
|
||||||
def on_after_startup(self):
|
def on_after_startup(self):
|
||||||
self._logger.info("Hello World!")
|
self._logger.info("Hello World!")
|
||||||
|
|
||||||
def get_settings_defaults(self):
|
def get_settings_defaults(self):
|
||||||
return dict(
|
return dict(
|
||||||
gcode="M81",
|
ip="",
|
||||||
url="",
|
intervall=1
|
||||||
api_key_plugin="",
|
|
||||||
abortTimeout=30,
|
|
||||||
extraCommand="",
|
|
||||||
_mode_shutdown_gcode=True,
|
|
||||||
_mode_shutdown_api=False,
|
|
||||||
_mode_shutdown_api_custom=False,
|
|
||||||
api_custom_POST=False,
|
|
||||||
api_custom_GET=False,
|
|
||||||
api_custom_PUT=False,
|
|
||||||
api_custom_url="",
|
|
||||||
api_custom_json_header="",
|
|
||||||
api_custom_body="",
|
|
||||||
api_plugin_port=5000,
|
|
||||||
temperatureValue=110,
|
|
||||||
_shutdown_printer_enabled=True,
|
|
||||||
printFailed=False,
|
|
||||||
printCancelled=False,
|
|
||||||
rememberCheckBox=False,
|
|
||||||
lastCheckBoxValue=False
|
|
||||||
)
|
)
|
||||||
|
|
||||||
def on_settings_save(self, data):
|
def on_settings_save(self, data):
|
||||||
octoprint.plugin.SettingsPlugin.on_settings_save(self, data)
|
octoprint.plugin.SettingsPlugin.on_settings_save(self, data)
|
||||||
|
self.ip = self._settings.get(["ip"])
|
||||||
self.gcode = self._settings.get(["gcode"])
|
self.intervall = self._settings.get_int(["intervall"])
|
||||||
self.url = self._settings.get(["url"])
|
|
||||||
self.api_key_plugin = self._settings.get(["api_key_plugin"])
|
|
||||||
self._mode_shutdown_gcode = self._settings.get_boolean(["_mode_shutdown_gcode"])
|
|
||||||
self._mode_shutdown_api = self._settings.get_boolean(["_mode_shutdown_api"])
|
|
||||||
self._mode_shutdown_api_custom = self._settings.get_boolean(["_mode_shutdown_api_custom"])
|
|
||||||
self.api_custom_POST = self._settings.get_boolean(["api_custom_POST"])
|
|
||||||
self.api_custom_GET = self._settings.get_boolean(["api_custom_GET"])
|
|
||||||
self.api_custom_PUT = self._settings.get_boolean(["api_custom_PUT"])
|
|
||||||
self.api_custom_url = self._settings.get(["api_custom_url"])
|
|
||||||
self.api_custom_json_header = self._settings.get(["api_custom_json_header"])
|
|
||||||
self.api_custom_body = self._settings.get(["api_custom_body"])
|
|
||||||
self.api_json_command = self._settings.get(["api_json_command"])
|
|
||||||
self.api_plugin_name = self._settings.get(["api_plugin_name"])
|
|
||||||
self.api_plugin_port = self._settings.get_int(["api_plugin_port"])
|
|
||||||
self.temperatureValue = self._settings.get_int(["temperatureValue"])
|
|
||||||
self.temperatureTarget = self._settings.get_int(["temperatureTarget"])
|
|
||||||
self.extraCommand = self._settings.get(["extraCommand"])
|
|
||||||
self.printFailed = self._settings.get_boolean(["printFailed"])
|
|
||||||
self.printCancelled = self._settings.get_boolean(["printCancelled"])
|
|
||||||
self.abortTimeout = self._settings.get_int(["abortTimeout"])
|
|
||||||
self.rememberCheckBox = self._settings.get_boolean(["rememberCheckBox"])
|
|
||||||
self.lastCheckBoxValue = self._settings.get_boolean(["lastCheckBoxValue"])
|
|
||||||
|
|
||||||
def get_update_information(self):
|
def get_update_information(self):
|
||||||
return dict(
|
return dict(
|
||||||
|
@ -1,181 +1,20 @@
|
|||||||
<form class="form-horizontal">
|
<form class="form-horizontal">
|
||||||
<h4>General</h4>
|
<h4>General</h4>
|
||||||
<hr>
|
<hr>
|
||||||
<h5>Mode GCODE</h5>
|
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
|
<label class="control-label">{{ _('IP-Address') }}</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<label class="checkbox">
|
<input type="text" class="input-block-level" data-bind="value: settings.plugins.mystromswitch.ip">
|
||||||
<input type="checkbox" id="mystromswitch_mode_shutdown_gcode" data-bind="checked: settings.plugins.mystromswitch._mode_shutdown_gcode">activate this mode
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">{{ _('GCODE') }}</label>
|
|
||||||
<div class="controls">
|
|
||||||
<input type="text" class="input-block-level" data-bind="value: settings.plugins.mystromswitch.gcode">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">{{ _('Parameter (IP or other)') }}</label>
|
|
||||||
<div class="controls">
|
|
||||||
<input type="text" class="input-block-level" data-bind="value: settings.plugins.mystromswitch.url">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<button id="tester_mystromswitch_gcode" type="button" class="btn btn-primary pull-right"><i class="fa fa-spinner fa-spin" data-bind="visible: sending" style="display: none;"></i>Test</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h5>Mode API</h5>
|
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<div class="controls">
|
<label class="control-label">Refresh Intervall</label>
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" id="mystromswitch_mode_shutdown_api" data-bind="checked: settings.plugins.mystromswitch._mode_shutdown_api">activate this mode
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">{{ _('api key (key octoprint)') }}</label>
|
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<div class="input-append">
|
<div class="input-append">
|
||||||
<input type="text" class="input" data-bind="value: settings.plugins.mystromswitch.api_key_plugin">
|
<input type="number" class="input-mini text-right" data-bind="value: settings.plugins.mystromswitch.intervall">
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">{{ _('Plugin ID') }}</label>
|
|
||||||
<div class="controls">
|
|
||||||
<div class="input-append">
|
|
||||||
<input type="text" class="input" data-bind="value: settings.plugins.mystromswitch.api_plugin_name">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">{{ _('Port') }}</label>
|
|
||||||
<div class="controls">
|
|
||||||
<div class="input-append">
|
|
||||||
<input type="number" min='0' class="input-mini text-right" data-bind="value: settings.plugins.mystromswitch.api_plugin_port">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">JSON</label>
|
|
||||||
<div class="controls">
|
|
||||||
<textarea rows="4" class="block" data-bind="value: settings.plugins.mystromswitch.api_json_command"></textarea>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<button id="tester_mystromswitch_api" type="button" class="btn btn-primary pull-right"><i class="fa fa-spinner fa-spin" data-bind="visible: sending" style="display: none;"></i>Test</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
<h5>Mode API Custom</h5>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" id="mystromswitch_mode_shutdown_api_custom" data-bind="checked: settings.plugins.mystromswitch._mode_shutdown_api_custom">activate this mode
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" id="mystromswitch_api_custom_GET" data-bind="checked: settings.plugins.mystromswitch.api_custom_GET">GET
|
|
||||||
</label>
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" id="mystromswitch_api_custom_POST" data-bind="checked: settings.plugins.mystromswitch.api_custom_POST">POST
|
|
||||||
</label>
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" id="mystromswitch_api_custom_PUT" data-bind="checked: settings.plugins.mystromswitch.api_custom_PUT">PUT
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">{{ _('URL') }}</label>
|
|
||||||
<div class="controls">
|
|
||||||
<input type="text" class="input-block-level" data-bind="value: settings.plugins.mystromswitch.api_custom_url">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">header (json format)</label>
|
|
||||||
<div class="controls">
|
|
||||||
<textarea rows="4" class="block" data-bind="value: settings.plugins.mystromswitch.api_custom_json_header"></textarea>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">body</label>
|
|
||||||
<div class="controls">
|
|
||||||
<textarea rows="4" class="block" data-bind="value: settings.plugins.mystromswitch.api_custom_body"></textarea>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<button id="tester_mystromswitch_api_custom" type="button" class="btn btn-primary pull-right"><i class="fa fa-spinner fa-spin" data-bind="visible: sending" style="display: none;"></i>Test</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
<h5>Common options</h5>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">Abort Timeout</label>
|
|
||||||
<div class="controls">
|
|
||||||
<div class="input-append">
|
|
||||||
<input type="number" class="input-mini text-right" data-bind="value: settings.plugins.mystromswitch.abortTimeout">
|
|
||||||
<span class="add-on">sec</span>
|
<span class="add-on">sec</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" data-bind="checked: settings.plugins.mystromswitch.rememberCheckBox"> Remember the value of "Shutdown Printer after print finishes"
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
<h4>Events catch</h4>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" data-bind="checked: settings.plugins.mystromswitch.printFailed"> Event print failed
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" data-bind="checked: settings.plugins.mystromswitch.printCancelled"> Event print cancelled
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
<h4>Nozzle temperature target</h4>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox" mystromswitchTemperatureTarget="true" data-bind="checked: settings.plugins.mystromswitch.temperatureTarget"> Enable temperature target
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<h4>Extra command/script</h4>
|
|
||||||
<div class="control-group">
|
|
||||||
<div class="controls">
|
|
||||||
<label class="checkbox">
|
|
||||||
<input type="text" class="input" data-bind="value: settings.plugins.mystromswitch.extraCommand">
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="control-group">
|
|
||||||
<label class="control-label">{{ _('Temperature') }}</label>
|
|
||||||
<div class="controls">
|
|
||||||
<div class="input-append">
|
|
||||||
<input type="number" min='0' class="input-mini text-right" data-bind="value: settings.plugins.mystromswitch.temperatureValue">
|
|
||||||
<span class="add-on">°C</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
</form>
|
||||||
|
Loading…
Reference in New Issue
Block a user