Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1673 lines
48 KiB

8 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
6 years ago
7 years ago
7 years ago
7 years ago
6 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 years ago
8 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 years ago
6 years ago
8 years ago
6 years ago
8 years ago
6 years ago
8 years ago
6 years ago
8 years ago
6 years ago
6 years ago
8 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 years ago
  1. var websock;
  2. var password = false;
  3. var maxNetworks;
  4. var maxSchedules;
  5. var messages = [];
  6. var free_size = 0;
  7. var urls = {};
  8. var numChanged = 0;
  9. var numReboot = 0;
  10. var numReconnect = 0;
  11. var numReload = 0;
  12. var useWhite = false;
  13. var useCCT = false;
  14. var now = 0;
  15. var ago = 0;
  16. <!-- removeIf(!rfm69)-->
  17. var packets;
  18. var filters = [];
  19. <!-- endRemoveIf(!rfm69)-->
  20. // -----------------------------------------------------------------------------
  21. // Messages
  22. // -----------------------------------------------------------------------------
  23. function initMessages() {
  24. messages[1] = "Remote update started";
  25. messages[2] = "OTA update started";
  26. messages[3] = "Error parsing data!";
  27. messages[4] = "The file does not look like a valid configuration backup or is corrupted";
  28. messages[5] = "Changes saved. You should reboot your board now";
  29. messages[7] = "Passwords do not match!";
  30. messages[8] = "Changes saved";
  31. messages[9] = "No changes detected";
  32. messages[10] = "Session expired, please reload page...";
  33. }
  34. <!-- removeIf(!sensor)-->
  35. function sensorName(id) {
  36. var names = [
  37. "DHT", "Dallas", "Emon Analog", "Emon ADC121", "Emon ADS1X15",
  38. "HLW8012", "V9261F", "ECH1560", "Analog", "Digital",
  39. "Events", "PMSX003", "BMX280", "MHZ19", "SI7021",
  40. "SHT3X I2C", "BH1750", "PZEM004T", "AM2320 I2C", "GUVAS12SD",
  41. "TMP3X", "HC-SR04", "SenseAir", "GeigerTicks", "GeigerCPM"
  42. ];
  43. if (1 <= id && id <= names.length) {
  44. return names[id - 1];
  45. }
  46. return null;
  47. }
  48. function magnitudeType(type) {
  49. var types = [
  50. "Temperature", "Humidity", "Pressure",
  51. "Current", "Voltage", "Active Power", "Apparent Power",
  52. "Reactive Power", "Power Factor", "Energy", "Energy (delta)",
  53. "Analog", "Digital", "Events",
  54. "PM1.0", "PM2.5", "PM10", "CO2", "Lux", "UV", "Distance" , "HCHO",
  55. "Local Dose Rate", "Local Dose Rate"
  56. ];
  57. if (1 <= type && type <= types.length) {
  58. return types[type - 1];
  59. }
  60. return null;
  61. }
  62. function magnitudeError(error) {
  63. var errors = [
  64. "OK", "Out of Range", "Warming Up", "Timeout", "Wrong ID",
  65. "Data Error", "I2C Error", "GPIO Error", "Calibration error"
  66. ];
  67. if (0 <= error && error < errors.length) {
  68. return errors[error];
  69. }
  70. return "Error " + error;
  71. }
  72. <!-- endRemoveIf(!sensor)-->
  73. // -----------------------------------------------------------------------------
  74. // Utils
  75. // -----------------------------------------------------------------------------
  76. $.fn.enterKey = function (fnc) {
  77. return this.each(function () {
  78. $(this).keypress(function (ev) {
  79. var keycode = parseInt(ev.keyCode ? ev.keyCode : ev.which, 10);
  80. if (13 === keycode) {
  81. return fnc.call(this, ev);
  82. }
  83. });
  84. });
  85. };
  86. function keepTime() {
  87. $("span[name='ago']").html(ago);
  88. ago++;
  89. if (0 === now) { return; }
  90. var date = new Date(now * 1000);
  91. var text = date.toISOString().substring(0, 19).replace("T", " ");
  92. $("input[name='now']").val(text);
  93. $("span[name='now']").html(text);
  94. now++;
  95. }
  96. function zeroPad(number, positions) {
  97. var zeros = "";
  98. for (var i = 0; i < positions; i++) {
  99. zeros += "0";
  100. }
  101. return (zeros + number).slice(-positions);
  102. }
  103. function loadTimeZones() {
  104. var time_zones = [
  105. -720, -660, -600, -570, -540,
  106. -480, -420, -360, -300, -240,
  107. -210, -180, -120, -60, 0,
  108. 60, 120, 180, 210, 240,
  109. 270, 300, 330, 345, 360,
  110. 390, 420, 480, 510, 525,
  111. 540, 570, 600, 630, 660,
  112. 720, 765, 780, 840
  113. ];
  114. for (var i in time_zones) {
  115. var value = time_zones[i];
  116. var offset = value >= 0 ? value : -value;
  117. var text = "GMT" + (value >= 0 ? "+" : "-") +
  118. zeroPad(parseInt(offset / 60, 10), 2) + ":" +
  119. zeroPad(offset % 60, 2);
  120. $("select[name='ntpOffset']").append(
  121. $("<option></option>").
  122. attr("value",value).
  123. text(text));
  124. }
  125. }
  126. function validateForm(form) {
  127. // http://www.the-art-of-web.com/javascript/validate-password/
  128. // at least one lowercase and one uppercase letter or number
  129. // at least five characters (letters, numbers or special characters)
  130. var re_password = /^(?=.*[A-Z\d])(?=.*[a-z])[\w~!@#$%^&*\(\)<>,.\?;:{}\[\]\\|]{5,}$/;
  131. // password
  132. var adminPass1 = $("input[name='adminPass']", form).first().val();
  133. if (adminPass1.length > 0 && !re_password.test(adminPass1)) {
  134. alert("The password you have entered is not valid, it must have at least 5 characters, 1 lowercase and 1 uppercase or number!");
  135. return false;
  136. }
  137. var adminPass2 = $("input[name='adminPass']", form).last().val();
  138. if (adminPass1 !== adminPass2) {
  139. alert("Passwords are different!");
  140. return false;
  141. }
  142. // RFCs mandate that a hostname's labels may contain only
  143. // the ASCII letters 'a' through 'z' (case-insensitive),
  144. // the digits '0' through '9', and the hyphen.
  145. // Hostname labels cannot begin or end with a hyphen.
  146. // No other symbols, punctuation characters, or blank spaces are permitted.
  147. // Negative lookbehind does not work in Javascript
  148. // var re_hostname = new RegExp('^(?!-)[A-Za-z0-9-]{1,32}(?<!-)$');
  149. var re_hostname = new RegExp('^(?!-)[A-Za-z0-9-]{0,31}[A-Za-z0-9]$');
  150. var hostname = $("input[name='hostname']", form);
  151. var hasChanged = hostname.attr("hasChanged") || 0;
  152. if (0 === hasChanged) {
  153. return true;
  154. }
  155. if (!re_hostname.test(hostname.val())) {
  156. alert("Hostname cannot be empty and may only contain the ASCII letters ('A' through 'Z' and 'a' through 'z'), the digits '0' through '9', and the hyphen ('-')! They can neither start or end with an hyphen.");
  157. return false;
  158. }
  159. return true;
  160. }
  161. function getValue(element) {
  162. if ($(element).attr("type") === "checkbox") {
  163. return $(element).prop("checked") ? 1 : 0;
  164. } else if ($(element).attr("type") === "radio") {
  165. if (!$(element).prop("checked")) {
  166. return null;
  167. }
  168. }
  169. return $(element).val();
  170. }
  171. function addValue(data, name, value) {
  172. // These fields will always be a list of values
  173. var is_group = [
  174. "ssid", "pass", "gw", "mask", "ip", "dns",
  175. "schEnabled", "schSwitch","schAction","schType","schHour","schMinute","schWDs","schUTC",
  176. "relayBoot", "relayPulse", "relayTime",
  177. "mqttGroup", "mqttGroupInv", "relayOnDisc",
  178. "dczRelayIdx", "dczMagnitude",
  179. "tspkRelay", "tspkMagnitude",
  180. "ledMode",
  181. "adminPass",
  182. "node", "key", "topic"
  183. ];
  184. if (name in data) {
  185. if (!Array.isArray(data[name])) {
  186. data[name] = [data[name]];
  187. }
  188. data[name].push(value);
  189. } else if (is_group.indexOf(name) >= 0) {
  190. data[name] = [value];
  191. } else {
  192. data[name] = value;
  193. }
  194. }
  195. function getData(form) {
  196. var data = {};
  197. // Populate data
  198. $("input,select", form).each(function() {
  199. var name = $(this).attr("name");
  200. var value = getValue(this);
  201. if (null !== value) {
  202. addValue(data, name, value);
  203. }
  204. });
  205. // Post process
  206. addValue(data, "schSwitch", 0xFF);
  207. delete data["filename"];
  208. delete data["rfbcode"];
  209. return data;
  210. }
  211. function randomString(length, chars) {
  212. var mask = "";
  213. if (chars.indexOf("a") > -1) { mask += "abcdefghijklmnopqrstuvwxyz"; }
  214. if (chars.indexOf("A") > -1) { mask += "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; }
  215. if (chars.indexOf("#") > -1) { mask += "0123456789"; }
  216. if (chars.indexOf("@") > -1) { mask += "ABCDEF"; }
  217. if (chars.indexOf("!") > -1) { mask += "~`!@#$%^&*()_+-={}[]:\";'<>?,./|\\"; }
  218. var result = "";
  219. for (var i = length; i > 0; --i) {
  220. result += mask[Math.round(Math.random() * (mask.length - 1))];
  221. }
  222. return result;
  223. }
  224. function generateAPIKey() {
  225. var apikey = randomString(16, "@#");
  226. $("input[name='apiKey']").val(apikey);
  227. return false;
  228. }
  229. function getJson(str) {
  230. try {
  231. return JSON.parse(str);
  232. } catch (e) {
  233. return false;
  234. }
  235. }
  236. // -----------------------------------------------------------------------------
  237. // Actions
  238. // -----------------------------------------------------------------------------
  239. function sendAction(action, data) {
  240. websock.send(JSON.stringify({action: action, data: data}));
  241. }
  242. function sendConfig(data) {
  243. websock.send(JSON.stringify({config: data}));
  244. }
  245. function resetOriginals() {
  246. $("input,select").each(function() {
  247. $(this).attr("original", $(this).val());
  248. });
  249. numReboot = numReconnect = numReload = 0;
  250. }
  251. function doReload(milliseconds) {
  252. setTimeout(function() {
  253. window.location.reload();
  254. }, parseInt(milliseconds, 10));
  255. }
  256. /**
  257. * Check a file object to see if it is a valid firmware image
  258. * The file first byte should be 0xE9
  259. * @param {file} file File object
  260. * @param {Function} callback Function to call back with the result
  261. */
  262. function checkFirmware(file, callback) {
  263. var reader = new FileReader();
  264. reader.onloadend = function(evt) {
  265. if (FileReader.DONE === evt.target.readyState) {
  266. if (0xE9 !== evt.target.result.charCodeAt(0)) callback(false);
  267. if (0x03 !== evt.target.result.charCodeAt(2)) {
  268. var response = window.confirm("Binary image is not using DOUT flash mode. This might cause resets in some devices. Press OK to continue.");
  269. callback(response);
  270. } else {
  271. callback(true);
  272. }
  273. }
  274. };
  275. var blob = file.slice(0, 3);
  276. reader.readAsBinaryString(blob);
  277. }
  278. function doUpgrade() {
  279. var file = $("input[name='upgrade']")[0].files[0];
  280. if (typeof file === "undefined") {
  281. alert("First you have to select a file from your computer.");
  282. return false;
  283. }
  284. if (file.size > free_size) {
  285. alert("Image it too large to fit in the available space for OTA. Consider doing a two-step update.");
  286. return false;
  287. }
  288. checkFirmware(file, function(ok) {
  289. if (!ok) {
  290. alert("The file does not seem to be a valid firmware image.");
  291. return;
  292. }
  293. var data = new FormData();
  294. data.append("upgrade", file, file.name);
  295. $.ajax({
  296. // Your server script to process the upload
  297. url: urls.upgrade.href,
  298. type: "POST",
  299. // Form data
  300. data: data,
  301. // Tell jQuery not to process data or worry about content-type
  302. // You *must* include these options!
  303. cache: false,
  304. contentType: false,
  305. processData: false,
  306. success: function(data, text) {
  307. $("#upgrade-progress").hide();
  308. if ("OK" === data) {
  309. alert("Firmware image uploaded, board rebooting. This page will be refreshed in 5 seconds.");
  310. doReload(5000);
  311. } else {
  312. alert("There was an error trying to upload the new image, please try again (" + data + ").");
  313. }
  314. },
  315. // Custom XMLHttpRequest
  316. xhr: function() {
  317. $("#upgrade-progress").show();
  318. var myXhr = $.ajaxSettings.xhr();
  319. if (myXhr.upload) {
  320. // For handling the progress of the upload
  321. myXhr.upload.addEventListener("progress", function(e) {
  322. if (e.lengthComputable) {
  323. $("progress").attr({ value: e.loaded, max: e.total });
  324. }
  325. } , false);
  326. }
  327. return myXhr;
  328. }
  329. });
  330. });
  331. return false;
  332. }
  333. function doUpdatePassword() {
  334. var form = $("#formPassword");
  335. if (validateForm(form)) {
  336. sendConfig(getData(form));
  337. }
  338. return false;
  339. }
  340. function checkChanges() {
  341. if (numChanged > 0) {
  342. var response = window.confirm("Some changes have not been saved yet, do you want to save them first?");
  343. if (response) {
  344. doUpdate();
  345. }
  346. }
  347. }
  348. function doAction(question, action) {
  349. checkChanges();
  350. if (question) {
  351. var response = window.confirm(question);
  352. if (false === response) {
  353. return false;
  354. }
  355. }
  356. sendAction(action, {});
  357. doReload(5000);
  358. return false;
  359. }
  360. function doReboot(ask) {
  361. var question = (typeof ask === "undefined" || false === ask) ?
  362. null :
  363. "Are you sure you want to reboot the device?";
  364. return doAction(question, "reboot");
  365. }
  366. function doReconnect(ask) {
  367. var question = (typeof ask === "undefined" || false === ask) ?
  368. null :
  369. "Are you sure you want to disconnect from the current WIFI network?";
  370. return doAction(question, "reconnect");
  371. }
  372. function doUpdate() {
  373. var form = $("#formSave");
  374. if (validateForm(form)) {
  375. // Get data
  376. sendConfig(getData(form));
  377. // Empty special fields
  378. $(".pwrExpected").val(0);
  379. $("input[name='pwrResetCalibration']").prop("checked", false);
  380. $("input[name='pwrResetE']").prop("checked", false);
  381. // Change handling
  382. numChanged = 0;
  383. setTimeout(function() {
  384. var response;
  385. if (numReboot > 0) {
  386. response = window.confirm("You have to reboot the board for the changes to take effect, do you want to do it now?");
  387. if (response) { doReboot(false); }
  388. } else if (numReconnect > 0) {
  389. response = window.confirm("You have to reconnect to the WiFi for the changes to take effect, do you want to do it now?");
  390. if (response) { doReconnect(false); }
  391. } else if (numReload > 0) {
  392. response = window.confirm("You have to reload the page to see the latest changes, do you want to do it now?");
  393. if (response) { doReload(0); }
  394. }
  395. resetOriginals();
  396. }, 1000);
  397. }
  398. return false;
  399. }
  400. function doBackup() {
  401. document.getElementById("downloader").src = urls.config.href;
  402. return false;
  403. }
  404. function onFileUpload(event) {
  405. var inputFiles = this.files;
  406. if (typeof inputFiles === "undefined" || inputFiles.length === 0) {
  407. return false;
  408. }
  409. var inputFile = inputFiles[0];
  410. this.value = "";
  411. var response = window.confirm("Previous settings will be overwritten. Are you sure you want to restore this settings?");
  412. if (!response) {
  413. return false;
  414. }
  415. var reader = new FileReader();
  416. reader.onload = function(e) {
  417. var data = getJson(e.target.result);
  418. if (data) {
  419. sendAction("restore", data);
  420. } else {
  421. window.alert(messages[4]);
  422. }
  423. };
  424. reader.readAsText(inputFile);
  425. return false;
  426. }
  427. function doRestore() {
  428. if (typeof window.FileReader !== "function") {
  429. alert("The file API isn't supported on this browser yet.");
  430. } else {
  431. $("#uploader").click();
  432. }
  433. return false;
  434. }
  435. function doFactoryReset() {
  436. var response = window.confirm("Are you sure you want to restore to factory settings?");
  437. if (response === false) {
  438. return false;
  439. }
  440. sendAction("factory_reset", {});
  441. doReload(5000);
  442. return false;
  443. }
  444. function doToggle(id, value) {
  445. sendAction("relay", {id: id, status: value ? 1 : 0 });
  446. return false;
  447. }
  448. function doScan() {
  449. $("#scanResult").html("");
  450. $("div.scan.loading").show();
  451. sendAction("scan", {});
  452. return false;
  453. }
  454. function doHAConfig() {
  455. $("#haConfig").html("");
  456. sendAction("haconfig", {});
  457. return false;
  458. }
  459. function doDebugCommand() {
  460. var el = $("input[name='dbgcmd']");
  461. var command = el.val();
  462. el.val("");
  463. sendAction("dbgcmd", {command: command});
  464. return false;
  465. }
  466. function doDebugClear() {
  467. $("#weblog").text("");
  468. return false;
  469. }
  470. <!-- removeIf(!rfm69)-->
  471. function doClearCounts() {
  472. sendAction("clear-counts", {});
  473. return false;
  474. }
  475. function doClearMessages() {
  476. packets.clear().draw(false);
  477. return false;
  478. }
  479. function doFilter(e) {
  480. var index = packets.cell(this).index();
  481. if (index == 'undefined') return;
  482. var c = index.column;
  483. var column = packets.column(c);
  484. if (filters[c]) {
  485. filters[c] = false;
  486. column.search("");
  487. $(column.header()).removeClass("filtered");
  488. } else {
  489. filters[c] = true;
  490. var data = packets.row(this).data();
  491. if (e.which == 1) {
  492. column.search('^' + data[c] + '$', true, false );
  493. } else {
  494. column.search('^((?!(' + data[c] + ')).)*$', true, false );
  495. }
  496. $(column.header()).addClass("filtered");
  497. }
  498. column.draw();
  499. return false;
  500. }
  501. function doClearFilters() {
  502. for (var i = 0; i < packets.columns()[0].length; i++) {
  503. if (filters[i]) {
  504. filters[i] = false;
  505. var column = packets.column(i);
  506. column.search("");
  507. $(column.header()).removeClass("filtered");
  508. column.draw();
  509. }
  510. }
  511. return false;
  512. }
  513. <!-- endRemoveIf(!rfm69)-->
  514. // -----------------------------------------------------------------------------
  515. // Visualization
  516. // -----------------------------------------------------------------------------
  517. function toggleMenu() {
  518. $("#layout").toggleClass("active");
  519. $("#menu").toggleClass("active");
  520. $("#menuLink").toggleClass("active");
  521. }
  522. function showPanel() {
  523. $(".panel").hide();
  524. if ($("#layout").hasClass("active")) { toggleMenu(); }
  525. $("#" + $(this).attr("data")).show();
  526. }
  527. // -----------------------------------------------------------------------------
  528. // Relays & magnitudes mapping
  529. // -----------------------------------------------------------------------------
  530. function createRelayList(data, container, template_name) {
  531. var current = $("#" + container + " > div").length;
  532. if (current > 0) { return; }
  533. var template = $("#" + template_name + " .pure-g")[0];
  534. for (var i in data) {
  535. var line = $(template).clone();
  536. $("label", line).html("Switch #" + i);
  537. $("input", line).attr("tabindex", 40 + i).val(data[i]);
  538. line.appendTo("#" + container);
  539. }
  540. }
  541. <!-- removeIf(!sensor)-->
  542. function createMagnitudeList(data, container, template_name) {
  543. var current = $("#" + container + " > div").length;
  544. if (current > 0) { return; }
  545. var template = $("#" + template_name + " .pure-g")[0];
  546. for (var i in data) {
  547. var magnitude = data[i];
  548. var line = $(template).clone();
  549. $("label", line).html(magnitudeType(magnitude.type) + " #" + parseInt(magnitude.index, 10));
  550. $("div.hint", line).html(magnitude.name);
  551. $("input", line).attr("tabindex", 40 + i).val(magnitude.idx);
  552. line.appendTo("#" + container);
  553. }
  554. }
  555. <!-- endRemoveIf(!sensor)-->
  556. // -----------------------------------------------------------------------------
  557. // RFM69
  558. // -----------------------------------------------------------------------------
  559. <!-- removeIf(!rfm69)-->
  560. function addMapping() {
  561. var template = $("#nodeTemplate .pure-g")[0];
  562. var line = $(template).clone();
  563. var tabindex = $("#mapping > div").length * 3 + 50;
  564. $(line).find("input").each(function() {
  565. $(this).attr("tabindex", tabindex++);
  566. });
  567. $(line).find("button").on('click', delMapping);
  568. line.appendTo("#mapping");
  569. }
  570. function delMapping() {
  571. var parent = $(this).parent().parent();
  572. $(parent).remove();
  573. }
  574. <!-- endRemoveIf(!rfm69)-->
  575. // -----------------------------------------------------------------------------
  576. // Wifi
  577. // -----------------------------------------------------------------------------
  578. function delNetwork() {
  579. var parent = $(this).parents(".pure-g");
  580. $(parent).remove();
  581. }
  582. function moreNetwork() {
  583. var parent = $(this).parents(".pure-g");
  584. $(".more", parent).toggle();
  585. }
  586. function addNetwork() {
  587. var numNetworks = $("#networks > div").length;
  588. if (numNetworks >= maxNetworks) {
  589. alert("Max number of networks reached");
  590. return null;
  591. }
  592. var tabindex = 200 + numNetworks * 10;
  593. var template = $("#networkTemplate").children();
  594. var line = $(template).clone();
  595. $(line).find("input").each(function() {
  596. $(this).attr("tabindex", tabindex);
  597. tabindex++;
  598. });
  599. $(line).find(".button-del-network").on("click", delNetwork);
  600. $(line).find(".button-more-network").on("click", moreNetwork);
  601. line.appendTo("#networks");
  602. return line;
  603. }
  604. // -----------------------------------------------------------------------------
  605. // Relays scheduler
  606. // -----------------------------------------------------------------------------
  607. function delSchedule() {
  608. var parent = $(this).parents(".pure-g");
  609. $(parent).remove();
  610. }
  611. function moreSchedule() {
  612. var parent = $(this).parents(".pure-g");
  613. $("div.more", parent).toggle();
  614. }
  615. function addSchedule(event) {
  616. var numSchedules = $("#schedules > div").length;
  617. if (numSchedules >= maxSchedules) {
  618. alert("Max number of schedules reached");
  619. return null;
  620. }
  621. var tabindex = 200 + numSchedules * 10;
  622. var template = $("#scheduleTemplate").children();
  623. var line = $(template).clone();
  624. var type = (1 === event.data.schType) ? "switch" : "light";
  625. template = $("#" + type + "ActionTemplate").children();
  626. var actionLine = template.clone();
  627. $(line).find("#schActionDiv").append(actionLine);
  628. $(line).find("input").each(function() {
  629. $(this).attr("tabindex", tabindex);
  630. tabindex++;
  631. });
  632. $(line).find(".button-del-schedule").on("click", delSchedule);
  633. $(line).find(".button-more-schedule").on("click", moreSchedule);
  634. line.appendTo("#schedules");
  635. $(line).find("input[type='checkbox']").prop("checked", false);
  636. initCheckboxes();
  637. return line;
  638. }
  639. // -----------------------------------------------------------------------------
  640. // Relays
  641. // -----------------------------------------------------------------------------
  642. function initRelays(data) {
  643. var current = $("#relays > div").length;
  644. if (current > 0) { return; }
  645. var template = $("#relayTemplate .pure-g")[0];
  646. for (var i=0; i<data.length; i++) {
  647. // Add relay fields
  648. var line = $(template).clone();
  649. $(".id", line).html(i);
  650. $(":checkbox", line).prop('checked', data[i]).attr("data", i);
  651. line.appendTo("#relays");
  652. // Populate the relay SELECTs
  653. $("select.isrelay").append(
  654. $("<option></option>").attr("value",i).text("Switch #" + i));
  655. }
  656. }
  657. function initCheckboxes() {
  658. var setCheckbox = function(element, value) {
  659. var container = $(".toggle-container", $(element));
  660. if (value) {
  661. container.css("clipPath", "inset(0 0 0 50%)");
  662. container.css("backgroundColor", "#00c000");
  663. } else {
  664. container.css("clipPath", "inset(0 50% 0 0)");
  665. container.css("backgroundColor", "#c00000");
  666. }
  667. }
  668. $(".checkbox-container")
  669. .each(function() {
  670. var status = $(this).next().prop('checked');
  671. setCheckbox(this, status);
  672. })
  673. .off('click')
  674. .on('click', function() {
  675. var checkbox = $(this).next();
  676. var status = checkbox.prop('checked');
  677. status = !status;
  678. checkbox.prop('checked', status);
  679. setCheckbox(this, status);
  680. if ("relay" == checkbox.attr('name')) {
  681. var id = parseInt(checkbox.attr('data'), 10);
  682. doToggle(id, status);
  683. }
  684. });
  685. }
  686. function createCheckboxes() {
  687. $("input[type='checkbox']").each(function() {
  688. var text_on = $(this).attr("on") || "YES";
  689. var text_off = $(this).attr("off") || "NO";
  690. var toggles = "<div class=\"toggle\"><p>" + text_on + "</p></div><div class=\"toggle\"><p>" + text_off + "</p></div>";
  691. var content = "<div class=\"checkbox-container\"><div class=\"inner-container\">" + toggles
  692. + "</div><div class=\"inner-container toggle-container\">" + toggles + "</div></div>";
  693. $(this).before(content).hide();
  694. });
  695. }
  696. function initRelayConfig(data) {
  697. var current = $("#relayConfig > div").length;
  698. if (current > 0) { return; }
  699. var template = $("#relayConfigTemplate").children();
  700. for (var i in data) {
  701. var relay = data[i];
  702. var line = $(template).clone();
  703. $("span.gpio", line).html(relay.gpio);
  704. $("span.id", line).html(i);
  705. $("select[name='relayBoot']", line).val(relay.boot);
  706. $("select[name='relayPulse']", line).val(relay.pulse);
  707. $("input[name='relayTime']", line).val(relay.pulse_ms);
  708. $("input[name='mqttGroup']", line).val(relay.group);
  709. $("select[name='mqttGroupInv']", line).val(relay.group_inv);
  710. $("select[name='relayOnDisc']", line).val(relay.on_disc);
  711. line.appendTo("#relayConfig");
  712. }
  713. }
  714. // -----------------------------------------------------------------------------
  715. // Sensors & Magnitudes
  716. // -----------------------------------------------------------------------------
  717. <!-- removeIf(!sensor)-->
  718. function initMagnitudes(data) {
  719. // check if already initialized
  720. var done = $("#magnitudes > div").length;
  721. if (done > 0) { return; }
  722. // add templates
  723. var template = $("#magnitudeTemplate").children();
  724. for (var i in data) {
  725. var magnitude = data[i];
  726. var line = $(template).clone();
  727. $("label", line).html(magnitudeType(magnitude.type) + " #" + parseInt(magnitude.index, 10));
  728. $("div.hint", line).html(magnitude.description);
  729. $("input", line).attr("data", i);
  730. line.appendTo("#magnitudes");
  731. }
  732. }
  733. <!-- endRemoveIf(!sensor)-->
  734. // -----------------------------------------------------------------------------
  735. // Lights
  736. // -----------------------------------------------------------------------------
  737. <!-- removeIf(!light)-->
  738. function initColorRGB() {
  739. // check if already initialized
  740. var done = $("#colors > div").length;
  741. if (done > 0) { return; }
  742. // add template
  743. var template = $("#colorRGBTemplate").children();
  744. var line = $(template).clone();
  745. line.appendTo("#colors");
  746. // init color wheel
  747. $("input[name='color']").wheelColorPicker({
  748. sliders: "wrgbp"
  749. }).on("sliderup", function() {
  750. var value = $(this).wheelColorPicker("getValue", "css");
  751. sendAction("color", {rgb: value});
  752. });
  753. // init bright slider
  754. $("#brightness").on("change", function() {
  755. var value = $(this).val();
  756. var parent = $(this).parents(".pure-g");
  757. $("span", parent).html(value);
  758. sendAction("color", {brightness: value});
  759. });
  760. }
  761. function initCCT() {
  762. // check if already initialized
  763. var done = $("#cct > div").length;
  764. if (done > 0) { return; }
  765. $("#miredsTemplate").children().clone().appendTo("#cct");
  766. $("#mireds").on("change", function() {
  767. var value = $(this).val();
  768. var parent = $(this).parents(".pure-g");
  769. $("span", parent).html(value);
  770. sendAction("mireds", {mireds: value});
  771. });
  772. }
  773. function initColorHSV() {
  774. // check if already initialized
  775. var done = $("#colors > div").length;
  776. if (done > 0) { return; }
  777. // add template
  778. var template = $("#colorHSVTemplate").children();
  779. var line = $(template).clone();
  780. line.appendTo("#colors");
  781. // init color wheel
  782. $("input[name='color']").wheelColorPicker({
  783. sliders: "whsvp"
  784. }).on("sliderup", function() {
  785. var color = $(this).wheelColorPicker("getColor");
  786. var value = parseInt(color.h * 360, 10) + "," + parseInt(color.s * 100, 10) + "," + parseInt(color.v * 100, 10);
  787. sendAction("color", {hsv: value});
  788. });
  789. }
  790. function initChannels(num) {
  791. // check if already initialized
  792. var done = $("#channels > div").length > 0;
  793. if (done) { return; }
  794. // does it have color channels?
  795. var colors = $("#colors > div").length > 0;
  796. // calculate channels to create
  797. var max = num;
  798. if (colors) {
  799. max = num % 3;
  800. if ((max > 0) & useWhite) {
  801. max--;
  802. if (useCCT) {
  803. max--;
  804. }
  805. }
  806. }
  807. var start = num - max;
  808. var onChannelSliderChange = function() {
  809. var id = $(this).attr("data");
  810. var value = $(this).val();
  811. var parent = $(this).parents(".pure-g");
  812. $("span", parent).html(value);
  813. sendAction("channel", {id: id, value: value});
  814. };
  815. // add templates
  816. var i = 0;
  817. var template = $("#channelTemplate").children();
  818. for (i=0; i<max; i++) {
  819. var channel_id = start + i;
  820. var line = $(template).clone();
  821. $("span.slider", line).attr("data", channel_id);
  822. $("input.slider", line).attr("data", channel_id).on("change", onChannelSliderChange);
  823. $("label", line).html("Channel #" + channel_id);
  824. line.appendTo("#channels");
  825. }
  826. for (i=0; i<num; i++) {
  827. $("select.islight").append(
  828. $("<option></option>").attr("value",i).text("Channel #" + i));
  829. }
  830. }
  831. <!-- endRemoveIf(!light)-->
  832. // -----------------------------------------------------------------------------
  833. // RFBridge
  834. // -----------------------------------------------------------------------------
  835. <!-- removeIf(!rfbridge)-->
  836. function rfbLearn() {
  837. var parent = $(this).parents(".pure-g");
  838. var input = $("input", parent);
  839. sendAction("rfblearn", {id: input.attr("data-id"), status: input.attr("data-status")});
  840. }
  841. function rfbForget() {
  842. var parent = $(this).parents(".pure-g");
  843. var input = $("input", parent);
  844. sendAction("rfbforget", {id: input.attr("data-id"), status: input.attr("data-status")});
  845. }
  846. function rfbSend() {
  847. var parent = $(this).parents(".pure-g");
  848. var input = $("input", parent);
  849. sendAction("rfbsend", {id: input.attr("data-id"), status: input.attr("data-status"), data: input.val()});
  850. }
  851. function addRfbNode() {
  852. var numNodes = $("#rfbNodes > legend").length;
  853. var template = $("#rfbNodeTemplate").children();
  854. var line = $(template).clone();
  855. var status = true;
  856. $("span", line).html(numNodes);
  857. $(line).find("input").each(function() {
  858. $(this).attr("data-id", numNodes);
  859. $(this).attr("data-status", status ? 1 : 0);
  860. status = !status;
  861. });
  862. $(line).find(".button-rfb-learn").on("click", rfbLearn);
  863. $(line).find(".button-rfb-forget").on("click", rfbForget);
  864. $(line).find(".button-rfb-send").on("click", rfbSend);
  865. line.appendTo("#rfbNodes");
  866. return line;
  867. }
  868. <!-- endRemoveIf(!rfbridge)-->
  869. // -----------------------------------------------------------------------------
  870. // Processing
  871. // -----------------------------------------------------------------------------
  872. function processData(data) {
  873. // title
  874. if ("app_name" in data) {
  875. var title = data.app_name;
  876. if ("app_version" in data) {
  877. title = title + " " + data.app_version;
  878. }
  879. $("span[name=title]").html(title);
  880. if ("hostname" in data) {
  881. title = data.hostname + " - " + title;
  882. }
  883. document.title = title;
  884. }
  885. Object.keys(data).forEach(function(key) {
  886. var i;
  887. var value = data[key];
  888. // ---------------------------------------------------------------------
  889. // Web mode
  890. // ---------------------------------------------------------------------
  891. if ("webMode" === key) {
  892. password = (1 === value);
  893. $("#layout").toggle(!password);
  894. $("#password").toggle(password);
  895. }
  896. // ---------------------------------------------------------------------
  897. // Actions
  898. // ---------------------------------------------------------------------
  899. if ("action" === key) {
  900. if ("reload" === data.action) { doReload(1000); }
  901. return;
  902. }
  903. // ---------------------------------------------------------------------
  904. // RFBridge
  905. // ---------------------------------------------------------------------
  906. <!-- removeIf(!rfbridge)-->
  907. if ("rfbCount" === key) {
  908. for (i=0; i<data.rfbCount; i++) { addRfbNode(); }
  909. return;
  910. }
  911. if ("rfbrawVisible" === key) {
  912. $("input[name='rfbcode']").attr("maxlength", 116);
  913. }
  914. if ("rfb" === key) {
  915. var nodes = data.rfb;
  916. for (i in nodes) {
  917. var node = nodes[i];
  918. $("input[name='rfbcode'][data-id='" + node.id + "'][data-status='" + node.status + "']").val(node.data);
  919. }
  920. return;
  921. }
  922. <!-- endRemoveIf(!rfbridge)-->
  923. // ---------------------------------------------------------------------
  924. // RFM69
  925. // ---------------------------------------------------------------------
  926. <!-- removeIf(!rfm69)-->
  927. if (key == "packet") {
  928. var packet = data.packet;
  929. var d = new Date();
  930. packets.row.add([
  931. d.toLocaleTimeString('en-US', { hour12: false }),
  932. packet.senderID,
  933. packet.packetID,
  934. packet.targetID,
  935. packet.key,
  936. packet.value,
  937. packet.rssi,
  938. packet.duplicates,
  939. packet.missing,
  940. ]).draw(false);
  941. return;
  942. }
  943. if (key == "mapping") {
  944. for (var i in data.mapping) {
  945. // add a new row
  946. addMapping();
  947. // get group
  948. var line = $("#mapping .pure-g")[i];
  949. // fill in the blanks
  950. var mapping = data.mapping[i];
  951. Object.keys(mapping).forEach(function(key) {
  952. var id = "input[name=" + key + "]";
  953. if ($(id, line).length) $(id, line).val(mapping[key]).attr("original", mapping[key]);
  954. });
  955. }
  956. return;
  957. }
  958. <!-- endRemoveIf(!rfm69)-->
  959. // ---------------------------------------------------------------------
  960. // Lights
  961. // ---------------------------------------------------------------------
  962. <!-- removeIf(!light)-->
  963. if ("rgb" === key) {
  964. initColorRGB();
  965. $("input[name='color']").wheelColorPicker("setValue", value, true);
  966. return;
  967. }
  968. if ("hsv" === key) {
  969. initColorHSV();
  970. // wheelColorPicker expects HSV to be between 0 and 1 all of them
  971. var chunks = value.split(",");
  972. var obj = {};
  973. obj.h = chunks[0] / 360;
  974. obj.s = chunks[1] / 100;
  975. obj.v = chunks[2] / 100;
  976. $("input[name='color']").wheelColorPicker("setColor", obj);
  977. return;
  978. }
  979. if ("brightness" === key) {
  980. $("#brightness").val(value);
  981. $("span.brightness").html(value);
  982. return;
  983. }
  984. if ("channels" === key) {
  985. var len = value.length;
  986. initChannels(len);
  987. for (i in value) {
  988. var ch = value[i];
  989. $("input.slider[data=" + i + "]").val(ch);
  990. $("span.slider[data=" + i + "]").html(ch);
  991. }
  992. return;
  993. }
  994. if ("mireds" === key) {
  995. $("#mireds").val(value);
  996. $("span.mireds").html(value);
  997. return;
  998. }
  999. if ("useWhite" === key) {
  1000. useWhite = value;
  1001. }
  1002. if ("useCCT" === key) {
  1003. initCCT();
  1004. useCCT = value;
  1005. }
  1006. <!-- endRemoveIf(!light)-->
  1007. // ---------------------------------------------------------------------
  1008. // Sensors & Magnitudes
  1009. // ---------------------------------------------------------------------
  1010. <!-- removeIf(!sensor)-->
  1011. if ("magnitudes" === key) {
  1012. initMagnitudes(value);
  1013. for (i in value) {
  1014. var magnitude = value[i];
  1015. var error = magnitude.error || 0;
  1016. var text = (0 === error) ?
  1017. magnitude.value + magnitude.units :
  1018. magnitudeError(error);
  1019. var element = $("input[name='magnitude'][data='" + i + "']");
  1020. element.val(text);
  1021. $("div.hint", element.parent().parent()).html(magnitude.description);
  1022. }
  1023. return;
  1024. }
  1025. <!-- endRemoveIf(!sensor)-->
  1026. // ---------------------------------------------------------------------
  1027. // WiFi
  1028. // ---------------------------------------------------------------------
  1029. if ("maxNetworks" === key) {
  1030. maxNetworks = parseInt(value, 10);
  1031. return;
  1032. }
  1033. if ("wifi" === key) {
  1034. for (i in value) {
  1035. var wifi = value[i];
  1036. var nwk_line = addNetwork();
  1037. Object.keys(wifi).forEach(function(key) {
  1038. $("input[name='" + key + "']", nwk_line).val(wifi[key]);
  1039. });
  1040. }
  1041. return;
  1042. }
  1043. if ("scanResult" === key) {
  1044. $("div.scan.loading").hide();
  1045. $("#scanResult").show();
  1046. }
  1047. // -----------------------------------------------------------------------------
  1048. // Home Assistant
  1049. // -----------------------------------------------------------------------------
  1050. if ("haConfig" === key) {
  1051. $("#haConfig").show();
  1052. }
  1053. // -----------------------------------------------------------------------------
  1054. // Relays scheduler
  1055. // -----------------------------------------------------------------------------
  1056. if ("maxSchedules" === key) {
  1057. maxSchedules = parseInt(value, 10);
  1058. return;
  1059. }
  1060. if ("schedule" === key) {
  1061. for (i in value) {
  1062. var schedule = value[i];
  1063. var sch_line = addSchedule({ data: {schType: schedule["schType"] }});
  1064. Object.keys(schedule).forEach(function(key) {
  1065. var sch_value = schedule[key];
  1066. $("input[name='" + key + "']", sch_line).val(sch_value);
  1067. $("select[name='" + key + "']", sch_line).prop("value", sch_value);
  1068. $("input[type='checkbox'][name='" + key + "']", sch_line).prop("checked", sch_value);
  1069. });
  1070. }
  1071. return;
  1072. }
  1073. // ---------------------------------------------------------------------
  1074. // Relays
  1075. // ---------------------------------------------------------------------
  1076. if ("relayStatus" === key) {
  1077. initRelays(value);
  1078. for (i in value) {
  1079. $("input[name='relay'][data='" + i + "']").prop("checked", value[i]);
  1080. }
  1081. return;
  1082. }
  1083. // Relay configuration
  1084. if ("relayConfig" === key) {
  1085. initRelayConfig(value);
  1086. return;
  1087. }
  1088. // ---------------------------------------------------------------------
  1089. // Domoticz
  1090. // ---------------------------------------------------------------------
  1091. // Domoticz - Relays
  1092. if ("dczRelays" === key) {
  1093. createRelayList(value, "dczRelays", "dczRelayTemplate");
  1094. return;
  1095. }
  1096. // Domoticz - Magnitudes
  1097. <!-- removeIf(!sensor)-->
  1098. if ("dczMagnitudes" === key) {
  1099. createMagnitudeList(value, "dczMagnitudes", "dczMagnitudeTemplate");
  1100. return;
  1101. }
  1102. <!-- endRemoveIf(!sensor)-->
  1103. // ---------------------------------------------------------------------
  1104. // Thingspeak
  1105. // ---------------------------------------------------------------------
  1106. // Thingspeak - Relays
  1107. if ("tspkRelays" === key) {
  1108. createRelayList(value, "tspkRelays", "tspkRelayTemplate");
  1109. return;
  1110. }
  1111. // Thingspeak - Magnitudes
  1112. <!-- removeIf(!sensor)-->
  1113. if ("tspkMagnitudes" === key) {
  1114. createMagnitudeList(value, "tspkMagnitudes", "tspkMagnitudeTemplate");
  1115. return;
  1116. }
  1117. <!-- endRemoveIf(!sensor)-->
  1118. // ---------------------------------------------------------------------
  1119. // General
  1120. // ---------------------------------------------------------------------
  1121. // Messages
  1122. if ("message" === key) {
  1123. window.alert(messages[value]);
  1124. return;
  1125. }
  1126. // Web log
  1127. if ("weblog" === key) {
  1128. $("#weblog").append(new Text(value));
  1129. $("#weblog").scrollTop($("#weblog")[0].scrollHeight - $("#weblog").height());
  1130. return;
  1131. }
  1132. // Enable options
  1133. var position = key.indexOf("Visible");
  1134. if (position > 0 && position === key.length - 7) {
  1135. var module = key.slice(0,-7);
  1136. $(".module-" + module).css("display", "inherit");
  1137. return;
  1138. }
  1139. if ("deviceip" === key) {
  1140. var a_href = $("span[name='" + key + "']").parent();
  1141. a_href.attr("href", "//" + value);
  1142. a_href.next().attr("href", "telnet://" + value);
  1143. }
  1144. if ("now" === key) {
  1145. now = value;
  1146. return;
  1147. }
  1148. if ("free_size" === key) {
  1149. free_size = parseInt(value, 10);
  1150. }
  1151. // Pre-process
  1152. if ("mqttStatus" === key) {
  1153. value = value ? "CONNECTED" : "NOT CONNECTED";
  1154. }
  1155. if ("ntpStatus" === key) {
  1156. value = value ? "SYNC'D" : "NOT SYNC'D";
  1157. }
  1158. if ("uptime" === key) {
  1159. ago = 0;
  1160. var uptime = parseInt(value, 10);
  1161. var seconds = uptime % 60; uptime = parseInt(uptime / 60, 10);
  1162. var minutes = uptime % 60; uptime = parseInt(uptime / 60, 10);
  1163. var hours = uptime % 24; uptime = parseInt(uptime / 24, 10);
  1164. var days = uptime;
  1165. value = days + "d " + zeroPad(hours, 2) + "h " + zeroPad(minutes, 2) + "m " + zeroPad(seconds, 2) + "s";
  1166. }
  1167. // ---------------------------------------------------------------------
  1168. // Matching
  1169. // ---------------------------------------------------------------------
  1170. var pre;
  1171. var post;
  1172. // Look for INPUTs
  1173. var input = $("input[name='" + key + "']");
  1174. if (input.length > 0) {
  1175. if (input.attr("type") === "checkbox") {
  1176. input.prop("checked", value);
  1177. } else if (input.attr("type") === "radio") {
  1178. input.val([value]);
  1179. } else {
  1180. pre = input.attr("pre") || "";
  1181. post = input.attr("post") || "";
  1182. input.val(pre + value + post);
  1183. }
  1184. }
  1185. // Look for SPANs
  1186. var span = $("span[name='" + key + "']");
  1187. if (span.length > 0) {
  1188. pre = span.attr("pre") || "";
  1189. post = span.attr("post") || "";
  1190. span.html(pre + value + post);
  1191. }
  1192. // Look for SELECTs
  1193. var select = $("select[name='" + key + "']");
  1194. if (select.length > 0) {
  1195. select.val(value);
  1196. }
  1197. });
  1198. // Auto generate an APIKey if none defined yet
  1199. if ($("input[name='apiKey']").val() === "") {
  1200. generateAPIKey();
  1201. }
  1202. resetOriginals();
  1203. initCheckboxes();
  1204. }
  1205. function hasChanged() {
  1206. var newValue, originalValue;
  1207. if ($(this).attr("type") === "checkbox") {
  1208. newValue = $(this).prop("checked");
  1209. originalValue = ($(this).attr("original") === "true");
  1210. } else {
  1211. newValue = $(this).val();
  1212. originalValue = $(this).attr("original");
  1213. }
  1214. var hasChanged = $(this).attr("hasChanged") || 0;
  1215. var action = $(this).attr("action");
  1216. if (typeof originalValue === "undefined") { return; }
  1217. if ("none" === action) { return; }
  1218. if (newValue !== originalValue) {
  1219. if (0 === hasChanged) {
  1220. ++numChanged;
  1221. if ("reconnect" === action) { ++numReconnect; }
  1222. if ("reboot" === action) { ++numReboot; }
  1223. if ("reload" === action) { ++numReload; }
  1224. $(this).attr("hasChanged", 1);
  1225. }
  1226. } else {
  1227. if (1 === hasChanged) {
  1228. --numChanged;
  1229. if ("reconnect" === action) { --numReconnect; }
  1230. if ("reboot" === action) { --numReboot; }
  1231. if ("reload" === action) { --numReload; }
  1232. $(this).attr("hasChanged", 0);
  1233. }
  1234. }
  1235. }
  1236. // -----------------------------------------------------------------------------
  1237. // Init & connect
  1238. // -----------------------------------------------------------------------------
  1239. function initUrls(root) {
  1240. var paths = ["ws", "upgrade", "config", "auth"];
  1241. urls["root"] = root;
  1242. paths.forEach(function(path) {
  1243. urls[path] = new URL(path, root);
  1244. urls[path].protocol = root.protocol;
  1245. });
  1246. if (root.protocol == "https:") {
  1247. urls.ws.protocol = "wss:";
  1248. } else {
  1249. urls.ws.protocol = "ws:";
  1250. }
  1251. }
  1252. function connectToURL(url) {
  1253. initUrls(url);
  1254. $.ajax({
  1255. 'method': 'GET',
  1256. 'crossDomain': true,
  1257. 'url': urls.auth.href,
  1258. 'xhrFields': { 'withCredentials': true }
  1259. }).done(function(data) {
  1260. if (websock) { websock.close(); }
  1261. websock = new WebSocket(urls.ws.href);
  1262. websock.onmessage = function(evt) {
  1263. var data = getJson(evt.data.replace(/\n/g, "\\n").replace(/\r/g, "\\r").replace(/\t/g, "\\t"));
  1264. if (data) {
  1265. processData(data);
  1266. }
  1267. };
  1268. }).fail(function() {
  1269. // Nothing to do, reload page and retry
  1270. });
  1271. }
  1272. function connect(host) {
  1273. if (!host.startsWith("http:") && !host.startsWith("https:")) {
  1274. host = "http://" + host;
  1275. }
  1276. connectToURL(new URL(host));
  1277. }
  1278. function connectToCurrentURL() {
  1279. connectToURL(new URL(window.location));
  1280. }
  1281. function getParameterByName(name) {
  1282. var match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
  1283. return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
  1284. }
  1285. $(function() {
  1286. initMessages();
  1287. loadTimeZones();
  1288. createCheckboxes();
  1289. setInterval(function() { keepTime(); }, 1000);
  1290. $("#menuLink").on("click", toggleMenu);
  1291. $(".pure-menu-link").on("click", showPanel);
  1292. $("progress").attr({ value: 0, max: 100 });
  1293. $(".button-update").on("click", doUpdate);
  1294. $(".button-update-password").on("click", doUpdatePassword);
  1295. $(".button-reboot").on("click", doReboot);
  1296. $(".button-reconnect").on("click", doReconnect);
  1297. $(".button-wifi-scan").on("click", doScan);
  1298. $(".button-ha-config").on("click", doHAConfig);
  1299. $(".button-dbgcmd").on("click", doDebugCommand);
  1300. $("input[name='dbgcmd']").enterKey(doDebugCommand);
  1301. $(".button-dbg-clear").on("click", doDebugClear);
  1302. $(".button-settings-backup").on("click", doBackup);
  1303. $(".button-settings-restore").on("click", doRestore);
  1304. $(".button-settings-factory").on("click", doFactoryReset);
  1305. $("#uploader").on("change", onFileUpload);
  1306. $(".button-upgrade").on("click", doUpgrade);
  1307. $(".button-apikey").on("click", generateAPIKey);
  1308. $(".button-upgrade-browse").on("click", function() {
  1309. $("input[name='upgrade']")[0].click();
  1310. return false;
  1311. });
  1312. $("input[name='upgrade']").change(function (){
  1313. var file = this.files[0];
  1314. $("input[name='filename']").val(file.name);
  1315. });
  1316. $(".button-add-network").on("click", function() {
  1317. $(".more", addNetwork()).toggle();
  1318. });
  1319. $(".button-add-switch-schedule").on("click", { schType: 1 }, addSchedule);
  1320. <!-- removeIf(!light)-->
  1321. $(".button-add-light-schedule").on("click", { schType: 2 }, addSchedule);
  1322. <!-- endRemoveIf(!light)-->
  1323. <!-- removeIf(!rfm69)-->
  1324. $(".button-add-mapping").on('click', addMapping);
  1325. $(".button-del-mapping").on('click', delMapping);
  1326. $(".button-clear-counts").on('click', doClearCounts);
  1327. $(".button-clear-messages").on('click', doClearMessages);
  1328. $(".button-clear-filters").on('click', doClearFilters);
  1329. $('#packets tbody').on('mousedown', 'td', doFilter);
  1330. packets = $('#packets').DataTable({
  1331. "paging": false
  1332. });
  1333. for (var i = 0; i < packets.columns()[0].length; i++) {
  1334. filters[i] = false;
  1335. }
  1336. <!-- endRemoveIf(!rfm69)-->
  1337. $(document).on("change", "input", hasChanged);
  1338. $(document).on("change", "select", hasChanged);
  1339. // don't autoconnect when opening from filesystem
  1340. if (window.location.protocol === "file:") { return; }
  1341. // Check host param in query string
  1342. if (host = getParameterByName('host')) {
  1343. connect(host);
  1344. } else {
  1345. connectToCurrentURL();
  1346. }
  1347. });