blob: 49371862a456d8be2e46dbb8d842265373120c19 [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
arpiagariud4f6db12016-06-06 15:25:28 -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 Scandolo29194952016-06-17 11:57:05 -070031var fs = require('fs');
32var path = require('path');
arpiagariud4f6db12016-06-06 15:25:28 -070033
34const environment = process.env.NODE_ENV;
35
Matteo Scandolo29194952016-06-17 11:57:05 -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 }
arpiagariud4f6db12016-06-06 15:25:28 -070043}
44
Matteo Scandolo29194952016-06-17 11:57:05 -070045var conf = require(path.join(__dirname, `../../../env/${environment || 'default'}.js`));
46
arpiagariud4f6db12016-06-06 15:25:28 -070047var proxy = httpProxy.createProxyServer({
Matteo Scandolo29194952016-06-17 11:57:05 -070048 target: conf.host
arpiagariud4f6db12016-06-06 15:25:28 -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: {
arpiagariud4f6db12016-06-06 15:25:28 -070073 '/xos/core/static': options.static + '../../static/'
74 },
75 middleware: function(req, res, next){
76 if(
Matteo Scandolo195dde92016-07-25 16:43:16 -070077 req.url.indexOf('/xoslib/tenant') !== -1 ||
arpiagariud4f6db12016-06-06 15:25:28 -070078 req.url.indexOf('/api/') !== -1
79 ){
80 if(conf.xoscsrftoken && conf.xossessionid){
81 req.headers.cookie = `xoscsrftoken=${conf.xoscsrftoken}; xossessionid=${conf.xossessionid}`;
82 req.headers['x-csrftoken'] = conf.xoscsrftoken;
83 }
84 proxy.web(req, res);
85 }
86 else{
87 next();
88 }
89 }
90 }
91 });
92
93 gulp.watch(options.src + 'js/**/*.js', ['js-watch']);
94 gulp.watch(options.src + 'vendor/**/*.js', ['bower'], function(){
95 browserSync.reload();
96 });
97 gulp.watch(options.src + '**/*.html', function(){
98 browserSync.reload();
99 });
100 gulp.watch(options.css + '**/*.css', function(){
101 browserSync.reload();
102 });
103 gulp.watch(`${options.sass}/**/*.scss`, ['sass'], function(){
104 browserSync.reload();
105 });
106
107 gulp.watch([
108 options.helpers + 'ngXosHelpers.js',
109 options.static + '../../static/xosNgLib.css'
110 ], function(){
111 browserSync.reload();
112 });
113 });
114
115 // compile sass
116 gulp.task('sass', function () {
117 return gulp.src(`${options.sass}/**/*.scss`)
118 .pipe(sass().on('error', sass.logError))
119 .pipe(gulp.dest(options.css));
120 });
121
122 // transpile js with sourceMaps
123 gulp.task('babel', function(){
124 return gulp.src(options.scripts + '**/*.js')
125 .pipe(babel({sourceMaps: true}))
126 .pipe(gulp.dest(options.tmp));
127 });
128
129 // inject scripts
130 gulp.task('injectScript', ['cleanTmp', 'babel'], function(){
131 return gulp.src(options.src + 'index.html')
132 .pipe(
133 inject(
134 gulp.src([
135 options.tmp + '**/*.js',
Matteo Scandolo195dde92016-07-25 16:43:16 -0700136 options.helpers + 'ngXosHelpers.min.js'
arpiagariud4f6db12016-06-06 15:25:28 -0700137 ])
138 .pipe(angularFilesort()),
139 {
140 ignorePath: [options.src, '/../../ngXosLib']
141 }
142 )
143 )
144 .pipe(gulp.dest(options.src));
145 });
146
147 // inject CSS
148 gulp.task('injectCss', function(){
149 return gulp.src(options.src + 'index.html')
150 .pipe(
151 inject(
152 gulp.src([
153 options.src + 'css/*.css',
154 options.static + '../../static/xosNgLib.css'
155 ]),
156 {
157 ignorePath: [options.src]
158 }
159 )
160 )
161 .pipe(gulp.dest(options.src));
162 });
163
164 // inject bower dependencies with wiredep
165 gulp.task('bower', function () {
166 return gulp.src(options.src + 'index.html')
167 .pipe(wiredep({devDependencies: true}))
168 .pipe(gulp.dest(options.src));
169 });
170
171 gulp.task('js-watch', ['injectScript'], function(){
172 browserSync.reload();
173 });
174
175 gulp.task('cleanTmp', function(){
176 return del([options.tmp + '**/*']);
177 });
178
179 gulp.task('serve', function() {
180 runSequence(
181 'sass',
182 'bower',
183 'injectScript',
184 'injectCss',
185 ['browser']
186 );
187 });
188};