File size: 1,569 Bytes
1e7f8cc
 
da3dc33
c303531
 
1e7f8cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { ParametersUrl } from '../lib/scrapper.js'
import fetch from "node-fetch";
import express from 'express';
import { Readable } from "stream";
import sharp from "sharp";
const CarbonRoutes = express.Router();

async function MakerCarbon(args) {
    const url = ParametersUrl("maker/carbon");
    try {
        const response = await fetch(url, {
            method: "GET",
            body: JSON.stringify({ code: args }),
        });
        
        if (!response.ok) {
            console.error(`API Error: ${response.status}`);
            return null;
        }
        return await response.arrayBuffer();
    } catch (error) {
        console.error("Error fetching data:", error.message);
        return null;
    }
}

CarbonRoutes.post("/api/v1/maker/carbon", async (req, res) => {
    try {
        const query = req.body.query;
        if (!query) {
            return res.status(400).send("Query parameter is missing");
        }

        const imageBytes = await MakerCarbon(query);
        if (!imageBytes) {
            return res.status(500).json({ error: "Failed to fetch image bytes" });
        }

        const buffer = Buffer.isBuffer(imageBytes) ? imageBytes : Buffer.from(imageBytes);

        const processedImage = await sharp(buffer).jpeg().toBuffer();
        res.set("Content-Type", "image/jpeg");
        Readable.from(processedImage).pipe(res);
    } catch (error) {
        console.error("Error processing image:", error.message);
        res.status(500).json({ error: "Internal server error" });
    }
});

export { CarbonRoutes };