rumahjo/app/api/indexing/[...name]/route.js
2024-09-07 07:46:58 +07:00

80 lines
2.4 KiB
JavaScript

// app/api/route.js
import { NextResponse, NextRequest } from "next/server";
import mysql from 'mysql2/promise';
import { func } from "prop-types";
import { DB_CONF } from "@/app/library/configDatabase";
function paramsToObject(req) {
let reqq = req.nextUrl.searchParams.entries()
let entries = reqq;
const result = {}
for (const [key, value] of entries) { // each 'entry' is a [key, value] tupple
result[key] = value;
}
let limitation = {}
let condition = {}
let having = {}
Object.keys(result).forEach((s, i) => {
if (s == 'limit' || s == 'start') {
limitation[s] = result[s];
} else if (s == 'd') {
having['judul'] = result[s];
having['deskrisi'] = result[s];
} else {
condition[s] = result[s];
}
})
return {
limitation: limitation,
condition: condition,
having: having
};
}
// Handles GET requests to /api
export async function GET(req, Response) {
// create the connection to database
let params = await paramsToObject(req);
let { limit, start } = params.limitation;
const connection = await mysql.createConnection(DB_CONF);
try {
const query = `
SELECT ifnull((
SELECT sum(total) FROM (
SELECT 1 total FROM listing a
${(function () {
let d = Object.keys(params.condition);
if (d.length > 0) {
return ` WHERE ${d.map((c) => {
return ` ${c} = "${params.condition[c]}" `;
}).join(' OR ')} `
}
return "";
})()}
GROUP BY uniqid ${(function () {
let d = Object.keys(params.having);
if (d.length > 0) {
return ` HAVING ${d.map((c) => {
return ` ${c} LIKE "%${params.having[c]}%" `;
}).join(' OR ')} `
}
return "";
})()}
) a ),0) total`
const value = [];
const [data] = await connection.query(query);
connection.end();
return NextResponse.json({ message: data });
} catch (error) {
return NextResponse.json({ status: 500, message: error.message });
}
}
// Handles POST requests to /api
export async function POST(req) {
return NextResponse.json({ message: "Hello World" });
}