forked from OpenPDU/openpdu
bella mqtt quasi va
This commit is contained in:
@@ -1,7 +1,5 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import "log"
|
|
||||||
|
|
||||||
// BoardType Status
|
// BoardType Status
|
||||||
const (
|
const (
|
||||||
BoardTypeDummy uint = 0
|
BoardTypeDummy uint = 0
|
||||||
@@ -61,9 +59,7 @@ func (b *Board) PowerToggle(num uint) error {
|
|||||||
b.dummyValue = make(map[uint]bool)
|
b.dummyValue = make(map[uint]bool)
|
||||||
}
|
}
|
||||||
v, _ := b.PowerStatus(num)
|
v, _ := b.PowerStatus(num)
|
||||||
log.Printf("toggle prestatus %v:%v", num, b.dummyValue[num])
|
|
||||||
b.dummyValue[num] = !v
|
b.dummyValue[num] = !v
|
||||||
log.Printf("toggle poststatus %v:%v", num, b.dummyValue[num])
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
@@ -81,7 +77,6 @@ func (b *Board) PowerStatus(num uint) (bool, error) {
|
|||||||
b.dummyValue[num] = false
|
b.dummyValue[num] = false
|
||||||
val = false
|
val = false
|
||||||
}
|
}
|
||||||
log.Printf("status %v:%v", num, val)
|
|
||||||
return val, nil
|
return val, nil
|
||||||
}
|
}
|
||||||
return false, nil
|
return false, nil
|
||||||
|
|||||||
@@ -13,6 +13,9 @@ type Configuration struct {
|
|||||||
MQTT MQTTConfig `json:"mqtt"`
|
MQTT MQTTConfig `json:"mqtt"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TheConfig def
|
||||||
|
var TheConfig Configuration
|
||||||
|
|
||||||
func loadConfig(filename string) (Configuration, error) {
|
func loadConfig(filename string) (Configuration, error) {
|
||||||
bytes, err := ioutil.ReadFile(filename)
|
bytes, err := ioutil.ReadFile(filename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -37,5 +40,6 @@ func saveConfig(c Configuration, filename string) error {
|
|||||||
return ioutil.WriteFile(filename, bytes, 0644)
|
return ioutil.WriteFile(filename, bytes, 0644)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TheConfig def
|
func writeConfig() error {
|
||||||
var TheConfig Configuration
|
return saveConfig(TheConfig, "t1.json")
|
||||||
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/go-macaron/binding"
|
||||||
"github.com/go-macaron/pongo2"
|
"github.com/go-macaron/pongo2"
|
||||||
"gopkg.in/macaron.v1"
|
"gopkg.in/macaron.v1"
|
||||||
)
|
)
|
||||||
@@ -20,6 +21,10 @@ func startServer() {
|
|||||||
m.Post("/json/outlet/:outlet/off", jsonOutletPowerOFF)
|
m.Post("/json/outlet/:outlet/off", jsonOutletPowerOFF)
|
||||||
m.Post("/json/outlet/:outlet/toggle", jsonOutletPowerToggle)
|
m.Post("/json/outlet/:outlet/toggle", jsonOutletPowerToggle)
|
||||||
|
|
||||||
|
m.Get("/settings/mqtt", webGETSettingsMQTT)
|
||||||
|
m.Post("/json/settings/mqtt", binding.Bind(SettingsMQTTForm{}), webPOSTSettingsMQTT)
|
||||||
|
// m.Post("/settings/mqtt", webPOSTSettingsMQTT)
|
||||||
|
|
||||||
m.Get("/boards", func(ctx *macaron.Context) {
|
m.Get("/boards", func(ctx *macaron.Context) {
|
||||||
ctx.HTML(200, "boards") // 200 is the response code.
|
ctx.HTML(200, "boards") // 200 is the response code.
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import "gopkg.in/macaron.v1"
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"gopkg.in/macaron.v1"
|
||||||
|
)
|
||||||
|
|
||||||
func statusPage(ctx *macaron.Context) {
|
func statusPage(ctx *macaron.Context) {
|
||||||
var pluglist []Dictionary
|
var pluglist []Dictionary
|
||||||
@@ -12,3 +16,51 @@ func statusPage(ctx *macaron.Context) {
|
|||||||
ctx.Data["pluglist"] = pluglist
|
ctx.Data["pluglist"] = pluglist
|
||||||
ctx.HTML(200, "status") // 200 is the response code.
|
ctx.HTML(200, "status") // 200 is the response code.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//SettingsMQTTForm definition
|
||||||
|
type SettingsMQTTForm struct {
|
||||||
|
BrokerIP string `form:"brokerip" binding:"Required"`
|
||||||
|
BrokerPort string `form:"brokerport" binding:"Required"`
|
||||||
|
ClientID string `form:"clientid" binding:"Required"`
|
||||||
|
Username string `form:"username"`
|
||||||
|
Password string `form:"password"`
|
||||||
|
Topic string `form:"topic" binding:"Required"`
|
||||||
|
CleanSession bool `form:"cleansession"`
|
||||||
|
HomeAssistant bool `form:"homeassistant"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func webGETSettingsMQTT(ctx *macaron.Context) {
|
||||||
|
ctx.Data["r_brokerip"] = TheConfig.MQTT.BrokerIP
|
||||||
|
ctx.Data["r_brokerport"] = TheConfig.MQTT.BrokerPort
|
||||||
|
ctx.Data["r_clientid"] = TheConfig.MQTT.ClientID
|
||||||
|
ctx.Data["r_username"] = TheConfig.MQTT.Username
|
||||||
|
ctx.Data["r_password"] = TheConfig.MQTT.Password
|
||||||
|
ctx.Data["r_cleansession"] = TheConfig.MQTT.CleanSession
|
||||||
|
ctx.Data["r_topic"] = TheConfig.MQTT.Topic
|
||||||
|
ctx.Data["r_homeassistant"] = TheConfig.MQTT.HomeAssistant
|
||||||
|
ctx.HTML(200, "settings_mqtt") // 200 is the response code.
|
||||||
|
}
|
||||||
|
|
||||||
|
func webPOSTSettingsMQTT(ctx *macaron.Context, f SettingsMQTTForm) {
|
||||||
|
|
||||||
|
TheConfig.MQTT.BrokerIP = f.BrokerIP
|
||||||
|
TheConfig.MQTT.BrokerPort = f.BrokerPort
|
||||||
|
TheConfig.MQTT.ClientID = f.ClientID
|
||||||
|
TheConfig.MQTT.Username = f.Username
|
||||||
|
TheConfig.MQTT.Password = f.Password
|
||||||
|
TheConfig.MQTT.Topic = f.Topic
|
||||||
|
// TODO: cleansession
|
||||||
|
// TODO: homeassistant
|
||||||
|
|
||||||
|
err := writeConfig()
|
||||||
|
if err != nil {
|
||||||
|
ctx.JSON(http.StatusOK, Dictionary{
|
||||||
|
"result": "error",
|
||||||
|
"error": err.Error(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx.JSON(http.StatusOK, Dictionary{
|
||||||
|
"result": "ok",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -82,8 +82,8 @@
|
|||||||
|
|
||||||
|
|
||||||
<!-- DataTables -->
|
<!-- DataTables -->
|
||||||
<script src="../../bower_components/datatables.net/js/jquery.dataTables.min.js"></script>
|
<script src="/bower_components/datatables.net/js/jquery.dataTables.min.js"></script>
|
||||||
<script src="../../bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
|
<script src="/bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(function () {
|
$(function () {
|
||||||
|
|||||||
@@ -4,16 +4,16 @@
|
|||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- Bootstrap 3.3.7 -->
|
<!-- Bootstrap 3.3.7 -->
|
||||||
<link rel="stylesheet" href="../../bower_components/bootstrap/dist/css/bootstrap.min.css">
|
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css">
|
||||||
<!-- Font Awesome -->
|
<!-- Font Awesome -->
|
||||||
<link rel="stylesheet" href="../../bower_components/font-awesome/css/font-awesome.min.css">
|
<link rel="stylesheet" href="/bower_components/font-awesome/css/font-awesome.min.css">
|
||||||
<!-- Ionicons -->
|
<!-- Ionicons -->
|
||||||
<link rel="stylesheet" href="../../bower_components/Ionicons/css/ionicons.min.css">
|
<link rel="stylesheet" href="/bower_components/Ionicons/css/ionicons.min.css">
|
||||||
<!-- Theme style -->
|
<!-- Theme style -->
|
||||||
<link rel="stylesheet" href="adminlte/css/AdminLTE.min.css">
|
<link rel="stylesheet" href="/adminlte/css/AdminLTE.min.css">
|
||||||
<!-- AdminLTE Skins. Choose a skin from the css/skins
|
<!-- AdminLTE Skins. Choose a skin from the css/skins
|
||||||
folder instead of downloading all of them to reduce the load. -->
|
folder instead of downloading all of them to reduce the load. -->
|
||||||
<link rel="stylesheet" href="adminlte/css/skins/_all-skins.min.css">
|
<link rel="stylesheet" href="/adminlte/css/skins/_all-skins.min.css">
|
||||||
|
|
||||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||||
@@ -23,4 +23,4 @@
|
|||||||
<![endif]-->
|
<![endif]-->
|
||||||
|
|
||||||
<!-- Google Font -->
|
<!-- Google Font -->
|
||||||
<link rel="stylesheet" href="../../googlefonts/fonts.css">
|
<link rel="stylesheet" href="/googlefonts/fonts.css">
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
<!-- jQuery 3 -->
|
<!-- jQuery 3 -->
|
||||||
<script src="../../bower_components/jquery/dist/jquery.min.js"></script>
|
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
|
||||||
<!-- Bootstrap 3.3.7 -->
|
<!-- Bootstrap 3.3.7 -->
|
||||||
<script src="../../bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
|
<script src="/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||||
<!-- Slimscroll -->
|
<!-- Slimscroll -->
|
||||||
<script src="../../bower_components/jquery-slimscroll/jquery.slimscroll.min.js"></script>
|
<script src="/bower_components/jquery-slimscroll/jquery.slimscroll.min.js"></script>
|
||||||
<!-- FastClick -->
|
<!-- FastClick -->
|
||||||
<script src="../../bower_components/fastclick/lib/fastclick.js"></script>
|
<script src="/bower_components/fastclick/lib/fastclick.js"></script>
|
||||||
<!-- AdminLTE App -->
|
<!-- AdminLTE App -->
|
||||||
<script src="adminlte/js/adminlte.min.js"></script>
|
<script src="/adminlte/js/adminlte.min.js"></script>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<header class="main-header">
|
<header class="main-header">
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<a href="../../index2.html" class="logo">
|
<a href="/" class="logo">
|
||||||
<!-- mini logo for sidebar mini 50x50 pixels -->
|
<!-- mini logo for sidebar mini 50x50 pixels -->
|
||||||
<span class="logo-mini">O<b>P</b></span>
|
<span class="logo-mini">O<b>P</b></span>
|
||||||
<!-- logo for regular state and mobile devices -->
|
<!-- logo for regular state and mobile devices -->
|
||||||
|
|||||||
@@ -26,19 +26,46 @@
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
{% if pageselected == "settings" || pageselected == "settings/mqtt" %}
|
||||||
|
<li class="treeview menu-open">
|
||||||
|
{% else %}
|
||||||
<li class="treeview">
|
<li class="treeview">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<a href="#">
|
<a href="#">
|
||||||
<i class="fa fa-gears"></i> <span>Settings</span>
|
<i class="fa fa-gears"></i> <span>Settings</span>
|
||||||
<span class="pull-right-container">
|
<span class="pull-right-container">
|
||||||
<i class="fa fa-angle-left pull-right"></i>
|
<i class="fa fa-angle-left pull-right"></i>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<ul class="treeview-menu">
|
|
||||||
<li><a href="/settings/lan"><i class="fa fa-circle-o"></i> LAN</a></li>
|
{% if pageselected == "settings" || pageselected == "settings/mqtt" %}
|
||||||
<li><a href="/settings/mqtt"><i class="fa fa-circle-o"></i> MQTT</a></li>
|
<ul class="treeview-menu" style="display: block;">
|
||||||
<li><a href="/settings/syslog"><i class="fa fa-circle-o"></i> syslog</a></li>
|
{% else %}
|
||||||
<li><a href="/settings/backup"><i class="fa fa-circle-o"></i> backup</a></li>
|
<ul class="treeview-menu" style="display: none;">
|
||||||
<li><a href="/settings/restore"><i class="fa fa-circle-o"></i> restore</a></li>
|
{% endif %}
|
||||||
|
<li>
|
||||||
|
<a href="/settings/lan"><i class="fa fa-circle-o"></i> LAN</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
{% if pageselected == "settings/mqtt" %}
|
||||||
|
<li class="active">
|
||||||
|
{% else %}
|
||||||
|
<li>
|
||||||
|
{% endif %}
|
||||||
|
<a href="/settings/mqtt"><i class="fa fa-circle-o"></i> MQTT</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/settings/syslog"><i class="fa fa-circle-o"></i> syslog</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="/settings/backup"><i class="fa fa-circle-o"></i> backup</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="/settings/restore"><i class="fa fa-circle-o"></i> restore</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
242
templates/settings_mqtt.html
Normal file
242
templates/settings_mqtt.html
Normal file
@@ -0,0 +1,242 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{% include "common/common-head.html" %}
|
||||||
|
</head>
|
||||||
|
<body class="hold-transition skin-blue sidebar-mini">
|
||||||
|
<div class="wrapper">
|
||||||
|
|
||||||
|
{% include "common/page-header.html" %}
|
||||||
|
{% with pageselected="settings/mqtt" %}
|
||||||
|
{% include "common/sidebar-menu.html" %}
|
||||||
|
{% endwith %}
|
||||||
|
|
||||||
|
<!-- Content Wrapper. Contains page content -->
|
||||||
|
<div class="content-wrapper">
|
||||||
|
<!-- Content Header (Page header) -->
|
||||||
|
<section class="content-header">
|
||||||
|
<h1>
|
||||||
|
MQTT configuration
|
||||||
|
</h1>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Main content -->
|
||||||
|
<section class="content">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row" id="notification-success" style="display: none;">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="box box-success box-solid">
|
||||||
|
<div class="box-header with-border">
|
||||||
|
<h3 class="box-title">Settings saved!</h3>
|
||||||
|
|
||||||
|
<div class="box-tools pull-right">
|
||||||
|
<button type="button" class="btn btn-box-tool" data-widget="remove"><i
|
||||||
|
class="fa fa-times"></i></button>
|
||||||
|
</div>
|
||||||
|
<!-- /.box-tools -->
|
||||||
|
</div>
|
||||||
|
<!-- /.box-header -->
|
||||||
|
<div class="box-body">
|
||||||
|
The body of the box
|
||||||
|
</div>
|
||||||
|
<!-- /.box-body -->
|
||||||
|
</div>
|
||||||
|
<!-- /.box -->
|
||||||
|
</div>
|
||||||
|
<!-- /.col -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row" id="notification-error" style="display: none;">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="box box-danger box-solid">
|
||||||
|
<div class="box-header with-border">
|
||||||
|
<h3 class="box-title">Error saving settings!</h3>
|
||||||
|
|
||||||
|
<div class="box-tools pull-right">
|
||||||
|
<button type="button" class="btn btn-box-tool" data-widget="remove"><i
|
||||||
|
class="fa fa-times"></i></button>
|
||||||
|
</div>
|
||||||
|
<!-- /.box-tools -->
|
||||||
|
</div>
|
||||||
|
<!-- /.box-header -->
|
||||||
|
<div class="box-body">
|
||||||
|
The body of the box
|
||||||
|
</div>
|
||||||
|
<!-- /.box-body -->
|
||||||
|
</div>
|
||||||
|
<!-- /.box -->
|
||||||
|
</div>
|
||||||
|
<!-- /.col -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<!-- left column -->
|
||||||
|
<div class="col-md-12">
|
||||||
|
<!-- general form elements -->
|
||||||
|
<div class="box box-primary">
|
||||||
|
<!-- form start -->
|
||||||
|
<form role="form" id="theform" class="form-horizontal">
|
||||||
|
|
||||||
|
<div class="box-body">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-2 control-label" for="brokerip">Broker IP address</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="brokerip" placeholder="MQTT broker IP address or hostname" value="{{ r_brokerip }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-2 control-label" for="brokerport">Broker port</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="brokerport" placeholder="MQTT broker port" value="{{ r_brokerport }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-2 control-label" for="clientid">MQTT Client ID</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="clientid" placeholder="MQTT client ID" value="{{ r_clientid }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-2 control-label" for="username">Username</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="username" placeholder="MQTT broker username" value="{{ r_username }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-2 control-label" for="password">Password</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="password" placeholder="MQTT broker password" value="{{ r_password }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-2 control-label" for="topic">Topic</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="topic" placeholder="MQTT topic" value="{{ r_topic }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-sm-offset-2 col-sm-10">
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<!-- value !!!! -->
|
||||||
|
<input type="checkbox" id="cleansession"> Clean session
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-sm-offset-2 col-sm-10">
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<!-- value !!!! -->
|
||||||
|
<input type="checkbox" id="homeassistant"> HomeAssistant auto discovery
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- /.box-body -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="box-footer">
|
||||||
|
<button type="submit" class="btn btn-primary pull-right">Save</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<!-- /.box -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!--/.col (right) -->
|
||||||
|
</div>
|
||||||
|
<!-- /.row -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- /.content -->
|
||||||
|
</div>
|
||||||
|
<!-- /.content-wrapper -->
|
||||||
|
|
||||||
|
{% include "common/footer.html" %}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- ./wrapper -->
|
||||||
|
|
||||||
|
{% include "common/common-js.html" %}
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(function () {
|
||||||
|
$('#brokerip').select();
|
||||||
|
$('#theform').on( 'submit', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: '/json/settings/mqtt',
|
||||||
|
type: 'post',
|
||||||
|
data: {
|
||||||
|
'brokerip': $('#brokerip').val(),
|
||||||
|
'brokerport': $('#brokerport').val(),
|
||||||
|
'clientid': $('#clientid').val(),
|
||||||
|
'username': $('#username').val(),
|
||||||
|
'password': $('#password').val(),
|
||||||
|
'topic': $('#topic').val(),
|
||||||
|
'cleansession': $('#cleansession').val(),
|
||||||
|
'homeassistant': $('#homeassistant').val(),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.done(function(r) {
|
||||||
|
if (r.result=='ok') {
|
||||||
|
$('#notification-success .box-body').text('MQTT settings saved.');
|
||||||
|
$("#notification-success").show("fast");
|
||||||
|
setTimeout(function(){
|
||||||
|
$("#notification-success").fadeOut("slow");
|
||||||
|
},1000);
|
||||||
|
} else {
|
||||||
|
$('#notification-error .box-body').text('Error saving MQTT settings.');
|
||||||
|
$("#notification-error").show("fast");
|
||||||
|
setTimeout(function(){
|
||||||
|
$("#notification-error").fadeOut("slow");
|
||||||
|
},5000);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.fail(function(jqXHR, textStatus, errorThrown) {
|
||||||
|
var responseText = jQuery.parseJSON(jqXHR.responseText);
|
||||||
|
$('#notification-error .box-body').text('Something went wrong. Settings not saved.');
|
||||||
|
$("#notification-error").show("fast");
|
||||||
|
setTimeout(function(){
|
||||||
|
$("#notification-error").fadeOut("slow");
|
||||||
|
},5000);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
@@ -65,8 +65,8 @@
|
|||||||
{% include "common/common-js.html" %}
|
{% include "common/common-js.html" %}
|
||||||
|
|
||||||
<!-- DataTables -->
|
<!-- DataTables -->
|
||||||
<script src="../../bower_components/datatables.net/js/jquery.dataTables.min.js"></script>
|
<script src="/bower_components/datatables.net/js/jquery.dataTables.min.js"></script>
|
||||||
<script src="../../bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
|
<script src="/bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(function () {
|
$(function () {
|
||||||
|
|||||||
Reference in New Issue
Block a user