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.

210 lines
6.1 KiB

8 years ago
8 years ago
6 years ago
8 years ago
8 years ago
8 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
8 years ago
8 years ago
5 years ago
5 years ago
  1. /*
  2. ESP8266 file system builder
  3. Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. /*eslint quotes: ['error', 'single']*/
  16. /*eslint-env es6*/
  17. // -----------------------------------------------------------------------------
  18. // Dependencies
  19. // -----------------------------------------------------------------------------
  20. const gulp = require('gulp');
  21. const through = require('through2');
  22. const htmlmin = require('gulp-htmlmin');
  23. const inline = require('gulp-inline');
  24. const inlineImages = require('gulp-css-base64');
  25. const favicon = require('gulp-base64-favicon');
  26. const crass = require('gulp-crass');
  27. const htmllint = require('gulp-htmllint');
  28. const csslint = require('gulp-csslint');
  29. const rename = require('gulp-rename');
  30. const replace = require('gulp-replace');
  31. const remover = require('gulp-remove-code');
  32. const gzip = require('gulp-gzip');
  33. const path = require('path');
  34. // -----------------------------------------------------------------------------
  35. // Configuration
  36. // -----------------------------------------------------------------------------
  37. const htmlFolder = 'html/';
  38. const configFolder = 'espurna/config/';
  39. const dataFolder = 'espurna/data/';
  40. const staticFolder = 'espurna/static/';
  41. // -----------------------------------------------------------------------------
  42. // Methods
  43. // -----------------------------------------------------------------------------
  44. var toHeader = function(name, debug) {
  45. return through.obj(function (source, encoding, callback) {
  46. var parts = source.path.split(path.sep);
  47. var filename = parts[parts.length - 1];
  48. var safename = name || filename.split('.').join('_');
  49. // Generate output
  50. var output = '';
  51. output += '#define ' + safename + '_len ' + source.contents.length + '\n';
  52. output += 'const uint8_t ' + safename + '[] PROGMEM = {';
  53. for (var i=0; i<source.contents.length; i++) {
  54. if (i > 0) { output += ','; }
  55. if (0 === (i % 20)) { output += '\n'; }
  56. output += '0x' + ('00' + source.contents[i].toString(16)).slice(-2);
  57. }
  58. output += '\n};';
  59. // clone the contents
  60. var destination = source.clone();
  61. destination.path = source.path + '.h';
  62. destination.contents = Buffer.from(output);
  63. if (debug) {
  64. console.info('Image ' + filename + ' \tsize: ' + source.contents.length + ' bytes');
  65. }
  66. callback(null, destination);
  67. });
  68. };
  69. var htmllintReporter = function(filepath, issues) {
  70. if (issues.length > 0) {
  71. issues.forEach(function (issue) {
  72. console.info(
  73. '[gulp-htmllint] ' +
  74. filepath + ' [' +
  75. issue.line + ',' +
  76. issue.column + ']: ' +
  77. '(' + issue.code + ') ' +
  78. issue.msg
  79. );
  80. });
  81. process.exitCode = 1;
  82. }
  83. };
  84. var buildWebUI = function(module) {
  85. var modules = {'light': false, 'sensor': false, 'rfbridge': false, 'rfm69': false};
  86. if ('all' === module) {
  87. modules['light'] = true;
  88. modules['sensor'] = true;
  89. modules['rfbridge'] = true;
  90. modules['rfm69'] = false; // we will never be adding this except when building RFM69GW
  91. modules['lightfox'] = false; // we will never be adding this except when building lightfox
  92. } else if ('small' !== module) {
  93. modules[module] = true;
  94. }
  95. return gulp.src(htmlFolder + '*.html').
  96. pipe(htmllint({
  97. 'failOnError': true,
  98. 'rules': {
  99. 'id-class-style': false,
  100. 'label-req-for': false,
  101. }
  102. }, htmllintReporter)).
  103. pipe(favicon()).
  104. pipe(inline({
  105. base: htmlFolder,
  106. js: [],
  107. css: [crass, inlineImages],
  108. disabledTypes: ['svg', 'img']
  109. })).
  110. pipe(remover(modules)).
  111. pipe(htmlmin({
  112. collapseWhitespace: true,
  113. removeComments: true,
  114. minifyCSS: true,
  115. minifyJS: true
  116. })).
  117. pipe(replace('pure-', 'p-')).
  118. pipe(gzip()).
  119. pipe(rename('index.' + module + '.html.gz')).
  120. pipe(gulp.dest(dataFolder)).
  121. pipe(toHeader('webui_image', true)).
  122. pipe(gulp.dest(staticFolder));
  123. };
  124. // -----------------------------------------------------------------------------
  125. // Tasks
  126. // -----------------------------------------------------------------------------
  127. gulp.task('certs', function() {
  128. gulp.src(dataFolder + 'server.*').
  129. pipe(toHeader(debug=false)).
  130. pipe(gulp.dest(staticFolder));
  131. });
  132. gulp.task('csslint', function() {
  133. gulp.src(htmlFolder + '*.css').
  134. pipe(csslint({ids: false})).
  135. pipe(csslint.formatter());
  136. });
  137. gulp.task('webui_small', function() {
  138. return buildWebUI('small');
  139. });
  140. gulp.task('webui_sensor', function() {
  141. return buildWebUI('sensor');
  142. });
  143. gulp.task('webui_light', function() {
  144. return buildWebUI('light');
  145. });
  146. gulp.task('webui_rfbridge', function() {
  147. return buildWebUI('rfbridge');
  148. });
  149. gulp.task('webui_rfm69', function() {
  150. return buildWebUI('rfm69');
  151. });
  152. gulp.task('webui_lightfox', function() {
  153. return buildWebUI('lightfox');
  154. });
  155. gulp.task('webui_all', function() {
  156. return buildWebUI('all');
  157. });
  158. gulp.task('webui',
  159. gulp.parallel(
  160. 'webui_small',
  161. 'webui_sensor',
  162. 'webui_light',
  163. 'webui_rfbridge',
  164. 'webui_rfm69',
  165. 'webui_lightfox',
  166. 'webui_all'
  167. )
  168. );
  169. gulp.task('default', gulp.series('webui'));