-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathdiffable.js
123 lines (115 loc) · 4.3 KB
/
diffable.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// Base class to make it easy to check for changes to a list of items
//
// class Thing extends Diffable {
// find() {
// }
//
// comparator(existing, attrs) {
// }
//
// changed(existing, attrs) {
// }
//
// update(existing, attrs) {
// }
//
// add(attrs) {
// }
//
// remove(existing) {
// }
// }
const MergeDeep = require('../mergeDeep')
const NopCommand = require('../nopcommand')
const ignorableFields = ['id', 'node_id', 'default']
module.exports = class Diffable {
constructor (nop, github, repo, entries, log) {
this.github = github
this.repo = repo
this.entries = entries
this.log = log
this.nop = nop
}
filterEntries () {
let filteredEntries = Array.from(this.entries)
// this.log.debug(` entries ${JSON.stringify(filteredEntries)}`)
filteredEntries = filteredEntries.filter(attrs => {
if (Array.isArray(attrs.exclude)) {
if (!attrs.exclude.includes(this.repo.repo)) {
// this.log.debug(`returning not excluded entry = ${JSON.stringify(attrs)} for repo ${this.repo.repo}`)
return true
} else {
// this.log.debug(`skipping excluded entry = ${JSON.stringify(attrs)} for repo ${this.repo.repo}`)
return false
}
} else {
// this.log.debug(`No excludes. Returning unfiltered entries = ${JSON.stringify(attrs)} for repo ${this.repo.repo}`)
return true
}
})
filteredEntries = filteredEntries.filter(attrs => {
if (Array.isArray(attrs.include)) {
if (attrs.include.includes(this.repo.repo)) {
// this.log.debug(`returning included entry = ${JSON.stringify(attrs)} for repo ${this.repo.repo}`)
return true
} else {
// this.log.debug(`skipping not included entry = ${JSON.stringify(attrs)} for repo ${this.repo.repo}`)
return false
}
} else {
// this.log.debug(`No includes. Returning unfiltered entries = ${JSON.stringify(attrs)} for repo ${this.repo.repo}`)
return true
}
})
filteredEntries = filteredEntries.map(e => {
const { exclude, include, ...o } = e
return o
})
return filteredEntries
}
sync () {
if (this.entries) {
const filteredEntries = this.filterEntries()
// this.log.debug(`filtered entries are ${JSON.stringify(filteredEntries)}`)
return this.find().then(existingRecords => {
const mergeDeep = new MergeDeep(this.log, ignorableFields)
const compare = mergeDeep.compareDeep(existingRecords, filteredEntries)
const results = JSON.stringify(compare, null, 2)
this.log.debug(`Results of comparing ${this.constructor.name} diffable target ${JSON.stringify(existingRecords)} with source ${JSON.stringify(filteredEntries)} is ${results}`)
if (!compare.hasChanges && existingRecords.length === filteredEntries.length) {
this.log.debug(`There are no changes for ${this.constructor.name} for repo ${this.repo}. Skipping changes`)
if (this.nop) {
return Promise.resolve([(new NopCommand(this.constructor.name, this.repo, null, `${this.constructor.name} settings has ${compare.additions.length} additions and ${compare.modifications.length} modifications`))])
}
return Promise.resolve()
}
const changes = []
existingRecords.forEach(x => {
if (!filteredEntries.find(y => this.comparator(x, y))) {
changes.push(this.remove(x))
}
})
filteredEntries.forEach(attrs => {
const existing = existingRecords.find(record => {
return this.comparator(record, attrs)
})
if (!existing) {
changes.push(this.add(attrs))
} else if (this.changed(existing, attrs)) {
changes.push(this.update(existing, attrs))
}
})
if (changes.length === 0) {
if (this.nop) {
return Promise.resolve([
// {plugin: this.constructor.name, repo: this.repo, action: `No changes`},
])
}
}
return Promise.all(changes)
}).catch(e => {
this.log.error(`error calling find for ${this.constructor.name} for repo: ${JSON.stringify(this.repo)} entries ${JSON.stringify(this.entries)}\n`, e)
})
}
}
}