84 lines
2.1 KiB
JavaScript
84 lines
2.1 KiB
JavaScript
const logger = require('winston');
|
|
const lbryUri = require('../../utils/lbryUri');
|
|
|
|
const getOEmbedDataForChannel = require('./getOEmbedDataForChannel');
|
|
const getOEmbedDataForAsset = require('./getOEmbedDataForAsset');
|
|
|
|
|
|
const parseSpeechUrl = (url) => {
|
|
// parse the request url
|
|
const componentsRegex = new RegExp(
|
|
'([^:/?#]+:\/\/)'+
|
|
'([^/?#]*)' +
|
|
'(\/)' +
|
|
'([^/?#]*)' +
|
|
'(\/)' +
|
|
'([^/?#]*)'
|
|
);
|
|
const [proto, protocol, domain, slashOne, paramOne, slashTwo, paramTwo] = componentsRegex
|
|
.exec(url)
|
|
.map(match => match || null);
|
|
|
|
logger.debug(`${protocol}, ${domain}, ${slashOne}, ${paramOne}, ${slashTwo}, ${paramTwo}`);
|
|
|
|
return {
|
|
paramOne,
|
|
paramTwo,
|
|
}
|
|
};
|
|
|
|
const getOEmbedData = (req, res) => {
|
|
|
|
const { query: { url, format } } = req;
|
|
logger.debug('req url', url);
|
|
logger.debug('req format', format);
|
|
|
|
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 => {
|
|
return res.status(200).json({
|
|
success: true,
|
|
message: 'hello',
|
|
data,
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
return res.status(404).json({
|
|
success: false,
|
|
message: error,
|
|
});
|
|
})
|
|
|
|
} else {
|
|
getOEmbedDataForAsset(channelName, channelClaimId, claimName, claimId)
|
|
.then(data => {
|
|
return res.status(200).json({
|
|
success: true,
|
|
message: 'hello',
|
|
data,
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
return res.status(404).json({
|
|
success: false,
|
|
message: error,
|
|
});
|
|
})
|
|
}
|
|
};
|
|
|
|
module.exports = getOEmbedData;
|