Add itunes proxy back :(

This commit is contained in:
Jonathan Cremin 2016-10-23 21:48:44 +01:00
parent 7bb0497ff4
commit b5cb3e78ab
2 changed files with 16 additions and 0 deletions

2
app.js
View file

@ -14,6 +14,7 @@ import index from './routes/index';
import recent from './routes/recent';
import search from './routes/search';
import share from './routes/share';
import itunesProxy from './routes/itunes-proxy';
const debug = debuglog('match.audio');
@ -38,6 +39,7 @@ app.use(route.get('/', index));
app.use(route.get('/recent', recent));
app.use(route.post('/search', search));
app.use(route.get('/:service/:type/:id.:format?', share));
app.use(route.get('/itunes/(.*)', itunesProxy));
if (!module.parent) {
app.listen(process.env.PORT || 3000, () => {

14
routes/itunes-proxy.js Normal file
View file

@ -0,0 +1,14 @@
import { parse } from 'url';
import request from 'superagent';
export default function* (next) {
const url = `http://${this.request.url.substr(8)}`;
const parsed = parse(url);
if (parsed.host.match(/mzstatic\.com/)) {
const proxyResponse = yield request.get(url);
this.set(proxyResponse.headers);
this.body = proxyResponse.body;
} else {
yield next;
}
}