fossasia/loklak_webclient

View on GitHub
iframely/plugins/domains/reuters.com.js

Summary

Maintainability
A
1 hr
Test Coverage
module.exports = {
  
    re: [
        /^https?:\/\/www\.reuters\.com\/video\/\d{4}\/\d{2}\/\d{2}\/[a-zA-Z0-9\-]+\?videoId=(\d+)/i
    ],

    mixins: ["*"],

    getLink: function (urlMatch) {

        return {
            href: "http://www.reuters.com/assets/iframe/yovideo?videoId=" + urlMatch[1],            
            rel: CONFIG.R.player,
            type: CONFIG.T.text_html,
            width: 512,
            height: 288
        }
    },

    tests: [
        "http://www.reuters.com/video/2014/01/10/russian-cossacks-patrol-sochi-prior-to-o?videoId=276394330"
    ]
};