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.

120 lines
3.6 KiB

8 years ago
8 years ago
6 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. /*
  2. ESP8266 file system builder
  3. Copyright (C) 2016-2018 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. // File system builder
  19. // -----------------------------------------------------------------------------
  20. const fs = require('fs');
  21. const gulp = require('gulp');
  22. const htmlmin = require('gulp-htmlmin');
  23. const cleancss = require('gulp-clean-css');
  24. const uglify = require('gulp-uglify');
  25. const gzip = require('gulp-gzip');
  26. const inline = require('gulp-inline');
  27. const inlineImages = require('gulp-css-base64');
  28. const favicon = require('gulp-base64-favicon');
  29. const htmllint = require('gulp-htmllint');
  30. const gutil = require('gulp-util');
  31. const dataFolder = 'espurna/data/';
  32. const staticFolder = 'espurna/static/';
  33. String.prototype.replaceAll = function(search, replacement) {
  34. var target = this;
  35. return target.split(search).join(replacement);
  36. };
  37. var toHeader = function(filename) {
  38. var source = dataFolder + filename;
  39. var destination = staticFolder + filename + '.h';
  40. var safename = filename.replaceAll('.', '_');
  41. var wstream = fs.createWriteStream(destination);
  42. wstream.on('error', function (err) {
  43. console.log(err);
  44. });
  45. var data = fs.readFileSync(source);
  46. wstream.write('#define ' + safename + '_len ' + data.length + '\n');
  47. wstream.write('const uint8_t ' + safename + '[] PROGMEM = {')
  48. for (i=0; i<data.length; i++) {
  49. if (i % 20 == 0) wstream.write("\n");
  50. wstream.write('0x' + ('00' + data[i].toString(16)).slice(-2));
  51. if (i<data.length-1) wstream.write(',');
  52. }
  53. wstream.write('\n};')
  54. wstream.end();
  55. }
  56. function htmllintReporter(filepath, issues) {
  57. if (issues.length > 0) {
  58. issues.forEach(function (issue) {
  59. gutil.log(gutil.colors.cyan('[gulp-htmllint] ') + gutil.colors.white(filepath + ' [' + issue.line + ',' + issue.column + ']: ') + gutil.colors.red('(' + issue.code + ') ' + issue.msg));
  60. });
  61. process.exitCode = 1;
  62. }
  63. }
  64. gulp.task('build_certs', function() {
  65. toHeader('server.cer');
  66. toHeader('server.key');
  67. });
  68. gulp.task('buildfs_embeded', ['buildfs_inline'], function() {
  69. toHeader('index.html.gz');
  70. });
  71. gulp.task('buildfs_inline', function() {
  72. return gulp.src('html/*.html')
  73. .pipe(htmllint({
  74. 'failOnError': true,
  75. 'rules': {
  76. 'id-class-style': false,
  77. 'label-req-for': false,
  78. }
  79. }, htmllintReporter))
  80. .pipe(favicon())
  81. .pipe(inline({
  82. base: 'html/',
  83. js: [uglify],
  84. css: [cleancss, inlineImages],
  85. disabledTypes: ['svg', 'img']
  86. }))
  87. .pipe(htmlmin({
  88. collapseWhitespace: true,
  89. removeComments: true,
  90. minifyCSS: true,
  91. minifyJS: true
  92. }))
  93. .pipe(gzip())
  94. .pipe(gulp.dest(dataFolder));
  95. })
  96. gulp.task('default', ['buildfs_embeded']);