blob: a1e725b45b7047f9116a31ae3473c2327999d3ff [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001
2/*
3 * Copyright 2017-present Open Networking Foundation
4
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070019'use strict';
20
21var gulp = require('gulp');
22var browserSync = require('browser-sync').create();
23var inject = require('gulp-inject');
24var runSequence = require('run-sequence');
25var angularFilesort = require('gulp-angular-filesort');
26var babel = require('gulp-babel');
27var wiredep = require('wiredep').stream;
28var httpProxy = require('http-proxy');
29var del = require('del');
30var sass = require('gulp-sass');
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070031var fs = require('fs');
32var path = require('path');
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070033
34const environment = process.env.NODE_ENV;
35
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070036if(!fs.existsSync(path.join(__dirname, `../../../env/${environment || 'default'}.js`))){
37 if(!environment){
38 throw new Error('You should define a default.js config in /views/env folder.');
39 }
40 else{
41 throw new Error(`Since you are loading a custom environment, you should define a ${environment}.js config in /views/env folder.`);
42 }
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070043}
44
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070045var conf = require(path.join(__dirname, `../../../env/${environment || 'default'}.js`));
46
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070047var proxy = httpProxy.createProxyServer({
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070048 target: conf.host
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070049});
50
51
52proxy.on('error', function(error, req, res) {
53 res.writeHead(500, {
54 'Content-Type': 'text/plain'
55 });
56
57 console.error('[Proxy]', error);
58});
59
60module.exports = function(options){
61
62 gulp.task('browser', function() {
63 browserSync.init({
64 startPath: '#/',
65 snippetOptions: {
66 rule: {
67 match: /<!-- browserSync -->/i
68 }
69 },
70 server: {
71 baseDir: options.src,
72 routes: {
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070073 '/xos/core/static': options.static + '../../static/'
74 },
75 middleware: function(req, res, next){
76 if(
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070077 req.url.indexOf('/api/') !== -1
78 ){
79 if(conf.xoscsrftoken && conf.xossessionid){
80 req.headers.cookie = `xoscsrftoken=${conf.xoscsrftoken}; xossessionid=${conf.xossessionid}`;
81 req.headers['x-csrftoken'] = conf.xoscsrftoken;
82 }
83 proxy.web(req, res);
84 }
85 else{
86 next();
87 }
88 }
89 }
90 });
91
92 gulp.watch(options.src + 'js/**/*.js', ['js-watch']);
93 gulp.watch(options.src + 'vendor/**/*.js', ['bower'], function(){
94 browserSync.reload();
95 });
96 gulp.watch(options.src + '**/*.html', function(){
97 browserSync.reload();
98 });
99 gulp.watch(options.css + '**/*.css', function(){
100 browserSync.reload();
101 });
102 gulp.watch(`${options.sass}/**/*.scss`, ['sass'], function(){
103 browserSync.reload();
104 });
105
106 gulp.watch([
107 options.helpers + 'ngXosHelpers.js',
108 options.static + '../../static/xosNgLib.css'
109 ], function(){
110 browserSync.reload();
111 });
112 });
113
114 // compile sass
115 gulp.task('sass', function () {
116 return gulp.src(`${options.sass}/**/*.scss`)
117 .pipe(sass().on('error', sass.logError))
118 .pipe(gulp.dest(options.css));
119 });
120
121 // transpile js with sourceMaps
122 gulp.task('babel', function(){
123 return gulp.src(options.scripts + '**/*.js')
124 .pipe(babel({sourceMaps: true}))
125 .pipe(gulp.dest(options.tmp));
126 });
127
128 // inject scripts
129 gulp.task('injectScript', ['cleanTmp', 'babel'], function(){
130 return gulp.src(options.src + 'index.html')
131 .pipe(
132 inject(
133 gulp.src([
134 options.tmp + '**/*.js',
Matteo Scandolo195dde92016-07-25 16:43:16 -0700135 options.helpers + 'ngXosHelpers.min.js'
Matteo Scandoloa7ad4992016-05-09 15:27:47 -0700136 ])
137 .pipe(angularFilesort()),
138 {
139 ignorePath: [options.src, '/../../ngXosLib']
140 }
141 )
142 )
143 .pipe(gulp.dest(options.src));
144 });
145
146 // inject CSS
147 gulp.task('injectCss', function(){
148 return gulp.src(options.src + 'index.html')
149 .pipe(
150 inject(
151 gulp.src([
152 options.src + 'css/*.css',
153 options.static + '../../static/xosNgLib.css'
154 ]),
155 {
156 ignorePath: [options.src]
157 }
158 )
159 )
160 .pipe(gulp.dest(options.src));
161 });
162
163 // inject bower dependencies with wiredep
164 gulp.task('bower', function () {
165 return gulp.src(options.src + 'index.html')
166 .pipe(wiredep({devDependencies: true}))
167 .pipe(gulp.dest(options.src));
168 });
169
170 gulp.task('js-watch', ['injectScript'], function(){
171 browserSync.reload();
172 });
173
174 gulp.task('cleanTmp', function(){
175 return del([options.tmp + '**/*']);
176 });
177
178 gulp.task('serve', function() {
179 runSequence(
180 'sass',
181 'bower',
182 'injectScript',
183 'injectCss',
184 ['browser']
185 );
186 });
187};