This commit is contained in:
Vylpes 2020-12-20 19:39:03 +00:00
parent cf003bea00
commit cc6b77884c
11 changed files with 5887 additions and 245 deletions

View file

@ -1,20 +0,0 @@
# Get the plugin for your editor and your
# tab settings will be set automatically.
# http://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Indentation override for all JS under lib directory
[*.js]
indent_size = 4

2
.gitattributes vendored
View file

@ -1,2 +0,0 @@
* text=auto
*.js text eol=lf

2
.gitignore vendored
View file

@ -1,2 +1,2 @@
node_modules node_modules
app.js

1
.npmignore Normal file
View file

@ -0,0 +1 @@
app.js

View file

@ -1,11 +0,0 @@
sudo: false
language: node_js
node_js:
- 4
- 5
- 6
script:
- npm test

View file

@ -1,71 +1,41 @@
'use strict'; const fetch = require('node-fetch');
const got = require('got'); sortable = [
const uniqueRandomArray = require('unique-random-array'); 'new',
const EventEmitter = require('eventemitter3'); 'hot',
'top'
]
const randomCache = {}; function randomBunny(subreddit, sortBy, cb) {
if (!sortable.includes(sortBy)) sortBy = 'hot';
function formatResult(getRandomImage) { fetch(`https://www.reddit.com/r/${subreddit}/${sortBy}.json`).then(res => {
const imageData = getRandomImage(); res.json().then(res => {
if (!imageData) { const data = res.data.children;
return; const size = data.length;
}
return `http://imgur.com/${imageData.hash}${imageData.ext.replace(/\?.*/, '')}`;
}
function storeResults(images, subreddit) { const random = getRandom(0, size - 1);
const getRandomImage = uniqueRandomArray(images);
randomCache[subreddit] = getRandomImage; const image = data[random];
return getRandomImage; let found = false;
}
function randomPuppy(subreddit) { while (!found) {
subreddit = (typeof subreddit === 'string' && subreddit.length !== 0) ? subreddit : 'puppies'; const random = getRandom(0, size - 1);
if (randomCache[subreddit]) { const image = data[random].data['url'];
return Promise.resolve(formatResult(randomCache[subreddit])); const title = data[random].data['title'];
}
return got(`https://imgur.com/r/${subreddit}/hot.json`, {json: true}) if (image.includes('.jpg')) {
.then(response => storeResults(response.body.data, subreddit)) found = true;
.then(getRandomImage => formatResult(getRandomImage)); cb(image, title);
} }
// silly feature to play with observables
function all(subreddit) {
const eventEmitter = new EventEmitter();
function emitRandomImage(subreddit) {
randomPuppy(subreddit).then(imageUrl => {
eventEmitter.emit('data', imageUrl + '#' + subreddit);
if (eventEmitter.listeners('data').length) {
setTimeout(() => emitRandomImage(subreddit), 200);
} }
}); });
} });
emitRandomImage(subreddit);
return eventEmitter;
} }
function callback(subreddit, cb) { function getRandom(min, max) {
randomPuppy(subreddit) return Math.floor((Math.random() * max) + min);
.then(url => cb(null, url))
.catch(err => cb(err));
} }
// subreddit is optional module.exports = randomBunny;
// callback support is provided for a training exercise
module.exports = (subreddit, cb) => {
if (typeof cb === 'function') {
callback(subreddit, cb);
} else if (typeof subreddit === 'function') {
callback(null, subreddit);
} else {
return randomPuppy(subreddit);
}
};
module.exports.all = all;

View file

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) Dylan Greene <dylang@gmail.com> (github.com/dylang) Copyright (c) Vylpes
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

5827
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,43 +1,25 @@
{ {
"name": "random-puppy", "name": "random-bunny",
"version": "1.1.0", "version": "0.0.1",
"description": "Get a random imgur image url, by default a puppy.", "description": "Get a random subreddit image url",
"license": "MIT", "license": "MIT",
"repository": "dylang/random-puppy", "author": "Vylpes",
"author": {
"name": "Dylan Greene",
"email": "dylang@gmail.com",
"url": "github.com/dylang"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "xo && ava",
"watch": "ava --watch"
},
"files": [
"index.js"
],
"keywords": [ "keywords": [
"puppy", "rabbit",
"doggie", "bunny",
"dog", "bun",
"imgur", "subreddit",
"reddit",
"random", "random",
"placeholder" "placeholder"
], ],
"dependencies": { "dependencies": {
"eventemitter3": "^1.2.0", "node-fetch": "^2.6.1"
"got": "^6.3.0",
"unique-random-array": "^1.0.0"
}, },
"devDependencies": { "scripts": {
"ava": "^0.14.0", "test": "echo \"No tests\""
"rx-lite": "^4.0.8",
"xo": "^0.14.0"
}, },
"xo": { "bugs": "https://gitlab.vylpes.com/Vylpes/random-bunny/-/issues",
"space": 4 "homepage": "https://gitlab.vylpes.com/Vylpes/random-bunny",
} "funding": "https://ko-fi.com/gravitysoftware"
} }

