spee.ch/server/controllers/api/oEmbed/index.js

69 lines
1.9 KiB
JavaScript
Raw Normal View History

2018-07-28 00:56:56 +02:00
const logger = require('winston');
const lbryUri = require('../../utils/lbryUri');
const getOEmbedDataForChannel = require('./getOEmbedDataForChannel');
const getOEmbedDataForAsset = require('./getOEmbedDataForAsset');
2018-07-31 01:50:36 +02:00
const parseSpeechUrl = require('./parseSpeechUrl');
2018-07-28 03:40:57 +02:00
const getOEmbedData = (req, res) => {
2018-07-28 03:40:57 +02:00
const { query: { url, format } } = req;
logger.debug('req url', url);
logger.debug('req format', format);
2018-07-28 03:40:57 +02:00
const { paramOne, paramTwo } = parseSpeechUrl(url);
let claimName, isChannel, channelName, channelClaimId, claimId;
if (paramTwo) {
({ isChannel, channelName, channelClaimId, claimId } = lbryUri.parseIdentifier(paramOne));
({ claimName } = lbryUri.parseClaim(paramTwo));
} else {
({ isChannel, channelName, channelClaimId } = lbryUri.parseIdentifier(paramOne));
if (!isChannel ) {
({ claimName } = lbryUri.parseClaim(paramOne));
}
}
if (isChannel && !paramTwo) {
getOEmbedDataForChannel(channelName, channelClaimId)
.then(data => {
2018-07-30 23:50:10 +02:00
if (format === 'xml'){
return res.status(503).json({
success: false,
message: 'xml format is not implemented yet',
})
} else {
return res.status(200).json(data);
}
})
.catch((error) => {
return res.status(404).json({
success: false,
message: error,
});
})
} else {
getOEmbedDataForAsset(channelName, channelClaimId, claimName, claimId)
.then(data => {
2018-07-30 23:50:10 +02:00
if (format === 'xml'){
return res.status(503).json({
success: false,
message: 'xml format is not implemented yet',
})
} else {
return res.status(200).json(data);
}
})
.catch((error) => {
return res.status(404).json({
success: false,
message: error,
});
})
}
2018-07-28 00:56:56 +02:00
};
module.exports = getOEmbedData;