Matteo Scandolo | fb46ae6 | 2017-08-08 09:10:50 -0700 | [diff] [blame] | 1 | |
| 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 Scandolo | c80ccbd | 2017-02-27 16:24:33 -0800 | [diff] [blame] | 19 | const httpProxy = require('http-proxy'); |
| 20 | |
Matteo Scandolo | 47c53fc | 2017-03-23 14:11:32 -0700 | [diff] [blame] | 21 | const target = process.env.PROXY || '192.168.46.100'; |
| 22 | |
Matteo Scandolo | 6349847 | 2017-09-26 17:21:41 -0700 | [diff] [blame] | 23 | console.info(`Proxying request to: ${target}`); |
| 24 | |
Matteo Scandolo | c80ccbd | 2017-02-27 16:24:33 -0800 | [diff] [blame] | 25 | const proxy = httpProxy.createProxyServer({ |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 26 | target: `http://${target}` |
Matteo Scandolo | c80ccbd | 2017-02-27 16:24:33 -0800 | [diff] [blame] | 27 | }); |
| 28 | |
Matteo Scandolo | 98b5f5d | 2017-03-17 17:09:05 -0700 | [diff] [blame] | 29 | const extensionsProxy = httpProxy.createProxyServer({ |
Matteo Scandolo | 37d5606 | 2017-04-24 15:03:00 -0700 | [diff] [blame] | 30 | target: `http://${target}/xos/` |
Matteo Scandolo | 98b5f5d | 2017-03-17 17:09:05 -0700 | [diff] [blame] | 31 | }); |
| 32 | |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 33 | const socketProxy = httpProxy.createProxyServer({ |
| 34 | target: `http://${target}/` |
| 35 | }); |
| 36 | |
Matteo Scandolo | c80ccbd | 2017-02-27 16:24:33 -0800 | [diff] [blame] | 37 | proxy.on('error', function(error, req, res) { |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 38 | res.writeHead(500, {'Content-Type': 'text/plain'}); |
Matteo Scandolo | c80ccbd | 2017-02-27 16:24:33 -0800 | [diff] [blame] | 39 | console.error('[Proxy]', error); |
| 40 | }); |
| 41 | |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 42 | extensionsProxy.on('error', function(error, req, res) { |
| 43 | res.writeHead(500, {'Content-Type': 'text/plain'}); |
| 44 | console.error('[extensionsProxy]', error); |
| 45 | }); |
| 46 | |
| 47 | socketProxy.on('error', function(error, req, res) { |
| 48 | res.writeHead(500, {'Content-Type': 'text/plain'}); |
| 49 | console.error('[socketProxy]', error); |
| 50 | }); |
| 51 | |
Matteo Scandolo | 98b5f5d | 2017-03-17 17:09:05 -0700 | [diff] [blame] | 52 | module.exports = { |
| 53 | proxy, |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 54 | extensionsProxy, |
| 55 | socketProxy |
Matteo Scandolo | 98b5f5d | 2017-03-17 17:09:05 -0700 | [diff] [blame] | 56 | }; |