| 
									
										
										
										
											2017-10-21 21:10:33 -04:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-24 22:17:48 -04:00
										 |  |  | const log = require('./log'); | 
					
						
							| 
									
										
										
										
											2017-11-16 21:50:00 -05:00
										 |  |  | const dataDir = require('./data_dir'); | 
					
						
							| 
									
										
										
										
											2017-12-03 19:18:33 -05:00
										 |  |  | const fs = require('fs'); | 
					
						
							| 
									
										
										
										
											2017-11-28 17:04:47 -05:00
										 |  |  | const sqlite = require('sqlite'); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:04:47 -05:00
										 |  |  | async function createConnection() { | 
					
						
							|  |  |  |     return await sqlite.open(dataDir.DOCUMENT_PATH, {Promise}); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-17 19:09:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 19:18:33 -05:00
										 |  |  | const dbConnected = createConnection(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 22:29:23 -05:00
										 |  |  | let dbReadyResolve = null; | 
					
						
							| 
									
										
										
										
											2017-12-03 19:18:33 -05:00
										 |  |  | const dbReady = new Promise((resolve, reject) => { | 
					
						
							|  |  |  |     dbConnected.then(async db => { | 
					
						
							| 
									
										
										
										
											2017-12-03 22:29:23 -05:00
										 |  |  |         dbReadyResolve = () => resolve(db); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 19:18:33 -05:00
										 |  |  |         const tableResults = await getResults("SELECT name FROM sqlite_master WHERE type='table' AND name='notes'"); | 
					
						
							|  |  |  |         if (tableResults.length !== 1) { | 
					
						
							| 
									
										
										
										
											2017-12-03 22:29:23 -05:00
										 |  |  |             log.info("Connected to db, but schema doesn't exist. Initializing schema ..."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             const schema = fs.readFileSync('schema.sql', 'UTF-8'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             await doInTransaction(async () => { | 
					
						
							|  |  |  |                 await executeScript(schema); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 await require('./options').initOptions(); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // we don't resolve dbReady promise because user needs to setup the username and password to initialize
 | 
					
						
							|  |  |  |             // the database
 | 
					
						
							| 
									
										
										
										
											2017-12-03 19:18:33 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-12-03 22:29:23 -05:00
										 |  |  |         else { | 
					
						
							|  |  |  |             const username = await getSingleValue("SELECT opt_value FROM options WHERE opt_name = 'username'"); | 
					
						
							| 
									
										
										
										
											2017-12-03 19:18:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 22:29:23 -05:00
										 |  |  |             if (username) { | 
					
						
							|  |  |  |                 resolve(db); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-12-03 19:18:33 -05:00
										 |  |  |     }) | 
					
						
							|  |  |  |     .catch(e => { | 
					
						
							|  |  |  |         console.log("Error connecting to DB.", e); | 
					
						
							|  |  |  |         process.exit(1); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2017-11-17 19:09:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 22:29:23 -05:00
										 |  |  | function setDbReadyAsResolved() { | 
					
						
							|  |  |  |     dbReadyResolve(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  | async function insert(table_name, rec, replace = false) { | 
					
						
							| 
									
										
										
										
											2017-10-25 22:39:21 -04:00
										 |  |  |     const keys = Object.keys(rec); | 
					
						
							|  |  |  |     if (keys.length === 0) { | 
					
						
							|  |  |  |         log.error("Can't insert empty object into table " + table_name); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const columns = keys.join(", "); | 
					
						
							|  |  |  |     const questionMarks = keys.map(p => "?").join(", "); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const query = "INSERT " + (replace ? "OR REPLACE" : "") + " INTO " + table_name + "(" + columns + ") VALUES (" + questionMarks + ")"; | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     const res = await execute(query, Object.values(rec)); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return res.lastID; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  | async function replace(table_name, rec) { | 
					
						
							|  |  |  |     return await insert(table_name, rec, true); | 
					
						
							| 
									
										
										
										
											2017-10-29 22:22:30 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  | async function beginTransaction() { | 
					
						
							|  |  |  |     return await wrap(async db => db.run("BEGIN")); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  | async function commit() { | 
					
						
							|  |  |  |     return await wrap(async db => db.run("COMMIT")); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  | async function rollback() { | 
					
						
							|  |  |  |     return await wrap(async db => db.run("ROLLBACK")); | 
					
						
							| 
									
										
										
										
											2017-10-25 22:39:21 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | async function getSingleResult(query, params = []) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     return await wrap(async db => db.get(query, ...params)); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-28 19:55:55 -04:00
										 |  |  | async function getSingleResultOrNull(query, params = []) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     const all = await wrap(async db => db.all(query, ...params)); | 
					
						
							| 
									
										
										
										
											2017-10-28 19:55:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-29 22:22:30 -04:00
										 |  |  |     return all.length > 0 ? all[0] : null; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function getSingleValue(query, params = []) { | 
					
						
							|  |  |  |     const row = await getSingleResultOrNull(query, params); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!row) { | 
					
						
							|  |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return row[Object.keys(row)[0]]; | 
					
						
							| 
									
										
										
										
											2017-10-28 19:55:55 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | async function getResults(query, params = []) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     return await wrap(async db => db.all(query, ...params)); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-02 22:55:22 -04:00
										 |  |  | async function getMap(query, params = []) { | 
					
						
							|  |  |  |     const map = {}; | 
					
						
							|  |  |  |     const results = await getResults(query, params); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (const row of results) { | 
					
						
							|  |  |  |         const keys = Object.keys(row); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         map[row[keys[0]]] = row[keys[1]]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return map; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-24 23:14:26 -04:00
										 |  |  | async function getFlattenedResults(key, query, params = []) { | 
					
						
							|  |  |  |     const list = []; | 
					
						
							|  |  |  |     const result = await getResults(query, params); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (const row of result) { | 
					
						
							|  |  |  |         list.push(row[key]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return list; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  | async function execute(query, params = []) { | 
					
						
							|  |  |  |     return await wrap(async db => db.run(query, ...params)); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  | async function executeScript(query) { | 
					
						
							|  |  |  |     return await wrap(async db => db.exec(query)); | 
					
						
							| 
									
										
										
										
											2017-10-15 17:31:49 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-01 20:31:44 -04:00
										 |  |  | async function wrap(func) { | 
					
						
							| 
									
										
										
										
											2017-11-21 22:11:27 -05:00
										 |  |  |     const thisError = new Error(); | 
					
						
							| 
									
										
										
										
											2017-12-03 19:18:33 -05:00
										 |  |  |     const db = await dbConnected; | 
					
						
							| 
									
										
										
										
											2017-11-21 22:11:27 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-01 20:31:44 -04:00
										 |  |  |     try { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         return await func(db); | 
					
						
							| 
									
										
										
										
											2017-11-01 20:31:44 -04:00
										 |  |  |     } | 
					
						
							|  |  |  |     catch (e) { | 
					
						
							| 
									
										
										
										
											2017-11-18 18:57:50 -05:00
										 |  |  |         log.error("Error executing query. Inner exception: " + e.stack + thisError.stack); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         throw thisError; | 
					
						
							| 
									
										
										
										
											2017-11-01 20:31:44 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 18:33:23 -05:00
										 |  |  | let transactionActive = false; | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  | let transactionPromise = null; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  | async function doInTransaction(func) { | 
					
						
							| 
									
										
										
										
											2017-11-28 18:33:23 -05:00
										 |  |  |     while (transactionActive) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await transactionPromise; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-31 00:15:49 -04:00
										 |  |  |     const error = new Error(); // to capture correct stack trace in case of exception
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 18:33:23 -05:00
										 |  |  |     transactionActive = true; | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     transactionPromise = new Promise(async (resolve, reject) => { | 
					
						
							|  |  |  |         try { | 
					
						
							|  |  |  |             await beginTransaction(); | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await func(); | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await commit(); | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 18:33:23 -05:00
										 |  |  |             transactionActive = false; | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             resolve(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         catch (e) { | 
					
						
							|  |  |  |             log.error("Error executing transaction, executing rollback. Inner exception: " + e.stack + error.stack); | 
					
						
							| 
									
										
										
										
											2017-10-31 00:15:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await rollback(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 18:33:23 -05:00
										 |  |  |             transactionActive = false; | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             resolve(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             throw e; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-28 18:33:23 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (transactionActive) { | 
					
						
							|  |  |  |         await transactionPromise; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | module.exports = { | 
					
						
							| 
									
										
										
										
											2017-11-16 21:50:00 -05:00
										 |  |  |     dbReady, | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  |     insert, | 
					
						
							| 
									
										
										
										
											2017-10-29 22:22:30 -04:00
										 |  |  |     replace, | 
					
						
							|  |  |  |     getSingleValue, | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  |     getSingleResult, | 
					
						
							| 
									
										
										
										
											2017-10-29 22:22:30 -04:00
										 |  |  |     getSingleResultOrNull, | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  |     getResults, | 
					
						
							| 
									
										
										
										
											2017-11-02 22:55:22 -04:00
										 |  |  |     getMap, | 
					
						
							| 
									
										
										
										
											2017-10-24 23:14:26 -04:00
										 |  |  |     getFlattenedResults, | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  |     execute, | 
					
						
							| 
									
										
										
										
											2017-10-15 17:31:49 -04:00
										 |  |  |     executeScript, | 
					
						
							| 
									
										
										
										
											2017-12-03 22:29:23 -05:00
										 |  |  |     doInTransaction, | 
					
						
							|  |  |  |     setDbReadyAsResolved | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | }; |