2018-08-03 04:48:21 +08:00
"use strict" ;
const sql = require ( '../../services/sql' ) ;
const attributeService = require ( '../../services/attributes' ) ;
const repository = require ( '../../services/repository' ) ;
const Attribute = require ( '../../entities/attribute' ) ;
2018-08-06 14:59:26 +08:00
async function getEffectiveNoteAttributes ( req ) {
2018-08-07 19:33:10 +08:00
const note = await repository . getNote ( req . params . noteId ) ;
return await note . getAttributes ( ) ;
2018-08-03 04:48:21 +08:00
}
2018-08-06 20:43:42 +08:00
async function updateNoteAttribute ( req ) {
const noteId = req . params . noteId ;
const body = req . body ;
let attribute ;
if ( body . attributeId ) {
attribute = await repository . getAttribute ( body . attributeId ) ;
}
else {
attribute = new Attribute ( ) ;
attribute . noteId = noteId ;
attribute . name = body . name ;
attribute . type = body . type ;
}
if ( attribute . noteId !== noteId ) {
2018-08-07 17:38:00 +08:00
return [ 400 , ` Attribute ${ body . attributeId } is not owned by ${ noteId } ` ] ;
2018-08-06 20:43:42 +08:00
}
attribute . value = body . value ;
await attribute . save ( ) ;
2018-08-06 23:24:35 +08:00
return {
attributeId : attribute . attributeId
} ;
}
async function deleteNoteAttribute ( req ) {
2018-08-07 17:38:00 +08:00
const noteId = req . params . noteId ;
2018-08-06 23:24:35 +08:00
const attributeId = req . params . attributeId ;
const attribute = await repository . getAttribute ( attributeId ) ;
if ( attribute ) {
2018-08-07 17:38:00 +08:00
if ( attribute . noteId !== noteId ) {
return [ 400 , ` Attribute ${ attributeId } is not owned by ${ noteId } ` ] ;
}
attribute . isDeleted = true ;
2018-08-06 23:24:35 +08:00
await attribute . save ( ) ;
}
2018-08-06 20:43:42 +08:00
}
2018-08-03 04:48:21 +08:00
async function updateNoteAttributes ( req ) {
const noteId = req . params . noteId ;
const attributes = req . body ;
for ( const attribute of attributes ) {
let attributeEntity ;
if ( attribute . attributeId ) {
attributeEntity = await repository . getAttribute ( attribute . attributeId ) ;
2018-08-07 17:38:00 +08:00
if ( attributeEntity . noteId !== noteId ) {
return [ 400 , ` Attribute ${ attributeEntity . noteId } is not owned by ${ noteId } ` ] ;
}
2018-08-03 04:48:21 +08:00
}
else {
// if it was "created" and then immediatelly deleted, we just don't create it at all
if ( attribute . isDeleted ) {
continue ;
}
attributeEntity = new Attribute ( ) ;
attributeEntity . noteId = noteId ;
}
2018-08-06 02:08:56 +08:00
attributeEntity . type = attribute . type ;
2018-08-03 04:48:21 +08:00
attributeEntity . name = attribute . name ;
attributeEntity . value = attribute . value ;
attributeEntity . position = attribute . position ;
2018-08-06 02:08:56 +08:00
attributeEntity . isInheritable = attribute . isInheritable ;
2018-08-03 04:48:21 +08:00
attributeEntity . isDeleted = attribute . isDeleted ;
await attributeEntity . save ( ) ;
}
2018-08-07 19:33:10 +08:00
const note = await repository . getNote ( noteId ) ;
return await note . getAttributes ( ) ;
2018-08-03 04:48:21 +08:00
}
2018-08-03 17:11:57 +08:00
async function getAttributeNames ( req ) {
const type = req . query . type ;
const query = req . query . query ;
2018-08-03 04:48:21 +08:00
2018-08-03 17:11:57 +08:00
return attributeService . getAttributeNames ( type , query ) ;
2018-08-03 04:48:21 +08:00
}
async function getValuesForAttribute ( req ) {
const attributeName = req . params . attributeName ;
2018-08-07 04:52:49 +08:00
return await sql . getColumn ( "SELECT DISTINCT value FROM attributes WHERE isDeleted = 0 AND name = ? AND type = 'label' AND value != '' ORDER BY value" , [ attributeName ] ) ;
2018-08-03 04:48:21 +08:00
}
2018-10-30 05:38:51 +08:00
async function createRelation ( req ) {
const sourceNoteId = req . params . noteId ;
const targetNoteId = req . params . targetNoteId ;
const name = req . params . name ;
let attribute = await repository . getEntity ( ` SELECT * FROM attributes WHERE isDeleted = 0 AND noteId = ? AND type = 'relation' AND name = ? AND value = ? ` , [ sourceNoteId , name , targetNoteId ] ) ;
if ( ! attribute ) {
attribute = new Attribute ( ) ;
attribute . noteId = sourceNoteId ;
attribute . name = name ;
attribute . type = 'relation' ;
attribute . value = targetNoteId ;
await attribute . save ( ) ;
}
2018-10-30 17:36:19 +08:00
return attribute ;
}
async function deleteRelation ( req ) {
const sourceNoteId = req . params . noteId ;
const targetNoteId = req . params . targetNoteId ;
const name = req . params . name ;
let attribute = await repository . getEntity ( ` SELECT * FROM attributes WHERE isDeleted = 0 AND noteId = ? AND type = 'relation' AND name = ? AND value = ? ` , [ sourceNoteId , name , targetNoteId ] ) ;
if ( ! attribute ) {
attribute = new Attribute ( ) ;
attribute . noteId = sourceNoteId ;
attribute . name = name ;
attribute . type = 'relation' ;
attribute . value = targetNoteId ;
await attribute . save ( ) ;
}
return attribute ;
2018-10-30 05:38:51 +08:00
}
2018-10-30 17:36:19 +08:00
2018-08-03 04:48:21 +08:00
module . exports = {
updateNoteAttributes ,
2018-08-06 20:43:42 +08:00
updateNoteAttribute ,
2018-08-06 23:24:35 +08:00
deleteNoteAttribute ,
2018-08-03 17:11:57 +08:00
getAttributeNames ,
2018-08-06 14:59:26 +08:00
getValuesForAttribute ,
2018-10-30 05:38:51 +08:00
getEffectiveNoteAttributes ,
2018-10-30 17:36:19 +08:00
createRelation ,
deleteRelation
2018-08-03 04:48:21 +08:00
} ;