blob: e2776bb75894fc8f17dd92dce54967267157a74a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/usr/bin/env node
const logger = require("../lib/logger");
const models = require('../lib/models')
logger.info("Cleaning up notes that should already have been removed. Sorry.")
async function cleanup() {
await models.Note.findAll({
include: [{
model: models.User,
as: 'owner'
}]
}).then(async function(notes) {
for(let i =0, noteCount = notes.length; i< noteCount; i++) {
const item = notes[i]
if(item.ownerId != null && !item.owner) {
await models.Note.destroy({
where: {
id: item.id
}})
await models.Revision.destroy({
where: {
noteId: item.id
}
})
await models.Author.destroy({
where: {
noteId: item.id
}
})
logger.info(`Deleted note ${item.id} from user ${item.ownerId}`)
}
}
})
await models.Author.findAll({
include: [{
model: models.User,
as: 'user'
}]
}).then(async function(authors) {
for(let i =0, authorCount = authors.length; i< authorCount; i++) {
const item = authors[i]
if(item.userId != null && !item.user) {
await models.Author.destroy({
where: {
id: item.id
}})
logger.info(`Deleted authorship ${item.id} from user ${item.userId}`)
}
}
})
process.exit(0)
}
cleanup()
|