-
-
Notifications
You must be signed in to change notification settings - Fork 415
/
db.js
34 lines (28 loc) · 895 Bytes
/
db.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var sqlite3 = require('sqlite3');
var mkdirp = require('mkdirp');
var crypto = require('crypto');
mkdirp.sync('./var/db');
var db = new sqlite3.Database('./var/db/todos.db');
db.serialize(function() {
// create the database schema for the todos app
db.run("CREATE TABLE IF NOT EXISTS users ( \
id INTEGER PRIMARY KEY, \
username TEXT UNIQUE, \
hashed_password BLOB, \
salt BLOB \
)");
db.run("CREATE TABLE IF NOT EXISTS todos ( \
id INTEGER PRIMARY KEY, \
owner_id INTEGER NOT NULL, \
title TEXT NOT NULL, \
completed INTEGER \
)");
// create an initial user (username: alice, password: letmein)
var salt = crypto.randomBytes(16);
db.run('INSERT OR IGNORE INTO users (username, hashed_password, salt) VALUES (?, ?, ?)', [
'alice',
crypto.pbkdf2Sync('letmein', salt, 310000, 32, 'sha256'),
salt
]);
});
module.exports = db;