Deprovisioning working minus apps
This commit is contained in:
parent
9942a2d85c
commit
591203f5cd
|
@ -93,32 +93,70 @@ const getGlobalUserParams = (globalId, otherProps = {}) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.deleteTenant = async tenantId => {
|
const removeTenantFromInfoDB = async tenantId => {
|
||||||
const globalDb = exports.getGlobalDB()
|
try {
|
||||||
|
const infoDb = getDB(PLATFORM_INFO_DB)
|
||||||
|
let tenants = await infoDb.get(TENANT_DOC)
|
||||||
|
tenants.tenantIds = tenants.tenantIds.filter(id => id !== tenantId)
|
||||||
|
|
||||||
let promises = []
|
await infoDb.put(tenants)
|
||||||
// remove the tenant entry from global info
|
} catch (err) {
|
||||||
const infoDb = getDB(PLATFORM_INFO_DB)
|
console.error(`Error removing tenant ${tenantId} from info db`, err)
|
||||||
let tenants = await infoDb.get(TENANT_DOC)
|
throw err
|
||||||
tenants.tenantIds = tenants.tenantIds.filter(id => id !== tenantId)
|
}
|
||||||
promises.push(infoDb.put(tenants))
|
}
|
||||||
|
|
||||||
// remove the users
|
const removeUsersFromInfoDB = async tenantId => {
|
||||||
const allUsers = await globalDb.allDocs(
|
try {
|
||||||
getGlobalUserParams(null, {
|
const globalDb = exports.getGlobalDB(tenantId)
|
||||||
|
const infoDb = getDB(PLATFORM_INFO_DB)
|
||||||
|
const allUsers = await globalDb.allDocs(
|
||||||
|
getGlobalUserParams(null, {
|
||||||
|
include_docs: true,
|
||||||
|
})
|
||||||
|
)
|
||||||
|
const allEmails = allUsers.rows.map(row => row.doc.email)
|
||||||
|
// get the id docs
|
||||||
|
let keys = allUsers.rows.map(row => row.id)
|
||||||
|
// and the email docs
|
||||||
|
keys = keys.concat(allEmails)
|
||||||
|
// retrieve the docs and delete them
|
||||||
|
const userDocs = await infoDb.allDocs({
|
||||||
|
keys,
|
||||||
include_docs: true,
|
include_docs: true,
|
||||||
})
|
})
|
||||||
)
|
const toDelete = userDocs.rows.map(row => {
|
||||||
allUsers.rows.map(row => {
|
return {
|
||||||
promises.push(infoDb.remove(row.id, row.value.rev))
|
...row.doc,
|
||||||
promises.push(infoDb.remove(row.doc.email, row.value.rev))
|
_deleted: true,
|
||||||
})
|
}
|
||||||
|
})
|
||||||
|
await infoDb.bulkDocs(toDelete)
|
||||||
|
} catch (err) {
|
||||||
|
console.error(`Error removing tenant ${tenantId} users from info db`, err)
|
||||||
|
throw err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// remove the global db
|
const removeGlobalDB = async tenantId => {
|
||||||
promises.push(globalDb.destroy())
|
try {
|
||||||
|
const globalDb = exports.getGlobalDB(tenantId)
|
||||||
|
await globalDb.destroy()
|
||||||
|
} catch (err) {
|
||||||
|
console.error(`Error removing tenant ${tenantId} users from info db`, err)
|
||||||
|
throw err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
await Promise.all(promises)
|
const removeTenantApps = async () => {
|
||||||
// TODO: Delete all apps
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
exports.deleteTenant = async tenantId => {
|
||||||
|
await removeTenantFromInfoDB(tenantId)
|
||||||
|
await removeUsersFromInfoDB(tenantId)
|
||||||
|
await removeGlobalDB(tenantId)
|
||||||
|
await removeTenantApps(tenantId)
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.getGlobalDB = (tenantId = null) => {
|
exports.getGlobalDB = (tenantId = null) => {
|
||||||
|
|
|
@ -40,5 +40,11 @@ exports.delete = async ctx => {
|
||||||
ctx.throw(403, "Unauthorized")
|
ctx.throw(403, "Unauthorized")
|
||||||
}
|
}
|
||||||
|
|
||||||
await deleteTenant(tenantId)
|
try {
|
||||||
|
await deleteTenant(tenantId)
|
||||||
|
ctx.status = 204
|
||||||
|
} catch (err) {
|
||||||
|
ctx.log.error(err)
|
||||||
|
throw err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue