2018-03-31 22:51:37 +08:00
|
|
|
const Note = require('../entities/note');
|
|
|
|
const NoteRevision = require('../entities/note_revision');
|
2018-04-01 23:42:12 +08:00
|
|
|
const Image = require('../entities/image');
|
2018-04-01 10:15:06 +08:00
|
|
|
const NoteImage = require('../entities/note_image');
|
2018-03-31 22:51:37 +08:00
|
|
|
const Branch = require('../entities/branch');
|
2018-08-03 04:48:21 +08:00
|
|
|
const Attribute = require('../entities/attribute');
|
2018-04-02 00:03:21 +08:00
|
|
|
const RecentNote = require('../entities/recent_note');
|
2018-04-02 05:38:24 +08:00
|
|
|
const ApiToken = require('../entities/api_token');
|
2018-05-22 12:22:43 +08:00
|
|
|
const Option = require('../entities/option');
|
2018-03-31 22:51:37 +08:00
|
|
|
const repository = require('../services/repository');
|
|
|
|
|
2018-08-10 02:08:00 +08:00
|
|
|
const TABLE_NAME_TO_ENTITY = {
|
2018-08-10 20:31:57 +08:00
|
|
|
"attributes": Attribute,
|
|
|
|
"images": Image,
|
|
|
|
"note_images": NoteImage,
|
|
|
|
"branches": Branch,
|
|
|
|
"notes": Note,
|
|
|
|
"note_revisions": NoteRevision,
|
|
|
|
"recent_notes": RecentNote,
|
|
|
|
"options": Option,
|
|
|
|
"api_tokens": ApiToken
|
2018-08-10 02:08:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
function getEntityFromTableName(tableName) {
|
2018-08-10 20:31:57 +08:00
|
|
|
if (!(tableName in TABLE_NAME_TO_ENTITY)) {
|
|
|
|
throw new Error(`Entity for table ${tableName} not found!`);
|
|
|
|
}
|
|
|
|
|
2018-08-10 02:08:00 +08:00
|
|
|
return TABLE_NAME_TO_ENTITY[tableName];
|
|
|
|
}
|
|
|
|
|
2018-03-31 22:51:37 +08:00
|
|
|
function createEntityFromRow(row) {
|
|
|
|
let entity;
|
|
|
|
|
2018-08-03 04:48:21 +08:00
|
|
|
if (row.attributeId) {
|
|
|
|
entity = new Attribute(row);
|
|
|
|
}
|
2018-03-31 22:51:37 +08:00
|
|
|
else if (row.noteRevisionId) {
|
|
|
|
entity = new NoteRevision(row);
|
|
|
|
}
|
2018-04-01 10:15:06 +08:00
|
|
|
else if (row.noteImageId) {
|
|
|
|
entity = new NoteImage(row);
|
|
|
|
}
|
2018-04-01 23:42:12 +08:00
|
|
|
else if (row.imageId) {
|
|
|
|
entity = new Image(row);
|
|
|
|
}
|
2018-04-02 00:03:21 +08:00
|
|
|
else if (row.branchId && row.notePath) {
|
|
|
|
entity = new RecentNote(row);
|
|
|
|
}
|
2018-04-02 05:38:24 +08:00
|
|
|
else if (row.apiTokenId) {
|
|
|
|
entity = new ApiToken(row);
|
|
|
|
}
|
2018-03-31 22:51:37 +08:00
|
|
|
else if (row.branchId) {
|
|
|
|
entity = new Branch(row);
|
|
|
|
}
|
|
|
|
else if (row.noteId) {
|
|
|
|
entity = new Note(row);
|
|
|
|
}
|
2018-05-22 12:22:43 +08:00
|
|
|
else if (row.name) {
|
|
|
|
entity = new Option(row);
|
|
|
|
}
|
2018-03-31 22:51:37 +08:00
|
|
|
else {
|
|
|
|
throw new Error('Unknown entity type for row: ' + JSON.stringify(row));
|
|
|
|
}
|
|
|
|
|
|
|
|
return entity;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2018-08-10 02:08:00 +08:00
|
|
|
createEntityFromRow,
|
|
|
|
getEntityFromTableName
|
|
|
|
};
|
|
|
|
|
|
|
|
repository.setEntityConstructor(module.exports);
|