Brotherton-Aspire-App/seeds/propertyContact.js
2024-02-02 16:44:34 -08:00

64 lines
2.0 KiB
JavaScript

require('dotenv').config();
const axios = require('axios');
//connect database
//development
const mongoose = require('mongoose');
const PropertyContact = require('../models/propertyContact');
mongoose.connect('mongodb://127.0.0.1:27017/test')
.then(() => {
console.log("Connection Open")
})
.catch(err => {
console.log("ERROR")
console.log(err)
});
const db = mongoose.connection;
db.on("error", console.error.bind(console, "connection error"));
db.once("open", () => {
console.log("Database connected");
});
const seedDB = async () => {
await PropertyContact.deleteMany({});
try {
const { ASPIRE_API_CLIENT_ID, ASPIRE_TOKEN } = process.env;
const apiUrl = `https://cloud-api.youraspire.com/PropertyContacts?%24select=PropertyID%2CContactID%2CContactName%2CCompanyName`;
const headers = {
'Authorization': `Bearer ${ASPIRE_TOKEN}`,
'Client-ID': ASPIRE_API_CLIENT_ID,
'Content-Type': 'application/json',
};
const response = await axios.get(apiUrl, { headers });
const propertyArray = response.data
//save to database before going to client
// therefore logic to have databse filter logic beofre going to client
// await contacts.save();
// Save each work ticket visit to the database
for (const propertyContactData of propertyArray) {
const property = new PropertyContact({
PropertyID: propertyContactData.PropertyID,
ContactName: propertyContactData.ContactName,
ContactID: propertyContactData.ContactID,
CompanyName: propertyContactData.CompanyName,
});
await property.save();
}
console.log('Seeding completed successfully');
} catch (error) {
console.error('Seeding error:', error.message);
} finally {
// Close the database connection after seeding
mongoose.connection.close();
}
};
seedDB();