-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.js
More file actions
85 lines (74 loc) · 1.98 KB
/
cli.js
File metadata and controls
85 lines (74 loc) · 1.98 KB
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
const program = require("commander");
const chalk = require("chalk");
const fs = require("fs");
const ejs = require("ejs");
const packageJson = require("./package.json");
const deckApi = require("./deck");
const configs = require("./config");
const version = packageJson.version;
async function processingDeck(deckId) {
return Promise.resolve(
await deckApi.retrieveDeck(deckId, configs.lang, false)
);
}
const importDeck = function(deckId, options) {
console.info(
chalk.blue(
`Import deck: ${deckId} with ${
options.cockatrice ? "cocatrice" : "standard"
} output`
)
);
if (options.cockatrice) {
processingDeck(deckId).then(deck => {
const expansion = configs.expansion.find(
e => e.code === deck.data.expansion
);
const jsons = "./json/" + expansion.lang + "/" + expansion.name + "/";
let n = 0;
let c = "";
const xmlCards = [];
deck.data.cards.forEach(cardId => {
const card = JSON.parse(
fs.readFileSync(jsons + cardId + ".json").toString()
);
if (c !== card.card_title && n > 0) {
xmlCards.push({ number: n, name: c });
n = 0;
}
c = card.card_title;
n++;
});
xmlCards.push({ number: n, name: c });
ejs.renderFile(
"./decks/deck.ejs",
{
id: deck.data.id,
name: deck.data.name,
cards: xmlCards
},
{ filename: deckId },
function(err, str) {
if (!err) console.info(chalk.blue(str));
}
);
});
} else {
processingDeck(deckId).then(deck =>
console.info(chalk.blue(JSON.stringify(deck)))
);
}
};
program
.version(version)
.usage("[command] [options]")
.allowUnknownOption();
program
.command("import <deck>")
.description("Import deck")
.option("-c, --cockatrice", "Cockatrice output")
.action(importDeck);
program.parse(process.argv);
if (!process.argv.slice(2).length) {
program.outputHelp();
}