-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
88 lines (70 loc) · 2.01 KB
/
utils.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
const { promisify } = require('util')
const fs = require('fs')
const imageHash = promisify(require('image-hash').imageHash)
const pokedex = require('./data/pokedex.json')
async function addOne(name, url) {
const hash = await imageHash(url, 16, true)
pokedex.push({ name, hash })
fs.writeFileSync('./data/pokedex.json', JSON.stringify(pokedex), 'utf8')
console.log(`
Added:
${name}
${hash}`)
}
async function updateOne(name, url) {
let [found] = pokedex.filter(pokemon => {
return pokemon.name == name.toLowerCase()
})
if (!found) throw new Error('No pokemon with that name.')
const hash = await imageHash(url, 16, true)
found.hash = hash
fs.writeFileSync('./data/pokedex.json', JSON.stringify(pokedex), 'utf8')
console.log(`
Updated:
${name}
${hash}`)
}
function removeOne(name) {
const pokedex = require('./data/pokedex.json')
let newDex = pokedex.filter(pokemon => {
return pokemon.name != name.toLowerCase()
})
fs.writeFileSync('./data/pokedex.json', JSON.stringify(newDex), 'utf8')
console.log(`
Removed:
${name}`)
}
function checkDuplicateHashes() {
const arr = []
let count = 0
for (const pokemon of pokedex) {
if (!arr.includes(pokemon.hash)) {
arr.push(pokemon.hash)
} else {
console.log(`Duplicate found: ${pokemon.name}`)
count += 1
}
}
console.log('Total duplicates:', count)
}
const args = process.argv
if (args.includes('-a')) {
addOne(args[3], args[4]).catch(console.error)
}
if (args.includes('-u')) {
updateOne(args[3], args[4]).catch(console.error)
}
if (args.includes('-r')) {
let [, , , ...toDelete] = args
console.log(toDelete)
toDelete.forEach(pokemon => removeOne(pokemon))
}
if (args.includes('-c')) {
checkDuplicateHashes()
}
if (args[2] == '-h' || args[2] == '--help' || args.length < 3)
console.log(`
Commands:
-a <name> <url>: add a pokemon
-u <name> <url>: update an existing pokemon
-c: check for duplications`)