File size: 1,339 Bytes
eaada9a
 
 
 
 
 
8f8bdd1
bbff16c
eaada9a
 
 
 
 
 
 
8f8bdd1
 
 
 
 
a7ab2e6
8f8bdd1
 
6ad005f
eaada9a
 
 
 
6ad005f
8f8bdd1
 
 
 
 
 
 
 
 
bbff16c
eaada9a
8f8bdd1
eaada9a
8f8bdd1
 
 
 
 
 
 
 
eaada9a
 
 
 
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
const express = require('express');
const app = express();
const bodyParser = require('body-parser');
const fs = require('fs');
const nsfwcheck = require('./lib/isporn');
const PORT = process.env.PORT || 4000;
const fetch = require('node-fetch');
const util = require("util");

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
  extended: true
}));

// Upload Image
app.get("/api/check", async (req, res) => {
  const imageUrl = req.query.url;
  if (imageUrl) {
    try {
      const response = await fetch(imageUrl);
      const buffer = await response.buffer();
      const mimeType = response.headers.get('content-type');

      /* if (mimeType != "image/png" && mimeType != "image/jpeg") {
        return res.json({
          status: 400,
          error: "Only PNG and JPEG Image Allowed"
        });
      } */

      let check = await nsfwcheck(buffer);
      res.json({
        status: 200,
        data: check
      });
    } catch (error) {
      res.json({
        status: 500,
        error: util.format(error || "Unknown Error, Please try another photo")
      });
      console.log(error);
    }
  } else {
    res.status(400).json({
      status: 400,
      error: "Please provide a valid image URL using the ?url parameter"
    });
  }
});




  app.listen(PORT, () => console.log(`App listen on port ${PORT}`));