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

29 lines
921 B
JavaScript
Raw Normal View History

const logger = require('winston');
2018-07-31 00:51:01 +02:00
const db = require('../../../models');
const getOEmbedDataForChannel = (channelName, channelClaimId) => {
logger.debug('get oembed for channel:', `${channelName}:${channelClaimId}`);
2018-07-31 00:51:01 +02:00
return db.Certificate
.findOne({
where: {
name : channelName,
claimId: channelClaimId,
},
})
.then(certificateRecord => {
const certificateData = certificateRecord.dataValues;
return {
version : 1.0,
provider_name: 'Spee.ch',
provider_url : 'https://spee.ch',
type : 'link',
author_name : certificateData.name,
title : `${certificateData.name}'s channel on Spee.ch`,
author_url : `https://spee.ch/${certificateData.name}:${certificateData.claimId}`,
cache_age : 86400, // one day in seconds
};
});
};
module.exports = getOEmbedDataForChannel;