105 lines
2.9 KiB
JavaScript
105 lines
2.9 KiB
JavaScript
const { getGlobalUserParams, getAllApps } = require("../db/utils")
|
|
const { doWithDB } = require("../db")
|
|
const { doWithGlobalDB } = require("../tenancy")
|
|
const { StaticDatabases } = require("../db/constants")
|
|
|
|
const TENANT_DOC = StaticDatabases.PLATFORM_INFO.docs.tenants
|
|
const PLATFORM_INFO_DB = StaticDatabases.PLATFORM_INFO.name
|
|
|
|
const removeTenantFromInfoDB = async tenantId => {
|
|
try {
|
|
await doWithDB(PLATFORM_INFO_DB, async infoDb => {
|
|
let tenants = await infoDb.get(TENANT_DOC)
|
|
tenants.tenantIds = tenants.tenantIds.filter(id => id !== tenantId)
|
|
|
|
await infoDb.put(tenants)
|
|
})
|
|
} catch (err) {
|
|
console.error(`Error removing tenant ${tenantId} from info db`, err)
|
|
throw err
|
|
}
|
|
}
|
|
|
|
exports.removeUserFromInfoDB = async dbUser => {
|
|
await doWithDB(PLATFORM_INFO_DB, async infoDb => {
|
|
const keys = [dbUser._id, dbUser.email]
|
|
const userDocs = await infoDb.allDocs({
|
|
keys,
|
|
include_docs: true,
|
|
})
|
|
const toDelete = userDocs.rows.map(row => {
|
|
return {
|
|
...row.doc,
|
|
_deleted: true,
|
|
}
|
|
})
|
|
await infoDb.bulkDocs(toDelete)
|
|
})
|
|
}
|
|
|
|
const removeUsersFromInfoDB = async tenantId => {
|
|
return doWithGlobalDB(tenantId, async db => {
|
|
try {
|
|
const allUsers = await db.allDocs(
|
|
getGlobalUserParams(null, {
|
|
include_docs: true,
|
|
})
|
|
)
|
|
await doWithDB(PLATFORM_INFO_DB, async infoDb => {
|
|
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,
|
|
})
|
|
const toDelete = userDocs.rows.map(row => {
|
|
return {
|
|
...row.doc,
|
|
_deleted: true,
|
|
}
|
|
})
|
|
await infoDb.bulkDocs(toDelete)
|
|
})
|
|
} catch (err) {
|
|
console.error(`Error removing tenant ${tenantId} users from info db`, err)
|
|
throw err
|
|
}
|
|
})
|
|
}
|
|
|
|
const removeGlobalDB = async tenantId => {
|
|
return doWithGlobalDB(tenantId, async db => {
|
|
try {
|
|
await db.destroy()
|
|
} catch (err) {
|
|
console.error(`Error removing tenant ${tenantId} users from info db`, err)
|
|
throw err
|
|
}
|
|
})
|
|
}
|
|
|
|
const removeTenantApps = async tenantId => {
|
|
try {
|
|
const apps = await getAllApps({ all: true })
|
|
const destroyPromises = apps.map(app =>
|
|
doWithDB(app.appId, db => db.destroy())
|
|
)
|
|
await Promise.allSettled(destroyPromises)
|
|
} catch (err) {
|
|
console.error(`Error removing tenant ${tenantId} apps`, err)
|
|
throw err
|
|
}
|
|
}
|
|
|
|
// can't live in tenancy package due to circular dependency on db/utils
|
|
exports.deleteTenant = async tenantId => {
|
|
await removeTenantFromInfoDB(tenantId)
|
|
await removeUsersFromInfoDB(tenantId)
|
|
await removeGlobalDB(tenantId)
|
|
await removeTenantApps(tenantId)
|
|
}
|