Нема описа

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. var count = 0
  51. app.use(function(req, res, next) {
  52. console.log(req.url, ++count);
  53. next();
  54. })
  55. app.get('/unicode', (req, res) => {
  56. res.send({ data:'你好!'})
  57. })
  58. app.all('/echo', (req, res) => {
  59. var body = ''
  60. req.on('data', (chunk) => {
  61. body+=chunk
  62. })
  63. req.on('end', () => {
  64. res.send({
  65. headers : req.headers,
  66. body : body
  67. })
  68. })
  69. })
  70. app.use(upload.any())
  71. app.use('/public', express.static('./public'))
  72. // for redirect test
  73. app.get('/redirect', function(req, res) {
  74. res.redirect('/public/github.png')
  75. })
  76. app.all('/params', function(req, res) {
  77. console.log(req.url)
  78. var resp =
  79. {
  80. time : req.query.time,
  81. name : req.query.name,
  82. lang : req.query.lang
  83. }
  84. console.log(resp)
  85. res.send(resp)
  86. })
  87. // return an empty response
  88. app.all('/empty', function(req, res) {
  89. res.send('')
  90. })
  91. app.delete('/hey', function(req, res) {
  92. res.send('man')
  93. })
  94. app.post('/mime', mimeCheck)
  95. app.put('/mime', mimeCheck)
  96. function mimeCheck(req, res) {
  97. console.log(req.files)
  98. var mimes = []
  99. for(var i in req.files) {
  100. mimes.push(req.files[i].mimetype)
  101. }
  102. res.send(mimes)
  103. }
  104. // handle multipart/form-data request
  105. app.post('/upload-form', formUpload)
  106. app.put('/upload-form', formUpload)
  107. // for XHR tests
  108. //
  109. app.all('/xhr-code/:code', (req, res) => {
  110. console.log('code = ', req.params.code)
  111. res.status(Math.floor(req.params.code)).send()
  112. })
  113. app.all('/xhr-header', (req, res) => {
  114. console.log(req.headers)
  115. res.send(req.headers)
  116. })
  117. app.post('/upload', bodyParser.urlencoded({ extended: true }), (req, res) => {
  118. console.log(JSON.stringify(req.headers))
  119. console.log(JSON.stringify(req.body))
  120. res.status(200).send(req.body)
  121. })
  122. app.all('/timeout', (res, req) => {
  123. })
  124. function formUpload(req, res) {
  125. console.log(req.headers)
  126. console.log(req.body)
  127. console.log(req.files)
  128. if(Array.isArray(req.files)) {
  129. req.files.forEach((f) => {
  130. console.log(process.cwd() + f.path, '=>', process.cwd() + '/public/' + f.originalname)
  131. fs.renameSync('./' + f.path, './public/'+ f.originalname)
  132. })
  133. }
  134. res.status(200).send({
  135. fields : req.body,
  136. files : req.files
  137. })
  138. }
  139. function watch(source, dest, ignore) {
  140. // watch files in test folder
  141. chokidar
  142. .watch(source, ignore)
  143. .on('add', function(path) {
  144. console.log(chalk.magenta('file created'), path)
  145. var targetPath = String(path).replace(source, dest)
  146. mkdirp(dirname(targetPath), function (err) {
  147. if (err) return cb(err)
  148. fs.writeFileSync(targetPath, fs.readFileSync(path))
  149. })
  150. })
  151. .on('change', function(path) {
  152. console.log(chalk.green('file changed'), path)
  153. var targetPath = String(path).replace(source, dest)
  154. mkdirp(dirname(targetPath), function (err) {
  155. if (err) return cb(err)
  156. fs.writeFileSync(targetPath, fs.readFileSync(path))
  157. })
  158. })
  159. .on('unlink', function(path) {
  160. console.log(chalk.red('file removed'), path)
  161. var targetPath = String(path).replace(source, dest)
  162. mkdirp(dirname(targetPath), function (err) {
  163. if (err) return cb(err)
  164. fs.unlinkSync(targetPath)
  165. })
  166. })
  167. .on('error', function(err){
  168. console.log(err)
  169. })
  170. }