blob: ede7ccde6e27bcf5374d8fb622c0f6a632ddde5d [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 Scandolo68c2e722015-12-04 10:14:40 -080019'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');
Matteo Scandolo54bc5f72016-05-18 14:06:45 -070030var sass = require('gulp-sass');
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070031var fs = require('fs');
32var path = require('path');
Matteo Scandolo68c2e722015-12-04 10:14:40 -080033
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 Scandolo68c2e722015-12-04 10:14:40 -080043}
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070044
45var conf = require(path.join(__dirname, `../../../env/${environment || 'default'}.js`));
Matteo Scandolo68c2e722015-12-04 10:14:40 -080046
Matteo Scandolo68c2e722015-12-04 10:14:40 -080047var proxy = httpProxy.createProxyServer({
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070048 target: conf.host
Matteo Scandolo68c2e722015-12-04 10:14:40 -080049});
50
Matteo Scandolo195dde92016-07-25 16:43:16 -070051
Matteo Scandolo68c2e722015-12-04 10:14:40 -080052proxy.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
Matteo Scandolo68c2e722015-12-04 10:14:40 -080062 gulp.task('browser', function() {
63 browserSync.init({
Matteo Scandolo68c2e722015-12-04 10:14:40 -080064 startPath: '#/',
65 snippetOptions: {
66 rule: {
67 match: /<!-- browserSync -->/i
68 }
69 },
70 server: {
71 baseDir: options.src,
72 routes: {
Matteo Scandolo54bc5f72016-05-18 14:06:45 -070073 '/xos/core/static': options.static + '../../static/'
Matteo Scandolo68c2e722015-12-04 10:14:40 -080074 },
75 middleware: function(req, res, next){
76 if(
Matteo Scandolo4ac9a0b2016-05-23 15:31:25 -070077 req.url.indexOf('?no_hyperlinks=1') !== -1 ||
Matteo Scandolo54bc5f72016-05-18 14:06:45 -070078 req.url.indexOf('/api/') !== -1
Matteo Scandolo68c2e722015-12-04 10:14:40 -080079 ){
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']);
Matteo Scandolo68c2e722015-12-04 10:14:40 -080094 gulp.watch(options.src + 'vendor/**/*.js', ['bower'], function(){
Matteo Scandolo68c2e722015-12-04 10:14:40 -080095 browserSync.reload();
96 });
97 gulp.watch(options.src + '**/*.html', function(){
98 browserSync.reload();
99 });
Matteo Scandolo54bc5f72016-05-18 14:06:45 -0700100 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));
Matteo Scandolo68c2e722015-12-04 10:14:40 -0800120 });
121
122 // transpile js with sourceMaps
123 gulp.task('babel', function(){
Matteo Scandolo54bc5f72016-05-18 14:06:45 -0700124 return gulp.src(options.scripts + '**/*.js')
Matteo Scandolo68c2e722015-12-04 10:14:40 -0800125 .pipe(babel({sourceMaps: true}))
126 .pipe(gulp.dest(options.tmp));
127 });
128
129 // inject scripts
Matteo Scandolo54bc5f72016-05-18 14:06:45 -0700130 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'
Matteo Scandolo54bc5f72016-05-18 14:06:45 -0700137 ])
138 .pipe(angularFilesort()),
139 {
140 ignorePath: [options.src, '/../../ngXosLib']
141 }
142 )
143 )
144 .pipe(gulp.dest(options.src));
Matteo Scandolo68c2e722015-12-04 10:14:40 -0800145 });
146
147 // inject CSS
148 gulp.task('injectCss', function(){
149 return gulp.src(options.src + 'index.html')
150 .pipe(
151 inject(
Matteo Scandolo54bc5f72016-05-18 14:06:45 -0700152 gulp.src([
153 options.src + 'css/*.css',
154 options.static + '../../static/xosNgLib.css'
155 ]),
Matteo Scandolo68c2e722015-12-04 10:14:40 -0800156 {
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(
Matteo Scandolo54bc5f72016-05-18 14:06:45 -0700181 'sass',
Matteo Scandolo68c2e722015-12-04 10:14:40 -0800182 'bower',
183 'injectScript',
184 'injectCss',
185 ['browser']
186 );
187 });
188};