-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDbObject.js
152 lines (133 loc) · 2.93 KB
/
DbObject.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
* @author Alan Zhao <[email protected]>
*/
/**
* This is the base class of a data table, to provide further abstraction
*/
module.exports = class DbObject {
constructor(db) {
this.tableName = null;
this._cache = {};
this._db = db;
}
/**
* Get entity by ID
*/
get(id, callback) {
return this._db.get(this.tableName, id, callback);
}
/**
* Get all entities
*/
getAll(orderBy = null, callback) {
return this._db.getAll(this.tableName, orderBy, callback);
}
/**
* Get all entity count
*/
getAllCount(callback) {
return this._db.getAllCount(this.tableName, callback);
}
/**
* Find entities
*/
find(values, orderBy, callback) {
return this._db.getBy(this.tableName, values, null, orderBy, callback);
}
/**
* Find one entity
*/
findOne(values, callback) {
return this._db.getBy(this.tableName, values, 1, null, callback);
}
/**
* Create an entity
*/
create(values, callback = null) {
return this._db.insert(this.tableName, values, callback);
}
/**
* Update an entity by ID
*/
update(id, values, callback = null) {
return this._db.update(this.tableName, id, values, callback);
}
/**
* Update entity with multiple matching criteria
*/
updateBy(criteria, values, callback = null) {
return this._db.updateBy(this.tableName, criteria, values, callback);
}
/**
* Delete an entity by ID
*/
delete(id, callback = null) {
return this._db.delete(this.tableName, id, callback);
}
/**
* Delete entity with multiple matching criteria
*/
deleteBy(criteria, callback = null) {
return this._db.deleteBy(this.tableName, criteria, callback);
}
/**
* Does entity ID exist?
*/
exists(id, callback) {
return this._db.exists(this.tableName, id, callback);
}
/**
* Does entity exists matching multiple criteria
*/
existsBy(criteria, excludeId, callback = null) {
return this._db.existsBy(this.tableName, criteria, excludeId, callback);
}
/**
* Update entities' position column
*/
updatePositioningById(data, callback) {
var entityIds = Object.keys(data);
var processedCount = 0;
entityIds.forEach(entityId => {
let position = data[entityId];
this._db.update(this.tableName, entityId, {
position: position
}, () => {
processedCount++;
if (processedCount === entityIds.length) {
return callback();
}
});
});
}
/**
* Save cache
*/
saveCache(cacheId, value) {
this._cache[cacheId] = value;
}
/**
* Clear cache
*/
clearCache(cacheId) {
delete this._cache[cacheId];
}
/**
* Escape string value
*/
escape(value) {
return this._db.escape(value);
}
/**
* Escape identifier(database/table/column name)
*/
escapeId(value) {
return this._db.escapeId(value);
}
/**
* Get last query.
*/
getLastQuery() {
return this._db.lastQuery;
}
}