View file

@ -1,65 +1,40 @@
# random-puppy [![Build Status](https://travis-ci.org/dylang/random-puppy.svg?branch=master)](https://travis-ci.org/dylang/random-puppy) # random-bunny
> Get a random puppy image url. > Get a random image url from a subreddit of your choosing.
<img src="http://i.imgur.com/0zZ8m6B.jpg" width="300px">
## Install ## Install
``` ```
$ npm install --save random-puppy $ npm install --save random-bunny
``` ```
## Usage ## Usage
```js ```js
const randomPuppy = require('random-puppy'); const randomBunny = require('random-bunny');
randomPuppy() randomBunny('rabbits', 'new', (image, title) => {
.then(url => { console.log(title + ": " + image);
console.log(url); });
})
//=> 'http://imgur.com/IoI8uS5.jpg'
``` ```
## API ## API
### `randomPuppy()` ### `randomBunny()`
Returns a `promise` for a random puppy image url from http://imgur.com/ from https://www.reddit.com/r/puppy Returns a `url` and `title` for a random post to the `callback`. Accepts 3 arguments: `subreddit`, `sortby` ('new', 'hot', 'top'), `callback(image, title)`
### `randomPuppy(subreddit)`
Returns a `promise` for a random image url from the selected subreddit. *Warning: We cannot promise it will be a image of a puppy!*
### `randomPuppy.all(subreddit)`
Returns an `eventemitter` for getting all random images for a subreddit.
```js
const event = randomPuppy.all(subreddit);
event.on('data', url => console.log(url));
```
Or:
```js
const event = randomPuppy.all('puppies');
Observable.fromEvent(event, 'data')
.subscribe(data => {
console.log(data);
});
```
## Notes ## Notes
* Node 4 or newer. * Node 4 or newer.
* Caches results from imgur in memory. * based upon [Random Puppy](https://github.com/dylang/random-puppy)
* Created for the purpose of using in a training exercise on different ways to do async in JavaScript at [Opower](https://opower.com/).
## Links
* Discord: [Server Link](https://discord.gg/UyAhAVp)
## License ## License
MIT © [Dylan Greene](https://github.com/dylang) MIT © [Vylpes](https://gitlab.vylpes.com/Vylpes);

80
test.js
View file

@ -1,80 +0,0 @@
import test from 'ava';
import {Observable} from 'rx-lite';
import randomPuppy from './';
const imgurRegEx = /^https?:\/\/(\w+\.)?imgur.com\/[a-zA-Z0-9]+(\.[a-zA-Z]{3})?(#[a-zA-Z]*)?$/;
test('get random', async t => {
const result = await randomPuppy();
t.regex(result, imgurRegEx);
});
test.cb('use callback', t => {
t.plan(2);
randomPuppy((err, result) => {
t.falsy(err);
t.regex(result, imgurRegEx);
t.end();
});
});
test.cb('use callback and different subreddit', t => {
t.plan(2);
randomPuppy('aww', (err, result) => {
t.falsy(err);
t.regex(result, imgurRegEx);
t.end();
});
});
test('get more random', async t => {
const result1 = await randomPuppy();
t.regex(result1, imgurRegEx);
const result2 = await randomPuppy();
t.regex(result2, imgurRegEx);
const result3 = await randomPuppy();
t.regex(result3, imgurRegEx);
const result4 = await randomPuppy();
t.regex(result4, imgurRegEx);
});
test('different subreddit', async t => {
const result1 = await randomPuppy('aww');
t.regex(result1, imgurRegEx);
const result2 = await randomPuppy('aww');
t.regex(result2, imgurRegEx);
const result3 = await randomPuppy('aww');
t.regex(result3, imgurRegEx);
const result4 = await randomPuppy('aww');
t.regex(result4, imgurRegEx);
});
test('invalid subreddit', async t => {
const result1 = await randomPuppy('23rkljr2klj3');
t.falsy(result1);
const result2 = await randomPuppy('');
t.regex(result2, imgurRegEx);
const result3 = await randomPuppy({});
t.regex(result3, imgurRegEx);
const result4 = await randomPuppy(false);
t.regex(result4, imgurRegEx);
});
test('all', t => {
t.plan(10);
const puppyEmitter = randomPuppy.all('puppies');
const robotEmitter = randomPuppy.all('robots');
const puppySource = Observable.fromEvent(puppyEmitter, 'data');
const robotSource = Observable.fromEvent(robotEmitter, 'data');
const sharedSource = Observable
.merge(puppySource, robotSource)
.take(10);
sharedSource.subscribe(data => {
t.regex(data, imgurRegEx);
// console.log(data);
});
return sharedSource.toPromise();
});