Add mongo code
This commit is contained in:
parent
2ef46bbd8e
commit
5af7522902
14
dao.js
14
dao.js
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const mongodb = require('mongodb');
|
const mongodb = require('mongodb');
|
||||||
const ObjectID = require('mongodb').ObjectID;
|
const ObjectID = require('mongodb').ObjectID;
|
||||||
const COLLECTION = 'test-collection';
|
const COLLECTION = 'contacts';
|
||||||
|
|
||||||
class Dao {
|
class Dao {
|
||||||
|
|
||||||
@ -15,6 +15,18 @@ class Dao {
|
|||||||
return this.db.collection(COLLECTION).find().toArray();
|
return this.db.collection(COLLECTION).find().toArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
findById(id) {
|
||||||
|
id = new ObjectID(id);
|
||||||
|
return this.db.collection(COLLECTION).findOne({_id:id});
|
||||||
|
}
|
||||||
|
|
||||||
|
update(id, data) {
|
||||||
|
id = new ObjectID(id);
|
||||||
|
data._id = id
|
||||||
|
return this.db.collection(COLLECTION)
|
||||||
|
.updateOne({_id:id}, data);
|
||||||
|
}
|
||||||
|
|
||||||
close() {
|
close() {
|
||||||
if (this.db) {
|
if (this.db) {
|
||||||
this.db.close();
|
this.db.close();
|
||||||
|
71
mongo.js
71
mongo.js
@ -4,20 +4,67 @@ const mongodb = require('mongodb');
|
|||||||
const Dao = require('./dao.js');
|
const Dao = require('./dao.js');
|
||||||
const ObjectID = mongodb.ObjectID;
|
const ObjectID = mongodb.ObjectID;
|
||||||
|
|
||||||
var url = 'mongodb://...';
|
var url = 'mongodb://i399:salakala@ds137191.mlab.com:37191/i399';
|
||||||
|
|
||||||
var data = { name: 'Jill' };
|
var data = { name: 'John' };
|
||||||
|
|
||||||
var database;
|
//findById("591418e3930698683597d4f8").then(data => console.log(data))
|
||||||
mongodb.MongoClient.connect(url).then(db => {
|
|
||||||
database = db;
|
var dao = new Dao();
|
||||||
return db.collection('test-collection').insertOne(data);
|
|
||||||
}).then(() => {
|
dao.connect(url)
|
||||||
closeDb(database)
|
.then(() => {
|
||||||
}).catch(error => {
|
return dao.findById('591418e3930698683597d4f8')
|
||||||
closeDb(database);
|
}).then(data => {
|
||||||
throw error;
|
dao.close();
|
||||||
});
|
console.log(data);
|
||||||
|
}).catch(error => {
|
||||||
|
dao.close();
|
||||||
|
console.log('Error: ' + error)
|
||||||
|
});
|
||||||
|
|
||||||
|
function inset(data) {
|
||||||
|
var database;
|
||||||
|
mongodb.MongoClient.connect(url).then(db => {
|
||||||
|
database = db;
|
||||||
|
return db.collection('contacts').insertOne(data);
|
||||||
|
}).then(() => {
|
||||||
|
closeDb(database)
|
||||||
|
}).catch(error => {
|
||||||
|
closeDb(database);
|
||||||
|
throw error;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function findAll() {
|
||||||
|
var database;
|
||||||
|
return mongodb.MongoClient.connect(url).then(db => {
|
||||||
|
database = db;
|
||||||
|
return db.collection('contacts').find().toArray();
|
||||||
|
}).then(data => {
|
||||||
|
closeDb(database)
|
||||||
|
return data;
|
||||||
|
}).catch(error => {
|
||||||
|
closeDb(database);
|
||||||
|
throw error;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function findById(id) {
|
||||||
|
var database;
|
||||||
|
return mongodb.MongoClient.connect(url).then(db => {
|
||||||
|
database = db;
|
||||||
|
id = new ObjectID(id)
|
||||||
|
return db.collection('contacts').findOne({ _id: id});
|
||||||
|
}).then(data => {
|
||||||
|
closeDb(database)
|
||||||
|
return data;
|
||||||
|
}).catch(error => {
|
||||||
|
closeDb(database);
|
||||||
|
throw error;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function closeDb(database) {
|
function closeDb(database) {
|
||||||
if (database) {
|
if (database) {
|
||||||
|
Loading…
Reference in New Issue
Block a user