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.

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