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.

123 lines
3.6 KiB

8 years ago
8 years ago
6 years ago
8 years ago
8 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 years ago
8 years ago
8 years ago
6 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 (var 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) {
  52. wstream.write(',');
  53. }
  54. }
  55. wstream.write('\n};');
  56. wstream.end();
  57. };
  58. function htmllintReporter(filepath, issues) {
  59. if (issues.length > 0) {
  60. issues.forEach(function (issue) {
  61. gutil.log(gutil.colors.cyan('[gulp-htmllint] ') + gutil.colors.white(filepath + ' [' + issue.line + ',' + issue.column + ']: ') + gutil.colors.red('(' + issue.code + ') ' + issue.msg));
  62. });
  63. process.exitCode = 1;
  64. }
  65. };
  66. gulp.task('build_certs', function() {
  67. toHeader('server.cer');
  68. toHeader('server.key');
  69. });
  70. gulp.task('buildfs_embeded', ['buildfs_inline'], function() {
  71. toHeader('index.html.gz');
  72. });
  73. gulp.task('buildfs_inline', function() {
  74. return gulp.src('html/*.html')
  75. .pipe(htmllint({
  76. 'failOnError': true,
  77. 'rules': {
  78. 'id-class-style': false,
  79. 'label-req-for': false,
  80. }
  81. }, htmllintReporter))
  82. .pipe(favicon())
  83. .pipe(inline({
  84. base: 'html/',
  85. js: [uglify],
  86. css: [cleancss, inlineImages],
  87. disabledTypes: ['svg', 'img']
  88. }))
  89. .pipe(htmlmin({
  90. collapseWhitespace: true,
  91. removeComments: true,
  92. minifyCSS: true,
  93. minifyJS: true
  94. }))
  95. .pipe(gzip())
  96. .pipe(gulp.dest(dataFolder));
  97. });
  98. gulp.task('default', ['buildfs_embeded']);