From 93520453be161f7dc72024a4c10e24b147eb84d8 Mon Sep 17 00:00:00 2001 From: Ivan Paramonau Date: Tue, 17 Dec 2024 08:32:50 -0500 Subject: [PATCH] domains: cnn addition videos no longer provides embed codes --- plugins/domains/cnn.com.js | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 plugins/domains/cnn.com.js diff --git a/plugins/domains/cnn.com.js b/plugins/domains/cnn.com.js deleted file mode 100644 index db27981e1..000000000 --- a/plugins/domains/cnn.com.js +++ /dev/null @@ -1,36 +0,0 @@ -export default { - - re: [ - /^https?:\/\/(www|edition)?\.?cnn\.com\/videos?\//i, - ], - - mixins: [ - "*" - ], - - getLink: function(og, urlMatch) { - - if (!/video/.test(og.type) || !og.url) { - return; - } - - var path = ((og.video && og.video.url) || og.url).replace (/^https?:\/\/www\.cnn\.com\/videos?(\/#\/video)?\//i, ""); - - return { - href: "//fave.api.cnn.io/v1/fav/?customer=cnn&env=prod&video=" + path, - accept: CONFIG.T.text_html, - rel: CONFIG.R.player, - "aspect-ratio": 416 / 234 - }; - }, - - tests: [{ - noFeeds: true - }, - "http://www.cnn.com/videos/world/2015/06/05/orig-200-pound-ripped-kangaroo-crushes-metal-video.cnn", - "http://edition.cnn.com/videos/tv/2015/10/30/spc-the-circuit-felipe-massa-versus-felipe-nasr.cnn", - "http://edition.cnn.com/video/shows/anthony-bourdain-parts-unknown/season-3/mexico/index.html", - "http://www.cnn.com/video/shows/anthony-bourdain-parts-unknown/season-2/copenhagen/index.html", - "http://www.cnn.com/videos/health/2017/03/14/iceland-genes-disease-research-health-sje-mobile-orig.cnn" - ] -}; \ No newline at end of file