Skip to content

Commit b2e0c15

Browse files
committed
replace dailymail.co.uk with dailymail.com
1 parent 81825d4 commit b2e0c15

5 files changed

Lines changed: 42 additions & 32 deletions

File tree

plugins/domains/dailymail.co.uk/mol.im.js

Lines changed: 0 additions & 26 deletions
This file was deleted.

plugins/domains/dailymail.co.uk/dailymail.embeddedvideo.js renamed to plugins/domains/dailymail.com/dailymail.embeddedvideo.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export default {
22

33
// direct "share" links to players from DailyMail articles. They end with #v-1467332342001
44
re: [
5-
/^https?:\/\/www\.dailymail\.co\.uk\/[^#]+#(v\-\d+)$/i
5+
/^https?:\/\/www\.dailymail\.com\/[^#]+#(v\-\d+)$/i
66
],
77

88
provides: 'dailymailVideoID',
@@ -19,7 +19,7 @@ export default {
1919
tests: [{
2020
noFeeds: true
2121
},
22-
"https://www.dailymail.co.uk/lifestyle/article-11847441/Watch-new-Duke-Edinburgh-introduces-Sophie-duchess-time.html#v-6755232965847660921",
23-
"https://www.dailymail.co.uk/news/article-3556177/Was-MH17-shot-Ukrainian-fighter-jet-BBC-documentary-claims-Boeing-777-targeted-plane.html#v-8296301435444282732"
22+
"https://www.dailymail.com/lifestyle/article-11847441/Watch-new-Duke-Edinburgh-introduces-Sophie-duchess-time.html#v-6755232965847660921",
23+
"https://www.dailymail.com/news/article-3556177/Was-MH17-shot-Ukrainian-fighter-jet-BBC-documentary-claims-Boeing-777-targeted-plane.html#v-8296301435444282732",
2424
]
2525
};

plugins/domains/dailymail.co.uk/dailymail.galleryvideo.js renamed to plugins/domains/dailymail.com/dailymail.galleryvideo.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default {
22

33
re: [
4-
/^https?:\/\/www\.dailymail\.co\.uk\/video\/\w+\/video\-(\d+)\//i
4+
/^https?:\/\/www\.dailymail\.com\/video\/\w+\/video\-(\d+)\//i
55
],
66

77
provides: 'dailymailVideoID',
@@ -20,6 +20,7 @@ export default {
2020
tests: [{
2121
noFeeds: true
2222
},
23-
"https://www.dailymail.co.uk/video/news/video-1284607/Heart-rending-scenes-child-marriage-ceremonies-India.html"
23+
"https://www.dailymail.co.uk/video/news/video-1284607/Heart-rending-scenes-child-marriage-ceremonies-India.html",
24+
"https://www.dailymail.com/video/royals/video-3639009/Video-Celebrations-late-Queens-100th-birthday.html"
2425
]
2526
};

plugins/domains/dailymail.co.uk/dailymail.video.js renamed to plugins/domains/dailymail.com/dailymail.video.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export default {
4545
tests: [{
4646
noFeeds: true
4747
},
48-
"https://www.dailymail.co.uk/video/news/video-2895505/SVB-members-sets-bank-culture-apart-others.html"
48+
"https://www.dailymail.co.uk/video/news/video-2895505/SVB-members-sets-bank-culture-apart-others.html",
49+
"https://www.dailymail.com/video/news/video-3639123/Trump-says-expects-bomb-Iran-ceasefire-deal-ends.html"
4950
]
5051
};
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
export default {
2+
3+
// #v-1467332342001 isn't passed by Dailymail URL shortener
4+
// dailymail.co.uk 301 redirects to dailymail.com, stripping the hash fragment
5+
re: [
6+
/^https:\/\/mol\.im\/a\/\d+(#v\-\d+)/i,
7+
/^https?:\/\/www\.dailymail\.co\.uk\/[^#]+(#v\-\d+)/i
8+
],
9+
10+
getLink: function(urlMatch, headers, cb) {
11+
if (headers.location) {
12+
return cb(headers.location
13+
&& !/#/.test(headers.location)
14+
? {
15+
redirect: headers.location + urlMatch[1]
16+
} : null
17+
);
18+
} else {
19+
return cb();
20+
}
21+
},
22+
23+
getData: function(options) {
24+
options.exposeStatusCode = true;
25+
},
26+
27+
tests: [{skipMethods: ['getData', 'getLink']},
28+
"https://mol.im/a/9343193#v-4206468436429980814",
29+
"https://www.dailymail.co.uk/lifestyle/article-11847441/Watch-new-Duke-Edinburgh-introduces-Sophie-duchess-time.html#v-6755232965847660921",
30+
31+
"https://mol.im/a/15740741#v-6420720503543215467", // getLinks error is expected - no social-share embedUrl, falls back to generic parsers
32+
"https://www.dailymail.co.uk/news/article-3556177/Was-MH17-shot-Ukrainian-fighter-jet-BBC-documentary-claims-Boeing-777-targeted-plane.html#v-8296301435444282732" // getLinks error is expected - no social-share embedUrl, falls back to generic parsers
33+
]
34+
};

0 commit comments

Comments
 (0)