seance/index.js
2019-10-11 16:25:52 +05:30

49 lines
1.2 KiB
JavaScript
Executable file

#! /usr/bin/env node
const program = require('commander');
const {
fetchFromMedium,
pushToGhost,
mediumToGhost,
generateUserData,
} = require ('./functions');
program
.version('1.0.0-dev')
.description('pull posts from Medium and add them to a Ghost blog');
program.command('fetch-medium <post_url>')
.alias('fetch')
.description('fetch a Medium post')
.action((post_url) => {
fetchFromMedium(post_url)
.then((post) => {
console.info(`"${post.title}" fetched successfully`)
console.debug(post)
})
});
program.command('push-ghost <file>')
.alias('push')
.description('push a downloaded Medium post to Ghost')
.action((file) => {
pushToGhost(file);
});
program.command('medium-to-ghost <mediumUrl>')
.alias('import')
.description('copy a Medium file over to Ghost')
.action((mediumUrl) => {
pushToGhost(mediumUrl);
});
program.command('create-user <username> <email>')
.description('create ghost-import.json to import Medium user to Ghost')
.action(async (username, email) => {
const jsonOut = await generateUserData(username, email);
console.log(await jsonOut);
});
program.parse(process.argv)