This commit is contained in:
The Cashew Trader 2023-02-04 06:34:48 +00:00 committed by GitHub
commit 9ac9dc1d97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 39 additions and 0 deletions

View file

@ -265,6 +265,22 @@ Following extensions can be used to automatically redirect Quora URLs to Quetre:
- [digitalblossom/alternative-frontends](https://github.com/digitalblossom/alternative-frontends): contains other alternative front-ends.
- [mendel5/alternative-front-ends](https://github.com/mendel5/alternative-front-ends): a bit more general, containing alternative clients too.
### Development Helpers
Running any one of:
- `/fetchers/fetcher.js`
- `/fetchers/getAnswers.js`
- `/fetchers/getProfile.js`
- `/fetchers/getTopic.js`
with `node` and an argument will log the returned data to console. For example:
- `node fetchers/fetcher.js What-is-the-Linux-Web-Hosting`
---
## Credits

View file

@ -5,6 +5,7 @@
import * as cheerio from 'cheerio';
import getAxiosInstance from '../utils/getAxiosInstance.js';
import AppError from '../utils/AppError.js';
import { basename } from '../utils/misc.js'
////////////////////////////////////////////////////////
// FUNCTION
@ -62,3 +63,7 @@ const fetcher = async (
// EXPORTS
////////////////////////////////////////////////////////
export default fetcher;
if (process.argv.length == 3 && basename(process.argv[1]) == 'fetcher.js') {
console.log(await fetcher(process.argv[2]))
}

View file

@ -5,6 +5,7 @@
import AppError from '../utils/AppError.js';
import { quetrefy } from '../utils/urlModifiers.js';
import fetcher from './fetcher.js';
import { basename } from '../utils/misc.js'
////////////////////////////////////////////////////////
// FUNCTION
@ -91,3 +92,7 @@ const getAnswers = async (slug, lang) => {
// EXPORTS
////////////////////////////////////////////////////////
export default getAnswers;
if (process.argv.length == 3 && basename(process.argv[1]) == 'getAnswers.js') {
console.log(JSON.stringify(await getAnswers(process.argv[2])))
}

View file

@ -4,6 +4,7 @@
import AppError from '../utils/AppError.js';
import { quetrefy } from '../utils/urlModifiers.js';
import fetcher from './fetcher.js';
import { basename } from '../utils/misc.js'
////////////////////////////////////////////////////////
// HELPER FUNCTIONS
@ -219,3 +220,7 @@ const getProfile = async (slug, lang) => {
// EXPORTS
////////////////////////////////////////////////////////
export default getProfile;
if (process.argv.length == 3 && basename(process.argv[1]) == 'getProfile.js') {
console.log(await getProfile(process.argv[2]))
}

View file

@ -4,6 +4,7 @@
import AppError from '../utils/AppError.js';
import { quetrefy } from '../utils/urlModifiers.js';
import fetcher from './fetcher.js';
import { basename } from '../utils/misc.js'
////////////////////////////////////////////////////////
// FUNCTION
@ -63,3 +64,7 @@ const getTopic = async (slug, lang) => {
// EXPORTS
////////////////////////////////////////////////////////
export default getTopic;
if (process.argv.length == 3 && basename(process.argv[1]) == 'getTopic.js') {
console.log(await getTopic(process.argv[2]))
}

3
utils/misc.js Normal file
View file

@ -0,0 +1,3 @@
export const basename = (path) => {
return path.split('/').reverse()[0];
}