UNIQUE paths

This commit is contained in:
v 2018-11-28 18:33:33 +03:00
parent 82264ba9e5
commit 8098cc2748

View File

@ -454,23 +454,28 @@ class WikiItem {
.then( () => this.localPath() )
}
storeMetadata ( ) {
async storeMetadata ( ) {
const row = [
this.urlKey(),
this.titleKey(),
this.revision,
this.mimeId(),
]
return wiki.db.run(
'INSERT INTO articles ( urlKey, titleKey, revision, mimeId ) VALUES ( ?,?,?,? )',
row
)
.then( res => {
//~ log( 'storeMetadata res', res )
try {
const res = await wiki.db.run(
'INSERT INTO articles ( urlKey, titleKey, revision, mimeId ) VALUES ( ?,?,?,? )',
row
)
//~ log( 'storeMetadata res', row, res )
this.id = res.stmt.lastID
++ articleCount
return this.id
})
} catch ( err ) {
if ( err.code == "SQLITE_CONSTRAINT" )
return null
fatal( 'storeMetadata error', err )
}
}
save () {