|
| 1 | +/* eslint-disable import/no-extraneous-dependencies */ |
| 2 | +const fs = require('fs'); |
| 3 | +const path = require('path'); |
| 4 | +const liveServer = require('live-server'); |
| 5 | +const getNet = require('./getNet'); |
| 6 | + |
| 7 | +const serverCrt = path.resolve(__dirname, 'server.crt'); |
| 8 | +const serverKey = path.resolve(__dirname, 'server.key'); |
| 9 | + |
| 10 | +main(); |
| 11 | + |
| 12 | +async function main() { |
| 13 | + const { ip: host, port } = await getNet('dev'); |
| 14 | + process.cwd = () => __dirname; |
| 15 | + liveServer.start({ |
| 16 | + open: false, |
| 17 | + port, |
| 18 | + host, |
| 19 | + cors: true, |
| 20 | + root: '../', |
| 21 | + ignore: 'node_modules,platforms,plugins', |
| 22 | + file: 'index.html', |
| 23 | + https: { |
| 24 | + cert: fs.readFileSync(serverCrt), |
| 25 | + key: fs.readFileSync(serverKey), |
| 26 | + passphrase: '1234', |
| 27 | + }, |
| 28 | + middleware: [(req, res, next) => { |
| 29 | + const url = req.originalUrl; |
| 30 | + const www = '../platforms/android/app/src/main/assets/www/'; |
| 31 | + |
| 32 | + if (url === '/cordova.js') { |
| 33 | + const file = path.resolve(__dirname, www, 'cordova.js'); |
| 34 | + sendFile(res, file); |
| 35 | + return; |
| 36 | + } |
| 37 | + |
| 38 | + if (url === '/cordova_plugins.js') { |
| 39 | + const file = path.resolve(__dirname, www, 'cordova_plugins.js'); |
| 40 | + sendFile(res, file); |
| 41 | + return; |
| 42 | + } |
| 43 | + |
| 44 | + next(); |
| 45 | + }], |
| 46 | + }); |
| 47 | + |
| 48 | + process.send('OK'); |
| 49 | +} |
| 50 | + |
| 51 | +function sendFile(res, filePath) { |
| 52 | + if (fs.existsSync(filePath)) { |
| 53 | + const stat = fs.statSync(filePath); |
| 54 | + |
| 55 | + res.writeHead(200, { |
| 56 | + 'Content-Type': 'application/javascript', |
| 57 | + 'Content-Length': stat.size, |
| 58 | + }); |
| 59 | + |
| 60 | + const readStream = fs.createReadStream(filePath); |
| 61 | + readStream.pipe(res); |
| 62 | + return; |
| 63 | + } |
| 64 | + |
| 65 | + res.writeHead(404, { 'Content-Type': 'text/plain' }); |
| 66 | + res.end(`ERROR cannot get ${filePath}`); |
| 67 | +} |
0 commit comments