No Description

server.js 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /**
  2. * @author wkh237
  3. * @description react-native-fetch-blob test & dev server
  4. */
  5. var express = require('express')
  6. var bodyParser = require('body-parser')
  7. var chokidar = require('chokidar')
  8. var multer = require('multer')
  9. var upload = multer({dest : 'uploads/'})
  10. var chalk = require('chalk')
  11. var mkdirp = require('mkdirp')
  12. var dirname = require('path').dirname
  13. var app = express()
  14. var fs = require('fs')
  15. var https = require('https')
  16. var JS_SOURCE_PATH = '../test/',
  17. LIB_SOURCE_PATH = '../src/',
  18. NODE_MODULE_MODULE_PATH = '../RNFetchBlobTest/node_modules/react-native-fetch-blob/',
  19. APP_SOURCE_PATH = '../RNFetchBlobTest/'
  20. // watch test app source
  21. watch(JS_SOURCE_PATH, APP_SOURCE_PATH)
  22. // watch lib js source
  23. watch(LIB_SOURCE_PATH, NODE_MODULE_MODULE_PATH, {ignored: /\.\.\/src\/(android|ios)\//})
  24. // https
  25. var server = https.createServer({
  26. key : fs.readFileSync('./key.pem'),
  27. cert : fs.readFileSync('./cert.pem')
  28. }, app).listen(8124, function(err){
  29. if(!err)
  30. console.log('SSL test server running at port ',8124)
  31. })
  32. // http
  33. app.listen(8123, function(err){
  34. if(!err)
  35. console.log('test server running at port ',8123)
  36. })
  37. app.use(function(req,res,next){
  38. console.log(chalk.green('request url=') + chalk.magenta(req.url))
  39. next()
  40. })
  41. app.use('/upload-form', function(req, res, next) {
  42. console.log(req.headers)
  43. // req.on('data', (chunk) => {
  44. // console.log(String(chunk,'utf8'))
  45. // })
  46. // req.on('end', () => {
  47. next()
  48. // })
  49. })
  50. app.use(upload.any())
  51. app.use('/public', express.static('./public'))
  52. // for redirect test
  53. app.get('/redirect', function(req, res) {
  54. res.redirect('/public/github.png')
  55. })
  56. app.all('/params', function(req, res) {
  57. console.log(req.url)
  58. var resp =
  59. {
  60. time : req.query.time,
  61. name : req.query.name,
  62. lang : req.query.lang
  63. }
  64. console.log(resp)
  65. res.send(resp)
  66. })
  67. // return an empty response
  68. app.all('/empty', function(req, res) {
  69. res.send('')
  70. })
  71. app.delete('/hey', function(req, res) {
  72. res.send('man')
  73. })
  74. // handle multipart/form-data request
  75. app.post('/upload-form', formUpload)
  76. app.put('/upload-form', formUpload)
  77. function formUpload(req, res) {
  78. console.log(req.headers)
  79. console.log(req.body)
  80. console.log(req.files)
  81. if(Array.isArray(req.files)) {
  82. req.files.forEach((f) => {
  83. console.log(process.cwd() + f.path, '=>', process.cwd() + '/public/' + f.originalname)
  84. fs.renameSync('./' + f.path, './public/'+ f.originalname)
  85. })
  86. }
  87. res.status(200).send({
  88. fields : req.body,
  89. files : req.files
  90. })
  91. }
  92. function watch(source, dest, ignore) {
  93. // watch files in test folder
  94. chokidar
  95. .watch(source, ignore)
  96. .on('add', function(path) {
  97. console.log(chalk.magenta('file created'), path)
  98. var targetPath = String(path).replace(source, dest)
  99. mkdirp(dirname(targetPath), function (err) {
  100. if (err) return cb(err)
  101. fs.writeFileSync(targetPath, fs.readFileSync(path))
  102. })
  103. })
  104. .on('change', function(path) {
  105. console.log(chalk.green('file changed'), path)
  106. var targetPath = String(path).replace(source, dest)
  107. mkdirp(dirname(targetPath), function (err) {
  108. if (err) return cb(err)
  109. fs.writeFileSync(targetPath, fs.readFileSync(path))
  110. })
  111. })
  112. .on('unlink', function(path) {
  113. console.log(chalk.red('file removed'), path)
  114. var targetPath = String(path).replace(source, dest)
  115. mkdirp(dirname(targetPath), function (err) {
  116. if (err) return cb(err)
  117. fs.unlinkSync(targetPath)
  118. })
  119. })
  120. .on('error', function(err){
  121. console.log(err)
  122. })
  123. }