123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319 |
- /*global tarteaucitron, ga, Shareaholic, stLight, clicky, top, google, Typekit, FB, ferankReady, IN, stButtons, twttr, PCWidget*/
- /*jslint regexp: true, nomen: true*/
- // generic iframe
- tarteaucitron.services.iframe = {
- "key": "iframe",
- "type": "other",
- "name": "Web content",
- "uri": "",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['tac_iframe'], function (x) {
- var width = x.getAttribute("width"),
- height = x.getAttribute("height"),
- url = x.getAttribute("data-url");
- return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'iframe';
- tarteaucitron.fallback(['tac_iframe'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // addthis
- tarteaucitron.services.addthis = {
- "key": "addthis",
- "type": "social",
- "name": "AddThis",
- "uri": "https://www.addthis.com/privacy/privacy-policy#publisher-visitors",
- "needConsent": true,
- "cookies": ['__atuvc', '__atuvs'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.addthisPubId === undefined) {
- return;
- }
- if (tarteaucitron.isAjax === true) {
- window.addthis = null;
- window._adr = null;
- window._atc = null;
- window._atd = null;
- window._ate = null;
- window._atr = null;
- window._atw = null;
- }
- 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));
- }
- };
- // addtoanyfeed
- tarteaucitron.services.addtoanyfeed = {
- "key": "addtoanyfeed",
- "type": "social",
- "name": "AddToAny (feed)",
- "uri": "https://www.addtoany.com/privacy",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.addtoanyfeedUri === undefined) {
- return;
- }
- tarteaucitron.user.addtoanyfeedSubscribeLink = 'https://www.addtoany.com/subscribe?linkurl=' + tarteaucitron.user.addtoanyfeedUri;
- window.a2a_config = window.a2a_config || {};
- window.a2a_config.linkurl = tarteaucitron.user.addtoanyfeedUri;
- tarteaucitron.addScript('//static.addtoany.com/menu/feed.js');
- },
- "fallback": function () {
- "use strict";
- tarteaucitron.user.addtoanyfeedSubscribeLink = 'https://www.addtoany.com/subscribe?linkurl=' + tarteaucitron.user.addtoanyfeedUri;
- }
- };
- // addtoanyshare
- tarteaucitron.services.addtoanyshare = {
- "key": "addtoanyshare",
- "type": "social",
- "name": "AddToAny (share)",
- "uri": "https://www.addtoany.com/privacy",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['tac_addtoanyshare'], '');
- tarteaucitron.addScript('//static.addtoany.com/menu/page.js');
- },
- "fallback": function () {
- "use strict";
- var id = 'addtoanyshare';
- tarteaucitron.fallback(['tac_addtoanyshare'], tarteaucitron.engage(id));
- }
- };
- // aduptech ads
- tarteaucitron.services.aduptech_ads = {
- "key": "aduptech_ads",
- "type": "ads",
- "name": "Ad Up Technology (ads)",
- "uri": "https://www.adup-tech.com/datenschutz",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- var IDENTIFIER = "aduptech_ads",
- API_URL = "https://s.d.adup-tech.com/jsapi";
- var elements = document.getElementsByClassName(IDENTIFIER);
- if (!elements || elements.length === 0) {
- return;
- }
- tarteaucitron.fallback([IDENTIFIER], "");
- tarteaucitron.addScript(API_URL, "", function() {
- for (var i = 0; i < elements.length; i++) {
- var element = elements[i];
- if (!element.getAttribute("id")) {
- element.setAttribute("id", IDENTIFIER + Math.random().toString(36).substr(2, 9));
- }
- window.uAd.embed(element.getAttribute("id"), {
- placementKey: element.getAttribute("placementKey"),
- responsive: Boolean(element.getAttribute("responsive")),
- lazy: Boolean(element.getAttribute("lazy")),
- adtest: Boolean(element.getAttribute("test")),
- query: element.getAttribute("query") || "",
- minCpc: element.getAttribute("minCpc") || "",
- pageUrl: element.getAttribute("pageUrl") || "",
- skip: element.getAttribute("skip") || ""
- });
- }
- });
- },
- "fallback": function () {
- "use strict";
- tarteaucitron.fallback(["aduptech_ads"], tarteaucitron.engage("aduptech_ads"));
- }
- };
- // aduptech conversion
- tarteaucitron.services.aduptech_conversion = {
- "key": "aduptech_conversion",
- "type": "ads",
- "name": "Ad Up Technology (conversion)",
- "uri": "https://www.adup-tech.com/datenschutz",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- var IDENTIFIER = "aduptech_conversion",
- CONVERSION_PIXEL_BASE_URL = "https://d.adup-tech.com/campaign/conversion";
- var elements = document.getElementsByClassName(IDENTIFIER);
- if (!elements || elements.length === 0) {
- return;
- }
- tarteaucitron.fallback([IDENTIFIER], "");
- for (var i = 0; i < elements.length; i++) {
- var element = elements[i];
-
- if (!element.getAttribute("advertiserId") || !element.getAttribute("conversionCode")) {
- continue;
- }
-
- var url = CONVERSION_PIXEL_BASE_URL +
- "/" + encodeURIComponent(element.getAttribute("advertiserId")) +
- "?t=" + encodeURIComponent(element.getAttribute("conversionCode"));
-
- if (element.getAttribute("price")) {
- url += "&price=" + encodeURIComponent(element.getAttribute("price"));
- }
-
- if (element.getAttribute("quantity")) {
- url += "&quantity=" + encodeURIComponent(element.getAttribute("quantity"));
- }
-
- if (element.getAttribute("total")) {
- url += "&total=" + encodeURIComponent(element.getAttribute("total"));
- }
-
- if (element.getAttribute("orderId")) {
- url += "&order_id=" + encodeURIComponent(element.getAttribute("orderId"));
- }
-
- if (element.getAttribute("itemNumber")) {
- url += "&item_number=" + encodeURIComponent(element.getAttribute("itemNumber"));
- }
-
- if (element.getAttribute("description")) {
- url += "&description=" + encodeURIComponent(element.getAttribute("description"));
- }
- (new Image()).src = url;
- }
- }
- };
- // aduptech retargeting
- tarteaucitron.services.aduptech_retargeting = {
- "key": "aduptech_retargeting",
- "type": "ads",
- "name": "Ad Up Technology (retargeting)",
- "uri": "https://www.adup-tech.com/datenschutz",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- var IDENTIFIER = "aduptech_retargeting",
- API_URL = "https://s.d.adup-tech.com/services/retargeting.js";
- var elements = document.getElementsByClassName(IDENTIFIER);
- if (!elements || elements.length === 0) {
- return;
- }
- tarteaucitron.fallback([IDENTIFIER], "");
- window.AdUpRetargeting = function(api) {
- for (var i = 0; i < elements.length; i++) {
- var element = elements[i];
- api.init();
- api.setAccount(element.getAttribute("account"));
- if (element.getAttribute("email")) {
- api.setEmail(element.getAttribute("email"));
- } else if (element.getAttribute("hashedEmail")) {
- api.setHashedEmail(element.getAttribute("hashedEmail"));
- }
- if (element.getAttribute("product")) {
- try {
- api.setProduct(JSON.parse(element.getAttribute("product")));
- } catch (e) {
- api.setProduct(element.getAttribute("product"));
- }
- }
- if (element.getAttribute("transaction")) {
- try {
- api.setTransaction(JSON.parse(element.getAttribute("transaction")));
- } catch (e) {
- api.setTransaction(element.getAttribute("transaction"));
- }
- }
- if (element.getAttribute("demarkUser")) {
- api.setDemarkUser();
- } else if (element.getAttribute("demarkProducts")) {
- api.setDemarkProducts();
- }
- if (element.getAttribute("conversionCode")) {
- api.setConversionCode(element.getAttribute("conversionCode"));
- }
- if (element.getAttribute("device")) {
- var setter = "set" + element.getAttribute("device").charAt(0).toUpperCase() + element.getAttribute("device").slice(1);
- if (typeof api[setter] === 'function') {
- api[setter]();
- }
- }
- if (element.getAttribute("track")) {
- var tracker = "track" + element.getAttribute("track").charAt(0).toUpperCase() + element.getAttribute("track").slice(1);
- if (typeof api[tracker] === "function") {
- api[tracker]();
- } else {
- api.trackHomepage();
- }
- }
- };
- };
- tarteaucitron.addScript(API_URL);
- }
- };
- // alexa
- tarteaucitron.services.alexa = {
- "key": "alexa",
- "type": "analytic",
- "name": "Alexa",
- "uri": "https://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');
- }
- };
- // amazon
- tarteaucitron.services.amazon = {
- "key": "amazon",
- "type": "ads",
- "name": "Amazon",
- "uri": "https://www.amazon.fr/gp/help/customer/display.html?ie=UTF8&*Version*=1&*entries*=0&nodeId=201149360",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['amazon_product'], function (x) {
- var amazonId = x.getAttribute("amazonid"),
- productId = x.getAttribute("productid"),
- url = '//ws-eu.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=' + tarteaucitron.getLanguage().toUpperCase() + '&source=ss&ref=ss_til&ad_type=product_link&tracking_id=' + amazonId + '&marketplace=amazon®ion=' + tarteaucitron.getLanguage().toUpperCase() + '&placement=' + productId + '&asins=' + productId + '&show_border=true&link_opens_in_new_window=true',
- iframe = '<iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="' + url + '"></iframe>';
- return iframe;
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'amazon';
- tarteaucitron.fallback(['amazon_product'], tarteaucitron.engage(id));
- }
- };
- // calameo
- tarteaucitron.services.calameo = {
- "key": "calameo",
- "type": "video",
- "name": "Calameo",
- "uri": "https://fr.calameo.com/privacy",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['calameo-canvas'], function (x) {
- var id = x.getAttribute("data-id"),
- width = x.getAttribute("width"),
- height = x.getAttribute("height"),
- url = '//v.calameo.com/?bkcode=' + id;
- return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'calameo';
- tarteaucitron.fallback(['calameo-canvas'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // 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();
- }
- });
- }
- };
- // clicmanager
- tarteaucitron.services.clicmanager = {
- "key": "clicmanager",
- "type": "ads",
- "name": "Clicmanager",
- "uri": "http://www.clicmanager.fr/infos_legales.php",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- var uniqIds = [],
- i,
- uri;
- tarteaucitron.fallback(['clicmanager-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- return '<div id="' + uniqId + '" c="' + x.getAttribute('c') + '" s="' + x.getAttribute('s') + '" t="' + x.getAttribute('t') + '"></div>';
- });
- for (i = 0; i < uniqIds.length; i += 1) {
- uri = '//ads.clicmanager.fr/exe.php?';
- uri += 'c=' + document.getElementById(uniqIds[i]).getAttribute('c') + '&';
- uri += 's=' + document.getElementById(uniqIds[i]).getAttribute('s') + '&';
- uri += 't=' + document.getElementById(uniqIds[i]).getAttribute('t');
- tarteaucitron.makeAsync.init(uri, uniqIds[i]);
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'clicmanager';
- tarteaucitron.fallback(['clicmanager-canvas'], tarteaucitron.engage(id));
- }
- };
- // crazyegg
- tarteaucitron.services.crazyegg = {
- "key": "crazyegg",
- "type": "analytic",
- "name": "Crazy Egg",
- "uri": "https://www.crazyegg.com/privacy",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.crazyeggId === undefined) {
- return;
- }
- tarteaucitron.addScript('//script.crazyegg.com/pages/scripts/' + tarteaucitron.user.crazyeggId.substr(0, 4) + '/' + tarteaucitron.user.crazyeggId.substr(4, 4) + '.js');
- }
- };
- // criteo
- tarteaucitron.services.criteo = {
- "key": "criteo",
- "type": "ads",
- "name": "Criteo",
- "uri": "http://www.criteo.com/privacy/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- document.MAX_ct0 = '';
- var uniqIds = [],
- i,
- uri;
- tarteaucitron.fallback(['criteo-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- return '<div id="' + uniqId + '" zoneid="' + x.getAttribute('zoneid') + '"></div>';
- });
- for (i = 0; i < uniqIds.length; i += 1) {
- uri = '//cas.criteo.com/delivery/ajs.php?';
- uri += 'zoneid=' + document.getElementById(uniqIds[i]).getAttribute('zoneid');
- uri += '&nodis=1&cb=' + Math.floor(Math.random() * 99999999999);
- uri += '&loc=' + encodeURI(window.location);
- uri += (document.MAX_used !== ',') ? '&exclude=' + document.MAX_used : '';
- uri += (document.charset !== undefined ? '&charset=' + document.charset : '');
- uri += (document.characterSet !== undefined ? '&charset=' + document.characterSet : '');
- uri += (document.referrer !== undefined) ? '&referer=' + encodeURI(document.referrer) : '';
- uri += (document.context !== undefined) ? '&context=' + encodeURI(document.context) : '';
- uri += ((document.MAX_ct0 !== undefined) && (document.MAX_ct0.substring(0, 4) === 'http')) ? '&ct0=' + encodeURI(document.MAX_ct0) : '';
- uri += (document.mmm_fo !== undefined) ? '&mmm_fo=1' : '';
- tarteaucitron.makeAsync.init(uri, uniqIds[i]);
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'criteo';
- tarteaucitron.fallback(['criteo-canvas'], tarteaucitron.engage(id));
- }
- };
- // dailymotion
- tarteaucitron.services.dailymotion = {
- "key": "dailymotion",
- "type": "video",
- "name": "Dailymotion",
- "uri": "https://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,
- params = 'info=' + x.getAttribute("showinfo") + '&autoPlay=' + x.getAttribute("autoplay");
- 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 + '?' + params + '" ' + frame_width + frame_height + ' frameborder="0" allowfullscreen></iframe>';
- return video_frame;
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'dailymotion';
- tarteaucitron.fallback(['dailymotion_player'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // dating affiliation
- tarteaucitron.services.datingaffiliation = {
- "key": "datingaffiliation",
- "type": "ads",
- "name": "Dating Affiliation",
- "uri": "http://www.dating-affiliation.com/conditions-generales.php",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['datingaffiliation-canvas'], function (x) {
- var comfrom = x.getAttribute("data-comfrom"),
- r = x.getAttribute("data-r"),
- p = x.getAttribute("data-p"),
- cf0 = x.getAttribute("data-cf0"),
- langue = x.getAttribute("data-langue"),
- forward_affiliate = x.getAttribute("data-forwardAffiliate"),
- cf2 = x.getAttribute("data-cf2"),
- cfsa2 = x.getAttribute("data-cfsa2"),
- width = x.getAttribute("width"),
- height = x.getAttribute("height"),
- url = 'http://www.tools-affil2.com/rotaban/ban.php?' + comfrom;
- return '<iframe src="' + url + '&r=' + r + '&p=' + p + '&cf0=' + cf0 + '&langue=' + langue + '&forward_affiliate=' + forward_affiliate + '&cf2=' + cf2 + '&cfsa2=' + cfsa2 + '" width="' + width + '" height="' + height + '" frameborder="0" marginheight="0" marginwidth="0" scrolling="no"></iframe>';
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'datingaffiliation';
- tarteaucitron.fallback(['datingaffiliation-canvas'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // dating affiliation popup
- tarteaucitron.services.datingaffiliationpopup = {
- "key": "datingaffiliationpopup",
- "type": "ads",
- "name": "Dating Affiliation (Pop Up)",
- "uri": "http://www.dating-affiliation.com/conditions-generales.php",
- "needConsent": true,
- "cookies": ['__utma', '__utmb', '__utmc', '__utmt_Tools', '__utmv', '__utmz', '_ga', '_gat', '_gat_UA-65072040-17', '__da-pu-xflirt-ID-pc-o169'],
- "js": function () {
- "use strict";
- var uniqIds = [],
- i,
- uri;
- tarteaucitron.fallback(['datingaffiliationpopup-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- return '<div id="' + uniqId + '" uri="' + x.getAttribute('uri') + '" comfrom="' + x.getAttribute('comfrom') + '" promo="' + x.getAttribute('promo') + '" productid="' + x.getAttribute('productid') + '" submitconfig="' + x.getAttribute('submitconfig') + '" ur="' + x.getAttribute('ur') + '" brand="' + x.getAttribute('brand') + '" lang="' + x.getAttribute('lang') + '" cf0="' + x.getAttribute('cf0') + '" cf2="' + x.getAttribute('cf2') + '" subid1="' + x.getAttribute('subid1') + '" cfsa2="' + x.getAttribute('cfsa2') + '" subid2="' + x.getAttribute('subid2') + '" nicheid="' + x.getAttribute('nicheid') + '" degreid="' + x.getAttribute('degreid') + '" bt="' + x.getAttribute('bt') + '" vis="' + x.getAttribute('vis') + '" hid="' + x.getAttribute('hid') + '" snd="' + x.getAttribute('snd') + '" aabd="' + x.getAttribute('aabd') + '" aabs="' + x.getAttribute('aabs') + '"></div>';
- });
- for (i = 0; i < uniqIds.length; i += 1) {
- uri = 'http://www.promotools.biz/da/popunder/script.php?';
- uri += 'comfrom=' + document.getElementById(uniqIds[i]).getAttribute('comfrom') + '&';
- uri += 'promo=' + document.getElementById(uniqIds[i]).getAttribute('promo') + '&';
- uri += 'product_id=' + document.getElementById(uniqIds[i]).getAttribute('productid') + '&';
- uri += 'submitconfig=' + document.getElementById(uniqIds[i]).getAttribute('submitconfig') + '&';
- uri += 'ur=' + document.getElementById(uniqIds[i]).getAttribute('ur') + '&';
- uri += 'brand=' + document.getElementById(uniqIds[i]).getAttribute('brand') + '&';
- uri += 'lang=' + document.getElementById(uniqIds[i]).getAttribute('lang') + '&';
- uri += 'cf0=' + document.getElementById(uniqIds[i]).getAttribute('cf0') + '&';
- uri += 'cf2=' + document.getElementById(uniqIds[i]).getAttribute('cf2') + '&';
- uri += 'subid1=' + document.getElementById(uniqIds[i]).getAttribute('subid1') + '&';
- uri += 'cfsa2=' + document.getElementById(uniqIds[i]).getAttribute('cfsa2') + '&';
- uri += 'subid2=' + document.getElementById(uniqIds[i]).getAttribute('subid2') + '&';
- uri += 'nicheId=' + document.getElementById(uniqIds[i]).getAttribute('nicheid') + '&';
- uri += 'degreId=' + document.getElementById(uniqIds[i]).getAttribute('degreid') + '&';
- uri += 'bt=' + document.getElementById(uniqIds[i]).getAttribute('bt') + '&';
- uri += 'vis=' + document.getElementById(uniqIds[i]).getAttribute('vis') + '&';
- uri += 'hid=' + document.getElementById(uniqIds[i]).getAttribute('hid') + '&';
- uri += 'snd=' + document.getElementById(uniqIds[i]).getAttribute('snd') + '&';
- uri += 'aabd=' + document.getElementById(uniqIds[i]).getAttribute('aabd') + '&';
- uri += 'aabs=' + document.getElementById(uniqIds[i]).getAttribute('aabs');
- tarteaucitron.makeAsync.init(uri, uniqIds[i]);
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'datingaffiliationpopup';
- tarteaucitron.fallback(['datingaffiliationpopup-canvas'], 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);
- }
- }
- };
- // ekomi
- tarteaucitron.services.ekomi = {
- "key": "ekomi",
- "type": "social",
- "name": "eKomi",
- "uri": "http://www.ekomi-us.com/us/privacy/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.ekomiCertId === undefined) {
- return;
- }
- window.eKomiIntegrationConfig = [
- {certId: tarteaucitron.user.ekomiCertId}
- ];
- tarteaucitron.addScript('//connect.ekomi.de/integration_1410173009/' + tarteaucitron.user.ekomiCertId + '.js');
- }
- };
- // etracker
- tarteaucitron.services.etracker = {
- "key": "etracker",
- "type": "analytic",
- "name": "eTracker",
- "uri": "https://www.etracker.com/en/data-protection.html",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.etracker === undefined) {
- return;
- }
- tarteaucitron.addScript('//static.etracker.com/code/e.js', '_etLoader', function () {}, true, "data-secure-code", tarteaucitron.user.etracker);
- }
- };
- // facebook
- tarteaucitron.services.facebook = {
- "key": "facebook",
- "type": "social",
- "name": "Facebook",
- "uri": "https://www.facebook.com/policies/cookies/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['fb-post', 'fb-follow', 'fb-activity', 'fb-send', 'fb-share-button', 'fb-like', 'fb-video'], '');
- tarteaucitron.addScript('//connect.facebook.net/' + tarteaucitron.getLocale() + '/sdk.js#xfbml=1&version=v2.0', 'facebook-jssdk');
- if (tarteaucitron.isAjax === true) {
- if (typeof FB !== "undefined") {
- FB.XFBML.parse();
- }
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'facebook';
- tarteaucitron.fallback(['fb-post', 'fb-follow', 'fb-activity', 'fb-send', 'fb-share-button', 'fb-like', 'fb-video'], tarteaucitron.engage(id));
- }
- };
- // facebooklikebox
- tarteaucitron.services.facebooklikebox = {
- "key": "facebooklikebox",
- "type": "social",
- "name": "Facebook (like box)",
- "uri": "https://www.facebook.com/policies/cookies/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['fb-like-box', 'fb-page'], '');
- tarteaucitron.addScript('//connect.facebook.net/' + tarteaucitron.getLocale() + '/sdk.js#xfbml=1&version=v2.3', 'facebook-jssdk');
- if (tarteaucitron.isAjax === true) {
- if (typeof FB !== "undefined") {
- FB.XFBML.parse();
- }
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'facebooklikebox';
- tarteaucitron.fallback(['fb-like-box', 'fb-page'], tarteaucitron.engage(id));
- }
- };
- // facebookcomment
- tarteaucitron.services.facebookcomment = {
- "key": "facebookcomment",
- "type": "comment",
- "name": "Facebook (commentaire)",
- "uri": "https://www.facebook.com/policies/cookies/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['fb-comments'], '');
- tarteaucitron.addScript('//connect.facebook.net/' + tarteaucitron.getLocale() + '/sdk.js#xfbml=1&version=v2.0', 'facebook-jssdk');
- if (tarteaucitron.isAjax === true) {
- if (typeof FB !== "undefined") {
- FB.XFBML.parse();
- }
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'facebookcomment';
- tarteaucitron.fallback(['fb-comments'], 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 (pub)",
- "uri": "https://www.ferank.fr/respect-vie-privee/#regiepublicitaire",
- "needConsent": false,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.addScript('//static.ferank.fr/publicite.async.js');
- if (tarteaucitron.isAjax === true) {
- if (typeof ferankReady === 'function') {
- ferankReady();
- }
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'ferankpub';
- tarteaucitron.fallback(['ferank-publicite'], tarteaucitron.engage(id));
- }
- };
- // get+
- tarteaucitron.services.getplus = {
- "key": "getplus",
- "type": "analytic",
- "name": "Get+",
- "uri": "http://www.getplus.fr/Conditions-generales-de-vente_a226.html",
- "needConsent": true,
- "cookies": ['_first_pageview', '_jsuid', 'no_trackyy_' + tarteaucitron.user.getplusId, '_eventqueue'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.getplusId === undefined) {
- return;
- }
- window.webleads_site_ids = window.webleads_site_ids || [];
- window.webleads_site_ids.push(tarteaucitron.user.getplusId);
- tarteaucitron.addScript('//stats.webleads-tracker.com/js');
- }
- };
- // google+
- tarteaucitron.services.gplus = {
- "key": "gplus",
- "type": "social",
- "name": "Google+",
- "uri": "https://policies.google.com/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-plus', 'g-plusone'], tarteaucitron.engage(id));
- }
- };
- // google+ badge
- tarteaucitron.services.gplusbadge = {
- "key": "gplusbadge",
- "type": "social",
- "name": "Google+ (badge)",
- "uri": "https://policies.google.com/privacy",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.addScript('https://apis.google.com/js/platform.js');
- },
- "fallback": function () {
- "use strict";
- var id = 'gplusbadge';
- tarteaucitron.fallback(['g-page', 'g-person'], tarteaucitron.engage(id));
- }
- };
- // google adsense
- tarteaucitron.services.adsense = {
- "key": "adsense",
- "type": "ads",
- "name": "Google Adsense",
- "uri": "http://www.google.com/ads/preferences/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.addScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
- },
- "fallback": function () {
- "use strict";
- var id = 'adsense';
- tarteaucitron.fallback(['adsbygoogle'], tarteaucitron.engage(id));
- }
- };
- // google partners badge
- tarteaucitron.services.googlepartners = {
- "key": "googlepartners",
- "type": "ads",
- "name": "Google Partners Badge",
- "uri": "http://www.google.com/ads/preferences/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.addScript('https://apis.google.com/js/platform.js');
- },
- "fallback": function () {
- "use strict";
- var id = 'googlepartners';
- tarteaucitron.fallback(['g-partnersbadge'], tarteaucitron.engage(id));
- }
- };
- // google adsense search (form)
- tarteaucitron.services.adsensesearchform = {
- "key": "adsensesearchform",
- "type": "ads",
- "name": "Google Adsense Search (form)",
- "uri": "http://www.google.com/ads/preferences/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.addScript('//www.google.com/coop/cse/brand?form=cse-search-box&lang=' + tarteaucitron.getLanguage());
- }
- };
- // google adsense search (result)
- tarteaucitron.services.adsensesearchresult = {
- "key": "adsensesearchresult",
- "type": "ads",
- "name": "Google Adsense Search (result)",
- "uri": "http://www.google.com/ads/preferences/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.adsensesearchresultCx === undefined) {
- return;
- }
- tarteaucitron.addScript('//www.google.com/cse/cse.js?cx=' + tarteaucitron.user.adsensesearchresultCx);
- },
- "fallback": function () {
- "use strict";
- var id = 'adsensesearchresult';
- if (document.getElementById('gcse_searchresults')) {
- document.getElementById('gcse_searchresults').innerHTML = tarteaucitron.engage(id);
- }
- }
- };
- // googleadwordsconversion
- tarteaucitron.services.googleadwordsconversion = {
- "key": "googleadwordsconversion",
- "type": "ads",
- "name": "Google Adwords (conversion)",
- "uri": "https://www.google.com/settings/ads",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.adwordsconversionId === undefined) {
- return;
- }
- tarteaucitron.addScript('//www.googleadservices.com/pagead/conversion_async.js', '', function () {
- window.google_trackConversion({
- google_conversion_id: tarteaucitron.user.adwordsconversionId,
- google_conversion_label: tarteaucitron.user.adwordsconversionLabel,
- google_conversion_language: tarteaucitron.user.adwordsconversionLanguage,
- google_conversion_format: tarteaucitron.user.adwordsconversionFormat,
- google_conversion_color: tarteaucitron.user.adwordsconversionColor,
- google_conversion_value: tarteaucitron.user.adwordsconversionValue,
- google_conversion_currency: tarteaucitron.user.adwordsconversionCurrency,
- google_custom_params: {
- parameter1: tarteaucitron.user.adwordsconversionCustom1,
- parameter2: tarteaucitron.user.adwordsconversionCustom2
- }
- });
- });
- }
- };
- // googleadwordsremarketing
- tarteaucitron.services.googleadwordsremarketing = {
- "key": "googleadwordsremarketing",
- "type": "ads",
- "name": "Google Adwords (remarketing)",
- "uri": "https://www.google.com/settings/ads",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.adwordsremarketingId === undefined) {
- return;
- }
- tarteaucitron.addScript('//www.googleadservices.com/pagead/conversion_async.js', '', function () {
- window.google_trackConversion({
- google_conversion_id: tarteaucitron.user.adwordsremarketingId,
- google_remarketing_only: true
- });
- });
- }
- };
- // 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', '_gid', '__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('https://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();
- }
- });
- }
- };
- // google analytics
- tarteaucitron.services.gtag = {
- "key": "gtag",
- "type": "analytic",
- "name": "Google Analytics (gtag.js)",
- "uri": "https://support.google.com/analytics/answer/6004245",
- "needConsent": true,
- "cookies": (function () {
- // Add _gat_gtag_UA_XXXXXXX_XX cookie to cookies array
- var gatGtagUaCookie = '_gat_gtag_' + tarteaucitron.user.gtagUa;
- gatGtagUaCookie = gatGtagUaCookie.replace(/-/g, '_');
- return ['_ga', '_gat', '_gid', '__utma', '__utmb', '__utmc', '__utmt', '__utmz', gatGtagUaCookie];
- })(),
- "js": function () {
- "use strict";
- window.dataLayer = window.dataLayer || [];
- tarteaucitron.addScript('https://www.googletagmanager.com/gtag/js?id=' + tarteaucitron.user.gtagUa, '', function () {
- window.gtag = function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', tarteaucitron.user.gtagUa);
- if (typeof tarteaucitron.user.gtagMore === 'function') {
- tarteaucitron.user.gtagMore();
- }
- });
- }
- };
- // google maps
- tarteaucitron.services.googlemaps = {
- "key": "googlemaps",
- "type": "api",
- "name": "Google Maps",
- "uri": "http://www.google.com/ads/preferences/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- var mapOptions,
- map,
- uniqIds = [],
- i;
- if (tarteaucitron.user.mapscallback === undefined) {
- tarteaucitron.user.mapscallback = 'tac_googlemaps_callback';
- }
- // Add Google Maps libraries if any (https://developers.google.com/maps/documentation/javascript/libraries)
- var googleMapsLibraries;
- if (tarteaucitron.user.googlemapsLibraries) {
- googleMapsLibraries = '&libraries=' + tarteaucitron.user.googlemapsLibraries;
- }
- tarteaucitron.addScript('//maps.googleapis.com/maps/api/js?v=3.exp&key=' + tarteaucitron.user.googlemapsKey + '&callback='+tarteaucitron.user.mapscallback + googleMapsLibraries);
- window.tac_googlemaps_callback = function () {
- tarteaucitron.fallback(['googlemaps-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- return '<div id="' + uniqId + '" zoom="' + x.getAttribute('zoom') + '" latitude="' + x.getAttribute('latitude') + '" longitude="' + x.getAttribute('longitude') + '" style="width:' + x.offsetWidth + 'px;height:' + x.offsetHeight + 'px"></div>';
- });
- for (i = 0; i < uniqIds.length; i += 1) {
- mapOptions = {
- zoom: parseInt(document.getElementById(uniqIds[i]).getAttribute('zoom'), 10),
- center: new google.maps.LatLng(parseFloat(document.getElementById(uniqIds[i]).getAttribute('latitude'), 10), parseFloat(document.getElementById(uniqIds[i]).getAttribute('longitude'), 10))
- };
- map = new google.maps.Map(document.getElementById(uniqIds[i]), mapOptions);
- }
- };
- },
- "fallback": function () {
- "use strict";
- var id = 'googlemaps';
- tarteaucitron.fallback(['googlemaps-canvas'], tarteaucitron.engage(id));
- }
- };
- // googlemaps search
- tarteaucitron.services.googlemapssearch = {
- "key": "googlemapssearch",
- "type": "api",
- "name": "Google Maps Seard API",
- "uri": "http://www.google.com/ads/preferences/",
- "needConsent": true,
- "cookies": ['nid'],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['googlemapssearch'], function (x) {
- var width = x.getAttribute("width"),
- height = x.getAttribute("height"),
- // url = x.getAttribute("data-url");
- query = escape(x.getAttribute("data-search")),
- key = x.getAttribute("data-api-key");
-
- // return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
- return '<iframe width="' + width +'" height="' + height + '" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q='+query+'&key='+key+'" allowfullscreen></iframe> '
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'googlemapssearch';
- tarteaucitron.fallback(['googlemapssearch'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // google tag manager
- tarteaucitron.services.googletagmanager = {
- "key": "googletagmanager",
- "type": "api",
- "name": "Google Tag Manager",
- "uri": "http://www.google.com/ads/preferences/",
- "needConsent": true,
- "cookies": ['_ga', '_gat', '__utma', '__utmb', '__utmc', '__utmt', '__utmz', '__gads', '_drt_', 'FLC', 'exchange_uid', 'id', 'fc', 'rrs', 'rds', 'rv', 'uid', 'UIDR', 'UID', 'clid', 'ipinfo', 'acs'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.googletagmanagerId === undefined) {
- return;
- }
- window.dataLayer = window.dataLayer || [];
- window.dataLayer.push({
- 'gtm.start': new Date().getTime(),
- event: 'gtm.js'
- });
- tarteaucitron.addScript('//www.googletagmanager.com/gtm.js?id=' + tarteaucitron.user.googletagmanagerId);
- }
- };
- // 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');
- }
- };
- // recaptcha
- tarteaucitron.services.recaptcha = {
- "key": "recaptcha",
- "type": "api",
- "name": "reCAPTCHA",
- "uri": "http://www.google.com/policies/privacy/",
- "needConsent": true,
- "cookies": ['nid'],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['g-recaptcha'], '');
- tarteaucitron.addScript('https://www.google.com/recaptcha/api.js');
- },
- "fallback": function () {
- "use strict";
- var id = 'recaptcha';
- tarteaucitron.fallback(['g-recaptcha'], tarteaucitron.engage(id));
- }
- };
- // 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');
- if (tarteaucitron.isAjax === true) {
- if (typeof IN !== "undefined") {
- IN.parse();
- }
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'linkedin';
- tarteaucitron.fallback(['tacLinkedin'], tarteaucitron.engage(id));
- }
- };
- // mautic
- tarteaucitron.services.mautic = {
- "key": "mautic",
- "type": "analytic",
- "name": "Mautic",
- "uri": "https://www.mautic.org/privacy-policy/",
- "needConsent": true,
- "cookies": ['mtc_id', 'mtc_sid'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.mauticurl === undefined) {
- return;
- }
- window['MauticTrackingObject'] = 'mt';
- window['mt'] = window['mt'] || function() {
- (window['mt'].q = window['mt'].q || []).push(arguments);
- };
- tarteaucitron.addScript(tarteaucitron.user.mauticurl, '', function() {
- mt('send', 'pageview');
- });
- }
- };
- // microsoftcampaignanalytics
- tarteaucitron.services.microsoftcampaignanalytics = {
- "key": "microsoftcampaignanalytics",
- "type": "analytic",
- "name": "Microsoft Campaign Analytics",
- "uri": "https://privacy.microsoft.com/privacystatement/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.microsoftcampaignanalyticsUUID === undefined) {
- return;
- }
- tarteaucitron.addScript('//flex.atdmt.com/mstag/site/' + tarteaucitron.user.microsoftcampaignanalyticsUUID + '/mstag.js', 'mstag_tops', function () {
- window.mstag = {loadTag : function () {}, time : (new Date()).getTime()};
- window.mstag.loadTag("analytics", {dedup: "1", domainId: tarteaucitron.user.microsoftcampaignanalyticsdomainId, type: "1", actionid: tarteaucitron.user.microsoftcampaignanalyticsactionId});
- });
- }
- };
- // 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.fallback(['tacPinterest'], '');
- tarteaucitron.addScript('//assets.pinterest.com/js/pinit.js');
- },
- "fallback": function () {
- "use strict";
- var id = 'pinterest';
- tarteaucitron.fallback(['tacPinterest'], tarteaucitron.engage(id));
- }
- };
- // prelinker
- tarteaucitron.services.prelinker = {
- "key": "prelinker",
- "type": "ads",
- "name": "Prelinker",
- "uri": "http://www.prelinker.com/index/index/cgu/",
- "needConsent": true,
- "cookies": ['_sp_id.32f5', '_sp_ses.32f5'],
- "js": function () {
- "use strict";
- var uniqIds = [],
- i,
- uri;
- tarteaucitron.fallback(['prelinker-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- return '<div id="' + uniqId + '" siteId="' + x.getAttribute('siteId') + '" bannerId="' + x.getAttribute('bannerId') + '" defaultLanguage="' + x.getAttribute('defaultLanguage') + '" tracker="' + x.getAttribute('tracker') + '"></div>';
- });
- for (i = 0; i < uniqIds.length; i += 1) {
- uri = 'http://promo.easy-dating.org/banner/index?';
- uri += 'site_id=' + document.getElementById(uniqIds[i]).getAttribute('siteId') + '&';
- uri += 'banner_id=' + document.getElementById(uniqIds[i]).getAttribute('bannerId') + '&';
- uri += 'default_language=' + document.getElementById(uniqIds[i]).getAttribute('defaultLanguage') + '&';
- uri += 'tr4ck=' + document.getElementById(uniqIds[i]).getAttribute('trackrt');
- tarteaucitron.makeAsync.init(uri, uniqIds[i]);
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'prelinker';
- tarteaucitron.fallback(['prelinker-canvas'], tarteaucitron.engage(id));
- }
- };
- // prezi
- tarteaucitron.services.prezi = {
- "key": "prezi",
- "type": "video",
- "name": "Prezi",
- "uri": "https://prezi.com/privacy-policy/",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['prezi-canvas'], function (x) {
- var id = x.getAttribute("data-id"),
- width = x.getAttribute("width"),
- height = x.getAttribute("height"),
- url = 'https://prezi.com/embed/' + id + '/?bgcolor=ffffff&lock_to_path=0&autoplay=0&autohide_ctrls=0';
- return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'prezi';
- tarteaucitron.fallback(['prezi-canvas'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // pubdirecte
- tarteaucitron.services.pubdirecte = {
- "key": "pubdirecte",
- "type": "ads",
- "name": "Pubdirecte",
- "uri": "http://pubdirecte.com/contact.php",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- var uniqIds = [],
- i,
- uri;
- tarteaucitron.fallback(['pubdirecte-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- return '<div id="' + uniqId + '" pid="' + x.getAttribute('pid') + '" ref="' + x.getAttribute('ref') + '"></div>';
- });
- for (i = 0; i < uniqIds.length; i += 1) {
- uri = '//www.pubdirecte.com/script/banniere.php?';
- uri += 'id=' + document.getElementById(uniqIds[i]).getAttribute('pid') + '&';
- uri += 'ref=' + document.getElementById(uniqIds[i]).getAttribute('ref');
- tarteaucitron.makeAsync.init(uri, uniqIds[i]);
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'pubdirecte';
- tarteaucitron.fallback(['pubdirecte-canvas'], tarteaucitron.engage(id));
- }
- };
- // purechat
- tarteaucitron.services.purechat = {
- "key": "purechat",
- "type": "support",
- "name": "PureChat",
- "uri": "https://www.purechat.com/privacy",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.purechatId === undefined) {
- return;
- }
- tarteaucitron.addScript('//app.purechat.com/VisitorWidget/WidgetScript', '', function () {
- try {
- window.w = new PCWidget({ c: tarteaucitron.user.purechatId, f: true });
- } catch (e) {}
- });
- }
- };
- // 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));
- }
- };
- // shareasale
- tarteaucitron.services.shareasale = {
- "key": "shareasale",
- "type": "ads",
- "name": "ShareASale",
- "uri": "https://www.shareasale.com/PrivacyPolicy.pdf",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- var uniqIds = [],
- i,
- uri;
- tarteaucitron.fallback(['shareasale-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- return '<div id="' + uniqId + '" amount="' + x.getAttribute('amount') + '" tracking="' + x.getAttribute('tracking') + '" transtype="' + x.getAttribute('transtype') + '" persale="' + x.getAttribute('persale') + '" perlead="' + x.getAttribute('perlead') + '" perhit="' + x.getAttribute('perhit') + '" merchantID="' + x.getAttribute('merchantID') + '"></div>';
- });
- for (i = 0; i < uniqIds.length; i += 1) {
- uri = 'https://shareasale.com/sale.cfm?';
- uri += 'amount=' + document.getElementById(uniqIds[i]).getAttribute('amount') + '&';
- uri += 'tracking=' + document.getElementById(uniqIds[i]).getAttribute('tracking') + '&';
- uri += 'transtype=' + document.getElementById(uniqIds[i]).getAttribute('transtype') + '&';
- uri += 'persale=' + document.getElementById(uniqIds[i]).getAttribute('persale') + '&';
- uri += 'perlead=' + document.getElementById(uniqIds[i]).getAttribute('perlead') + '&';
- uri += 'perhit=' + document.getElementById(uniqIds[i]).getAttribute('perhit') + '&';
- uri += 'merchantID=' + document.getElementById(uniqIds[i]).getAttribute('merchantID');
- document.getElementById(uniqIds[i]).innerHTML = '<img src=\'' + uri + '\' width=\'1\' height=\'1\' />';
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'shareasale';
- tarteaucitron.fallback(['shareasale-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});
- });
- if (tarteaucitron.isAjax === true) {
- if (typeof stButtons !== "undefined") {
- stButtons.locateElements();
- }
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'sharethis';
- tarteaucitron.fallback(['tacSharethis'], tarteaucitron.engage(id));
- }
- };
- // slideshare
- tarteaucitron.services.slideshare = {
- "key": "slideshare",
- "type": "video",
- "name": "SlideShare",
- "uri": "https://www.linkedin.com/legal/privacy-policy",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['slideshare-canvas'], function (x) {
- var id = x.getAttribute("data-id"),
- width = x.getAttribute("width"),
- height = x.getAttribute("height"),
- url = '//www.slideshare.net/slideshow/embed_code/' + id;
- return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'slideshare';
- tarteaucitron.fallback(['slideshare-canvas'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // statcounter
- tarteaucitron.services.statcounter = {
- "key": "statcounter",
- "type": "analytic",
- "name": "StatCounter",
- "uri": "https://fr.statcounter.com/about/legal/#privacy",
- "needConsent": true,
- "cookies": ['sc_is_visitor_unique'],
- "js": function () {
- "use strict";
- var uniqIds = [],
- i,
- uri = '//statcounter.com/counter/counter.js';
- tarteaucitron.fallback(['statcounter-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- return '<div id="' + uniqId + '"></div>';
- });
- for (i = 0; i < uniqIds.length; i += 1) {
- tarteaucitron.makeAsync.init(uri, uniqIds[i]);
- }
- },
- "fallback": function () {
- "use strict";
- var id = 'statcounter';
- tarteaucitron.fallback(['statcounter-canvas'], tarteaucitron.engage(id));
- }
- };
- // timelinejs
- tarteaucitron.services.timelinejs = {
- "key": "timelinejs",
- "type": "api",
- "name": "Timeline JS",
- "uri": "http://timeline.knightlab.com/#help",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['timelinejs-canvas'], function (x) {
- var spreadsheet_id = x.getAttribute("spreadsheet_id"),
- width = x.getAttribute("width"),
- height = x.getAttribute("height"),
- lang = x.getAttribute("lang_2_letter"),
- font = x.getAttribute("font"),
- map = x.getAttribute("map"),
- start_at_end = x.getAttribute("start_at_end"),
- hash_bookmark = x.getAttribute("hash_bookmark"),
- start_at_slide = x.getAttribute("start_at_slide"),
- start_zoom = x.getAttribute("start_zoom"),
- url = '//cdn.knightlab.com/libs/timeline/latest/embed/index.html?source=' + spreadsheet_id + '&font=' + font + '&maptype=' + map + '&lang=' + lang + '&start_at_end=' + start_at_end + '&hash_bookmark=' + hash_bookmark + '&start_at_slide=' + start_at_slide + '&start_zoom_adjust=' + start_zoom + '&height=' + height;
- return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" allowtransparency allowfullscreen></iframe>';
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'timelinejs';
- tarteaucitron.fallback(['timelinejs-canvas'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // typekit
- tarteaucitron.services.typekit = {
- "key": "typekit",
- "type": "api",
- "name": "Typekit (adobe)",
- "uri": "http://www.adobe.com/fr/privacy.html",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.typekitId === undefined) {
- return;
- }
- tarteaucitron.addScript('//use.typekit.net/' + tarteaucitron.user.typekitId + '.js', '', function () {
- try {
- Typekit.load();
- } catch (e) {}
- });
- }
- };
- // twenga
- tarteaucitron.services.twenga = {
- "key": "twenga",
- "type": "ads",
- "name": "Twenga",
- "uri": "http://www.twenga.com/privacy.php",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.twengaId === undefined || tarteaucitron.user.twengaLocale === undefined) {
- return;
- }
- tarteaucitron.addScript('//tracker.twenga.' + tarteaucitron.user.twengaLocale + '/st/tracker_' + tarteaucitron.user.twengaId + '.js');
- }
- };
- // 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));
- }
- };
- // twitter embed
- tarteaucitron.services.twitterembed = {
- "key": "twitterembed",
- "type": "social",
- "name": "Twitter (cards)",
- "uri": "https://support.twitter.com/articles/20170514",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- var uniqIds = [],
- i,
- e,
- html;
- tarteaucitron.fallback(['twitterembed-canvas'], function (x) {
- var uniqId = '_' + Math.random().toString(36).substr(2, 9);
- uniqIds.push(uniqId);
- html = '<div id="' + uniqId + '" ';
- html += 'tweetid="' + x.getAttribute('tweetid') + '" ';
- html += 'theme="' + x.getAttribute('theme') + '" ';
- html += 'cards="' + x.getAttribute('cards') + '" ';
- html += 'conversation="' + x.getAttribute('conversation') + '" ';
- html += 'data-width="' + x.getAttribute('data-width') + '" ';
- html += 'data-align="' + x.getAttribute('data-align') + '" ';
- html += '></div>';
- return html;
- });
- tarteaucitron.addScript('//platform.twitter.com/widgets.js', 'twitter-wjs', function () {
- for (i = 0; i < uniqIds.length; i += 1) {
- e = document.getElementById(uniqIds[i]);
- twttr.widgets.createTweet(
- e.getAttribute('tweetid'),
- e,
- {
- theme: e.getAttribute('theme'),
- cards: e.getAttribute('cards'),
- conversation: e.getAttribute('conversation'),
- lang: tarteaucitron.getLanguage(),
- dnt: true,
- width: e.getAttribute('data-width'),
- align: e.getAttribute('data-align')
- }
- );
- }
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'twitterembed';
- tarteaucitron.fallback(['twitterembed-canvas'], function (elem) {
- elem.style.width = elem.getAttribute('data-width') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // twitter timeline
- tarteaucitron.services.twittertimeline = {
- "key": "twittertimeline",
- "type": "social",
- "name": "Twitter (timelines)",
- "uri": "https://support.twitter.com/articles/20170514",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['tacTwitterTimelines'], '');
- tarteaucitron.addScript('//platform.twitter.com/widgets.js', 'twitter-wjs');
- },
- "fallback": function () {
- "use strict";
- var id = 'twittertimeline';
- tarteaucitron.fallback(['tacTwitterTimelines'], 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'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // visualrevenue
- tarteaucitron.services.visualrevenue = {
- "key": "visualrevenue",
- "type": "analytic",
- "name": "VisualRevenue",
- "uri": "http://www.outbrain.com/legal/privacy-713/",
- "needConsent": true,
- "cookies": ['__vrf', '__vrm', '__vrl', '__vry', '__vru', '__vrid', '__vrz'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.visualrevenueId === undefined) {
- return;
- }
- window._vrq = window._vrq || [];
- window._vrq.push(['id', tarteaucitron.user.visualrevenueId]);
- window._vrq.push(['automate', true]);
- window._vrq.push(['track', function () {}]);
- tarteaucitron.addScript('http://a.visualrevenue.com/vrs.js');
- }
- };
- // vshop
- tarteaucitron.services.vshop = {
- "key": "vshop",
- "type": "ads",
- "name": "vShop",
- "uri": "http://vshop.fr/privacy-policy",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['vcashW'], '');
- tarteaucitron.addScript('//vshop.fr/js/w.js');
- },
- "fallback": function () {
- "use strict";
- var id = 'vshop';
- tarteaucitron.fallback(['vcashW'], tarteaucitron.engage(id));
- }
- };
- // wysistat
- tarteaucitron.services.wysistat = {
- "key": "wysistat",
- "type": "analytic",
- "name": "Wysistat",
- "uri": "http://wysistat.net/contact/",
- "needConsent": true,
- "cookies": ['Wysistat'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.wysistat === undefined) {
- return;
- }
- tarteaucitron.addScript('//www.wysistat.com/statistique.js', '', function () {
- window.stat(tarteaucitron.user.wysistat.cli, tarteaucitron.user.wysistat.frm, tarteaucitron.user.wysistat.prm, tarteaucitron.user.wysistat.ce, tarteaucitron.user.wysistat.page, tarteaucitron.user.wysistat.roi, tarteaucitron.user.wysistat.prof, tarteaucitron.user.wysistat.cpt);
- });
- }
- };
- // 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,
- params = 'theme=' + x.getAttribute("theme") + '&rel=' + x.getAttribute("rel") + '&controls=' + x.getAttribute("controls") + '&showinfo=' + x.getAttribute("showinfo") + '&autoplay=' + x.getAttribute("autoplay");
- 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-nocookie.com/embed/' + video_id + '?' + params + '" frameborder="0"></iframe>';
- return video_frame;
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'youtube';
- tarteaucitron.fallback(['youtube_player'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // youtube playlist
- tarteaucitron.services.youtubeplaylist = {
- "key": "youtubeplaylist",
- "type": "video",
- "name": "YouTube (playlist)",
- "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_playlist_player'], function (x) {
- var playlist_id = x.getAttribute("playlistID"),
- video_width = x.getAttribute("width"),
- frame_width = 'width=',
- video_height = x.getAttribute("height"),
- frame_height = 'height=',
- video_frame,
- params = 'theme=' + x.getAttribute("theme") + '&rel=' + x.getAttribute("rel") + '&controls=' + x.getAttribute("controls") + '&showinfo=' + x.getAttribute("showinfo") + '&autoplay=' + x.getAttribute("autoplay");
- if (playlist_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-nocookie.com/embed/videoseries?list=' + playlist_id + '&' + params + '" frameborder="0"></iframe>';
- return video_frame;
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'youtubeplaylist';
- tarteaucitron.fallback(['youtube_playlist_player'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return 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);
- }
- };
- // xiti smartTag
- tarteaucitron.services.xiti_smarttag = {
- "key": "xiti_smarttag",
- "type": "analytic",
- "name": "Xiti (SmartTag)",
- "uri": "https://www.atinternet.com/societe/protection-des-donnees/",
- "needConsent": true,
- "cookies": ["atidvisitor", "atreman", "atredir", "atsession", "atuserid", "attvtreman", "attvtsession"],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.xiti_smarttagLocalPath !== undefined) {
- tarteaucitron.addScript(tarteaucitron.user.xiti_smarttagLocalPath, 'smarttag', null, null, "onload", "addTracker();");
- } else {
- var xitiSmarttagId = tarteaucitron.user.xiti_smarttagSiteId;
- if (xitiSmarttagId === undefined) {
- return;
- }
- tarteaucitron.addScript('//tag.aticdn.net/' + xitiSmarttagId + '/smarttag.js', 'smarttag', null, null, "onload", "addTracker();");
- }
- }
- };
- // facebook pixel
- tarteaucitron.services.facebookpixel = {
- "key": "facebookpixel",
- "type": "ads",
- "name": "Facebook Pixel",
- "uri": "https://fr-fr.facebook.com/business/help/www/651294705016616",
- "needConsent": true,
- "cookies": ['datr', 'fr', 'reg_ext_ref', 'reg_fb_gate', 'reg_fb_ref', 'sb', 'wd', 'x-src'],
- "js": function () {
- "use strict";
- var n;
- if(window.fbq)return;
- n=window.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)} ;
- if(!window._fbq)window._fbq=n;
- n.push=n;
- n.loaded=!0;
- n.version='2.0';
- n.queue=[];
- tarteaucitron.addScript('https://connect.facebook.net/en_US/fbevents.js');
- fbq('init', tarteaucitron.user.facebookpixelId);
- fbq('track', 'PageView');
- if (typeof tarteaucitron.user.facebookpixelMore === 'function') {
- tarteaucitron.user.facebookpixelMore();
- }
- }
- };
- //Issuu
- tarteaucitron.services.issuu = {
- "key": "issuu",
- "type": "other",
- "name": "Issuu",
- "uri": "https://issuu.com/legal/privacy",
- "needConsent": true,
- "cookies": ['__qca', 'iutk', 'mc'],
- "js": function () {
- "use strict";
- tarteaucitron.fallback(['issuu_player'], function (x) {
- var issuu_id = x.getAttribute("issuuID"),
- issuu_width = x.getAttribute("width"),
- frame_width = 'width=',
- issuu_height = x.getAttribute("height"),
- frame_height = 'height=',
- issuu_frame;
- if (issuu_id === undefined) {
- return "";
- }
- if (issuu_width !== undefined) {
- frame_width += '"' + issuu_width + '" ';
- } else {
- frame_width += '"" ';
- }
- if (issuu_height !== undefined) {
- frame_height += '"' + issuu_height + '" ';
- } else {
- frame_height += '"" ';
- }
- issuu_frame = '<iframe type="text/html" ' + frame_width + frame_height + ' src="//e.issuu.com/embed.html#' + issuu_id + '" frameborder="0"></iframe>';
- return issuu_frame;
- });
- },
- "fallback": function () {
- "use strict";
- var id = 'issuu';
- tarteaucitron.fallback(['issuu_player'], function (elem) {
- elem.style.width = elem.getAttribute('width') + 'px';
- elem.style.height = elem.getAttribute('height') + 'px';
- return tarteaucitron.engage(id);
- });
- }
- };
- // webmecanik
- tarteaucitron.services.webmecanik = {
- "key": "webmecanik",
- "type": "analytic",
- "name": "Webmecanik",
- "uri": "https://webmecanik.com/tos",
- "needConsent": true,
- "cookies": ['mtc_id', 'mtc_sid'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.webmecanikurl === undefined) {
- return;
- }
- window['WebmecanikTrackingObject'] = 'mt';
- window['mt'] = window['mt'] || function() {
- (window['mt'].q = window['mt'].q || []).push(arguments);
- };
- tarteaucitron.addScript(tarteaucitron.user.webmecanikurl, '', function() {
- mt('send', 'pageview');
- });
- }
- };
- // google analytics multiple
- tarteaucitron.services.multiplegtag = {
- "key": "multiplegtag",
- "type": "analytic",
- "name": "Google Analytics (gtag.js)",
- "uri": "https://support.google.com/analytics/answer/6004245",
- "needConsent": true,
- "cookies": (function () {
-
- var cookies = ['_ga', '_gat', '_gid', '__utma', '__utmb', '__utmc', '__utmt', '__utmz'];
- if (tarteaucitron.user.multiplegtagUa !== undefined) {
- tarteaucitron.user.multiplegtagUa.forEach(function(ua) {
- cookies.push('_gat_gtag_' + ua.replace(/-/g, '_'));
- });
- }
- return cookies;
- })(),
- "js": function () {
- "use strict";
- window.dataLayer = window.dataLayer || [];
- tarteaucitron.user.multiplegtagUa.forEach(function(ua) {
- tarteaucitron.addScript('https://www.googletagmanager.com/gtag/js?id=' + ua, '', function () {
- window.gtag = function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', ua);
- });
- });
- }
- };
- // Koban
- tarteaucitron.services.koban = {
- "key": "koban",
- "type": "analytic",
- "name": "Koban",
- "uri": "https://koban.cloud/tos",
- "needConsent": true,
- "cookies": ['kbntrk'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.kobanurl === undefined) {
- return;
- }
- if (tarteaucitron.user.kobanapi === undefined) {
- return;
- }
- window.KobanObject = 'kb';
- window.kb = window.kb || function() {
- window.kb.q = window.kb.q || [];
- window.kb.q.push(arguments);
- };
- window.kb.l = new Date();
- kb('reg', tarteaucitron.user.kobanapi);
- tarteaucitron.addScript(tarteaucitron.user.kobanurl, '', function() {
- });
- }
- };
- // matomo
- /*
- 1. Set the following variable before the initialization :
- tarteaucitron.user.matomoId = YOUR_SITE_ID_FROM_MATOMO;
- tarteaucitron.user.matomoHost = "YOUR_MATOMO_URL"; //eg: https://stat.mydomain.com/
- 2. Push the service :
- (tarteaucitron.job = tarteaucitron.job || []).push('matomo');
- 3. HTML
- You don't need to add any html code, if the service is autorized, the javascript is added. otherwise no.
- */
- tarteaucitron.services.matomo = {
- "key": "matomo",
- "type": "analytic",
- "name": "Matomo (formerly known as Piwik)",
- "uri": "https://matomo.org/faq/general/faq_146/",
- "needConsent": true,
- "cookies": ['_pk_ref', '_pk_cvar', '_pk_id', '_pk_ses', '_pk_hsr', 'piwik_ignore', '_pk_uid'],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.matomoId === undefined) {
- return;
- }
- window._paq = window._paq || [];
- window._paq.push(["setSiteId", tarteaucitron.user.matomoId]);
- window._paq.push(["setTrackerUrl", tarteaucitron.user.matomoHost + "piwik.php"]);
- window._paq.push(["setDoNotTrack", 1]);
- window._paq.push(["trackPageView"]);
- window._paq.push(["setIgnoreClasses", ["no-tracking", "colorbox"]]);
- window._paq.push(["enableLinkTracking"]);
- tarteaucitron.addScript(tarteaucitron.user.matomoHost + 'piwik.js', '', '', true, 'defer', true);
- }
- };
- // Hotjar
- /*
- 1. Set the following variable before the initialization :
- tarteaucitron.user.hotjarId = YOUR_WEBSITE_ID;
- tarteaucitron.user.HotjarSv = XXXX; // Can be found in your website tracking code as "hjvs=XXXX"
- 2. Push the service :
- (tarteaucitron.job = tarteaucitron.job || []).push('hotjar');
- 3. HTML
- You don't need to add any html code, if the service is autorized, the javascript is added. otherwise no.
- */
- tarteaucitron.services.hotjar = {
- "key": "hotjar",
- "type": "analytic",
- "name": "Hotjar",
- "uri": "https://help.hotjar.com/hc/en-us/sections/115003204947-What-is-Hotjar-",
- "needConsent": true,
- "cookies": [],
- "js": function () {
- "use strict";
- if (tarteaucitron.user.hotjarId === undefined || tarteaucitron.user.HotjarSv === undefined) {
- return;
- }
- window.hj = window.hj || function() {
- (window.hj.q = window.hj.q || []).push(arguments)
- };
- window._hjSettings = {
- hjid: tarteaucitron.user.hotjarId,
- hjsv: tarteaucitron.user.HotjarSv
- };
- var uri = 'https://static.hotjar.com/c/hotjar-';
- var extension = '.js?sv=';
- tarteaucitron.addScript(uri + window._hjSettings.hjid + extension + window._hjSettings.hjsv);
- }
- };
|