2023-08-25 13:51:57 -04:00
|
|
|
import { Application, Router } from 'https://deno.land/x/oak/mod.ts';
|
|
|
|
import { Client } from "https://deno.land/x/postgres@v0.17.0/mod.ts";
|
|
|
|
|
|
|
|
const app = new Application();
|
|
|
|
const router = new Router();
|
|
|
|
|
2023-10-04 08:37:51 -04:00
|
|
|
//---------dotenv info-------------
|
|
|
|
import { load } from "https://deno.land/std/dotenv/mod.ts";
|
|
|
|
|
2023-08-25 13:51:57 -04:00
|
|
|
const env = await load();
|
|
|
|
const hostname = env["HOSTNAME"];
|
|
|
|
const port = env["PORT"];
|
|
|
|
const user = env["USER"];
|
|
|
|
const password = env["PASSWORD"];
|
|
|
|
const database = env["DATABASE"];
|
|
|
|
const app_port = env["APP_PORT"];
|
|
|
|
|
2023-10-04 08:37:51 -04:00
|
|
|
|
2023-08-25 13:51:57 -04:00
|
|
|
// Configure database connection
|
|
|
|
const client = new Client({
|
|
|
|
hostname:hostname
|
|
|
|
,port: port
|
|
|
|
,user: user
|
|
|
|
,password:password
|
|
|
|
,database:database
|
2023-10-04 08:37:51 -04:00
|
|
|
,applicationName: "pricing guidance"
|
2023-08-25 13:51:57 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
await client.connect();
|
|
|
|
|
2023-08-30 08:30:04 -04:00
|
|
|
// Load SQL from file
|
2023-11-03 14:34:27 -04:00
|
|
|
const query = await Deno.readTextFile("sql/get.pg.sql");
|
2023-08-30 08:30:04 -04:00
|
|
|
|
|
|
|
// Define a route to retrieve values from the database using parameters
|
|
|
|
router.get('/price_info/part_cust/:partcode/:customer', async (ctx) => {
|
|
|
|
|
|
|
|
const partcode = ctx.params.partcode; // Extract the partcode parameter from the route
|
|
|
|
const customer = ctx.params.customer; // Extract the customer parameter from the route
|
|
|
|
|
|
|
|
//console.log(partcode)
|
|
|
|
//console.log(customer)
|
2023-11-03 14:34:27 -04:00
|
|
|
const result = await client.queryObject({args: [customer, customer, partcode], text: query} );
|
2023-10-04 08:37:51 -04:00
|
|
|
ctx.response.body = result.rows;
|
2023-08-25 13:51:57 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
app.use(router.routes());
|
|
|
|
app.use(router.allowedMethods());
|
|
|
|
|
|
|
|
// Start the server
|
2023-10-04 08:37:51 -04:00
|
|
|
console.log('Server is running on http://usmidsap02:8090');
|
|
|
|
await app.listen({ port: 8090 });
|
2023-08-25 13:51:57 -04:00
|
|
|
|