readconfigcommon.js 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. function SaveConfigToServer(_domainname){
  2. // leere Zeilen am Ende löschen
  3. var zw = config_split.length - 1;
  4. while (config_split[zw] == "") {
  5. config_split.pop();
  6. }
  7. var config_gesamt = "";
  8. for (var i = 0; i < config_split.length; ++i)
  9. {
  10. config_gesamt = config_gesamt + config_split[i] + "\n";
  11. }
  12. FileDeleteOnServer("/config/config.ini", _domainname);
  13. FileSendContent(config_gesamt, "/config/config.ini", _domainname);
  14. }
  15. function UpdateConfig(zw, _index, _enhance, _domainname){
  16. var namezw = zw["name"];
  17. FileCopyOnServer("/img_tmp/ref_zw.jpg", namezw, _domainname);
  18. var namezw = zw["name"].replace(".jpg", "_org.jpg");
  19. FileCopyOnServer("/img_tmp/ref_zw_org.jpg", namezw, _domainname);
  20. }
  21. function createReader(file) {
  22. var image = new Image();
  23. reader.onload = function(evt) {
  24. var image = new Image();
  25. image.onload = function(evt) {
  26. var width = this.width;
  27. var height = this.height;
  28. //alert (width); // will produce something like 198
  29. };
  30. image.src = evt.target.result;
  31. };
  32. reader.readAsDataURL(file);
  33. }
  34. function ZerlegeZeile(input, delimiter = " =\t\r")
  35. {
  36. var Output = Array(0);
  37. // delimiter = " =,\t";
  38. /* The input can have multiple formats:
  39. * - key = value
  40. * - key = value1 value2 value3 ...
  41. * - key value1 value2 value3 ...
  42. *
  43. * Examples:
  44. * - ImageSize = VGA
  45. * - IO0 = input disabled 10 false false
  46. * - main.dig1 28 144 55 100 false
  47. *
  48. * This causes issues eg. if a password key has a whitespace or equal sign in its value.
  49. * As a workaround and to not break any legacy usage, we enforce to only use the
  50. * equal sign, if the key is "password"
  51. */
  52. if (input.includes("password") || input.includes("Token")) { // Line contains a password, use the equal sign as the only delimiter and only split on first occurrence
  53. var pos = input.indexOf("=");
  54. delimiter = " \t\r"
  55. Output.push(trim(input.substr(0, pos), delimiter));
  56. Output.push(trim(input.substr(pos +1, input.length), delimiter));
  57. }
  58. else { // Legacy Mode
  59. input = trim(input, delimiter);
  60. var pos = findDelimiterPos(input, delimiter);
  61. var token;
  62. while (pos > -1) {
  63. token = input.substr(0, pos);
  64. token = trim(token, delimiter);
  65. Output.push(token);
  66. input = input.substr(pos+1, input.length);
  67. input = trim(input, delimiter);
  68. pos = findDelimiterPos(input, delimiter);
  69. }
  70. Output.push(input);
  71. }
  72. return Output;
  73. }
  74. function findDelimiterPos(input, delimiter)
  75. {
  76. var pos = -1;
  77. var zw;
  78. var akt_del;
  79. for (var anz = 0; anz < delimiter.length; ++anz)
  80. {
  81. akt_del = delimiter[anz];
  82. zw = input.indexOf(akt_del);
  83. if (zw > -1)
  84. {
  85. if (pos > -1)
  86. {
  87. if (zw < pos)
  88. pos = zw;
  89. }
  90. else
  91. pos = zw;
  92. }
  93. }
  94. return pos;
  95. }
  96. function trim(istring, adddelimiter)
  97. {
  98. while ((istring.length > 0) && (adddelimiter.indexOf(istring[0]) >= 0)){
  99. istring = istring.substr(1, istring.length-1);
  100. }
  101. while ((istring.length > 0) && (adddelimiter.indexOf(istring[istring.length-1]) >= 0)){
  102. istring = istring.substr(0, istring.length-1);
  103. }
  104. return istring;
  105. }
  106. function getConfig()
  107. {
  108. return config_gesamt;
  109. }
  110. function loadConfig(_domainname)
  111. {
  112. var xhttp = new XMLHttpRequest();
  113. try {
  114. url = _domainname + '/fileserver/config/config.ini';
  115. xhttp.open("GET", url, false);
  116. xhttp.send();
  117. config_gesamt = xhttp.responseText;
  118. config_gesamt = config_gesamt.replace("InitalRotate", "InitialRotate"); // Korrigiere Schreibfehler in config.ini !!!!!
  119. }
  120. catch (error)
  121. {
  122. // firework.launch('Deleting Config.ini failed!', 'danger', 30000);
  123. }
  124. return true;
  125. }
  126. function dataURLtoBlob(dataurl)
  127. {
  128. var arr = dataurl.split(','), mime = arr[0].match(/:(.*?);/)[1],
  129. bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n);
  130. while(n--){
  131. u8arr[n] = bstr.charCodeAt(n);
  132. }
  133. return new Blob([u8arr], {type:mime});
  134. }
  135. function FileCopyOnServer(_source, _target, _domainname = ""){
  136. url = _domainname + "/editflow?task=copy&in=" + _source + "&out=" + _target;
  137. var xhttp = new XMLHttpRequest();
  138. try {
  139. xhttp.open("GET", url, false);
  140. xhttp.send(); }
  141. catch (error)
  142. {
  143. // firework.launch('Deleting Config.ini failed!', 'danger', 30000);
  144. }
  145. }
  146. function FileDeleteOnServer(_filename, _domainname = ""){
  147. var xhttp = new XMLHttpRequest();
  148. var okay = false;
  149. xhttp.onreadystatechange = function() {
  150. if (xhttp.readyState == 4) {
  151. if (xhttp.status == 200) {
  152. okay = true;
  153. } else if (xhttp.status == 0) {
  154. // firework.launch('Server closed the connection abruptly!', 'danger', 30000);
  155. // location.reload()
  156. } else {
  157. // firework.launch('An error occured: ' + xhttp.responseText, 'danger', 30000);
  158. // location.reload()
  159. }
  160. }
  161. };
  162. try {
  163. var url = _domainname + "/delete" + _filename;
  164. xhttp.open("POST", url, false);
  165. xhttp.send();
  166. }
  167. catch (error)
  168. {
  169. // firework.launch('Deleting Config.ini failed!', 'danger', 30000);
  170. }
  171. return okay;
  172. }
  173. function FileSendContent(_content, _filename, _domainname = ""){
  174. var xhttp = new XMLHttpRequest();
  175. var okay = false;
  176. xhttp.onreadystatechange = function() {
  177. if (xhttp.readyState == 4) {
  178. if (xhttp.status == 200) {
  179. okay = true;
  180. } else if (xhttp.status == 0) {
  181. firework.launch('Server closed the connection abruptly!', 'danger', 30000);
  182. } else {
  183. firework.launch('An error occured: ' + xhttp.responseText, 'danger', 30000);
  184. }
  185. }
  186. };
  187. try {
  188. upload_path = _domainname + "/upload" + _filename;
  189. xhttp.open("POST", upload_path, false);
  190. xhttp.send(_content);
  191. }
  192. catch (error)
  193. {
  194. // firework.launch('Deleting Config.ini failed!', 'danger', 30000);
  195. }
  196. return okay;
  197. }
  198. function MakeRefImageZW(zw, _enhance, _domainname){
  199. var _filename = zw["name"].replace("/config/", "/img_tmp/");
  200. var url = _domainname + "/editflow?task=cutref&in=/config/reference.jpg&out=" + _filename + "&x=" + zw["x"] + "&y=" + zw["y"] + "&dx=" + zw["dx"] + "&dy=" + zw["dy"];
  201. if (_enhance == true){
  202. url = url + "&enhance=true";
  203. }
  204. var xhttp = new XMLHttpRequest();
  205. try {
  206. xhttp.open("GET", url, false);
  207. xhttp.send();
  208. } catch (error){}
  209. if (xhttp.responseText == "CutImage Done") {
  210. firework.launch('Image Contrast got enhanced', 'success', 5000);
  211. return true;
  212. }
  213. else {
  214. return false;
  215. }
  216. }