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.

238 lines
6.6 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
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. // Declare some modules as optional to remove with
  86. // removeIf(!name) ...code... endRemoveIf(!name) sections
  87. // (via gulp-remove-code)
  88. var modules = {
  89. 'light': false,
  90. 'sensor': false,
  91. 'rfbridge': false,
  92. 'rfm69': false,
  93. 'thermostat': false,
  94. 'lightfox': false
  95. };
  96. // Note: only build these when specified as module arg
  97. var excludeAll = [
  98. 'rfm69',
  99. 'lightfox'
  100. ];
  101. // 'all' to include all *but* excludeAll
  102. // '<module>' to include a single module
  103. // 'small' is the default state (all disabled)
  104. if ('all' === module) {
  105. Object.keys(modules).
  106. filter(function(key) {
  107. return excludeAll.indexOf(key) < 0;
  108. }).
  109. forEach(function(key) {
  110. modules[key] = true;
  111. });
  112. } else if ('small' !== module) {
  113. modules[module] = true;
  114. }
  115. return gulp.src(htmlFolder + '*.html').
  116. pipe(htmllint({
  117. 'failOnError': true,
  118. 'rules': {
  119. 'id-class-style': false,
  120. 'label-req-for': false,
  121. 'line-end-style': false,
  122. }
  123. }, htmllintReporter)).
  124. pipe(favicon()).
  125. pipe(inline({
  126. base: htmlFolder,
  127. js: [],
  128. css: [crass, inlineImages],
  129. disabledTypes: ['svg', 'img']
  130. })).
  131. pipe(remover(modules)).
  132. pipe(htmlmin({
  133. collapseWhitespace: true,
  134. removeComments: true,
  135. minifyCSS: true,
  136. minifyJS: true
  137. })).
  138. pipe(replace('pure-', 'p-')).
  139. pipe(gzip()).
  140. pipe(rename('index.' + module + '.html.gz')).
  141. pipe(gulp.dest(dataFolder)).
  142. pipe(toHeader('webui_image', true)).
  143. pipe(gulp.dest(staticFolder));
  144. };
  145. // -----------------------------------------------------------------------------
  146. // Tasks
  147. // -----------------------------------------------------------------------------
  148. gulp.task('certs', function() {
  149. gulp.src(dataFolder + 'server.*').
  150. pipe(toHeader(debug=false)).
  151. pipe(gulp.dest(staticFolder));
  152. });
  153. gulp.task('csslint', function() {
  154. gulp.src(htmlFolder + '*.css').
  155. pipe(csslint({ids: false})).
  156. pipe(csslint.formatter());
  157. });
  158. gulp.task('webui_small', function() {
  159. return buildWebUI('small');
  160. });
  161. gulp.task('webui_sensor', function() {
  162. return buildWebUI('sensor');
  163. });
  164. gulp.task('webui_light', function() {
  165. return buildWebUI('light');
  166. });
  167. gulp.task('webui_rfbridge', function() {
  168. return buildWebUI('rfbridge');
  169. });
  170. gulp.task('webui_rfm69', function() {
  171. return buildWebUI('rfm69');
  172. });
  173. gulp.task('webui_lightfox', function() {
  174. return buildWebUI('lightfox');
  175. });
  176. gulp.task('webui_thermostat', function() {
  177. return buildWebUI('thermostat');
  178. });
  179. gulp.task('webui_all', function() {
  180. return buildWebUI('all');
  181. });
  182. gulp.task('webui',
  183. gulp.parallel(
  184. 'webui_small',
  185. 'webui_sensor',
  186. 'webui_light',
  187. 'webui_rfbridge',
  188. 'webui_rfm69',
  189. 'webui_lightfox',
  190. 'webui_thermostat',
  191. 'webui_all'
  192. )
  193. );
  194. gulp.task('default', gulp.series('webui'));