aboutsummaryrefslogtreecommitdiff
path: root/update.js
diff options
context:
space:
mode:
Diffstat (limited to 'update.js')
-rw-r--r--update.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/update.js b/update.js
index c66a97b..c946304 100644
--- a/update.js
+++ b/update.js
@@ -1,17 +1,15 @@
-const database = require("./database.js");
const openFile = require("./Functions/open.js").file;
const parseClasses = require("./parseClasses.js").classes;
const parse = require("./dbparse.js");
// Run this if you want to build the database from text files
-async function buildDB(dbcredentials, shiftPath, ...classfiles)
+async function buildDB(dbconnection, shiftPath, ...classfiles)
{
- const DB = new database.Database(JSON.parse(dbcredentials));
let shiftCont = await openFile(shiftPath);
shiftCont = shiftCont.toString("utf-8").replaceAll("\r", ""); // \r because of the \r\n newline on windows which may create problems
- await parseClasses(DB, ...classfiles),
- await parse.build(shiftCont, DB)
+ await parseClasses(dbconnection, ...classfiles),
+ await parse.build(shiftCont, dbconnection)
return 0;
}
@@ -19,6 +17,8 @@ exports.update = buildDB;
// Example call:
/*
const openFile = require("./Functions/open.js").file;
+const database = require("./database.js");
const dbcredentials = await openFile("../dblogin.txt");
+const DB = new database.Database(JSON.parse(dbcredentials));
await updateDB.update(dbcredentials, "./shifts.txt", "./Kurssitarjottimet/2016Classes.txt", "./Kurssitarjottimet/NewClasses.txt");
*/