Add itunes proxy back :(
This commit is contained in:
parent
7bb0497ff4
commit
b5cb3e78ab
2 changed files with 16 additions and 0 deletions
14
routes/itunes-proxy.js
Normal file
14
routes/itunes-proxy.js
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue