mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 22:03:08 +02:00
17 lines
349 B
TypeScript
17 lines
349 B
TypeScript
|
import * as express from 'express';
|
||
|
import * as request from 'request';
|
||
|
const xml2json = require('xml2json');
|
||
|
|
||
|
module.exports = (req: express.Request, res: express.Response) => {
|
||
|
const url: string = req.body.url;
|
||
|
|
||
|
request(url, (err, response, xml) => {
|
||
|
if (err) {
|
||
|
console.error(err);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
res.send(xml2json.toJson(xml));
|
||
|
});
|
||
|
};
|