Utility script to import data from production to development environment

This commit is contained in:
JayWll 2020-04-11 12:26:34 -06:00
parent 81564ad85e
commit fcc89e75e6
1 changed files with 52 additions and 0 deletions

52
nodeapp/utils/import.js Normal file
View File

@ -0,0 +1,52 @@
const Sequelize = require('sequelize')
const Op = Sequelize.Op
const request = require('request')
const path = require('path')
const dotenv = require('dotenv').config({path: path.join(__dirname, '../../.env')})
// Database settings
const sequelize = new Sequelize('database', process.env.DB_USER, process.env.DB_PASS, {
dialect: 'sqlite',
storage: '.data/database.sqlite'
})
sequelize.authenticate().then((err) => {
console.log('Connection has been established successfully')
// Define 'readings' table structure
Readings = sequelize.define('readings', {
timestamp: {
type: Sequelize.DATE
},
reading: {
type: Sequelize.INTEGER
}
})
// Read data
Readings.sync()
}).catch((err) => {
console.log('Unable to connect to the database: ', err)
})
// The URL from which to export production data
const url = 'https://jasonsplant.glitch.me/exportall'
// Get data from the production server
request({
url,
headers: {
'export-key': process.env.SECRET
},
json: true
}, (error, {body}) => {
if (error) return console.log(error)
console.log(body.length + ' items retrieved')
// Remove existing database items
Readings.destroy({truncate: true})
// Add new data to the database
Readings.bulkCreate(body)
});