Add Dailymotion and Vimeo w/ work of @vtoubiana
This commit is contained in:
parent
a293aebc3e
commit
7969ab3168
|
|
@ -80,6 +80,49 @@ tarteaucitron.services.clicky = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// dailymotion
|
||||||
|
tarteaucitron.services.dailymotion = {
|
||||||
|
"key": "dailymotion",
|
||||||
|
"type": "social",
|
||||||
|
"name": "Dailymotion",
|
||||||
|
"uri": "http://www.dailymotion.com/legal/privacy",
|
||||||
|
"needConsent": true,
|
||||||
|
"js": function () {
|
||||||
|
"use strict";
|
||||||
|
tarteaucitron.fallback(['dailymotion_player'], function (x) {
|
||||||
|
var video_id = x.getAttribute("videoID"),
|
||||||
|
video_width = x.getAttribute("width"),
|
||||||
|
frame_width = 'width=',
|
||||||
|
video_height = x.getAttribute("height"),
|
||||||
|
frame_height = 'height=',
|
||||||
|
video_frame;
|
||||||
|
|
||||||
|
if (video_id === undefined) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
if (video_width !== undefined) {
|
||||||
|
frame_width += '"' + video_width + '" ';
|
||||||
|
} else {
|
||||||
|
frame_width += '"" ';
|
||||||
|
}
|
||||||
|
if (video_height !== undefined) {
|
||||||
|
frame_height += '"' + video_height + '" ';
|
||||||
|
} else {
|
||||||
|
frame_height += '"" ';
|
||||||
|
}
|
||||||
|
video_frame = '<iframe src="//www.dailymotion.com/embed/video/' + video_id + '" ' + frame_width + frame_height + ' frameborder="0" allowfullscreen></iframe>';
|
||||||
|
return video_frame;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
"fallback": function () {
|
||||||
|
"use strict";
|
||||||
|
var cookies = ['ts', 'dmvk', 'hist', 'v1st', 's_vi'],
|
||||||
|
id = 'dailymotion';
|
||||||
|
tarteaucitron.cookie.purge(cookies);
|
||||||
|
tarteaucitron.fallback(['dailymotion_player'], tarteaucitron.engage(id));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// disqus
|
// disqus
|
||||||
tarteaucitron.services.disqus = {
|
tarteaucitron.services.disqus = {
|
||||||
"key": "disqus",
|
"key": "disqus",
|
||||||
|
|
@ -361,16 +404,16 @@ tarteaucitron.services.twitter = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// youtube
|
// vimeo
|
||||||
tarteaucitron.services.youtube = {
|
tarteaucitron.services.vimeo = {
|
||||||
"key": "youtube",
|
"key": "vimeo",
|
||||||
"type": "social",
|
"type": "social",
|
||||||
"name": "YouTube",
|
"name": "Viméo",
|
||||||
"uri": "https://www.google.fr/intl/fr/policies/privacy/",
|
"uri": "http://vimeo.com/privacy",
|
||||||
"needConsent": true,
|
"needConsent": true,
|
||||||
"js": function () {
|
"js": function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
tarteaucitron.fallback(['youtube_player'], function (x) {
|
tarteaucitron.fallback(['vimeo_player'], function (x) {
|
||||||
var video_id = x.getAttribute("videoID"),
|
var video_id = x.getAttribute("videoID"),
|
||||||
video_width = x.getAttribute("width"),
|
video_width = x.getAttribute("width"),
|
||||||
frame_width = 'width=',
|
frame_width = 'width=',
|
||||||
|
|
@ -391,16 +434,16 @@ tarteaucitron.services.youtube = {
|
||||||
} else {
|
} else {
|
||||||
frame_height += '"" ';
|
frame_height += '"" ';
|
||||||
}
|
}
|
||||||
video_frame = '<iframe id="ytplayer" type="text/html" ' + frame_width + frame_height + '" src="//www.youtube.com/embed/' + video_id + ' " frameborder="0" />';
|
video_frame = '<iframe src="//player.vimeo.com/video/' + video_id + '" ' + frame_width + frame_height + ' frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
|
||||||
return video_frame;
|
return video_frame;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
"fallback": function () {
|
"fallback": function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
var cookies = ['VISITOR_INFO1_LIVE', 'YSC', 'PREF', 'GEUP'],
|
var cookies = ['__utmt_player', '__utma', '__utmb', '__utmc', '__utmv', 'vuid', '__utmz', 'player'],
|
||||||
id = 'youtube';
|
id = 'vimeo';
|
||||||
tarteaucitron.cookie.purge(cookies);
|
tarteaucitron.cookie.purge(cookies);
|
||||||
tarteaucitron.fallback(['youtube_player'], tarteaucitron.engage(id));
|
tarteaucitron.fallback(['vimeo_player'], tarteaucitron.engage(id));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -450,6 +493,49 @@ tarteaucitron.services.xiti = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// youtube
|
||||||
|
tarteaucitron.services.youtube = {
|
||||||
|
"key": "youtube",
|
||||||
|
"type": "social",
|
||||||
|
"name": "YouTube",
|
||||||
|
"uri": "https://www.google.fr/intl/fr/policies/privacy/",
|
||||||
|
"needConsent": true,
|
||||||
|
"js": function () {
|
||||||
|
"use strict";
|
||||||
|
tarteaucitron.fallback(['youtube_player'], function (x) {
|
||||||
|
var video_id = x.getAttribute("videoID"),
|
||||||
|
video_width = x.getAttribute("width"),
|
||||||
|
frame_width = 'width=',
|
||||||
|
video_height = x.getAttribute("height"),
|
||||||
|
frame_height = 'height=',
|
||||||
|
video_frame;
|
||||||
|
|
||||||
|
if (video_id === undefined) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
if (video_width !== undefined) {
|
||||||
|
frame_width += '"' + video_width + '" ';
|
||||||
|
} else {
|
||||||
|
frame_width += '"" ';
|
||||||
|
}
|
||||||
|
if (video_height !== undefined) {
|
||||||
|
frame_height += '"' + video_height + '" ';
|
||||||
|
} else {
|
||||||
|
frame_height += '"" ';
|
||||||
|
}
|
||||||
|
video_frame = '<iframe type="text/html" ' + frame_width + frame_height + ' src="//www.youtube.com/embed/' + video_id + ' " frameborder="0"></iframe>';
|
||||||
|
return video_frame;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
"fallback": function () {
|
||||||
|
"use strict";
|
||||||
|
var cookies = ['VISITOR_INFO1_LIVE', 'YSC', 'PREF', 'GEUP'],
|
||||||
|
id = 'youtube';
|
||||||
|
tarteaucitron.cookie.purge(cookies);
|
||||||
|
tarteaucitron.fallback(['youtube_player'], tarteaucitron.engage(id));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// zopim
|
// zopim
|
||||||
tarteaucitron.services.zopim = {
|
tarteaucitron.services.zopim = {
|
||||||
"key": "zopim",
|
"key": "zopim",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue