Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 1 | 'use strict'; |
| 2 | |
| 3 | var gulp = require('gulp'); |
| 4 | var browserSync = require('browser-sync').create(); |
| 5 | var inject = require('gulp-inject'); |
| 6 | var runSequence = require('run-sequence'); |
| 7 | var angularFilesort = require('gulp-angular-filesort'); |
| 8 | var babel = require('gulp-babel'); |
| 9 | var wiredep = require('wiredep').stream; |
| 10 | var httpProxy = require('http-proxy'); |
| 11 | var del = require('del'); |
Matteo Scandolo | e993b88 | 2016-05-17 17:30:14 -0700 | [diff] [blame] | 12 | var sass = require('gulp-sass'); |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 13 | |
| 14 | const environment = process.env.NODE_ENV; |
| 15 | |
| 16 | if (environment){ |
| 17 | var conf = require(`../env/${environment}.js`); |
| 18 | } |
| 19 | else{ |
| 20 | var conf = require('../env/default.js') |
| 21 | } |
| 22 | |
| 23 | var proxy = httpProxy.createProxyServer({ |
| 24 | target: conf.host || 'http://0.0.0.0:9999' |
| 25 | }); |
| 26 | |
| 27 | |
| 28 | proxy.on('error', function(error, req, res) { |
| 29 | res.writeHead(500, { |
| 30 | 'Content-Type': 'text/plain' |
| 31 | }); |
| 32 | |
| 33 | console.error('[Proxy]', error); |
| 34 | }); |
| 35 | |
| 36 | module.exports = function(options){ |
| 37 | |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 38 | gulp.task('browser', function() { |
| 39 | browserSync.init({ |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 40 | startPath: '#/', |
| 41 | snippetOptions: { |
| 42 | rule: { |
| 43 | match: /<!-- browserSync -->/i |
| 44 | } |
| 45 | }, |
| 46 | server: { |
| 47 | baseDir: options.src, |
| 48 | routes: { |
Matteo Scandolo | e993b88 | 2016-05-17 17:30:14 -0700 | [diff] [blame] | 49 | '/xos/core/xoslib/static/js/vendor': options.helpers, |
| 50 | '/xos/core/static': options.static + '../../static/' |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 51 | }, |
| 52 | middleware: function(req, res, next){ |
| 53 | if( |
Matteo Scandolo | e993b88 | 2016-05-17 17:30:14 -0700 | [diff] [blame] | 54 | // to be removed, deprecated API |
| 55 | // req.url.indexOf('/xos/') !== -1 || |
| 56 | // req.url.indexOf('/xoslib/') !== -1 || |
| 57 | // req.url.indexOf('/hpcapi/') !== -1 || |
| 58 | req.url.indexOf('/api/') !== -1 |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 59 | ){ |
| 60 | if(conf.xoscsrftoken && conf.xossessionid){ |
| 61 | req.headers.cookie = `xoscsrftoken=${conf.xoscsrftoken}; xossessionid=${conf.xossessionid}`; |
| 62 | req.headers['x-csrftoken'] = conf.xoscsrftoken; |
| 63 | } |
| 64 | proxy.web(req, res); |
| 65 | } |
| 66 | else{ |
| 67 | next(); |
| 68 | } |
| 69 | } |
| 70 | } |
| 71 | }); |
| 72 | |
| 73 | gulp.watch(options.src + 'js/**/*.js', ['js-watch']); |
| 74 | gulp.watch(options.src + 'vendor/**/*.js', ['bower'], function(){ |
| 75 | browserSync.reload(); |
| 76 | }); |
| 77 | gulp.watch(options.src + '**/*.html', function(){ |
| 78 | browserSync.reload(); |
| 79 | }); |
Matteo Scandolo | e993b88 | 2016-05-17 17:30:14 -0700 | [diff] [blame] | 80 | gulp.watch(options.css + '**/*.css', function(){ |
| 81 | browserSync.reload(); |
| 82 | }); |
| 83 | gulp.watch(`${options.sass}/**/*.scss`, ['sass'], function(){ |
| 84 | browserSync.reload(); |
| 85 | }); |
| 86 | |
| 87 | gulp.watch([ |
| 88 | options.helpers + 'ngXosHelpers.js', |
| 89 | options.static + '../../static/xosNgLib.css' |
| 90 | ], function(){ |
| 91 | browserSync.reload(); |
| 92 | }); |
| 93 | }); |
| 94 | |
| 95 | // compile sass |
| 96 | gulp.task('sass', function () { |
| 97 | return gulp.src(`${options.sass}/**/*.scss`) |
| 98 | .pipe(sass().on('error', sass.logError)) |
| 99 | .pipe(gulp.dest(options.css)); |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 100 | }); |
| 101 | |
| 102 | // transpile js with sourceMaps |
| 103 | gulp.task('babel', function(){ |
| 104 | return gulp.src(options.scripts + '**/*.js') |
| 105 | .pipe(babel({sourceMaps: true})) |
| 106 | .pipe(gulp.dest(options.tmp)); |
| 107 | }); |
| 108 | |
| 109 | // inject scripts |
| 110 | gulp.task('injectScript', ['cleanTmp', 'babel'], function(){ |
| 111 | return gulp.src(options.src + 'index.html') |
| 112 | .pipe( |
| 113 | inject( |
| 114 | gulp.src([ |
| 115 | options.tmp + '**/*.js', |
Matteo Scandolo | e993b88 | 2016-05-17 17:30:14 -0700 | [diff] [blame] | 116 | options.helpers + 'ngXosHelpers.js' |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 117 | ]) |
| 118 | .pipe(angularFilesort()), |
| 119 | { |
| 120 | ignorePath: [options.src, '/../../ngXosLib'] |
| 121 | } |
| 122 | ) |
| 123 | ) |
| 124 | .pipe(gulp.dest(options.src)); |
| 125 | }); |
| 126 | |
| 127 | // inject CSS |
| 128 | gulp.task('injectCss', function(){ |
| 129 | return gulp.src(options.src + 'index.html') |
| 130 | .pipe( |
| 131 | inject( |
Matteo Scandolo | e993b88 | 2016-05-17 17:30:14 -0700 | [diff] [blame] | 132 | gulp.src([ |
| 133 | options.src + 'css/*.css', |
| 134 | options.static + '../../static/xosNgLib.css' |
| 135 | ]), |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 136 | { |
| 137 | ignorePath: [options.src] |
| 138 | } |
| 139 | ) |
| 140 | ) |
| 141 | .pipe(gulp.dest(options.src)); |
| 142 | }); |
| 143 | |
| 144 | // inject bower dependencies with wiredep |
| 145 | gulp.task('bower', function () { |
| 146 | return gulp.src(options.src + 'index.html') |
| 147 | .pipe(wiredep({devDependencies: true})) |
| 148 | .pipe(gulp.dest(options.src)); |
| 149 | }); |
| 150 | |
| 151 | gulp.task('js-watch', ['injectScript'], function(){ |
| 152 | browserSync.reload(); |
| 153 | }); |
| 154 | |
| 155 | gulp.task('cleanTmp', function(){ |
| 156 | return del([options.tmp + '**/*']); |
| 157 | }); |
| 158 | |
| 159 | gulp.task('serve', function() { |
| 160 | runSequence( |
Matteo Scandolo | e993b88 | 2016-05-17 17:30:14 -0700 | [diff] [blame] | 161 | 'sass', |
Jeremy Mowery | 6efeb7a | 2016-02-25 09:32:00 -0700 | [diff] [blame] | 162 | 'bower', |
| 163 | 'injectScript', |
| 164 | 'injectCss', |
| 165 | ['browser'] |
| 166 | ); |
| 167 | }); |
| 168 | }; |