568 lines
18 KiB
JavaScript
568 lines
18 KiB
JavaScript
/*global tarteaucitron, ga, Shareaholic, stLight, clicky, top*/
|
|
/*jslint regexp: true, nomen: true*/
|
|
|
|
// addthis
|
|
tarteaucitron.services.addthis = {
|
|
"key": "addthis",
|
|
"type": "social",
|
|
"name": "AddThis",
|
|
"uri": "http://www.addthis.com/privacy/privacy-policy#publisher-visitors",
|
|
"needConsent": true,
|
|
"cookies": ['__atuvc', '__atuvs'],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.addthisPubId === undefined) {
|
|
return;
|
|
}
|
|
tarteaucitron.fallback(['addthis_sharing_toolbox'], '');
|
|
tarteaucitron.addScript('//s7.addthis.com/js/300/addthis_widget.js#pubid=' + tarteaucitron.user.addthisPubId);
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'addthis';
|
|
tarteaucitron.fallback(['addthis_sharing_toolbox'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// alexa
|
|
tarteaucitron.services.alexa = {
|
|
"key": "alexa",
|
|
"type": "analytic",
|
|
"name": "Alexa",
|
|
"uri": "http://www.alexa.com/help/privacy",
|
|
"needConsent": true,
|
|
"cookies": ['__asc', '__auc'],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.alexaAccountID === undefined) {
|
|
return;
|
|
}
|
|
window._atrk_opts = {
|
|
atrk_acct: tarteaucitron.user.alexaAccountID,
|
|
domain: window.location.hostname.match(/[^\.]*\.[^.]*$/)[0],
|
|
dynamic: true
|
|
};
|
|
tarteaucitron.addScript('https://d31qbv1cthcecs.cloudfront.net/atrk.js');
|
|
}
|
|
};
|
|
|
|
// clicky
|
|
tarteaucitron.services.clicky = {
|
|
"key": "clicky",
|
|
"type": "analytic",
|
|
"name": "Clicky",
|
|
"uri": "https://clicky.com/terms",
|
|
"needConsent": true,
|
|
"cookies": ['_jsuid', '_eventqueue', '_referrer_og', '_utm_og', '_first_pageview', 'clicky_olark', 'no_trackyy_' + tarteaucitron.user.clickyId, 'unpoco_' + tarteaucitron.user.clickyId, 'heatmaps_g2g_' + tarteaucitron.user.clickyId],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.clickyId === undefined) {
|
|
return;
|
|
}
|
|
tarteaucitron.addScript('//static.getclicky.com/js', '', function () {
|
|
if (typeof clicky.init === 'function') {
|
|
clicky.init(tarteaucitron.user.clickyId);
|
|
}
|
|
if (typeof tarteaucitron.user.clickyMore === 'function') {
|
|
tarteaucitron.user.clickyMore();
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
// dailymotion
|
|
tarteaucitron.services.dailymotion = {
|
|
"key": "dailymotion",
|
|
"type": "video",
|
|
"name": "Dailymotion",
|
|
"uri": "http://www.dailymotion.com/legal/privacy",
|
|
"needConsent": true,
|
|
"cookies": ['ts', 'dmvk', 'hist', 'v1st', 's_vi'],
|
|
"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 id = 'dailymotion';
|
|
tarteaucitron.fallback(['dailymotion_player'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// disqus
|
|
tarteaucitron.services.disqus = {
|
|
"key": "disqus",
|
|
"type": "comment",
|
|
"name": "Disqus",
|
|
"uri": "https://help.disqus.com/customer/portal/articles/466259-privacy-policy",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.disqusShortname === undefined) {
|
|
return;
|
|
}
|
|
tarteaucitron.addScript('//' + tarteaucitron.user.disqusShortname + '.disqus.com/embed.js');
|
|
tarteaucitron.addScript('//' + tarteaucitron.user.disqusShortname + '.disqus.com/count.js');
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'disqus';
|
|
|
|
if (document.getElementById('disqus_thread')) {
|
|
document.getElementById('disqus_thread').innerHTML = tarteaucitron.engage(id);
|
|
}
|
|
}
|
|
};
|
|
|
|
// facebook
|
|
tarteaucitron.services.facebook = {
|
|
"key": "facebook",
|
|
"type": "social",
|
|
"name": "Facebook",
|
|
"uri": "https://www.facebook.com/help/cookies/",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.fallback(['fb-post', 'fb-follow', 'fb-comments', 'fb-activity', 'fb-like-box', 'fb-send', 'fb-share-button', 'fb-like'], '');
|
|
tarteaucitron.addScript('//connect.facebook.net/' + tarteaucitron.getLocale() + '/sdk.js#xfbml=1&version=v2.0', 'facebook-jssdk');
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'facebook';
|
|
tarteaucitron.fallback(['fb-post', 'fb-follow', 'fb-comments', 'fb-activity', 'fb-like-box', 'fb-send', 'fb-share-button', 'fb-like'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// ferank
|
|
tarteaucitron.services.ferank = {
|
|
"key": "ferank",
|
|
"type": "analytic",
|
|
"name": "FERank",
|
|
"uri": "https://www.ferank.fr/respect-vie-privee/#mesureaudience",
|
|
"needConsent": false,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.addScript('//static.ferank.fr/pixel.js', '', function () {
|
|
if (typeof tarteaucitron.user.ferankMore === 'function') {
|
|
tarteaucitron.user.ferankMore();
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
// ferank pub
|
|
tarteaucitron.services.ferankpub = {
|
|
"key": "ferankpub",
|
|
"type": "ads",
|
|
"name": "FERank",
|
|
"uri": "https://www.ferank.fr/respect-vie-privee/#regiepublicitaire",
|
|
"needConsent": false,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.addScript('//static.ferank.fr/publicite.async.js');
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'ferankpub';
|
|
tarteaucitron.fallback(['ferank-publicite'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// google+
|
|
tarteaucitron.services.gplus = {
|
|
"key": "gplus",
|
|
"type": "social",
|
|
"name": "Google+",
|
|
"uri": "http://www.google.fr/intl/policies/privacy/",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.addScript('https://apis.google.com/js/platform.js');
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'gplus';
|
|
tarteaucitron.fallback(['g-page', 'g-plus', 'g-plusone'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// google adsense
|
|
tarteaucitron.services.adsense = {
|
|
"key": "adsense",
|
|
"type": "ads",
|
|
"name": "Adsense (Google)",
|
|
"uri": "http://www.google.com/ads/preferences/",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.addScript('//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'adsense';
|
|
tarteaucitron.fallback(['adsbygoogle'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// google analytics (old)
|
|
tarteaucitron.services.gajs = {
|
|
"key": "gajs",
|
|
"type": "analytic",
|
|
"name": "Google Analytics (ga.js)",
|
|
"uri": "https://support.google.com/analytics/answer/6004245",
|
|
"needConsent": true,
|
|
"cookies": ['_ga', '_gat', '__utma', '__utmb', '__utmc', '__utmt', '__utmz'],
|
|
"js": function () {
|
|
"use strict";
|
|
window._gaq = window._gaq || [];
|
|
window._gaq.push(['_setAccount', tarteaucitron.user.gajsUa]);
|
|
window._gaq.push(['_trackPageview']);
|
|
|
|
tarteaucitron.addScript('//www.google-analytics.com/ga.js', '', function () {
|
|
if (typeof tarteaucitron.user.gajsMore === 'function') {
|
|
tarteaucitron.user.gajsMore();
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
// google analytics
|
|
tarteaucitron.services.analytics = {
|
|
"key": "analytics",
|
|
"type": "analytic",
|
|
"name": "Google Analytics (universal)",
|
|
"uri": "https://support.google.com/analytics/answer/6004245",
|
|
"needConsent": true,
|
|
"cookies": ['_ga', '_gat', '__utma', '__utmb', '__utmc', '__utmt', '__utmz'],
|
|
"js": function () {
|
|
"use strict";
|
|
window.GoogleAnalyticsObject = 'ga';
|
|
window.ga = window.ga || function () {
|
|
window.ga.q = window.ga.q || [];
|
|
window.ga.q.push(arguments);
|
|
};
|
|
window.ga.l = new Date();
|
|
|
|
tarteaucitron.addScript('//www.google-analytics.com/analytics.js', '', function () {
|
|
ga('create', tarteaucitron.user.analyticsUa, {'cookieExpires': 34128000});
|
|
ga('send', 'pageview');
|
|
if (typeof tarteaucitron.user.analyticsMore === 'function') {
|
|
tarteaucitron.user.analyticsMore();
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
// jsapi
|
|
tarteaucitron.services.jsapi = {
|
|
"key": "jsapi",
|
|
"type": "api",
|
|
"name": "Google jsapi",
|
|
"uri": "http://www.google.com/policies/privacy/",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.addScript('//www.google.com/jsapi');
|
|
}
|
|
};
|
|
|
|
// linkedin
|
|
tarteaucitron.services.linkedin = {
|
|
"key": "linkedin",
|
|
"type": "social",
|
|
"name": "Linkedin",
|
|
"uri": "https://www.linkedin.com/legal/cookie_policy",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.fallback(['tacLinkedin'], '');
|
|
tarteaucitron.addScript('//platform.linkedin.com/in.js');
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'linkedin';
|
|
tarteaucitron.fallback(['tacLinkedin'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// pinterest
|
|
tarteaucitron.services.pinterest = {
|
|
"key": "pinterest",
|
|
"type": "social",
|
|
"name": "Pinterest",
|
|
"uri": "https://about.pinterest.com/privacy-policy",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.addScript('//assets.pinterest.com/js/pinit.js');
|
|
}
|
|
};
|
|
|
|
// shareaholic
|
|
tarteaucitron.services.shareaholic = {
|
|
"key": "shareaholic",
|
|
"type": "social",
|
|
"name": "Shareaholic",
|
|
"uri": "https://shareaholic.com/privacy/choices",
|
|
"needConsent": true,
|
|
"cookies": ['__utma', '__utmb', '__utmc', '__utmz', '__utmt_Shareaholic%20Pageviews'],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.shareaholicSiteId === undefined) {
|
|
return;
|
|
}
|
|
|
|
tarteaucitron.fallback(['shareaholic-canvas'], '');
|
|
tarteaucitron.addScript('//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js', '', function () {
|
|
try {
|
|
Shareaholic.init(tarteaucitron.user.shareaholicSiteId);
|
|
} catch (e) {}
|
|
});
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'shareaholic';
|
|
tarteaucitron.fallback(['shareaholic-canvas'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// sharethis
|
|
tarteaucitron.services.sharethis = {
|
|
"key": "sharethis",
|
|
"type": "social",
|
|
"name": "ShareThis",
|
|
"uri": "http://www.sharethis.com/legal/privacy/",
|
|
"needConsent": true,
|
|
"cookies": ['__unam'],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.sharethisPublisher === undefined) {
|
|
return;
|
|
}
|
|
var switchTo5x = true,
|
|
uri = ('https:' === document.location.protocol ? 'https://ws' : 'http://w') + '.sharethis.com/button/buttons.js';
|
|
|
|
tarteaucitron.fallback(['tacSharethis'], '');
|
|
tarteaucitron.addScript(uri, '', function () {
|
|
stLight.options({publisher: tarteaucitron.user.sharethisPublisher, doNotHash: false, doNotCopy: false, hashAddressBar: false});
|
|
});
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'sharethis';
|
|
tarteaucitron.fallback(['tacSharethis'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// twitter
|
|
tarteaucitron.services.twitter = {
|
|
"key": "twitter",
|
|
"type": "social",
|
|
"name": "Twitter",
|
|
"uri": "https://support.twitter.com/articles/20170514",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.fallback(['tacTwitter'], '');
|
|
tarteaucitron.addScript('//platform.twitter.com/widgets.js', 'twitter-wjs');
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'twitter';
|
|
tarteaucitron.fallback(['tacTwitter'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// user voice
|
|
tarteaucitron.services.uservoice = {
|
|
"key": "uservoice",
|
|
"type": "support",
|
|
"name": "UserVoice",
|
|
"uri": "https://www.uservoice.com/privacy/",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.userVoiceApi === undefined) {
|
|
return;
|
|
}
|
|
tarteaucitron.addScript('//widget.uservoice.com/' + tarteaucitron.user.userVoiceApi + '.js');
|
|
}
|
|
};
|
|
|
|
// vimeo
|
|
tarteaucitron.services.vimeo = {
|
|
"key": "vimeo",
|
|
"type": "video",
|
|
"name": "Vimeo",
|
|
"uri": "http://vimeo.com/privacy",
|
|
"needConsent": true,
|
|
"cookies": ['__utmt_player', '__utma', '__utmb', '__utmc', '__utmv', 'vuid', '__utmz', 'player'],
|
|
"js": function () {
|
|
"use strict";
|
|
tarteaucitron.fallback(['vimeo_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="//player.vimeo.com/video/' + video_id + '" ' + frame_width + frame_height + ' frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
|
|
return video_frame;
|
|
});
|
|
},
|
|
"fallback": function () {
|
|
"use strict";
|
|
var id = 'vimeo';
|
|
tarteaucitron.fallback(['vimeo_player'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// xiti
|
|
tarteaucitron.services.xiti = {
|
|
"key": "xiti",
|
|
"type": "analytic",
|
|
"name": "Xiti",
|
|
"uri": "http://www.atinternet.com/politique-du-respect-de-la-vie-privee/",
|
|
"needConsent": true,
|
|
"cookies": [],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.xitiId === undefined) {
|
|
return;
|
|
}
|
|
var Xt_param = 's=' + tarteaucitron.user.xitiId + '&p=',
|
|
Xt_r,
|
|
Xt_h,
|
|
Xt_i,
|
|
Xt_s,
|
|
div = document.createElement('div');
|
|
try {
|
|
Xt_r = top.document.referrer;
|
|
} catch (e) {
|
|
Xt_r = document.referrer;
|
|
}
|
|
Xt_h = new Date();
|
|
Xt_i = '<img style="display:none" border="0" alt="" ';
|
|
Xt_i += 'src="http://logv3.xiti.com/hit.xiti?' + Xt_param;
|
|
Xt_i += '&hl=' + Xt_h.getHours() + 'x' + Xt_h.getMinutes() + 'x' + Xt_h.getSeconds();
|
|
if (parseFloat(navigator.appVersion) >= 4) {
|
|
Xt_s = screen;
|
|
Xt_i += '&r=' + Xt_s.width + 'x' + Xt_s.height + 'x' + Xt_s.pixelDepth + 'x' + Xt_s.colorDepth;
|
|
}
|
|
|
|
div.innerHTML = Xt_i + '&ref=' + Xt_r.replace(/[<>"]/g, '').replace(/&/g, '$') + '" title="Internet Audience">';
|
|
document.getElementsByTagName('body')[0].appendChild(div.firstChild);
|
|
|
|
if (typeof tarteaucitron.user.xitiMore === 'function') {
|
|
tarteaucitron.user.xitiMore();
|
|
}
|
|
}
|
|
};
|
|
|
|
// youtube
|
|
tarteaucitron.services.youtube = {
|
|
"key": "youtube",
|
|
"type": "video",
|
|
"name": "YouTube",
|
|
"uri": "https://www.google.fr/intl/fr/policies/privacy/",
|
|
"needConsent": true,
|
|
"cookies": ['VISITOR_INFO1_LIVE', 'YSC', 'PREF', 'GEUP'],
|
|
"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 id = 'youtube';
|
|
tarteaucitron.fallback(['youtube_player'], tarteaucitron.engage(id));
|
|
}
|
|
};
|
|
|
|
// zopim
|
|
tarteaucitron.services.zopim = {
|
|
"key": "zopim",
|
|
"type": "support",
|
|
"name": "Zopim",
|
|
"uri": "https://www.zopim.com/privacy",
|
|
"needConsent": true,
|
|
"cookies": ['__zlcid', '__zprivacy'],
|
|
"js": function () {
|
|
"use strict";
|
|
if (tarteaucitron.user.zopimID === undefined) {
|
|
return;
|
|
}
|
|
tarteaucitron.addScript('//v2.zopim.com/?' + tarteaucitron.user.zopimID);
|
|
}
|
|
};
|