mirror of
https://github.com/zadam/trilium.git
synced 2025-02-24 23:13:43 +08:00
simplified new entity ID allocation
This commit is contained in:
parent
e2921a648d
commit
277368ab43
9 changed files with 15 additions and 53 deletions
|
@ -8,9 +8,7 @@ class ApiToken extends Entity {
|
|||
static get primaryKeyName() { return "apiTokenId"; }
|
||||
|
||||
beforeSaving() {
|
||||
if (!this.apiTokenId) {
|
||||
this.apiTokenId = utils.newApiTokenId();
|
||||
}
|
||||
super.beforeSaving();
|
||||
|
||||
if (!this.isDeleted) {
|
||||
this.isDeleted = false;
|
||||
|
|
|
@ -13,9 +13,7 @@ class Branch extends Entity {
|
|||
}
|
||||
|
||||
beforeSaving() {
|
||||
if (!this.branchId) {
|
||||
this.branchId = utils.newBranchId();
|
||||
}
|
||||
super.beforeSaving();
|
||||
|
||||
if (!this.isDeleted) {
|
||||
this.isDeleted = false;
|
||||
|
|
|
@ -12,6 +12,12 @@ class Entity {
|
|||
}
|
||||
}
|
||||
|
||||
beforeSaving() {
|
||||
if (!this[this.constructor.primaryKeyName]) {
|
||||
this[this.constructor.primaryKeyName] = utils.newEntityId();
|
||||
}
|
||||
}
|
||||
|
||||
async save() {
|
||||
await repository.updateEntity(this);
|
||||
}
|
||||
|
|
|
@ -8,9 +8,7 @@ class Image extends Entity {
|
|||
static get primaryKeyName() { return "imageId"; }
|
||||
|
||||
beforeSaving() {
|
||||
if (!this.imageId) {
|
||||
this.imageId = utils.newImageId();
|
||||
}
|
||||
super.beforeSaving();
|
||||
|
||||
if (!this.isDeleted) {
|
||||
this.isDeleted = false;
|
||||
|
|
|
@ -14,9 +14,7 @@ class Label extends Entity {
|
|||
}
|
||||
|
||||
async beforeSaving() {
|
||||
if (!this.labelId) {
|
||||
this.labelId = utils.newLabelId();
|
||||
}
|
||||
super.beforeSaving();
|
||||
|
||||
if (!this.value) {
|
||||
// null value isn't allowed
|
||||
|
|
|
@ -131,9 +131,7 @@ class Note extends Entity {
|
|||
}
|
||||
|
||||
beforeSaving() {
|
||||
if (!this.noteId) {
|
||||
this.noteId = utils.newNoteId();
|
||||
}
|
||||
super.beforeSaving();
|
||||
|
||||
if (this.isJson()) {
|
||||
this.content = JSON.stringify(this.jsonContent, null, '\t');
|
||||
|
|
|
@ -17,9 +17,7 @@ class NoteImage extends Entity {
|
|||
}
|
||||
|
||||
beforeSaving() {
|
||||
if (!this.noteImageId) {
|
||||
this.noteImageId = utils.newNoteImageId();
|
||||
}
|
||||
super.beforeSaving();
|
||||
|
||||
if (!this.isDeleted) {
|
||||
this.isDeleted = false;
|
||||
|
|
|
@ -22,9 +22,7 @@ class NoteRevision extends Entity {
|
|||
}
|
||||
|
||||
beforeSaving() {
|
||||
if (!this.noteRevisionId) {
|
||||
this.noteRevisionId = utils.newNoteRevisionId();
|
||||
}
|
||||
super.beforeSaving();
|
||||
|
||||
if (this.isProtected) {
|
||||
protected_session.encryptNoteRevision(this);
|
||||
|
|
|
@ -4,31 +4,7 @@ const crypto = require('crypto');
|
|||
const randtoken = require('rand-token').generator({source: 'crypto'});
|
||||
const unescape = require('unescape');
|
||||
|
||||
function newNoteId() {
|
||||
return randomString(12);
|
||||
}
|
||||
|
||||
function newBranchId() {
|
||||
return randomString(12);
|
||||
}
|
||||
|
||||
function newNoteRevisionId() {
|
||||
return randomString(12);
|
||||
}
|
||||
|
||||
function newImageId() {
|
||||
return randomString(12);
|
||||
}
|
||||
|
||||
function newNoteImageId() {
|
||||
return randomString(12);
|
||||
}
|
||||
|
||||
function newLabelId() {
|
||||
return randomString(12);
|
||||
}
|
||||
|
||||
function newApiTokenId() {
|
||||
function newEntityId() {
|
||||
return randomString(12);
|
||||
}
|
||||
|
||||
|
@ -154,13 +130,7 @@ module.exports = {
|
|||
dateStr,
|
||||
parseDate,
|
||||
parseDateTime,
|
||||
newNoteId,
|
||||
newBranchId,
|
||||
newNoteRevisionId,
|
||||
newImageId,
|
||||
newNoteImageId,
|
||||
newLabelId,
|
||||
newApiTokenId,
|
||||
newEntityId,
|
||||
toBase64,
|
||||
fromBase64,
|
||||
hmac,
|
||||
|
|
Loading…
Reference in a new issue