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.

131 lines
3.7 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 csslint = require('gulp-csslint');
  32. const dataFolder = 'espurna/data/';
  33. const staticFolder = 'espurna/static/';
  34. var toHeader = function(filename) {
  35. var source = dataFolder + filename;
  36. var destination = staticFolder + filename + '.h';
  37. var safename = filename.split('.').join('_');
  38. var wstream = fs.createWriteStream(destination);
  39. wstream.on('error', function (err) {
  40. console.log(err);
  41. });
  42. var data = fs.readFileSync(source);
  43. wstream.write('#define ' + safename + '_len ' + data.length + '\n');
  44. wstream.write('const uint8_t ' + safename + '[] PROGMEM = {');
  45. for (var i=0; i<data.length; i++) {
  46. if (0 === (i % 20)) {
  47. wstream.write('\n');
  48. }
  49. wstream.write('0x' + ('00' + data[i].toString(16)).slice(-2));
  50. if (i < (data.length - 1)) {
  51. wstream.write(',');
  52. }
  53. }
  54. wstream.write('\n};');
  55. wstream.end();
  56. };
  57. var htmllintReporter = function(filepath, issues) {
  58. if (issues.length > 0) {
  59. issues.forEach(function (issue) {
  60. gutil.log(
  61. gutil.colors.cyan('[gulp-htmllint] ') +
  62. gutil.colors.white(filepath + ' [' + issue.line + ',' + issue.column + ']: ') +
  63. gutil.colors.red('(' + issue.code + ') ' + issue.msg)
  64. );
  65. });
  66. process.exitCode = 1;
  67. }
  68. };
  69. gulp.task('build_certs', function() {
  70. toHeader('server.cer');
  71. toHeader('server.key');
  72. });
  73. gulp.task('csslint', function() {
  74. gulp.src('html/*.css').
  75. pipe(csslint({ids: false})).
  76. pipe(csslint.formatter());
  77. });
  78. gulp.task('buildfs_embeded', ['buildfs_inline'], function() {
  79. toHeader('index.html.gz');
  80. });
  81. gulp.task('buildfs_inline', function() {
  82. return gulp.src('html/*.html').
  83. pipe(htmllint({
  84. 'failOnError': true,
  85. 'rules': {
  86. 'id-class-style': false,
  87. 'label-req-for': false,
  88. }
  89. }, htmllintReporter)).
  90. pipe(favicon()).
  91. pipe(inline({
  92. base: 'html/',
  93. js: [uglify],
  94. css: [cleancss, inlineImages],
  95. disabledTypes: ['svg', 'img']
  96. })).
  97. pipe(htmlmin({
  98. collapseWhitespace: true,
  99. removeComments: true,
  100. minifyCSS: true,
  101. minifyJS: true
  102. })).
  103. pipe(gzip()).
  104. pipe(gulp.dest(dataFolder));
  105. });
  106. gulp.task('default', ['buildfs_embeded']);