feature/improved the getting of rates

This commit is contained in:
Joaquin committed 2025-05-06 21:26:45 -07:00
1 parent 93a5c45dd9
commit 17f11c85df
9 files changed
+44 -58

No files matched your search

+4 -14
View File
@@ -6,12 +6,11 @@ const path = require('path');
const joi = require('joi');
require('dotenv').config();
const app = express();
const port = process.env.PORT || 3000;
const mongoURI = process.env.mongoURI || "mongodb://localhost:27017/";
const database = process.env.database || "knoldus"; // Database name
const mongoURI = process.env.mongoURI;
const database = process.env.database; // Database name
const secret = process.env.secret || "123-secret-xyz";
/*** Sessions ***/
@@ -34,13 +33,14 @@ app.use(express.json());
const { connectMongo, getCollection } = require("./src/database/connection");
let users;
let rates;
async function initDatabase() {
const db = await connectMongo(mongoURI, database);
// For any collection, init here
users = await getCollection(db, "users");
plans = await getCollection(db, "plans");
currencies = await getCollection(db, "currencies");
rates = await getCollection(db, "rates");
}
/*** ROUTINGS ***/
@@ -72,16 +72,6 @@ app.get('/aboutUs', (req, res) => {
return res.status(status.Ok);
});
app.post('/api/location', async (req,res) => {
const { latitude, longitude } = req.body;
const response = await fetch(`https://maps.googleapis.com/maps/api/geocode/json?latlng=${latitude},${longitude}&result_type=country&key=${process.env.geolocation_api}`);
const data = await response.json();
res.json(data);
});
// Initialize database and start app
initDatabase().then(() => {
console.log("Successfully connected to MongoDB");