tarteaucitron.services.js 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319
  1. /*global tarteaucitron, ga, Shareaholic, stLight, clicky, top, google, Typekit, FB, ferankReady, IN, stButtons, twttr, PCWidget*/
  2. /*jslint regexp: true, nomen: true*/
  3. // generic iframe
  4. tarteaucitron.services.iframe = {
  5. "key": "iframe",
  6. "type": "other",
  7. "name": "Web content",
  8. "uri": "",
  9. "needConsent": true,
  10. "cookies": [],
  11. "js": function () {
  12. "use strict";
  13. tarteaucitron.fallback(['tac_iframe'], function (x) {
  14. var width = x.getAttribute("width"),
  15. height = x.getAttribute("height"),
  16. url = x.getAttribute("data-url");
  17. return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
  18. });
  19. },
  20. "fallback": function () {
  21. "use strict";
  22. var id = 'iframe';
  23. tarteaucitron.fallback(['tac_iframe'], function (elem) {
  24. elem.style.width = elem.getAttribute('width') + 'px';
  25. elem.style.height = elem.getAttribute('height') + 'px';
  26. return tarteaucitron.engage(id);
  27. });
  28. }
  29. };
  30. // addthis
  31. tarteaucitron.services.addthis = {
  32. "key": "addthis",
  33. "type": "social",
  34. "name": "AddThis",
  35. "uri": "https://www.addthis.com/privacy/privacy-policy#publisher-visitors",
  36. "needConsent": true,
  37. "cookies": ['__atuvc', '__atuvs'],
  38. "js": function () {
  39. "use strict";
  40. if (tarteaucitron.user.addthisPubId === undefined) {
  41. return;
  42. }
  43. if (tarteaucitron.isAjax === true) {
  44. window.addthis = null;
  45. window._adr = null;
  46. window._atc = null;
  47. window._atd = null;
  48. window._ate = null;
  49. window._atr = null;
  50. window._atw = null;
  51. }
  52. tarteaucitron.fallback(['addthis_sharing_toolbox'], '');
  53. tarteaucitron.addScript('//s7.addthis.com/js/300/addthis_widget.js#pubid=' + tarteaucitron.user.addthisPubId);
  54. },
  55. "fallback": function () {
  56. "use strict";
  57. var id = 'addthis';
  58. tarteaucitron.fallback(['addthis_sharing_toolbox'], tarteaucitron.engage(id));
  59. }
  60. };
  61. // addtoanyfeed
  62. tarteaucitron.services.addtoanyfeed = {
  63. "key": "addtoanyfeed",
  64. "type": "social",
  65. "name": "AddToAny (feed)",
  66. "uri": "https://www.addtoany.com/privacy",
  67. "needConsent": true,
  68. "cookies": [],
  69. "js": function () {
  70. "use strict";
  71. if (tarteaucitron.user.addtoanyfeedUri === undefined) {
  72. return;
  73. }
  74. tarteaucitron.user.addtoanyfeedSubscribeLink = 'https://www.addtoany.com/subscribe?linkurl=' + tarteaucitron.user.addtoanyfeedUri;
  75. window.a2a_config = window.a2a_config || {};
  76. window.a2a_config.linkurl = tarteaucitron.user.addtoanyfeedUri;
  77. tarteaucitron.addScript('//static.addtoany.com/menu/feed.js');
  78. },
  79. "fallback": function () {
  80. "use strict";
  81. tarteaucitron.user.addtoanyfeedSubscribeLink = 'https://www.addtoany.com/subscribe?linkurl=' + tarteaucitron.user.addtoanyfeedUri;
  82. }
  83. };
  84. // addtoanyshare
  85. tarteaucitron.services.addtoanyshare = {
  86. "key": "addtoanyshare",
  87. "type": "social",
  88. "name": "AddToAny (share)",
  89. "uri": "https://www.addtoany.com/privacy",
  90. "needConsent": true,
  91. "cookies": [],
  92. "js": function () {
  93. "use strict";
  94. tarteaucitron.fallback(['tac_addtoanyshare'], '');
  95. tarteaucitron.addScript('//static.addtoany.com/menu/page.js');
  96. },
  97. "fallback": function () {
  98. "use strict";
  99. var id = 'addtoanyshare';
  100. tarteaucitron.fallback(['tac_addtoanyshare'], tarteaucitron.engage(id));
  101. }
  102. };
  103. // aduptech ads
  104. tarteaucitron.services.aduptech_ads = {
  105. "key": "aduptech_ads",
  106. "type": "ads",
  107. "name": "Ad Up Technology (ads)",
  108. "uri": "https://www.adup-tech.com/datenschutz",
  109. "needConsent": true,
  110. "cookies": [],
  111. "js": function () {
  112. "use strict";
  113. var IDENTIFIER = "aduptech_ads",
  114. API_URL = "https://s.d.adup-tech.com/jsapi";
  115. var elements = document.getElementsByClassName(IDENTIFIER);
  116. if (!elements || elements.length === 0) {
  117. return;
  118. }
  119. tarteaucitron.fallback([IDENTIFIER], "");
  120. tarteaucitron.addScript(API_URL, "", function() {
  121. for (var i = 0; i < elements.length; i++) {
  122. var element = elements[i];
  123. if (!element.getAttribute("id")) {
  124. element.setAttribute("id", IDENTIFIER + Math.random().toString(36).substr(2, 9));
  125. }
  126. window.uAd.embed(element.getAttribute("id"), {
  127. placementKey: element.getAttribute("placementKey"),
  128. responsive: Boolean(element.getAttribute("responsive")),
  129. lazy: Boolean(element.getAttribute("lazy")),
  130. adtest: Boolean(element.getAttribute("test")),
  131. query: element.getAttribute("query") || "",
  132. minCpc: element.getAttribute("minCpc") || "",
  133. pageUrl: element.getAttribute("pageUrl") || "",
  134. skip: element.getAttribute("skip") || ""
  135. });
  136. }
  137. });
  138. },
  139. "fallback": function () {
  140. "use strict";
  141. tarteaucitron.fallback(["aduptech_ads"], tarteaucitron.engage("aduptech_ads"));
  142. }
  143. };
  144. // aduptech conversion
  145. tarteaucitron.services.aduptech_conversion = {
  146. "key": "aduptech_conversion",
  147. "type": "ads",
  148. "name": "Ad Up Technology (conversion)",
  149. "uri": "https://www.adup-tech.com/datenschutz",
  150. "needConsent": true,
  151. "cookies": [],
  152. "js": function () {
  153. "use strict";
  154. var IDENTIFIER = "aduptech_conversion",
  155. CONVERSION_PIXEL_BASE_URL = "https://d.adup-tech.com/campaign/conversion";
  156. var elements = document.getElementsByClassName(IDENTIFIER);
  157. if (!elements || elements.length === 0) {
  158. return;
  159. }
  160. tarteaucitron.fallback([IDENTIFIER], "");
  161. for (var i = 0; i < elements.length; i++) {
  162. var element = elements[i];
  163. if (!element.getAttribute("advertiserId") || !element.getAttribute("conversionCode")) {
  164. continue;
  165. }
  166. var url = CONVERSION_PIXEL_BASE_URL +
  167. "/" + encodeURIComponent(element.getAttribute("advertiserId")) +
  168. "?t=" + encodeURIComponent(element.getAttribute("conversionCode"));
  169. if (element.getAttribute("price")) {
  170. url += "&price=" + encodeURIComponent(element.getAttribute("price"));
  171. }
  172. if (element.getAttribute("quantity")) {
  173. url += "&quantity=" + encodeURIComponent(element.getAttribute("quantity"));
  174. }
  175. if (element.getAttribute("total")) {
  176. url += "&total=" + encodeURIComponent(element.getAttribute("total"));
  177. }
  178. if (element.getAttribute("orderId")) {
  179. url += "&order_id=" + encodeURIComponent(element.getAttribute("orderId"));
  180. }
  181. if (element.getAttribute("itemNumber")) {
  182. url += "&item_number=" + encodeURIComponent(element.getAttribute("itemNumber"));
  183. }
  184. if (element.getAttribute("description")) {
  185. url += "&description=" + encodeURIComponent(element.getAttribute("description"));
  186. }
  187. (new Image()).src = url;
  188. }
  189. }
  190. };
  191. // aduptech retargeting
  192. tarteaucitron.services.aduptech_retargeting = {
  193. "key": "aduptech_retargeting",
  194. "type": "ads",
  195. "name": "Ad Up Technology (retargeting)",
  196. "uri": "https://www.adup-tech.com/datenschutz",
  197. "needConsent": true,
  198. "cookies": [],
  199. "js": function () {
  200. "use strict";
  201. var IDENTIFIER = "aduptech_retargeting",
  202. API_URL = "https://s.d.adup-tech.com/services/retargeting.js";
  203. var elements = document.getElementsByClassName(IDENTIFIER);
  204. if (!elements || elements.length === 0) {
  205. return;
  206. }
  207. tarteaucitron.fallback([IDENTIFIER], "");
  208. window.AdUpRetargeting = function(api) {
  209. for (var i = 0; i < elements.length; i++) {
  210. var element = elements[i];
  211. api.init();
  212. api.setAccount(element.getAttribute("account"));
  213. if (element.getAttribute("email")) {
  214. api.setEmail(element.getAttribute("email"));
  215. } else if (element.getAttribute("hashedEmail")) {
  216. api.setHashedEmail(element.getAttribute("hashedEmail"));
  217. }
  218. if (element.getAttribute("product")) {
  219. try {
  220. api.setProduct(JSON.parse(element.getAttribute("product")));
  221. } catch (e) {
  222. api.setProduct(element.getAttribute("product"));
  223. }
  224. }
  225. if (element.getAttribute("transaction")) {
  226. try {
  227. api.setTransaction(JSON.parse(element.getAttribute("transaction")));
  228. } catch (e) {
  229. api.setTransaction(element.getAttribute("transaction"));
  230. }
  231. }
  232. if (element.getAttribute("demarkUser")) {
  233. api.setDemarkUser();
  234. } else if (element.getAttribute("demarkProducts")) {
  235. api.setDemarkProducts();
  236. }
  237. if (element.getAttribute("conversionCode")) {
  238. api.setConversionCode(element.getAttribute("conversionCode"));
  239. }
  240. if (element.getAttribute("device")) {
  241. var setter = "set" + element.getAttribute("device").charAt(0).toUpperCase() + element.getAttribute("device").slice(1);
  242. if (typeof api[setter] === 'function') {
  243. api[setter]();
  244. }
  245. }
  246. if (element.getAttribute("track")) {
  247. var tracker = "track" + element.getAttribute("track").charAt(0).toUpperCase() + element.getAttribute("track").slice(1);
  248. if (typeof api[tracker] === "function") {
  249. api[tracker]();
  250. } else {
  251. api.trackHomepage();
  252. }
  253. }
  254. };
  255. };
  256. tarteaucitron.addScript(API_URL);
  257. }
  258. };
  259. // alexa
  260. tarteaucitron.services.alexa = {
  261. "key": "alexa",
  262. "type": "analytic",
  263. "name": "Alexa",
  264. "uri": "https://www.alexa.com/help/privacy",
  265. "needConsent": true,
  266. "cookies": ['__asc', '__auc'],
  267. "js": function () {
  268. "use strict";
  269. if (tarteaucitron.user.alexaAccountID === undefined) {
  270. return;
  271. }
  272. window._atrk_opts = {
  273. atrk_acct: tarteaucitron.user.alexaAccountID,
  274. domain: window.location.hostname.match(/[^\.]*\.[^.]*$/)[0],
  275. dynamic: true
  276. };
  277. tarteaucitron.addScript('https://d31qbv1cthcecs.cloudfront.net/atrk.js');
  278. }
  279. };
  280. // amazon
  281. tarteaucitron.services.amazon = {
  282. "key": "amazon",
  283. "type": "ads",
  284. "name": "Amazon",
  285. "uri": "https://www.amazon.fr/gp/help/customer/display.html?ie=UTF8&*Version*=1&*entries*=0&nodeId=201149360",
  286. "needConsent": true,
  287. "cookies": [],
  288. "js": function () {
  289. "use strict";
  290. tarteaucitron.fallback(['amazon_product'], function (x) {
  291. var amazonId = x.getAttribute("amazonid"),
  292. productId = x.getAttribute("productid"),
  293. 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&region=' + tarteaucitron.getLanguage().toUpperCase() + '&placement=' + productId + '&asins=' + productId + '&show_border=true&link_opens_in_new_window=true',
  294. iframe = '<iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="' + url + '"></iframe>';
  295. return iframe;
  296. });
  297. },
  298. "fallback": function () {
  299. "use strict";
  300. var id = 'amazon';
  301. tarteaucitron.fallback(['amazon_product'], tarteaucitron.engage(id));
  302. }
  303. };
  304. // calameo
  305. tarteaucitron.services.calameo = {
  306. "key": "calameo",
  307. "type": "video",
  308. "name": "Calameo",
  309. "uri": "https://fr.calameo.com/privacy",
  310. "needConsent": true,
  311. "cookies": [],
  312. "js": function () {
  313. "use strict";
  314. tarteaucitron.fallback(['calameo-canvas'], function (x) {
  315. var id = x.getAttribute("data-id"),
  316. width = x.getAttribute("width"),
  317. height = x.getAttribute("height"),
  318. url = '//v.calameo.com/?bkcode=' + id;
  319. return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
  320. });
  321. },
  322. "fallback": function () {
  323. "use strict";
  324. var id = 'calameo';
  325. tarteaucitron.fallback(['calameo-canvas'], function (elem) {
  326. elem.style.width = elem.getAttribute('width') + 'px';
  327. elem.style.height = elem.getAttribute('height') + 'px';
  328. return tarteaucitron.engage(id);
  329. });
  330. }
  331. };
  332. // clicky
  333. tarteaucitron.services.clicky = {
  334. "key": "clicky",
  335. "type": "analytic",
  336. "name": "Clicky",
  337. "uri": "https://clicky.com/terms",
  338. "needConsent": true,
  339. "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],
  340. "js": function () {
  341. "use strict";
  342. if (tarteaucitron.user.clickyId === undefined) {
  343. return;
  344. }
  345. tarteaucitron.addScript('//static.getclicky.com/js', '', function () {
  346. if (typeof clicky.init === 'function') {
  347. clicky.init(tarteaucitron.user.clickyId);
  348. }
  349. if (typeof tarteaucitron.user.clickyMore === 'function') {
  350. tarteaucitron.user.clickyMore();
  351. }
  352. });
  353. }
  354. };
  355. // clicmanager
  356. tarteaucitron.services.clicmanager = {
  357. "key": "clicmanager",
  358. "type": "ads",
  359. "name": "Clicmanager",
  360. "uri": "http://www.clicmanager.fr/infos_legales.php",
  361. "needConsent": true,
  362. "cookies": [],
  363. "js": function () {
  364. "use strict";
  365. var uniqIds = [],
  366. i,
  367. uri;
  368. tarteaucitron.fallback(['clicmanager-canvas'], function (x) {
  369. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  370. uniqIds.push(uniqId);
  371. return '<div id="' + uniqId + '" c="' + x.getAttribute('c') + '" s="' + x.getAttribute('s') + '" t="' + x.getAttribute('t') + '"></div>';
  372. });
  373. for (i = 0; i < uniqIds.length; i += 1) {
  374. uri = '//ads.clicmanager.fr/exe.php?';
  375. uri += 'c=' + document.getElementById(uniqIds[i]).getAttribute('c') + '&';
  376. uri += 's=' + document.getElementById(uniqIds[i]).getAttribute('s') + '&';
  377. uri += 't=' + document.getElementById(uniqIds[i]).getAttribute('t');
  378. tarteaucitron.makeAsync.init(uri, uniqIds[i]);
  379. }
  380. },
  381. "fallback": function () {
  382. "use strict";
  383. var id = 'clicmanager';
  384. tarteaucitron.fallback(['clicmanager-canvas'], tarteaucitron.engage(id));
  385. }
  386. };
  387. // crazyegg
  388. tarteaucitron.services.crazyegg = {
  389. "key": "crazyegg",
  390. "type": "analytic",
  391. "name": "Crazy Egg",
  392. "uri": "https://www.crazyegg.com/privacy",
  393. "needConsent": true,
  394. "cookies": [],
  395. "js": function () {
  396. "use strict";
  397. if (tarteaucitron.user.crazyeggId === undefined) {
  398. return;
  399. }
  400. tarteaucitron.addScript('//script.crazyegg.com/pages/scripts/' + tarteaucitron.user.crazyeggId.substr(0, 4) + '/' + tarteaucitron.user.crazyeggId.substr(4, 4) + '.js');
  401. }
  402. };
  403. // criteo
  404. tarteaucitron.services.criteo = {
  405. "key": "criteo",
  406. "type": "ads",
  407. "name": "Criteo",
  408. "uri": "http://www.criteo.com/privacy/",
  409. "needConsent": true,
  410. "cookies": [],
  411. "js": function () {
  412. "use strict";
  413. document.MAX_ct0 = '';
  414. var uniqIds = [],
  415. i,
  416. uri;
  417. tarteaucitron.fallback(['criteo-canvas'], function (x) {
  418. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  419. uniqIds.push(uniqId);
  420. return '<div id="' + uniqId + '" zoneid="' + x.getAttribute('zoneid') + '"></div>';
  421. });
  422. for (i = 0; i < uniqIds.length; i += 1) {
  423. uri = '//cas.criteo.com/delivery/ajs.php?';
  424. uri += 'zoneid=' + document.getElementById(uniqIds[i]).getAttribute('zoneid');
  425. uri += '&nodis=1&cb=' + Math.floor(Math.random() * 99999999999);
  426. uri += '&loc=' + encodeURI(window.location);
  427. uri += (document.MAX_used !== ',') ? '&exclude=' + document.MAX_used : '';
  428. uri += (document.charset !== undefined ? '&charset=' + document.charset : '');
  429. uri += (document.characterSet !== undefined ? '&charset=' + document.characterSet : '');
  430. uri += (document.referrer !== undefined) ? '&referer=' + encodeURI(document.referrer) : '';
  431. uri += (document.context !== undefined) ? '&context=' + encodeURI(document.context) : '';
  432. uri += ((document.MAX_ct0 !== undefined) && (document.MAX_ct0.substring(0, 4) === 'http')) ? '&ct0=' + encodeURI(document.MAX_ct0) : '';
  433. uri += (document.mmm_fo !== undefined) ? '&mmm_fo=1' : '';
  434. tarteaucitron.makeAsync.init(uri, uniqIds[i]);
  435. }
  436. },
  437. "fallback": function () {
  438. "use strict";
  439. var id = 'criteo';
  440. tarteaucitron.fallback(['criteo-canvas'], tarteaucitron.engage(id));
  441. }
  442. };
  443. // dailymotion
  444. tarteaucitron.services.dailymotion = {
  445. "key": "dailymotion",
  446. "type": "video",
  447. "name": "Dailymotion",
  448. "uri": "https://www.dailymotion.com/legal/privacy",
  449. "needConsent": true,
  450. "cookies": ['ts', 'dmvk', 'hist', 'v1st', 's_vi'],
  451. "js": function () {
  452. "use strict";
  453. tarteaucitron.fallback(['dailymotion_player'], function (x) {
  454. var video_id = x.getAttribute("videoID"),
  455. video_width = x.getAttribute("width"),
  456. frame_width = 'width=',
  457. video_height = x.getAttribute("height"),
  458. frame_height = 'height=',
  459. video_frame,
  460. params = 'info=' + x.getAttribute("showinfo") + '&autoPlay=' + x.getAttribute("autoplay");
  461. if (video_id === undefined) {
  462. return "";
  463. }
  464. if (video_width !== undefined) {
  465. frame_width += '"' + video_width + '" ';
  466. } else {
  467. frame_width += '"" ';
  468. }
  469. if (video_height !== undefined) {
  470. frame_height += '"' + video_height + '" ';
  471. } else {
  472. frame_height += '"" ';
  473. }
  474. video_frame = '<iframe src="//www.dailymotion.com/embed/video/' + video_id + '?' + params + '" ' + frame_width + frame_height + ' frameborder="0" allowfullscreen></iframe>';
  475. return video_frame;
  476. });
  477. },
  478. "fallback": function () {
  479. "use strict";
  480. var id = 'dailymotion';
  481. tarteaucitron.fallback(['dailymotion_player'], function (elem) {
  482. elem.style.width = elem.getAttribute('width') + 'px';
  483. elem.style.height = elem.getAttribute('height') + 'px';
  484. return tarteaucitron.engage(id);
  485. });
  486. }
  487. };
  488. // dating affiliation
  489. tarteaucitron.services.datingaffiliation = {
  490. "key": "datingaffiliation",
  491. "type": "ads",
  492. "name": "Dating Affiliation",
  493. "uri": "http://www.dating-affiliation.com/conditions-generales.php",
  494. "needConsent": true,
  495. "cookies": [],
  496. "js": function () {
  497. "use strict";
  498. tarteaucitron.fallback(['datingaffiliation-canvas'], function (x) {
  499. var comfrom = x.getAttribute("data-comfrom"),
  500. r = x.getAttribute("data-r"),
  501. p = x.getAttribute("data-p"),
  502. cf0 = x.getAttribute("data-cf0"),
  503. langue = x.getAttribute("data-langue"),
  504. forward_affiliate = x.getAttribute("data-forwardAffiliate"),
  505. cf2 = x.getAttribute("data-cf2"),
  506. cfsa2 = x.getAttribute("data-cfsa2"),
  507. width = x.getAttribute("width"),
  508. height = x.getAttribute("height"),
  509. url = 'http://www.tools-affil2.com/rotaban/ban.php?' + comfrom;
  510. 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>';
  511. });
  512. },
  513. "fallback": function () {
  514. "use strict";
  515. var id = 'datingaffiliation';
  516. tarteaucitron.fallback(['datingaffiliation-canvas'], function (elem) {
  517. elem.style.width = elem.getAttribute('width') + 'px';
  518. elem.style.height = elem.getAttribute('height') + 'px';
  519. return tarteaucitron.engage(id);
  520. });
  521. }
  522. };
  523. // dating affiliation popup
  524. tarteaucitron.services.datingaffiliationpopup = {
  525. "key": "datingaffiliationpopup",
  526. "type": "ads",
  527. "name": "Dating Affiliation (Pop Up)",
  528. "uri": "http://www.dating-affiliation.com/conditions-generales.php",
  529. "needConsent": true,
  530. "cookies": ['__utma', '__utmb', '__utmc', '__utmt_Tools', '__utmv', '__utmz', '_ga', '_gat', '_gat_UA-65072040-17', '__da-pu-xflirt-ID-pc-o169'],
  531. "js": function () {
  532. "use strict";
  533. var uniqIds = [],
  534. i,
  535. uri;
  536. tarteaucitron.fallback(['datingaffiliationpopup-canvas'], function (x) {
  537. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  538. uniqIds.push(uniqId);
  539. 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>';
  540. });
  541. for (i = 0; i < uniqIds.length; i += 1) {
  542. uri = 'http://www.promotools.biz/da/popunder/script.php?';
  543. uri += 'comfrom=' + document.getElementById(uniqIds[i]).getAttribute('comfrom') + '&';
  544. uri += 'promo=' + document.getElementById(uniqIds[i]).getAttribute('promo') + '&';
  545. uri += 'product_id=' + document.getElementById(uniqIds[i]).getAttribute('productid') + '&';
  546. uri += 'submitconfig=' + document.getElementById(uniqIds[i]).getAttribute('submitconfig') + '&';
  547. uri += 'ur=' + document.getElementById(uniqIds[i]).getAttribute('ur') + '&';
  548. uri += 'brand=' + document.getElementById(uniqIds[i]).getAttribute('brand') + '&';
  549. uri += 'lang=' + document.getElementById(uniqIds[i]).getAttribute('lang') + '&';
  550. uri += 'cf0=' + document.getElementById(uniqIds[i]).getAttribute('cf0') + '&';
  551. uri += 'cf2=' + document.getElementById(uniqIds[i]).getAttribute('cf2') + '&';
  552. uri += 'subid1=' + document.getElementById(uniqIds[i]).getAttribute('subid1') + '&';
  553. uri += 'cfsa2=' + document.getElementById(uniqIds[i]).getAttribute('cfsa2') + '&';
  554. uri += 'subid2=' + document.getElementById(uniqIds[i]).getAttribute('subid2') + '&';
  555. uri += 'nicheId=' + document.getElementById(uniqIds[i]).getAttribute('nicheid') + '&';
  556. uri += 'degreId=' + document.getElementById(uniqIds[i]).getAttribute('degreid') + '&';
  557. uri += 'bt=' + document.getElementById(uniqIds[i]).getAttribute('bt') + '&';
  558. uri += 'vis=' + document.getElementById(uniqIds[i]).getAttribute('vis') + '&';
  559. uri += 'hid=' + document.getElementById(uniqIds[i]).getAttribute('hid') + '&';
  560. uri += 'snd=' + document.getElementById(uniqIds[i]).getAttribute('snd') + '&';
  561. uri += 'aabd=' + document.getElementById(uniqIds[i]).getAttribute('aabd') + '&';
  562. uri += 'aabs=' + document.getElementById(uniqIds[i]).getAttribute('aabs');
  563. tarteaucitron.makeAsync.init(uri, uniqIds[i]);
  564. }
  565. },
  566. "fallback": function () {
  567. "use strict";
  568. var id = 'datingaffiliationpopup';
  569. tarteaucitron.fallback(['datingaffiliationpopup-canvas'], tarteaucitron.engage(id));
  570. }
  571. };
  572. // disqus
  573. tarteaucitron.services.disqus = {
  574. "key": "disqus",
  575. "type": "comment",
  576. "name": "Disqus",
  577. "uri": "https://help.disqus.com/customer/portal/articles/466259-privacy-policy",
  578. "needConsent": true,
  579. "cookies": [],
  580. "js": function () {
  581. "use strict";
  582. if (tarteaucitron.user.disqusShortname === undefined) {
  583. return;
  584. }
  585. tarteaucitron.addScript('//' + tarteaucitron.user.disqusShortname + '.disqus.com/embed.js');
  586. tarteaucitron.addScript('//' + tarteaucitron.user.disqusShortname + '.disqus.com/count.js');
  587. },
  588. "fallback": function () {
  589. "use strict";
  590. var id = 'disqus';
  591. if (document.getElementById('disqus_thread')) {
  592. document.getElementById('disqus_thread').innerHTML = tarteaucitron.engage(id);
  593. }
  594. }
  595. };
  596. // ekomi
  597. tarteaucitron.services.ekomi = {
  598. "key": "ekomi",
  599. "type": "social",
  600. "name": "eKomi",
  601. "uri": "http://www.ekomi-us.com/us/privacy/",
  602. "needConsent": true,
  603. "cookies": [],
  604. "js": function () {
  605. "use strict";
  606. if (tarteaucitron.user.ekomiCertId === undefined) {
  607. return;
  608. }
  609. window.eKomiIntegrationConfig = [
  610. {certId: tarteaucitron.user.ekomiCertId}
  611. ];
  612. tarteaucitron.addScript('//connect.ekomi.de/integration_1410173009/' + tarteaucitron.user.ekomiCertId + '.js');
  613. }
  614. };
  615. // etracker
  616. tarteaucitron.services.etracker = {
  617. "key": "etracker",
  618. "type": "analytic",
  619. "name": "eTracker",
  620. "uri": "https://www.etracker.com/en/data-protection.html",
  621. "needConsent": true,
  622. "cookies": [],
  623. "js": function () {
  624. "use strict";
  625. if (tarteaucitron.user.etracker === undefined) {
  626. return;
  627. }
  628. tarteaucitron.addScript('//static.etracker.com/code/e.js', '_etLoader', function () {}, true, "data-secure-code", tarteaucitron.user.etracker);
  629. }
  630. };
  631. // facebook
  632. tarteaucitron.services.facebook = {
  633. "key": "facebook",
  634. "type": "social",
  635. "name": "Facebook",
  636. "uri": "https://www.facebook.com/policies/cookies/",
  637. "needConsent": true,
  638. "cookies": [],
  639. "js": function () {
  640. "use strict";
  641. tarteaucitron.fallback(['fb-post', 'fb-follow', 'fb-activity', 'fb-send', 'fb-share-button', 'fb-like', 'fb-video'], '');
  642. tarteaucitron.addScript('//connect.facebook.net/' + tarteaucitron.getLocale() + '/sdk.js#xfbml=1&version=v2.0', 'facebook-jssdk');
  643. if (tarteaucitron.isAjax === true) {
  644. if (typeof FB !== "undefined") {
  645. FB.XFBML.parse();
  646. }
  647. }
  648. },
  649. "fallback": function () {
  650. "use strict";
  651. var id = 'facebook';
  652. tarteaucitron.fallback(['fb-post', 'fb-follow', 'fb-activity', 'fb-send', 'fb-share-button', 'fb-like', 'fb-video'], tarteaucitron.engage(id));
  653. }
  654. };
  655. // facebooklikebox
  656. tarteaucitron.services.facebooklikebox = {
  657. "key": "facebooklikebox",
  658. "type": "social",
  659. "name": "Facebook (like box)",
  660. "uri": "https://www.facebook.com/policies/cookies/",
  661. "needConsent": true,
  662. "cookies": [],
  663. "js": function () {
  664. "use strict";
  665. tarteaucitron.fallback(['fb-like-box', 'fb-page'], '');
  666. tarteaucitron.addScript('//connect.facebook.net/' + tarteaucitron.getLocale() + '/sdk.js#xfbml=1&version=v2.3', 'facebook-jssdk');
  667. if (tarteaucitron.isAjax === true) {
  668. if (typeof FB !== "undefined") {
  669. FB.XFBML.parse();
  670. }
  671. }
  672. },
  673. "fallback": function () {
  674. "use strict";
  675. var id = 'facebooklikebox';
  676. tarteaucitron.fallback(['fb-like-box', 'fb-page'], tarteaucitron.engage(id));
  677. }
  678. };
  679. // facebookcomment
  680. tarteaucitron.services.facebookcomment = {
  681. "key": "facebookcomment",
  682. "type": "comment",
  683. "name": "Facebook (commentaire)",
  684. "uri": "https://www.facebook.com/policies/cookies/",
  685. "needConsent": true,
  686. "cookies": [],
  687. "js": function () {
  688. "use strict";
  689. tarteaucitron.fallback(['fb-comments'], '');
  690. tarteaucitron.addScript('//connect.facebook.net/' + tarteaucitron.getLocale() + '/sdk.js#xfbml=1&version=v2.0', 'facebook-jssdk');
  691. if (tarteaucitron.isAjax === true) {
  692. if (typeof FB !== "undefined") {
  693. FB.XFBML.parse();
  694. }
  695. }
  696. },
  697. "fallback": function () {
  698. "use strict";
  699. var id = 'facebookcomment';
  700. tarteaucitron.fallback(['fb-comments'], tarteaucitron.engage(id));
  701. }
  702. };
  703. // ferank
  704. tarteaucitron.services.ferank = {
  705. "key": "ferank",
  706. "type": "analytic",
  707. "name": "FERank",
  708. "uri": "https://www.ferank.fr/respect-vie-privee/#mesureaudience",
  709. "needConsent": false,
  710. "cookies": [],
  711. "js": function () {
  712. "use strict";
  713. tarteaucitron.addScript('//static.ferank.fr/pixel.js', '', function () {
  714. if (typeof tarteaucitron.user.ferankMore === 'function') {
  715. tarteaucitron.user.ferankMore();
  716. }
  717. });
  718. }
  719. };
  720. // ferank pub
  721. tarteaucitron.services.ferankpub = {
  722. "key": "ferankpub",
  723. "type": "ads",
  724. "name": "FERank (pub)",
  725. "uri": "https://www.ferank.fr/respect-vie-privee/#regiepublicitaire",
  726. "needConsent": false,
  727. "cookies": [],
  728. "js": function () {
  729. "use strict";
  730. tarteaucitron.addScript('//static.ferank.fr/publicite.async.js');
  731. if (tarteaucitron.isAjax === true) {
  732. if (typeof ferankReady === 'function') {
  733. ferankReady();
  734. }
  735. }
  736. },
  737. "fallback": function () {
  738. "use strict";
  739. var id = 'ferankpub';
  740. tarteaucitron.fallback(['ferank-publicite'], tarteaucitron.engage(id));
  741. }
  742. };
  743. // get+
  744. tarteaucitron.services.getplus = {
  745. "key": "getplus",
  746. "type": "analytic",
  747. "name": "Get+",
  748. "uri": "http://www.getplus.fr/Conditions-generales-de-vente_a226.html",
  749. "needConsent": true,
  750. "cookies": ['_first_pageview', '_jsuid', 'no_trackyy_' + tarteaucitron.user.getplusId, '_eventqueue'],
  751. "js": function () {
  752. "use strict";
  753. if (tarteaucitron.user.getplusId === undefined) {
  754. return;
  755. }
  756. window.webleads_site_ids = window.webleads_site_ids || [];
  757. window.webleads_site_ids.push(tarteaucitron.user.getplusId);
  758. tarteaucitron.addScript('//stats.webleads-tracker.com/js');
  759. }
  760. };
  761. // google+
  762. tarteaucitron.services.gplus = {
  763. "key": "gplus",
  764. "type": "social",
  765. "name": "Google+",
  766. "uri": "https://policies.google.com/privacy",
  767. "needConsent": true,
  768. "cookies": [],
  769. "js": function () {
  770. "use strict";
  771. tarteaucitron.addScript('https://apis.google.com/js/platform.js');
  772. },
  773. "fallback": function () {
  774. "use strict";
  775. var id = 'gplus';
  776. tarteaucitron.fallback(['g-plus', 'g-plusone'], tarteaucitron.engage(id));
  777. }
  778. };
  779. // google+ badge
  780. tarteaucitron.services.gplusbadge = {
  781. "key": "gplusbadge",
  782. "type": "social",
  783. "name": "Google+ (badge)",
  784. "uri": "https://policies.google.com/privacy",
  785. "needConsent": true,
  786. "cookies": [],
  787. "js": function () {
  788. "use strict";
  789. tarteaucitron.addScript('https://apis.google.com/js/platform.js');
  790. },
  791. "fallback": function () {
  792. "use strict";
  793. var id = 'gplusbadge';
  794. tarteaucitron.fallback(['g-page', 'g-person'], tarteaucitron.engage(id));
  795. }
  796. };
  797. // google adsense
  798. tarteaucitron.services.adsense = {
  799. "key": "adsense",
  800. "type": "ads",
  801. "name": "Google Adsense",
  802. "uri": "http://www.google.com/ads/preferences/",
  803. "needConsent": true,
  804. "cookies": [],
  805. "js": function () {
  806. "use strict";
  807. tarteaucitron.addScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
  808. },
  809. "fallback": function () {
  810. "use strict";
  811. var id = 'adsense';
  812. tarteaucitron.fallback(['adsbygoogle'], tarteaucitron.engage(id));
  813. }
  814. };
  815. // google partners badge
  816. tarteaucitron.services.googlepartners = {
  817. "key": "googlepartners",
  818. "type": "ads",
  819. "name": "Google Partners Badge",
  820. "uri": "http://www.google.com/ads/preferences/",
  821. "needConsent": true,
  822. "cookies": [],
  823. "js": function () {
  824. "use strict";
  825. tarteaucitron.addScript('https://apis.google.com/js/platform.js');
  826. },
  827. "fallback": function () {
  828. "use strict";
  829. var id = 'googlepartners';
  830. tarteaucitron.fallback(['g-partnersbadge'], tarteaucitron.engage(id));
  831. }
  832. };
  833. // google adsense search (form)
  834. tarteaucitron.services.adsensesearchform = {
  835. "key": "adsensesearchform",
  836. "type": "ads",
  837. "name": "Google Adsense Search (form)",
  838. "uri": "http://www.google.com/ads/preferences/",
  839. "needConsent": true,
  840. "cookies": [],
  841. "js": function () {
  842. "use strict";
  843. tarteaucitron.addScript('//www.google.com/coop/cse/brand?form=cse-search-box&lang=' + tarteaucitron.getLanguage());
  844. }
  845. };
  846. // google adsense search (result)
  847. tarteaucitron.services.adsensesearchresult = {
  848. "key": "adsensesearchresult",
  849. "type": "ads",
  850. "name": "Google Adsense Search (result)",
  851. "uri": "http://www.google.com/ads/preferences/",
  852. "needConsent": true,
  853. "cookies": [],
  854. "js": function () {
  855. "use strict";
  856. if (tarteaucitron.user.adsensesearchresultCx === undefined) {
  857. return;
  858. }
  859. tarteaucitron.addScript('//www.google.com/cse/cse.js?cx=' + tarteaucitron.user.adsensesearchresultCx);
  860. },
  861. "fallback": function () {
  862. "use strict";
  863. var id = 'adsensesearchresult';
  864. if (document.getElementById('gcse_searchresults')) {
  865. document.getElementById('gcse_searchresults').innerHTML = tarteaucitron.engage(id);
  866. }
  867. }
  868. };
  869. // googleadwordsconversion
  870. tarteaucitron.services.googleadwordsconversion = {
  871. "key": "googleadwordsconversion",
  872. "type": "ads",
  873. "name": "Google Adwords (conversion)",
  874. "uri": "https://www.google.com/settings/ads",
  875. "needConsent": true,
  876. "cookies": [],
  877. "js": function () {
  878. "use strict";
  879. if (tarteaucitron.user.adwordsconversionId === undefined) {
  880. return;
  881. }
  882. tarteaucitron.addScript('//www.googleadservices.com/pagead/conversion_async.js', '', function () {
  883. window.google_trackConversion({
  884. google_conversion_id: tarteaucitron.user.adwordsconversionId,
  885. google_conversion_label: tarteaucitron.user.adwordsconversionLabel,
  886. google_conversion_language: tarteaucitron.user.adwordsconversionLanguage,
  887. google_conversion_format: tarteaucitron.user.adwordsconversionFormat,
  888. google_conversion_color: tarteaucitron.user.adwordsconversionColor,
  889. google_conversion_value: tarteaucitron.user.adwordsconversionValue,
  890. google_conversion_currency: tarteaucitron.user.adwordsconversionCurrency,
  891. google_custom_params: {
  892. parameter1: tarteaucitron.user.adwordsconversionCustom1,
  893. parameter2: tarteaucitron.user.adwordsconversionCustom2
  894. }
  895. });
  896. });
  897. }
  898. };
  899. // googleadwordsremarketing
  900. tarteaucitron.services.googleadwordsremarketing = {
  901. "key": "googleadwordsremarketing",
  902. "type": "ads",
  903. "name": "Google Adwords (remarketing)",
  904. "uri": "https://www.google.com/settings/ads",
  905. "needConsent": true,
  906. "cookies": [],
  907. "js": function () {
  908. "use strict";
  909. if (tarteaucitron.user.adwordsremarketingId === undefined) {
  910. return;
  911. }
  912. tarteaucitron.addScript('//www.googleadservices.com/pagead/conversion_async.js', '', function () {
  913. window.google_trackConversion({
  914. google_conversion_id: tarteaucitron.user.adwordsremarketingId,
  915. google_remarketing_only: true
  916. });
  917. });
  918. }
  919. };
  920. // google analytics (old)
  921. tarteaucitron.services.gajs = {
  922. "key": "gajs",
  923. "type": "analytic",
  924. "name": "Google Analytics (ga.js)",
  925. "uri": "https://support.google.com/analytics/answer/6004245",
  926. "needConsent": true,
  927. "cookies": ['_ga', '_gat', '__utma', '__utmb', '__utmc', '__utmt', '__utmz'],
  928. "js": function () {
  929. "use strict";
  930. window._gaq = window._gaq || [];
  931. window._gaq.push(['_setAccount', tarteaucitron.user.gajsUa]);
  932. window._gaq.push(['_trackPageview']);
  933. tarteaucitron.addScript('//www.google-analytics.com/ga.js', '', function () {
  934. if (typeof tarteaucitron.user.gajsMore === 'function') {
  935. tarteaucitron.user.gajsMore();
  936. }
  937. });
  938. }
  939. };
  940. // google analytics
  941. tarteaucitron.services.analytics = {
  942. "key": "analytics",
  943. "type": "analytic",
  944. "name": "Google Analytics (universal)",
  945. "uri": "https://support.google.com/analytics/answer/6004245",
  946. "needConsent": true,
  947. "cookies": ['_ga', '_gat', '_gid', '__utma', '__utmb', '__utmc', '__utmt', '__utmz'],
  948. "js": function () {
  949. "use strict";
  950. window.GoogleAnalyticsObject = 'ga';
  951. window.ga = window.ga || function () {
  952. window.ga.q = window.ga.q || [];
  953. window.ga.q.push(arguments);
  954. };
  955. window.ga.l = new Date();
  956. tarteaucitron.addScript('https://www.google-analytics.com/analytics.js', '', function () {
  957. ga('create', tarteaucitron.user.analyticsUa, {'cookieExpires': 34128000});
  958. ga('send', 'pageview');
  959. if (typeof tarteaucitron.user.analyticsMore === 'function') {
  960. tarteaucitron.user.analyticsMore();
  961. }
  962. });
  963. }
  964. };
  965. // google analytics
  966. tarteaucitron.services.gtag = {
  967. "key": "gtag",
  968. "type": "analytic",
  969. "name": "Google Analytics (gtag.js)",
  970. "uri": "https://support.google.com/analytics/answer/6004245",
  971. "needConsent": true,
  972. "cookies": (function () {
  973. // Add _gat_gtag_UA_XXXXXXX_XX cookie to cookies array
  974. var gatGtagUaCookie = '_gat_gtag_' + tarteaucitron.user.gtagUa;
  975. gatGtagUaCookie = gatGtagUaCookie.replace(/-/g, '_');
  976. return ['_ga', '_gat', '_gid', '__utma', '__utmb', '__utmc', '__utmt', '__utmz', gatGtagUaCookie];
  977. })(),
  978. "js": function () {
  979. "use strict";
  980. window.dataLayer = window.dataLayer || [];
  981. tarteaucitron.addScript('https://www.googletagmanager.com/gtag/js?id=' + tarteaucitron.user.gtagUa, '', function () {
  982. window.gtag = function gtag(){dataLayer.push(arguments);}
  983. gtag('js', new Date());
  984. gtag('config', tarteaucitron.user.gtagUa);
  985. if (typeof tarteaucitron.user.gtagMore === 'function') {
  986. tarteaucitron.user.gtagMore();
  987. }
  988. });
  989. }
  990. };
  991. // google maps
  992. tarteaucitron.services.googlemaps = {
  993. "key": "googlemaps",
  994. "type": "api",
  995. "name": "Google Maps",
  996. "uri": "http://www.google.com/ads/preferences/",
  997. "needConsent": true,
  998. "cookies": [],
  999. "js": function () {
  1000. "use strict";
  1001. var mapOptions,
  1002. map,
  1003. uniqIds = [],
  1004. i;
  1005. if (tarteaucitron.user.mapscallback === undefined) {
  1006. tarteaucitron.user.mapscallback = 'tac_googlemaps_callback';
  1007. }
  1008. // Add Google Maps libraries if any (https://developers.google.com/maps/documentation/javascript/libraries)
  1009. var googleMapsLibraries;
  1010. if (tarteaucitron.user.googlemapsLibraries) {
  1011. googleMapsLibraries = '&libraries=' + tarteaucitron.user.googlemapsLibraries;
  1012. }
  1013. tarteaucitron.addScript('//maps.googleapis.com/maps/api/js?v=3.exp&key=' + tarteaucitron.user.googlemapsKey + '&callback='+tarteaucitron.user.mapscallback + googleMapsLibraries);
  1014. window.tac_googlemaps_callback = function () {
  1015. tarteaucitron.fallback(['googlemaps-canvas'], function (x) {
  1016. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  1017. uniqIds.push(uniqId);
  1018. 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>';
  1019. });
  1020. for (i = 0; i < uniqIds.length; i += 1) {
  1021. mapOptions = {
  1022. zoom: parseInt(document.getElementById(uniqIds[i]).getAttribute('zoom'), 10),
  1023. center: new google.maps.LatLng(parseFloat(document.getElementById(uniqIds[i]).getAttribute('latitude'), 10), parseFloat(document.getElementById(uniqIds[i]).getAttribute('longitude'), 10))
  1024. };
  1025. map = new google.maps.Map(document.getElementById(uniqIds[i]), mapOptions);
  1026. }
  1027. };
  1028. },
  1029. "fallback": function () {
  1030. "use strict";
  1031. var id = 'googlemaps';
  1032. tarteaucitron.fallback(['googlemaps-canvas'], tarteaucitron.engage(id));
  1033. }
  1034. };
  1035. // googlemaps search
  1036. tarteaucitron.services.googlemapssearch = {
  1037. "key": "googlemapssearch",
  1038. "type": "api",
  1039. "name": "Google Maps Seard API",
  1040. "uri": "http://www.google.com/ads/preferences/",
  1041. "needConsent": true,
  1042. "cookies": ['nid'],
  1043. "js": function () {
  1044. "use strict";
  1045. tarteaucitron.fallback(['googlemapssearch'], function (x) {
  1046. var width = x.getAttribute("width"),
  1047. height = x.getAttribute("height"),
  1048. // url = x.getAttribute("data-url");
  1049. query = escape(x.getAttribute("data-search")),
  1050. key = x.getAttribute("data-api-key");
  1051. // return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
  1052. 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> '
  1053. });
  1054. },
  1055. "fallback": function () {
  1056. "use strict";
  1057. var id = 'googlemapssearch';
  1058. tarteaucitron.fallback(['googlemapssearch'], function (elem) {
  1059. elem.style.width = elem.getAttribute('width') + 'px';
  1060. elem.style.height = elem.getAttribute('height') + 'px';
  1061. return tarteaucitron.engage(id);
  1062. });
  1063. }
  1064. };
  1065. // google tag manager
  1066. tarteaucitron.services.googletagmanager = {
  1067. "key": "googletagmanager",
  1068. "type": "api",
  1069. "name": "Google Tag Manager",
  1070. "uri": "http://www.google.com/ads/preferences/",
  1071. "needConsent": true,
  1072. "cookies": ['_ga', '_gat', '__utma', '__utmb', '__utmc', '__utmt', '__utmz', '__gads', '_drt_', 'FLC', 'exchange_uid', 'id', 'fc', 'rrs', 'rds', 'rv', 'uid', 'UIDR', 'UID', 'clid', 'ipinfo', 'acs'],
  1073. "js": function () {
  1074. "use strict";
  1075. if (tarteaucitron.user.googletagmanagerId === undefined) {
  1076. return;
  1077. }
  1078. window.dataLayer = window.dataLayer || [];
  1079. window.dataLayer.push({
  1080. 'gtm.start': new Date().getTime(),
  1081. event: 'gtm.js'
  1082. });
  1083. tarteaucitron.addScript('//www.googletagmanager.com/gtm.js?id=' + tarteaucitron.user.googletagmanagerId);
  1084. }
  1085. };
  1086. // jsapi
  1087. tarteaucitron.services.jsapi = {
  1088. "key": "jsapi",
  1089. "type": "api",
  1090. "name": "Google jsapi",
  1091. "uri": "http://www.google.com/policies/privacy/",
  1092. "needConsent": true,
  1093. "cookies": [],
  1094. "js": function () {
  1095. "use strict";
  1096. tarteaucitron.addScript('//www.google.com/jsapi');
  1097. }
  1098. };
  1099. // recaptcha
  1100. tarteaucitron.services.recaptcha = {
  1101. "key": "recaptcha",
  1102. "type": "api",
  1103. "name": "reCAPTCHA",
  1104. "uri": "http://www.google.com/policies/privacy/",
  1105. "needConsent": true,
  1106. "cookies": ['nid'],
  1107. "js": function () {
  1108. "use strict";
  1109. tarteaucitron.fallback(['g-recaptcha'], '');
  1110. tarteaucitron.addScript('https://www.google.com/recaptcha/api.js');
  1111. },
  1112. "fallback": function () {
  1113. "use strict";
  1114. var id = 'recaptcha';
  1115. tarteaucitron.fallback(['g-recaptcha'], tarteaucitron.engage(id));
  1116. }
  1117. };
  1118. // linkedin
  1119. tarteaucitron.services.linkedin = {
  1120. "key": "linkedin",
  1121. "type": "social",
  1122. "name": "Linkedin",
  1123. "uri": "https://www.linkedin.com/legal/cookie_policy",
  1124. "needConsent": true,
  1125. "cookies": [],
  1126. "js": function () {
  1127. "use strict";
  1128. tarteaucitron.fallback(['tacLinkedin'], '');
  1129. tarteaucitron.addScript('//platform.linkedin.com/in.js');
  1130. if (tarteaucitron.isAjax === true) {
  1131. if (typeof IN !== "undefined") {
  1132. IN.parse();
  1133. }
  1134. }
  1135. },
  1136. "fallback": function () {
  1137. "use strict";
  1138. var id = 'linkedin';
  1139. tarteaucitron.fallback(['tacLinkedin'], tarteaucitron.engage(id));
  1140. }
  1141. };
  1142. // mautic
  1143. tarteaucitron.services.mautic = {
  1144. "key": "mautic",
  1145. "type": "analytic",
  1146. "name": "Mautic",
  1147. "uri": "https://www.mautic.org/privacy-policy/",
  1148. "needConsent": true,
  1149. "cookies": ['mtc_id', 'mtc_sid'],
  1150. "js": function () {
  1151. "use strict";
  1152. if (tarteaucitron.user.mauticurl === undefined) {
  1153. return;
  1154. }
  1155. window['MauticTrackingObject'] = 'mt';
  1156. window['mt'] = window['mt'] || function() {
  1157. (window['mt'].q = window['mt'].q || []).push(arguments);
  1158. };
  1159. tarteaucitron.addScript(tarteaucitron.user.mauticurl, '', function() {
  1160. mt('send', 'pageview');
  1161. });
  1162. }
  1163. };
  1164. // microsoftcampaignanalytics
  1165. tarteaucitron.services.microsoftcampaignanalytics = {
  1166. "key": "microsoftcampaignanalytics",
  1167. "type": "analytic",
  1168. "name": "Microsoft Campaign Analytics",
  1169. "uri": "https://privacy.microsoft.com/privacystatement/",
  1170. "needConsent": true,
  1171. "cookies": [],
  1172. "js": function () {
  1173. "use strict";
  1174. if (tarteaucitron.user.microsoftcampaignanalyticsUUID === undefined) {
  1175. return;
  1176. }
  1177. tarteaucitron.addScript('//flex.atdmt.com/mstag/site/' + tarteaucitron.user.microsoftcampaignanalyticsUUID + '/mstag.js', 'mstag_tops', function () {
  1178. window.mstag = {loadTag : function () {}, time : (new Date()).getTime()};
  1179. window.mstag.loadTag("analytics", {dedup: "1", domainId: tarteaucitron.user.microsoftcampaignanalyticsdomainId, type: "1", actionid: tarteaucitron.user.microsoftcampaignanalyticsactionId});
  1180. });
  1181. }
  1182. };
  1183. // pinterest
  1184. tarteaucitron.services.pinterest = {
  1185. "key": "pinterest",
  1186. "type": "social",
  1187. "name": "Pinterest",
  1188. "uri": "https://about.pinterest.com/privacy-policy",
  1189. "needConsent": true,
  1190. "cookies": [],
  1191. "js": function () {
  1192. "use strict";
  1193. tarteaucitron.fallback(['tacPinterest'], '');
  1194. tarteaucitron.addScript('//assets.pinterest.com/js/pinit.js');
  1195. },
  1196. "fallback": function () {
  1197. "use strict";
  1198. var id = 'pinterest';
  1199. tarteaucitron.fallback(['tacPinterest'], tarteaucitron.engage(id));
  1200. }
  1201. };
  1202. // prelinker
  1203. tarteaucitron.services.prelinker = {
  1204. "key": "prelinker",
  1205. "type": "ads",
  1206. "name": "Prelinker",
  1207. "uri": "http://www.prelinker.com/index/index/cgu/",
  1208. "needConsent": true,
  1209. "cookies": ['_sp_id.32f5', '_sp_ses.32f5'],
  1210. "js": function () {
  1211. "use strict";
  1212. var uniqIds = [],
  1213. i,
  1214. uri;
  1215. tarteaucitron.fallback(['prelinker-canvas'], function (x) {
  1216. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  1217. uniqIds.push(uniqId);
  1218. return '<div id="' + uniqId + '" siteId="' + x.getAttribute('siteId') + '" bannerId="' + x.getAttribute('bannerId') + '" defaultLanguage="' + x.getAttribute('defaultLanguage') + '" tracker="' + x.getAttribute('tracker') + '"></div>';
  1219. });
  1220. for (i = 0; i < uniqIds.length; i += 1) {
  1221. uri = 'http://promo.easy-dating.org/banner/index?';
  1222. uri += 'site_id=' + document.getElementById(uniqIds[i]).getAttribute('siteId') + '&';
  1223. uri += 'banner_id=' + document.getElementById(uniqIds[i]).getAttribute('bannerId') + '&';
  1224. uri += 'default_language=' + document.getElementById(uniqIds[i]).getAttribute('defaultLanguage') + '&';
  1225. uri += 'tr4ck=' + document.getElementById(uniqIds[i]).getAttribute('trackrt');
  1226. tarteaucitron.makeAsync.init(uri, uniqIds[i]);
  1227. }
  1228. },
  1229. "fallback": function () {
  1230. "use strict";
  1231. var id = 'prelinker';
  1232. tarteaucitron.fallback(['prelinker-canvas'], tarteaucitron.engage(id));
  1233. }
  1234. };
  1235. // prezi
  1236. tarteaucitron.services.prezi = {
  1237. "key": "prezi",
  1238. "type": "video",
  1239. "name": "Prezi",
  1240. "uri": "https://prezi.com/privacy-policy/",
  1241. "needConsent": true,
  1242. "cookies": [],
  1243. "js": function () {
  1244. "use strict";
  1245. tarteaucitron.fallback(['prezi-canvas'], function (x) {
  1246. var id = x.getAttribute("data-id"),
  1247. width = x.getAttribute("width"),
  1248. height = x.getAttribute("height"),
  1249. url = 'https://prezi.com/embed/' + id + '/?bgcolor=ffffff&amp;lock_to_path=0&amp;autoplay=0&amp;autohide_ctrls=0';
  1250. return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
  1251. });
  1252. },
  1253. "fallback": function () {
  1254. "use strict";
  1255. var id = 'prezi';
  1256. tarteaucitron.fallback(['prezi-canvas'], function (elem) {
  1257. elem.style.width = elem.getAttribute('width') + 'px';
  1258. elem.style.height = elem.getAttribute('height') + 'px';
  1259. return tarteaucitron.engage(id);
  1260. });
  1261. }
  1262. };
  1263. // pubdirecte
  1264. tarteaucitron.services.pubdirecte = {
  1265. "key": "pubdirecte",
  1266. "type": "ads",
  1267. "name": "Pubdirecte",
  1268. "uri": "http://pubdirecte.com/contact.php",
  1269. "needConsent": true,
  1270. "cookies": [],
  1271. "js": function () {
  1272. "use strict";
  1273. var uniqIds = [],
  1274. i,
  1275. uri;
  1276. tarteaucitron.fallback(['pubdirecte-canvas'], function (x) {
  1277. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  1278. uniqIds.push(uniqId);
  1279. return '<div id="' + uniqId + '" pid="' + x.getAttribute('pid') + '" ref="' + x.getAttribute('ref') + '"></div>';
  1280. });
  1281. for (i = 0; i < uniqIds.length; i += 1) {
  1282. uri = '//www.pubdirecte.com/script/banniere.php?';
  1283. uri += 'id=' + document.getElementById(uniqIds[i]).getAttribute('pid') + '&';
  1284. uri += 'ref=' + document.getElementById(uniqIds[i]).getAttribute('ref');
  1285. tarteaucitron.makeAsync.init(uri, uniqIds[i]);
  1286. }
  1287. },
  1288. "fallback": function () {
  1289. "use strict";
  1290. var id = 'pubdirecte';
  1291. tarteaucitron.fallback(['pubdirecte-canvas'], tarteaucitron.engage(id));
  1292. }
  1293. };
  1294. // purechat
  1295. tarteaucitron.services.purechat = {
  1296. "key": "purechat",
  1297. "type": "support",
  1298. "name": "PureChat",
  1299. "uri": "https://www.purechat.com/privacy",
  1300. "needConsent": true,
  1301. "cookies": [],
  1302. "js": function () {
  1303. "use strict";
  1304. if (tarteaucitron.user.purechatId === undefined) {
  1305. return;
  1306. }
  1307. tarteaucitron.addScript('//app.purechat.com/VisitorWidget/WidgetScript', '', function () {
  1308. try {
  1309. window.w = new PCWidget({ c: tarteaucitron.user.purechatId, f: true });
  1310. } catch (e) {}
  1311. });
  1312. }
  1313. };
  1314. // shareaholic
  1315. tarteaucitron.services.shareaholic = {
  1316. "key": "shareaholic",
  1317. "type": "social",
  1318. "name": "Shareaholic",
  1319. "uri": "https://shareaholic.com/privacy/choices",
  1320. "needConsent": true,
  1321. "cookies": ['__utma', '__utmb', '__utmc', '__utmz', '__utmt_Shareaholic%20Pageviews'],
  1322. "js": function () {
  1323. "use strict";
  1324. if (tarteaucitron.user.shareaholicSiteId === undefined) {
  1325. return;
  1326. }
  1327. tarteaucitron.fallback(['shareaholic-canvas'], '');
  1328. tarteaucitron.addScript('//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js', '', function () {
  1329. try {
  1330. Shareaholic.init(tarteaucitron.user.shareaholicSiteId);
  1331. } catch (e) {}
  1332. });
  1333. },
  1334. "fallback": function () {
  1335. "use strict";
  1336. var id = 'shareaholic';
  1337. tarteaucitron.fallback(['shareaholic-canvas'], tarteaucitron.engage(id));
  1338. }
  1339. };
  1340. // shareasale
  1341. tarteaucitron.services.shareasale = {
  1342. "key": "shareasale",
  1343. "type": "ads",
  1344. "name": "ShareASale",
  1345. "uri": "https://www.shareasale.com/PrivacyPolicy.pdf",
  1346. "needConsent": true,
  1347. "cookies": [],
  1348. "js": function () {
  1349. "use strict";
  1350. var uniqIds = [],
  1351. i,
  1352. uri;
  1353. tarteaucitron.fallback(['shareasale-canvas'], function (x) {
  1354. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  1355. uniqIds.push(uniqId);
  1356. 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>';
  1357. });
  1358. for (i = 0; i < uniqIds.length; i += 1) {
  1359. uri = 'https://shareasale.com/sale.cfm?';
  1360. uri += 'amount=' + document.getElementById(uniqIds[i]).getAttribute('amount') + '&';
  1361. uri += 'tracking=' + document.getElementById(uniqIds[i]).getAttribute('tracking') + '&';
  1362. uri += 'transtype=' + document.getElementById(uniqIds[i]).getAttribute('transtype') + '&';
  1363. uri += 'persale=' + document.getElementById(uniqIds[i]).getAttribute('persale') + '&';
  1364. uri += 'perlead=' + document.getElementById(uniqIds[i]).getAttribute('perlead') + '&';
  1365. uri += 'perhit=' + document.getElementById(uniqIds[i]).getAttribute('perhit') + '&';
  1366. uri += 'merchantID=' + document.getElementById(uniqIds[i]).getAttribute('merchantID');
  1367. document.getElementById(uniqIds[i]).innerHTML = '<img src=\'' + uri + '\' width=\'1\' height=\'1\' />';
  1368. }
  1369. },
  1370. "fallback": function () {
  1371. "use strict";
  1372. var id = 'shareasale';
  1373. tarteaucitron.fallback(['shareasale-canvas'], tarteaucitron.engage(id));
  1374. }
  1375. };
  1376. // sharethis
  1377. tarteaucitron.services.sharethis = {
  1378. "key": "sharethis",
  1379. "type": "social",
  1380. "name": "ShareThis",
  1381. "uri": "http://www.sharethis.com/legal/privacy/",
  1382. "needConsent": true,
  1383. "cookies": ['__unam'],
  1384. "js": function () {
  1385. "use strict";
  1386. if (tarteaucitron.user.sharethisPublisher === undefined) {
  1387. return;
  1388. }
  1389. var switchTo5x = true,
  1390. uri = ('https:' === document.location.protocol ? 'https://ws' : 'http://w') + '.sharethis.com/button/buttons.js';
  1391. tarteaucitron.fallback(['tacSharethis'], '');
  1392. tarteaucitron.addScript(uri, '', function () {
  1393. stLight.options({publisher: tarteaucitron.user.sharethisPublisher, doNotHash: false, doNotCopy: false, hashAddressBar: false});
  1394. });
  1395. if (tarteaucitron.isAjax === true) {
  1396. if (typeof stButtons !== "undefined") {
  1397. stButtons.locateElements();
  1398. }
  1399. }
  1400. },
  1401. "fallback": function () {
  1402. "use strict";
  1403. var id = 'sharethis';
  1404. tarteaucitron.fallback(['tacSharethis'], tarteaucitron.engage(id));
  1405. }
  1406. };
  1407. // slideshare
  1408. tarteaucitron.services.slideshare = {
  1409. "key": "slideshare",
  1410. "type": "video",
  1411. "name": "SlideShare",
  1412. "uri": "https://www.linkedin.com/legal/privacy-policy",
  1413. "needConsent": true,
  1414. "cookies": [],
  1415. "js": function () {
  1416. "use strict";
  1417. tarteaucitron.fallback(['slideshare-canvas'], function (x) {
  1418. var id = x.getAttribute("data-id"),
  1419. width = x.getAttribute("width"),
  1420. height = x.getAttribute("height"),
  1421. url = '//www.slideshare.net/slideshow/embed_code/' + id;
  1422. return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" scrolling="no" allowtransparency allowfullscreen></iframe>';
  1423. });
  1424. },
  1425. "fallback": function () {
  1426. "use strict";
  1427. var id = 'slideshare';
  1428. tarteaucitron.fallback(['slideshare-canvas'], function (elem) {
  1429. elem.style.width = elem.getAttribute('width') + 'px';
  1430. elem.style.height = elem.getAttribute('height') + 'px';
  1431. return tarteaucitron.engage(id);
  1432. });
  1433. }
  1434. };
  1435. // statcounter
  1436. tarteaucitron.services.statcounter = {
  1437. "key": "statcounter",
  1438. "type": "analytic",
  1439. "name": "StatCounter",
  1440. "uri": "https://fr.statcounter.com/about/legal/#privacy",
  1441. "needConsent": true,
  1442. "cookies": ['sc_is_visitor_unique'],
  1443. "js": function () {
  1444. "use strict";
  1445. var uniqIds = [],
  1446. i,
  1447. uri = '//statcounter.com/counter/counter.js';
  1448. tarteaucitron.fallback(['statcounter-canvas'], function (x) {
  1449. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  1450. uniqIds.push(uniqId);
  1451. return '<div id="' + uniqId + '"></div>';
  1452. });
  1453. for (i = 0; i < uniqIds.length; i += 1) {
  1454. tarteaucitron.makeAsync.init(uri, uniqIds[i]);
  1455. }
  1456. },
  1457. "fallback": function () {
  1458. "use strict";
  1459. var id = 'statcounter';
  1460. tarteaucitron.fallback(['statcounter-canvas'], tarteaucitron.engage(id));
  1461. }
  1462. };
  1463. // timelinejs
  1464. tarteaucitron.services.timelinejs = {
  1465. "key": "timelinejs",
  1466. "type": "api",
  1467. "name": "Timeline JS",
  1468. "uri": "http://timeline.knightlab.com/#help",
  1469. "needConsent": true,
  1470. "cookies": [],
  1471. "js": function () {
  1472. "use strict";
  1473. tarteaucitron.fallback(['timelinejs-canvas'], function (x) {
  1474. var spreadsheet_id = x.getAttribute("spreadsheet_id"),
  1475. width = x.getAttribute("width"),
  1476. height = x.getAttribute("height"),
  1477. lang = x.getAttribute("lang_2_letter"),
  1478. font = x.getAttribute("font"),
  1479. map = x.getAttribute("map"),
  1480. start_at_end = x.getAttribute("start_at_end"),
  1481. hash_bookmark = x.getAttribute("hash_bookmark"),
  1482. start_at_slide = x.getAttribute("start_at_slide"),
  1483. start_zoom = x.getAttribute("start_zoom"),
  1484. 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;
  1485. return '<iframe src="' + url + '" width="' + width + '" height="' + height + '" frameborder="0" allowtransparency allowfullscreen></iframe>';
  1486. });
  1487. },
  1488. "fallback": function () {
  1489. "use strict";
  1490. var id = 'timelinejs';
  1491. tarteaucitron.fallback(['timelinejs-canvas'], function (elem) {
  1492. elem.style.width = elem.getAttribute('width') + 'px';
  1493. elem.style.height = elem.getAttribute('height') + 'px';
  1494. return tarteaucitron.engage(id);
  1495. });
  1496. }
  1497. };
  1498. // typekit
  1499. tarteaucitron.services.typekit = {
  1500. "key": "typekit",
  1501. "type": "api",
  1502. "name": "Typekit (adobe)",
  1503. "uri": "http://www.adobe.com/fr/privacy.html",
  1504. "needConsent": true,
  1505. "cookies": [],
  1506. "js": function () {
  1507. "use strict";
  1508. if (tarteaucitron.user.typekitId === undefined) {
  1509. return;
  1510. }
  1511. tarteaucitron.addScript('//use.typekit.net/' + tarteaucitron.user.typekitId + '.js', '', function () {
  1512. try {
  1513. Typekit.load();
  1514. } catch (e) {}
  1515. });
  1516. }
  1517. };
  1518. // twenga
  1519. tarteaucitron.services.twenga = {
  1520. "key": "twenga",
  1521. "type": "ads",
  1522. "name": "Twenga",
  1523. "uri": "http://www.twenga.com/privacy.php",
  1524. "needConsent": true,
  1525. "cookies": [],
  1526. "js": function () {
  1527. "use strict";
  1528. if (tarteaucitron.user.twengaId === undefined || tarteaucitron.user.twengaLocale === undefined) {
  1529. return;
  1530. }
  1531. tarteaucitron.addScript('//tracker.twenga.' + tarteaucitron.user.twengaLocale + '/st/tracker_' + tarteaucitron.user.twengaId + '.js');
  1532. }
  1533. };
  1534. // twitter
  1535. tarteaucitron.services.twitter = {
  1536. "key": "twitter",
  1537. "type": "social",
  1538. "name": "Twitter",
  1539. "uri": "https://support.twitter.com/articles/20170514",
  1540. "needConsent": true,
  1541. "cookies": [],
  1542. "js": function () {
  1543. "use strict";
  1544. tarteaucitron.fallback(['tacTwitter'], '');
  1545. tarteaucitron.addScript('//platform.twitter.com/widgets.js', 'twitter-wjs');
  1546. },
  1547. "fallback": function () {
  1548. "use strict";
  1549. var id = 'twitter';
  1550. tarteaucitron.fallback(['tacTwitter'], tarteaucitron.engage(id));
  1551. }
  1552. };
  1553. // twitter embed
  1554. tarteaucitron.services.twitterembed = {
  1555. "key": "twitterembed",
  1556. "type": "social",
  1557. "name": "Twitter (cards)",
  1558. "uri": "https://support.twitter.com/articles/20170514",
  1559. "needConsent": true,
  1560. "cookies": [],
  1561. "js": function () {
  1562. "use strict";
  1563. var uniqIds = [],
  1564. i,
  1565. e,
  1566. html;
  1567. tarteaucitron.fallback(['twitterembed-canvas'], function (x) {
  1568. var uniqId = '_' + Math.random().toString(36).substr(2, 9);
  1569. uniqIds.push(uniqId);
  1570. html = '<div id="' + uniqId + '" ';
  1571. html += 'tweetid="' + x.getAttribute('tweetid') + '" ';
  1572. html += 'theme="' + x.getAttribute('theme') + '" ';
  1573. html += 'cards="' + x.getAttribute('cards') + '" ';
  1574. html += 'conversation="' + x.getAttribute('conversation') + '" ';
  1575. html += 'data-width="' + x.getAttribute('data-width') + '" ';
  1576. html += 'data-align="' + x.getAttribute('data-align') + '" ';
  1577. html += '></div>';
  1578. return html;
  1579. });
  1580. tarteaucitron.addScript('//platform.twitter.com/widgets.js', 'twitter-wjs', function () {
  1581. for (i = 0; i < uniqIds.length; i += 1) {
  1582. e = document.getElementById(uniqIds[i]);
  1583. twttr.widgets.createTweet(
  1584. e.getAttribute('tweetid'),
  1585. e,
  1586. {
  1587. theme: e.getAttribute('theme'),
  1588. cards: e.getAttribute('cards'),
  1589. conversation: e.getAttribute('conversation'),
  1590. lang: tarteaucitron.getLanguage(),
  1591. dnt: true,
  1592. width: e.getAttribute('data-width'),
  1593. align: e.getAttribute('data-align')
  1594. }
  1595. );
  1596. }
  1597. });
  1598. },
  1599. "fallback": function () {
  1600. "use strict";
  1601. var id = 'twitterembed';
  1602. tarteaucitron.fallback(['twitterembed-canvas'], function (elem) {
  1603. elem.style.width = elem.getAttribute('data-width') + 'px';
  1604. return tarteaucitron.engage(id);
  1605. });
  1606. }
  1607. };
  1608. // twitter timeline
  1609. tarteaucitron.services.twittertimeline = {
  1610. "key": "twittertimeline",
  1611. "type": "social",
  1612. "name": "Twitter (timelines)",
  1613. "uri": "https://support.twitter.com/articles/20170514",
  1614. "needConsent": true,
  1615. "cookies": [],
  1616. "js": function () {
  1617. "use strict";
  1618. tarteaucitron.fallback(['tacTwitterTimelines'], '');
  1619. tarteaucitron.addScript('//platform.twitter.com/widgets.js', 'twitter-wjs');
  1620. },
  1621. "fallback": function () {
  1622. "use strict";
  1623. var id = 'twittertimeline';
  1624. tarteaucitron.fallback(['tacTwitterTimelines'], tarteaucitron.engage(id));
  1625. }
  1626. };
  1627. // user voice
  1628. tarteaucitron.services.uservoice = {
  1629. "key": "uservoice",
  1630. "type": "support",
  1631. "name": "UserVoice",
  1632. "uri": "https://www.uservoice.com/privacy/",
  1633. "needConsent": true,
  1634. "cookies": [],
  1635. "js": function () {
  1636. "use strict";
  1637. if (tarteaucitron.user.userVoiceApi === undefined) {
  1638. return;
  1639. }
  1640. tarteaucitron.addScript('//widget.uservoice.com/' + tarteaucitron.user.userVoiceApi + '.js');
  1641. }
  1642. };
  1643. // vimeo
  1644. tarteaucitron.services.vimeo = {
  1645. "key": "vimeo",
  1646. "type": "video",
  1647. "name": "Vimeo",
  1648. "uri": "http://vimeo.com/privacy",
  1649. "needConsent": true,
  1650. "cookies": ['__utmt_player', '__utma', '__utmb', '__utmc', '__utmv', 'vuid', '__utmz', 'player'],
  1651. "js": function () {
  1652. "use strict";
  1653. tarteaucitron.fallback(['vimeo_player'], function (x) {
  1654. var video_id = x.getAttribute("videoID"),
  1655. video_width = x.getAttribute("width"),
  1656. frame_width = 'width=',
  1657. video_height = x.getAttribute("height"),
  1658. frame_height = 'height=',
  1659. video_frame;
  1660. if (video_id === undefined) {
  1661. return "";
  1662. }
  1663. if (video_width !== undefined) {
  1664. frame_width += '"' + video_width + '" ';
  1665. } else {
  1666. frame_width += '"" ';
  1667. }
  1668. if (video_height !== undefined) {
  1669. frame_height += '"' + video_height + '" ';
  1670. } else {
  1671. frame_height += '"" ';
  1672. }
  1673. video_frame = '<iframe src="//player.vimeo.com/video/' + video_id + '" ' + frame_width + frame_height + ' frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
  1674. return video_frame;
  1675. });
  1676. },
  1677. "fallback": function () {
  1678. "use strict";
  1679. var id = 'vimeo';
  1680. tarteaucitron.fallback(['vimeo_player'], function (elem) {
  1681. elem.style.width = elem.getAttribute('width') + 'px';
  1682. elem.style.height = elem.getAttribute('height') + 'px';
  1683. return tarteaucitron.engage(id);
  1684. });
  1685. }
  1686. };
  1687. // visualrevenue
  1688. tarteaucitron.services.visualrevenue = {
  1689. "key": "visualrevenue",
  1690. "type": "analytic",
  1691. "name": "VisualRevenue",
  1692. "uri": "http://www.outbrain.com/legal/privacy-713/",
  1693. "needConsent": true,
  1694. "cookies": ['__vrf', '__vrm', '__vrl', '__vry', '__vru', '__vrid', '__vrz'],
  1695. "js": function () {
  1696. "use strict";
  1697. if (tarteaucitron.user.visualrevenueId === undefined) {
  1698. return;
  1699. }
  1700. window._vrq = window._vrq || [];
  1701. window._vrq.push(['id', tarteaucitron.user.visualrevenueId]);
  1702. window._vrq.push(['automate', true]);
  1703. window._vrq.push(['track', function () {}]);
  1704. tarteaucitron.addScript('http://a.visualrevenue.com/vrs.js');
  1705. }
  1706. };
  1707. // vshop
  1708. tarteaucitron.services.vshop = {
  1709. "key": "vshop",
  1710. "type": "ads",
  1711. "name": "vShop",
  1712. "uri": "http://vshop.fr/privacy-policy",
  1713. "needConsent": true,
  1714. "cookies": [],
  1715. "js": function () {
  1716. "use strict";
  1717. tarteaucitron.fallback(['vcashW'], '');
  1718. tarteaucitron.addScript('//vshop.fr/js/w.js');
  1719. },
  1720. "fallback": function () {
  1721. "use strict";
  1722. var id = 'vshop';
  1723. tarteaucitron.fallback(['vcashW'], tarteaucitron.engage(id));
  1724. }
  1725. };
  1726. // wysistat
  1727. tarteaucitron.services.wysistat = {
  1728. "key": "wysistat",
  1729. "type": "analytic",
  1730. "name": "Wysistat",
  1731. "uri": "http://wysistat.net/contact/",
  1732. "needConsent": true,
  1733. "cookies": ['Wysistat'],
  1734. "js": function () {
  1735. "use strict";
  1736. if (tarteaucitron.user.wysistat === undefined) {
  1737. return;
  1738. }
  1739. tarteaucitron.addScript('//www.wysistat.com/statistique.js', '', function () {
  1740. 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);
  1741. });
  1742. }
  1743. };
  1744. // xiti
  1745. tarteaucitron.services.xiti = {
  1746. "key": "xiti",
  1747. "type": "analytic",
  1748. "name": "Xiti",
  1749. "uri": "http://www.atinternet.com/politique-du-respect-de-la-vie-privee/",
  1750. "needConsent": true,
  1751. "cookies": [],
  1752. "js": function () {
  1753. "use strict";
  1754. if (tarteaucitron.user.xitiId === undefined) {
  1755. return;
  1756. }
  1757. var Xt_param = 's=' + tarteaucitron.user.xitiId + '&p=',
  1758. Xt_r,
  1759. Xt_h,
  1760. Xt_i,
  1761. Xt_s,
  1762. div = document.createElement('div');
  1763. try {
  1764. Xt_r = top.document.referrer;
  1765. } catch (e) {
  1766. Xt_r = document.referrer;
  1767. }
  1768. Xt_h = new Date();
  1769. Xt_i = '<img style="display:none" border="0" alt="" ';
  1770. Xt_i += 'src="http://logv3.xiti.com/hit.xiti?' + Xt_param;
  1771. Xt_i += '&hl=' + Xt_h.getHours() + 'x' + Xt_h.getMinutes() + 'x' + Xt_h.getSeconds();
  1772. if (parseFloat(navigator.appVersion) >= 4) {
  1773. Xt_s = screen;
  1774. Xt_i += '&r=' + Xt_s.width + 'x' + Xt_s.height + 'x' + Xt_s.pixelDepth + 'x' + Xt_s.colorDepth;
  1775. }
  1776. div.innerHTML = Xt_i + '&ref=' + Xt_r.replace(/[<>"]/g, '').replace(/&/g, '$') + '" title="Internet Audience">';
  1777. document.getElementsByTagName('body')[0].appendChild(div.firstChild);
  1778. if (typeof tarteaucitron.user.xitiMore === 'function') {
  1779. tarteaucitron.user.xitiMore();
  1780. }
  1781. }
  1782. };
  1783. // youtube
  1784. tarteaucitron.services.youtube = {
  1785. "key": "youtube",
  1786. "type": "video",
  1787. "name": "YouTube",
  1788. "uri": "https://www.google.fr/intl/fr/policies/privacy/",
  1789. "needConsent": true,
  1790. "cookies": ['VISITOR_INFO1_LIVE', 'YSC', 'PREF', 'GEUP'],
  1791. "js": function () {
  1792. "use strict";
  1793. tarteaucitron.fallback(['youtube_player'], function (x) {
  1794. var video_id = x.getAttribute("videoID"),
  1795. video_width = x.getAttribute("width"),
  1796. frame_width = 'width=',
  1797. video_height = x.getAttribute("height"),
  1798. frame_height = 'height=',
  1799. video_frame,
  1800. params = 'theme=' + x.getAttribute("theme") + '&rel=' + x.getAttribute("rel") + '&controls=' + x.getAttribute("controls") + '&showinfo=' + x.getAttribute("showinfo") + '&autoplay=' + x.getAttribute("autoplay");
  1801. if (video_id === undefined) {
  1802. return "";
  1803. }
  1804. if (video_width !== undefined) {
  1805. frame_width += '"' + video_width + '" ';
  1806. } else {
  1807. frame_width += '"" ';
  1808. }
  1809. if (video_height !== undefined) {
  1810. frame_height += '"' + video_height + '" ';
  1811. } else {
  1812. frame_height += '"" ';
  1813. }
  1814. video_frame = '<iframe type="text/html" ' + frame_width + frame_height + ' src="//www.youtube-nocookie.com/embed/' + video_id + '?' + params + '" frameborder="0"></iframe>';
  1815. return video_frame;
  1816. });
  1817. },
  1818. "fallback": function () {
  1819. "use strict";
  1820. var id = 'youtube';
  1821. tarteaucitron.fallback(['youtube_player'], function (elem) {
  1822. elem.style.width = elem.getAttribute('width') + 'px';
  1823. elem.style.height = elem.getAttribute('height') + 'px';
  1824. return tarteaucitron.engage(id);
  1825. });
  1826. }
  1827. };
  1828. // youtube playlist
  1829. tarteaucitron.services.youtubeplaylist = {
  1830. "key": "youtubeplaylist",
  1831. "type": "video",
  1832. "name": "YouTube (playlist)",
  1833. "uri": "https://www.google.fr/intl/fr/policies/privacy/",
  1834. "needConsent": true,
  1835. "cookies": ['VISITOR_INFO1_LIVE', 'YSC', 'PREF', 'GEUP'],
  1836. "js": function () {
  1837. "use strict";
  1838. tarteaucitron.fallback(['youtube_playlist_player'], function (x) {
  1839. var playlist_id = x.getAttribute("playlistID"),
  1840. video_width = x.getAttribute("width"),
  1841. frame_width = 'width=',
  1842. video_height = x.getAttribute("height"),
  1843. frame_height = 'height=',
  1844. video_frame,
  1845. params = 'theme=' + x.getAttribute("theme") + '&rel=' + x.getAttribute("rel") + '&controls=' + x.getAttribute("controls") + '&showinfo=' + x.getAttribute("showinfo") + '&autoplay=' + x.getAttribute("autoplay");
  1846. if (playlist_id === undefined) {
  1847. return "";
  1848. }
  1849. if (video_width !== undefined) {
  1850. frame_width += '"' + video_width + '" ';
  1851. } else {
  1852. frame_width += '"" ';
  1853. }
  1854. if (video_height !== undefined) {
  1855. frame_height += '"' + video_height + '" ';
  1856. } else {
  1857. frame_height += '"" ';
  1858. }
  1859. video_frame = '<iframe type="text/html" ' + frame_width + frame_height + ' src="//www.youtube-nocookie.com/embed/videoseries?list=' + playlist_id + '&' + params + '" frameborder="0"></iframe>';
  1860. return video_frame;
  1861. });
  1862. },
  1863. "fallback": function () {
  1864. "use strict";
  1865. var id = 'youtubeplaylist';
  1866. tarteaucitron.fallback(['youtube_playlist_player'], function (elem) {
  1867. elem.style.width = elem.getAttribute('width') + 'px';
  1868. elem.style.height = elem.getAttribute('height') + 'px';
  1869. return tarteaucitron.engage(id);
  1870. });
  1871. }
  1872. };
  1873. // zopim
  1874. tarteaucitron.services.zopim = {
  1875. "key": "zopim",
  1876. "type": "support",
  1877. "name": "Zopim",
  1878. "uri": "https://www.zopim.com/privacy",
  1879. "needConsent": true,
  1880. "cookies": ['__zlcid', '__zprivacy'],
  1881. "js": function () {
  1882. "use strict";
  1883. if (tarteaucitron.user.zopimID === undefined) {
  1884. return;
  1885. }
  1886. tarteaucitron.addScript('//v2.zopim.com/?' + tarteaucitron.user.zopimID);
  1887. }
  1888. };
  1889. // xiti smartTag
  1890. tarteaucitron.services.xiti_smarttag = {
  1891. "key": "xiti_smarttag",
  1892. "type": "analytic",
  1893. "name": "Xiti (SmartTag)",
  1894. "uri": "https://www.atinternet.com/societe/protection-des-donnees/",
  1895. "needConsent": true,
  1896. "cookies": ["atidvisitor", "atreman", "atredir", "atsession", "atuserid", "attvtreman", "attvtsession"],
  1897. "js": function () {
  1898. "use strict";
  1899. if (tarteaucitron.user.xiti_smarttagLocalPath !== undefined) {
  1900. tarteaucitron.addScript(tarteaucitron.user.xiti_smarttagLocalPath, 'smarttag', null, null, "onload", "addTracker();");
  1901. } else {
  1902. var xitiSmarttagId = tarteaucitron.user.xiti_smarttagSiteId;
  1903. if (xitiSmarttagId === undefined) {
  1904. return;
  1905. }
  1906. tarteaucitron.addScript('//tag.aticdn.net/' + xitiSmarttagId + '/smarttag.js', 'smarttag', null, null, "onload", "addTracker();");
  1907. }
  1908. }
  1909. };
  1910. // facebook pixel
  1911. tarteaucitron.services.facebookpixel = {
  1912. "key": "facebookpixel",
  1913. "type": "ads",
  1914. "name": "Facebook Pixel",
  1915. "uri": "https://fr-fr.facebook.com/business/help/www/651294705016616",
  1916. "needConsent": true,
  1917. "cookies": ['datr', 'fr', 'reg_ext_ref', 'reg_fb_gate', 'reg_fb_ref', 'sb', 'wd', 'x-src'],
  1918. "js": function () {
  1919. "use strict";
  1920. var n;
  1921. if(window.fbq)return;
  1922. n=window.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)} ;
  1923. if(!window._fbq)window._fbq=n;
  1924. n.push=n;
  1925. n.loaded=!0;
  1926. n.version='2.0';
  1927. n.queue=[];
  1928. tarteaucitron.addScript('https://connect.facebook.net/en_US/fbevents.js');
  1929. fbq('init', tarteaucitron.user.facebookpixelId);
  1930. fbq('track', 'PageView');
  1931. if (typeof tarteaucitron.user.facebookpixelMore === 'function') {
  1932. tarteaucitron.user.facebookpixelMore();
  1933. }
  1934. }
  1935. };
  1936. //Issuu
  1937. tarteaucitron.services.issuu = {
  1938. "key": "issuu",
  1939. "type": "other",
  1940. "name": "Issuu",
  1941. "uri": "https://issuu.com/legal/privacy",
  1942. "needConsent": true,
  1943. "cookies": ['__qca', 'iutk', 'mc'],
  1944. "js": function () {
  1945. "use strict";
  1946. tarteaucitron.fallback(['issuu_player'], function (x) {
  1947. var issuu_id = x.getAttribute("issuuID"),
  1948. issuu_width = x.getAttribute("width"),
  1949. frame_width = 'width=',
  1950. issuu_height = x.getAttribute("height"),
  1951. frame_height = 'height=',
  1952. issuu_frame;
  1953. if (issuu_id === undefined) {
  1954. return "";
  1955. }
  1956. if (issuu_width !== undefined) {
  1957. frame_width += '"' + issuu_width + '" ';
  1958. } else {
  1959. frame_width += '"" ';
  1960. }
  1961. if (issuu_height !== undefined) {
  1962. frame_height += '"' + issuu_height + '" ';
  1963. } else {
  1964. frame_height += '"" ';
  1965. }
  1966. issuu_frame = '<iframe type="text/html" ' + frame_width + frame_height + ' src="//e.issuu.com/embed.html#' + issuu_id + '" frameborder="0"></iframe>';
  1967. return issuu_frame;
  1968. });
  1969. },
  1970. "fallback": function () {
  1971. "use strict";
  1972. var id = 'issuu';
  1973. tarteaucitron.fallback(['issuu_player'], function (elem) {
  1974. elem.style.width = elem.getAttribute('width') + 'px';
  1975. elem.style.height = elem.getAttribute('height') + 'px';
  1976. return tarteaucitron.engage(id);
  1977. });
  1978. }
  1979. };
  1980. // webmecanik
  1981. tarteaucitron.services.webmecanik = {
  1982. "key": "webmecanik",
  1983. "type": "analytic",
  1984. "name": "Webmecanik",
  1985. "uri": "https://webmecanik.com/tos",
  1986. "needConsent": true,
  1987. "cookies": ['mtc_id', 'mtc_sid'],
  1988. "js": function () {
  1989. "use strict";
  1990. if (tarteaucitron.user.webmecanikurl === undefined) {
  1991. return;
  1992. }
  1993. window['WebmecanikTrackingObject'] = 'mt';
  1994. window['mt'] = window['mt'] || function() {
  1995. (window['mt'].q = window['mt'].q || []).push(arguments);
  1996. };
  1997. tarteaucitron.addScript(tarteaucitron.user.webmecanikurl, '', function() {
  1998. mt('send', 'pageview');
  1999. });
  2000. }
  2001. };
  2002. // google analytics multiple
  2003. tarteaucitron.services.multiplegtag = {
  2004. "key": "multiplegtag",
  2005. "type": "analytic",
  2006. "name": "Google Analytics (gtag.js)",
  2007. "uri": "https://support.google.com/analytics/answer/6004245",
  2008. "needConsent": true,
  2009. "cookies": (function () {
  2010. var cookies = ['_ga', '_gat', '_gid', '__utma', '__utmb', '__utmc', '__utmt', '__utmz'];
  2011. if (tarteaucitron.user.multiplegtagUa !== undefined) {
  2012. tarteaucitron.user.multiplegtagUa.forEach(function(ua) {
  2013. cookies.push('_gat_gtag_' + ua.replace(/-/g, '_'));
  2014. });
  2015. }
  2016. return cookies;
  2017. })(),
  2018. "js": function () {
  2019. "use strict";
  2020. window.dataLayer = window.dataLayer || [];
  2021. tarteaucitron.user.multiplegtagUa.forEach(function(ua) {
  2022. tarteaucitron.addScript('https://www.googletagmanager.com/gtag/js?id=' + ua, '', function () {
  2023. window.gtag = function gtag(){dataLayer.push(arguments);}
  2024. gtag('js', new Date());
  2025. gtag('config', ua);
  2026. });
  2027. });
  2028. }
  2029. };
  2030. // Koban
  2031. tarteaucitron.services.koban = {
  2032. "key": "koban",
  2033. "type": "analytic",
  2034. "name": "Koban",
  2035. "uri": "https://koban.cloud/tos",
  2036. "needConsent": true,
  2037. "cookies": ['kbntrk'],
  2038. "js": function () {
  2039. "use strict";
  2040. if (tarteaucitron.user.kobanurl === undefined) {
  2041. return;
  2042. }
  2043. if (tarteaucitron.user.kobanapi === undefined) {
  2044. return;
  2045. }
  2046. window.KobanObject = 'kb';
  2047. window.kb = window.kb || function() {
  2048. window.kb.q = window.kb.q || [];
  2049. window.kb.q.push(arguments);
  2050. };
  2051. window.kb.l = new Date();
  2052. kb('reg', tarteaucitron.user.kobanapi);
  2053. tarteaucitron.addScript(tarteaucitron.user.kobanurl, '', function() {
  2054. });
  2055. }
  2056. };
  2057. // matomo
  2058. /*
  2059. 1. Set the following variable before the initialization :
  2060. tarteaucitron.user.matomoId = YOUR_SITE_ID_FROM_MATOMO;
  2061. tarteaucitron.user.matomoHost = "YOUR_MATOMO_URL"; //eg: https://stat.mydomain.com/
  2062. 2. Push the service :
  2063. (tarteaucitron.job = tarteaucitron.job || []).push('matomo');
  2064. 3. HTML
  2065. You don't need to add any html code, if the service is autorized, the javascript is added. otherwise no.
  2066. */
  2067. tarteaucitron.services.matomo = {
  2068. "key": "matomo",
  2069. "type": "analytic",
  2070. "name": "Matomo (formerly known as Piwik)",
  2071. "uri": "https://matomo.org/faq/general/faq_146/",
  2072. "needConsent": true,
  2073. "cookies": ['_pk_ref', '_pk_cvar', '_pk_id', '_pk_ses', '_pk_hsr', 'piwik_ignore', '_pk_uid'],
  2074. "js": function () {
  2075. "use strict";
  2076. if (tarteaucitron.user.matomoId === undefined) {
  2077. return;
  2078. }
  2079. window._paq = window._paq || [];
  2080. window._paq.push(["setSiteId", tarteaucitron.user.matomoId]);
  2081. window._paq.push(["setTrackerUrl", tarteaucitron.user.matomoHost + "piwik.php"]);
  2082. window._paq.push(["setDoNotTrack", 1]);
  2083. window._paq.push(["trackPageView"]);
  2084. window._paq.push(["setIgnoreClasses", ["no-tracking", "colorbox"]]);
  2085. window._paq.push(["enableLinkTracking"]);
  2086. tarteaucitron.addScript(tarteaucitron.user.matomoHost + 'piwik.js', '', '', true, 'defer', true);
  2087. }
  2088. };
  2089. // Hotjar
  2090. /*
  2091. 1. Set the following variable before the initialization :
  2092. tarteaucitron.user.hotjarId = YOUR_WEBSITE_ID;
  2093. tarteaucitron.user.HotjarSv = XXXX; // Can be found in your website tracking code as "hjvs=XXXX"
  2094. 2. Push the service :
  2095. (tarteaucitron.job = tarteaucitron.job || []).push('hotjar');
  2096. 3. HTML
  2097. You don't need to add any html code, if the service is autorized, the javascript is added. otherwise no.
  2098. */
  2099. tarteaucitron.services.hotjar = {
  2100. "key": "hotjar",
  2101. "type": "analytic",
  2102. "name": "Hotjar",
  2103. "uri": "https://help.hotjar.com/hc/en-us/sections/115003204947-What-is-Hotjar-",
  2104. "needConsent": true,
  2105. "cookies": [],
  2106. "js": function () {
  2107. "use strict";
  2108. if (tarteaucitron.user.hotjarId === undefined || tarteaucitron.user.HotjarSv === undefined) {
  2109. return;
  2110. }
  2111. window.hj = window.hj || function() {
  2112. (window.hj.q = window.hj.q || []).push(arguments)
  2113. };
  2114. window._hjSettings = {
  2115. hjid: tarteaucitron.user.hotjarId,
  2116. hjsv: tarteaucitron.user.HotjarSv
  2117. };
  2118. var uri = 'https://static.hotjar.com/c/hotjar-';
  2119. var extension = '.js?sv=';
  2120. tarteaucitron.addScript(uri + window._hjSettings.hjid + extension + window._hjSettings.hjsv);
  2121. }
  2122. };