File size: 2,451 Bytes
eac7655
 
 
1332f1a
eac7655
 
1332f1a
7f7055d
eac7655
1332f1a
eac7655
 
 
 
1332f1a
 
eac7655
 
 
1332f1a
 
 
 
eac7655
 
7f7055d
 
 
1332f1a
eac7655
 
 
7f7055d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
eac7655
1332f1a
7f7055d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
fs = require 'fs'
os = require 'os'
bytes = require 'bytes'
cors = require 'cors'
express = require 'express'
{ fromBuffer } = require 'file-type'
multer = require 'multer'
archiver = require 'archiver'

limitSize = '5000mb'
tmpFolder = os.tmpdir()

app = express()
app.set 'json spaces', 4

app.use cors()
# limit upload file
app.use express.json limit: limitSize
app.use express.urlencoded extended: true, limit: limitSize

# multer configuration
upload = multer({ dest: tmpFolder })

# logger
app.use (req, res, next) ->
  time = new Date().toLocaleString 'id', timeZone: 'Asia/Jakarta'
  console.log "[#{time}] #{req.method}: #{req.url}"
  next()

# allow user to access file in tmpFolder
app.use '/file', express.static tmpFolder

app.all '/', (_, res) ->
  res.send """
    <!doctype html>
    <html>
      <head>
        <title>File Upload</title>
      </head>
      <body>
        <h1>Upload a file</h1>
        <form action="/upload" method="post" enctype="multipart/form-data">
          <input type="file" name="file" />
          <button type="submit">Upload</button>
        </form>
      </body>
    </html>
  """

app.post '/upload', upload.single('file'), (req, res) ->
  do ->
    return res.json(message: 'No file uploaded') unless req.file

    fileBuffer = fs.readFileSync req.file.path
    ftype = await fromBuffer fileBuffer
    ftype = { mime: 'file', ext: 'bin' } unless ftype

    randomName = Math.random().toString(36).slice(2)
    fileName = "#{ftype.mime.split('/')[0]}-#{randomName}.#{ftype.ext}"
    await fs.promises.rename req.file.path, "#{tmpFolder}/#{fileName}"
    res.json
      name: fileName
      size:
        bytes: fileBuffer.length
        readable: bytes(fileBuffer.length, unitSeparator: ' ')
      type: ftype
      url: "https://#{process.env.SPACE_HOST}/file/#{fileName}"

# Endpoint to download a zip file containing files from the tmp folder
app.get '/download-zip', (req, res) ->
  do ->
    archive = archiver 'zip', zlib: level: 9

    res.attachment 'files.zip'

    archive.on 'error', (err) ->
      throw err

    archive.pipe res

    # Add files from tmp folder to the zip
    fs.readdir tmpFolder, (err, files) ->
      return res.status(500).send 'Could not list the directory.' if err

      files.forEach (file) ->
        filePath = "#{tmpFolder}/#{file}"
        archive.file filePath, name: file

      archive.finalize()

app.listen 7860, -> console.log 'App running on port', 7860