tarteaucitron.js 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. /*jslint browser: true, evil: true */
  2. var scripts = document.getElementsByTagName('script'),
  3. path = scripts[scripts.length - 1].src.split('?')[0],
  4. tarteaucitronForceCDN = (tarteaucitronForceCDN === undefined) ? '' : tarteaucitronForceCDN,
  5. cdn = (tarteaucitronForceCDN === '') ? path.split('/').slice(0, -1).join('/') + '/' : tarteaucitronForceCDN,
  6. alreadyLaunch = (alreadyLaunch === undefined) ? 0 : alreadyLaunch,
  7. tarteaucitronForceLanguage = (tarteaucitronForceLanguage === undefined) ? '' : tarteaucitronForceLanguage,
  8. tarteaucitronForceExpire = (tarteaucitronForceExpire === undefined) ? '' : tarteaucitronForceExpire,
  9. tarteaucitronCustomText = (tarteaucitronCustomText === undefined) ? '' : tarteaucitronCustomText,
  10. // tarteaucitronExpireInDay: true for day(s) value - false for hour(s) value
  11. tarteaucitronExpireInDay = (tarteaucitronExpireInDay === undefined || typeof tarteaucitronExpireInDay !== "boolean") ? true : tarteaucitronExpireInDay,
  12. timeExpire = 31536000000,
  13. tarteaucitronProLoadServices,
  14. tarteaucitronNoAdBlocker = false;
  15. var tarteaucitron = {
  16. "version": 20201110,
  17. "cdn": cdn,
  18. "user": {},
  19. "lang": {},
  20. "services": {},
  21. "added": [],
  22. "idprocessed": [],
  23. "state": [],
  24. "launch": [],
  25. "parameters": {},
  26. "isAjax": false,
  27. "reloadThePage": false,
  28. "events": {
  29. "init": function () {},
  30. "load": function () {},
  31. },
  32. "init": function (params) {
  33. "use strict";
  34. var origOpen;
  35. tarteaucitron.parameters = params;
  36. if (alreadyLaunch === 0) {
  37. alreadyLaunch = 1;
  38. if (window.addEventListener) {
  39. window.addEventListener("load", function () {
  40. tarteaucitron.initEvents.loadEvent(false);
  41. }, false);
  42. window.addEventListener("scroll", function () {
  43. tarteaucitron.initEvents.scrollEvent();
  44. }, false);
  45. window.addEventListener("keydown", function (evt) {
  46. tarteaucitron.initEvents.keydownEvent(false, evt);
  47. }, false);
  48. window.addEventListener("hashchange", function () {
  49. tarteaucitron.initEvents.hashchangeEvent();
  50. }, false);
  51. window.addEventListener("resize", function () {
  52. tarteaucitron.initEvents.resizeEvent();
  53. }, false);
  54. } else {
  55. window.attachEvent("onload", function () {
  56. tarteaucitron.initEvents.loadEvent(true);
  57. });
  58. window.attachEvent("onscroll", function () {
  59. tarteaucitron.initEvents.scrollEvent();
  60. });
  61. window.attachEvent("onkeydown", function (evt) {
  62. tarteaucitron.initEvents.keydownEvent(true, evt);
  63. });
  64. window.attachEvent("onhashchange", function () {
  65. tarteaucitron.initEvents.hashchangeEvent();
  66. });
  67. window.attachEvent("onresize", function () {
  68. tarteaucitron.initEvents.resizeEvent();
  69. });
  70. }
  71. if (typeof XMLHttpRequest !== 'undefined') {
  72. origOpen = XMLHttpRequest.prototype.open;
  73. XMLHttpRequest.prototype.open = function () {
  74. if (window.addEventListener) {
  75. this.addEventListener("load", function () {
  76. if (typeof tarteaucitronProLoadServices === 'function') {
  77. tarteaucitronProLoadServices();
  78. }
  79. }, false);
  80. } else if (typeof this.attachEvent !== 'undefined') {
  81. this.attachEvent("onload", function () {
  82. if (typeof tarteaucitronProLoadServices === 'function') {
  83. tarteaucitronProLoadServices();
  84. }
  85. });
  86. } else {
  87. if (typeof tarteaucitronProLoadServices === 'function') {
  88. setTimeout(tarteaucitronProLoadServices, 1000);
  89. }
  90. }
  91. try {
  92. origOpen.apply(this, arguments);
  93. } catch (err) {}
  94. };
  95. }
  96. }
  97. if(tarteaucitron.events.init) {
  98. tarteaucitron.events.init();
  99. }
  100. },
  101. "initEvents": {
  102. "loadEvent": function (isOldBrowser) {
  103. tarteaucitron.load();
  104. tarteaucitron.fallback(['tarteaucitronOpenPanel'], function (elem) {
  105. if (isOldBrowser) {
  106. elem.attachEvent("onclick", function (event) {
  107. tarteaucitron.userInterface.openPanel();
  108. event.preventDefault();
  109. });
  110. } else {
  111. elem.addEventListener("click", function (event) {
  112. tarteaucitron.userInterface.openPanel();
  113. event.preventDefault();
  114. }, false);
  115. }
  116. }, true);
  117. },
  118. "keydownEvent": function (isOldBrowser, evt) {
  119. if (evt.keyCode === 27) {
  120. tarteaucitron.userInterface.closePanel();
  121. }
  122. if (isOldBrowser) {
  123. if ( evt.keyCode === 9 && focusableEls.indexOf(evt.target) >= 0) {
  124. if ( evt.shiftKey ) /* shift + tab */ {
  125. if (document.activeElement === firstFocusableEl) {
  126. lastFocusableEl.focus();
  127. evt.preventDefault();
  128. }
  129. } else /* tab */ {
  130. if (document.activeElement === lastFocusableEl) {
  131. firstFocusableEl.focus();
  132. evt.preventDefault();
  133. }
  134. }
  135. }
  136. }
  137. },
  138. "hashchangeEvent": function () {
  139. if (document.location.hash === tarteaucitron.hashtag && tarteaucitron.hashtag !== '') {
  140. tarteaucitron.userInterface.openPanel();
  141. }
  142. },
  143. "resizeEvent": function () {
  144. var tacElem = document.getElementById('tarteaucitron');
  145. var tacCookieContainer = document.getElementById('tarteaucitronCookiesListContainer');
  146. if (tacElem && tacElem.style.display === 'block') {
  147. tarteaucitron.userInterface.jsSizing('main');
  148. }
  149. if (tacCookieContainer && tacCookieContainer.style.display === 'block') {
  150. tarteaucitron.userInterface.jsSizing('cookie');
  151. }
  152. },
  153. "scrollEvent": function () {
  154. var scrollPos = window.pageYOffset || document.documentElement.scrollTop;
  155. var heightPosition;
  156. var tacPercentage = document.getElementById('tarteaucitronPercentage');
  157. var tacAlertBig = document.getElementById('tarteaucitronAlertBig');
  158. if (tacAlertBig && !tarteaucitron.highPrivacy) {
  159. if (tacAlertBig.style.display === 'block') {
  160. heightPosition = tacAlertBig.offsetHeight + 'px';
  161. if (scrollPos > (screen.height * 2)) {
  162. tarteaucitron.userInterface.respondAll(true);
  163. } else if (scrollPos > (screen.height / 2)) {
  164. document.getElementById('tarteaucitronDisclaimerAlert').innerHTML = '<strong>' + tarteaucitron.lang.alertBigScroll + '</strong> ' + tarteaucitron.lang.alertBig;
  165. }
  166. if (tacPercentage) {
  167. if (tarteaucitron.orientation === 'top') {
  168. tacPercentage.style.top = heightPosition;
  169. } else {
  170. tacPercentage.style.bottom = heightPosition;
  171. }
  172. tacPercentage.style.width = ((100 / (screen.height * 2)) * scrollPos) + '%';
  173. }
  174. }
  175. }
  176. },
  177. },
  178. "load": function () {
  179. "use strict";
  180. var cdn = tarteaucitron.cdn,
  181. language = tarteaucitron.getLanguage(),
  182. useJSDelivrMinifiedJS = cdn.includes("cdn.jsdelivr.net"),
  183. pathToLang = cdn + 'lang/tarteaucitron.' + language + (useJSDelivrMinifiedJS ? '.min' : '') + '.js?v=' + tarteaucitron.version,
  184. pathToServices = cdn + 'tarteaucitron.services' + (useJSDelivrMinifiedJS ? '.min' : '') + '.js?v=' + tarteaucitron.version,
  185. linkElement = document.createElement('link'),
  186. defaults = {
  187. "adblocker": false,
  188. "hashtag": '#tarteaucitron',
  189. "cookieName": 'tarteaucitron',
  190. "highPrivacy": true,
  191. "orientation": "middle",
  192. "bodyPosition": "bottom",
  193. "removeCredit": false,
  194. "showAlertSmall": false,
  195. "showIcon": true,
  196. "iconPosition": "BottomRight",
  197. "cookieslist": false,
  198. "handleBrowserDNTRequest": false,
  199. "DenyAllCta": true,
  200. "AcceptAllCta" : true,
  201. "moreInfoLink": true,
  202. "privacyUrl": "",
  203. "useExternalCss": false,
  204. "useExternalJs": false,
  205. "mandatory": true,
  206. "closePopup": false
  207. },
  208. params = tarteaucitron.parameters;
  209. // Don't show the middle bar if we are on the privacy policy or more page
  210. if (((tarteaucitron.parameters.readmoreLink !== undefined && window.location.href == tarteaucitron.parameters.readmoreLink) || window.location.href == tarteaucitron.parameters.privacyUrl) && tarteaucitron.parameters.orientation == "middle") {
  211. tarteaucitron.parameters.orientation = "bottom";
  212. }
  213. // Step -1
  214. if (typeof tarteaucitronCustomPremium !== 'undefined') {
  215. tarteaucitronCustomPremium();
  216. }
  217. // Step 0: get params
  218. if (params !== undefined) {
  219. for (var k in defaults) {
  220. if(!tarteaucitron.parameters.hasOwnProperty(k)) {
  221. tarteaucitron.parameters[k] = defaults[k];
  222. }
  223. }
  224. }
  225. // global
  226. tarteaucitron.orientation = tarteaucitron.parameters.orientation;
  227. tarteaucitron.hashtag = tarteaucitron.parameters.hashtag;
  228. tarteaucitron.highPrivacy = tarteaucitron.parameters.highPrivacy;
  229. tarteaucitron.handleBrowserDNTRequest = tarteaucitron.parameters.handleBrowserDNTRequest;
  230. // Step 1: load css
  231. if ( !tarteaucitron.parameters.useExternalCss ) {
  232. linkElement.rel = 'stylesheet';
  233. linkElement.type = 'text/css';
  234. linkElement.href = cdn + 'css/tarteaucitron' + (useJSDelivrMinifiedJS ? '.min' : '') + '.css?v=' + tarteaucitron.version;
  235. document.getElementsByTagName('head')[0].appendChild(linkElement);
  236. }
  237. // Step 2: load language and services
  238. tarteaucitron.addInternalScript(pathToLang, '', function () {
  239. if(tarteaucitronCustomText !== ''){
  240. tarteaucitron.lang = tarteaucitron.AddOrUpdate(tarteaucitron.lang, tarteaucitronCustomText);
  241. }
  242. tarteaucitron.addInternalScript(pathToServices, '', function () {
  243. // css for new middle bar
  244. if (tarteaucitron.orientation === 'middle') {
  245. var customThemeMiddle = document.createElement('style'),
  246. cssRuleMiddle = 'div#tarteaucitronRoot.tarteaucitronBeforeVisible:before {content: \'\';position: fixed;width: 100%;height: 100%;background: white;top: 0;left: 0;z-index: 999;opacity: 0.5;}div#tarteaucitronAlertBig:before {content: \'' + tarteaucitron.lang.middleBarHead + '\';font-size: 35px;}body #tarteaucitronRoot div#tarteaucitronAlertBig {width: 60%;min-width: 285px;height: auto;margin: auto;left: 50%;top: 50%;transform: translate(-50%, -50%);box-shadow: 0 0 9000px #000;border-radius: 20px;padding: 35px 25px;}span#tarteaucitronDisclaimerAlert {padding: 0 30px;}#tarteaucitronRoot span#tarteaucitronDisclaimerAlert {margin: 10px 0 30px;display: block;text-align: center;font-size: 21px;}@media screen and (max-width: 900px) {div#tarteaucitronAlertBig button {margin: 0 auto 10px!important;display: block!important;}}';
  247. customThemeMiddle.type = 'text/css';
  248. if (customThemeMiddle.styleSheet) {
  249. customThemeMiddle.styleSheet.cssText = cssRuleMiddle;
  250. } else {
  251. customThemeMiddle.appendChild(document.createTextNode(cssRuleMiddle));
  252. }
  253. document.getElementsByTagName('head')[0].appendChild(customThemeMiddle);
  254. }
  255. var body = document.body,
  256. div = document.createElement('div'),
  257. html = '',
  258. index,
  259. orientation = 'Top',
  260. cat = ['ads', 'analytic', 'api', 'comment', 'social', 'support', 'video', 'other'],
  261. i;
  262. cat = cat.sort(function (a, b) {
  263. if (tarteaucitron.lang[a].title > tarteaucitron.lang[b].title) { return 1; }
  264. if (tarteaucitron.lang[a].title < tarteaucitron.lang[b].title) { return -1; }
  265. return 0;
  266. });
  267. // Step 3: prepare the html
  268. html += '<div id="tarteaucitronPremium"></div>';
  269. html += '<button type="button" id="tarteaucitronBack" aria-label="' + tarteaucitron.lang.close + '"></button>';
  270. html += '<div id="tarteaucitron" role="dialog" aria-labelledby="dialogTitle">';
  271. html += ' <button type="button" id="tarteaucitronClosePanel">';
  272. html += ' ' + tarteaucitron.lang.close;
  273. html += ' </button>';
  274. html += ' <div id="tarteaucitronServices">';
  275. html += ' <div class="tarteaucitronLine tarteaucitronMainLine" id="tarteaucitronMainLineOffset">';
  276. html += ' <span class="tarteaucitronH1" role="heading" aria-level="1" id="dialogTitle">'+ tarteaucitron.lang.title + '</span>';
  277. html += ' <div id="tarteaucitronInfo">';
  278. html += ' ' + tarteaucitron.lang.disclaimer;
  279. if (tarteaucitron.parameters.privacyUrl !== "") {
  280. html += ' <br/><br/>';
  281. html += ' <button type="button" id="tarteaucitronPrivacyUrlDialog">';
  282. html += ' ' + tarteaucitron.lang.privacyUrl;
  283. html += ' </button>';
  284. }
  285. html += ' </div>';
  286. html += ' <div class="tarteaucitronName">';
  287. html += ' <span class="tarteaucitronH2" role="heading" aria-level="2">' + tarteaucitron.lang.all + '</span>';
  288. html += ' </div>';
  289. html += ' <div class="tarteaucitronAsk" id="tarteaucitronScrollbarAdjust">';
  290. html += ' <button type="button" id="tarteaucitronAllAllowed" class="tarteaucitronAllow">';
  291. html += ' <span class="tarteaucitronCheck"></span> ' + tarteaucitron.lang.allowAll;
  292. html += ' </button> ';
  293. html += ' <button type="button" id="tarteaucitronAllDenied" class="tarteaucitronDeny">';
  294. html += ' <span class="tarteaucitronCross"></span> ' + tarteaucitron.lang.denyAll;
  295. html += ' </button>';
  296. html += ' </div>';
  297. html += ' </div>';
  298. html += ' <div class="tarteaucitronBorder">';
  299. html += ' <div class="clear"></div><ul>';
  300. if (tarteaucitron.parameters.mandatory == true) {
  301. html += '<li id="tarteaucitronServicesTitle_mandatory">';
  302. html += '<div class="tarteaucitronTitle">';
  303. html += ' <button type="button" tabindex="-1">&nbsp; ' + tarteaucitron.lang.mandatoryTitle + '</button>';
  304. html += '</div>';
  305. html += '<ul id="tarteaucitronServices_mandatory">';
  306. html += '<li class="tarteaucitronLine">';
  307. html += ' <div class="tarteaucitronName">';
  308. html += ' <span class="tarteaucitronH3" role="heading" aria-level="3">' + tarteaucitron.lang.mandatoryText + '</span>';
  309. html += ' <span class="tarteaucitronListCookies"></span><br/>';
  310. html += ' </div>';
  311. html += ' <div class="tarteaucitronAsk">';
  312. html += ' <button type="button" class="tarteaucitronAllow" tabindex="-1">';
  313. html += ' <span class="tarteaucitronCheck"></span> ' + tarteaucitron.lang.allow;
  314. html += ' </button> ';
  315. html += ' <button type="button" class="tarteaucitronDeny" style="visibility:hidden" tabindex="-1">';
  316. html += ' <span class="tarteaucitronCross"></span> ' + tarteaucitron.lang.deny;
  317. html += ' </button> ';
  318. html += ' </div>';
  319. html += '</li>';
  320. html += '</ul></li>';
  321. }
  322. for (i = 0; i < cat.length; i += 1) {
  323. html += ' <li id="tarteaucitronServicesTitle_' + cat[i] + '" class="tarteaucitronHidden">';
  324. html += ' <div class="tarteaucitronTitle">';
  325. html += ' <button type="button" class="catToggleBtn" data-cat="tarteaucitronDetails' + cat[i] + '"><span class="tarteaucitronPlus"></span> ' + tarteaucitron.lang[cat[i]].title + '</button>';
  326. html += ' </div>';
  327. html += ' <div id="tarteaucitronDetails' + cat[i] + '" class="tarteaucitronDetails tarteaucitronInfoBox">';
  328. html += ' ' + tarteaucitron.lang[cat[i]].details;
  329. html += ' </div>';
  330. html += ' <ul id="tarteaucitronServices_' + cat[i] + '"></ul></li>';
  331. }
  332. html += ' <li id="tarteaucitronNoServicesTitle" class="tarteaucitronLine">' + tarteaucitron.lang.noServices + '</li>';
  333. html += ' </ul>';
  334. html += ' <div class="tarteaucitronHidden spacer-20" id="tarteaucitronScrollbarChild"></div>';
  335. if (tarteaucitron.parameters.removeCredit === false) {
  336. html += ' <a class="tarteaucitronSelfLink" href="https://tarteaucitron.io/" rel="nofollow noreferrer noopener" target="_blank" title="tarteaucitron ' + tarteaucitron.lang.newWindow + '"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHcAAAAeCAYAAAAWwoEYAAADl0lEQVRoge1Y0W3bQAx9CjKARlC+9GVUmqDJBHEmiDyB6wkcTxBngtgTxJ0gzgQW4C/9aYOmE6g4lTQo+k6y3Rb94QOERNQd+cjj8XiGwWAwGAwGg8FgMBgMBoPB8F8RNRXe+whEKe7c36ZCAeCRxC9Rig2PUd8kPgAsoxSfQ3YAzAA8D/HwYYCb05kBKKO0teFkmbC1jlKsAnq/Abjn+QBqAIsoRS30ttwG/HNz1wH/XIxWTicLdvtW7xTAGEAMtP685CNsBTe2d/BLydfXAG57SEnMAST0zgYZSUCPk02bCvkJduIzuJzDLfPolbY+tLKmar+/8+IRePy4qdpE03qHuH8fipFb4N2+XdA3AJ/0vaQxt7s9FvkIS2XvtqnwM0rxpOQfbnE5G2LhTCmUO2fHIngOmcv+KG3HafDchB6ntwjYqenR2PqC7sOZ3E7FXHB0vqxoFyUyLh7OEH7LOGouvhhN3eIBeKXv0n5MsufdHqXcwYR5U2EbpV35lSspVPJmQj4TcgRK7jTg5IzmPUhhwM5a2WHUFCx+NgiDucmgh7idikLovHFlL0pxQ9xzX+IIP9Y6FrJsqhjlQpZRAkFVDCjZfcCHt6bqJDmuh5ylCWx0RVnk3oumaknqTH5sqrY0fBWyULaHUIgAgxb46MxV3DbieAhxOxUxjSuljig9lMQ/Bcfoi9BTEv9aLORSndVxYOH525sUDC6u2gWxcNzBNRxPanyh3ktKinOgy3WoxPbtUM0t6RkbQnzBnFPgi9GCOEubY9UffIryz9iKRe8s/FUfEWosJJGxagp85bpUO3VywQ46lOtAWfNxKwa4JXQ+628+bpxYGXXMzp5rXH401VEyXwIdowXFaKWSMFHvMTVmGnc+P3oXV2QOiBCfgex8QtcQCbcQE/H+eoHzrkFo1KM7zVO4jVVj5s6lRiWF7zyXyfRMc97J3tzj87mYqZ7E2YjzUct9GUi4tjHLR8dVkBLjQcuHFleWvQfRNEhFR7uX7pkctOwvZXsft7sAtyldEUIN2UTeLxnEfxKYswzdi88BdbZ8hifUoSMftQvP+muRwN6+Q3DeqqRExP9QmTtcheiHh0Ot1x2i2km1bP9pbufw5zZdyWsOrh7vQae5OZWbsMv30pi7cd/CKj3coPEVaCP4Zhx4eQWhOZ1Y9MTXGyP8/iGjEyfa1T4fO/4Lea9vBoPBYDAYDAaDwWAwGAwGwz8GgF8siXCCbrSRhgAAAABJRU5ErkJggg==" alt="tarteaucitron.io" /></a>';
  337. }
  338. html += ' </div>';
  339. html += ' </div>';
  340. html += '</div>';
  341. if (tarteaucitron.parameters.orientation === 'bottom') {
  342. orientation = 'Bottom';
  343. }
  344. if (tarteaucitron.parameters.highPrivacy && !tarteaucitron.parameters.AcceptAllCta) {
  345. html += '<div id="tarteaucitronAlertBig" class="tarteaucitronAlertBig' + orientation + '">';
  346. //html += '<div class="tarteaucitronAlertBigWrapper">';
  347. html += ' <span id="tarteaucitronDisclaimerAlert">';
  348. html += ' ' + tarteaucitron.lang.alertBigPrivacy;
  349. html += ' </span>';
  350. //html += ' <span class="tarteaucitronAlertBigBtnWrapper">';
  351. html += ' <button type="button" id="tarteaucitronPersonalize">';
  352. html += ' ' + tarteaucitron.lang.personalize;
  353. html += ' </button>';
  354. if (tarteaucitron.parameters.privacyUrl !== "") {
  355. html += ' <button type="button" id="tarteaucitronPrivacyUrl">';
  356. html += ' ' + tarteaucitron.lang.privacyUrl;
  357. html += ' </button>';
  358. }
  359. //html += ' </span>';
  360. //html += '</div>';
  361. html += '</div>';
  362. } else {
  363. html += '<div id="tarteaucitronAlertBig" class="tarteaucitronAlertBig' + orientation + '">';
  364. //html += '<div class="tarteaucitronAlertBigWrapper">';
  365. html += ' <span id="tarteaucitronDisclaimerAlert">';
  366. if (tarteaucitron.parameters.highPrivacy) {
  367. html += ' ' + tarteaucitron.lang.alertBigPrivacy;
  368. } else {
  369. html += ' ' + tarteaucitron.lang.alertBigClick + ' ' + tarteaucitron.lang.alertBig;
  370. }
  371. html += ' </span>';
  372. //html += ' <span class="tarteaucitronAlertBigBtnWrapper">';
  373. html += ' <button type="button" class="tarteaucitronCTAButton tarteaucitronAllow" id="tarteaucitronPersonalize2">';
  374. html += ' <span class="tarteaucitronCheck"></span> ' + tarteaucitron.lang.acceptAll;
  375. html += ' </button>';
  376. if (tarteaucitron.parameters.DenyAllCta) {
  377. html += ' <button type="button" class="tarteaucitronCTAButton tarteaucitronDeny" id="tarteaucitronAllDenied2">';
  378. html += ' <span class="tarteaucitronCross"></span> ' + tarteaucitron.lang.denyAll;
  379. html += ' </button>';
  380. //html += ' <br/><br/>';
  381. }
  382. html += ' <button type="button" id="tarteaucitronCloseAlert">';
  383. html += ' ' + tarteaucitron.lang.personalize;
  384. html += ' </button>';
  385. if (tarteaucitron.parameters.privacyUrl !== "") {
  386. html += ' <button type="button" id="tarteaucitronPrivacyUrl">';
  387. html += ' ' + tarteaucitron.lang.privacyUrl;
  388. html += ' </button>';
  389. }
  390. //html += ' </span>';
  391. //html += '</div>';
  392. html += '</div>';
  393. html += '<div id="tarteaucitronPercentage"></div>';
  394. }
  395. if (tarteaucitron.parameters.showIcon === true) {
  396. html += '<div id="tarteaucitronIcon" class="tarteaucitronIcon' + tarteaucitron.parameters.iconPosition + '">';
  397. html += ' <button type="button" id="tarteaucitronManager">';
  398. html += ' <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAGA0lEQVRoge1a207bWBRdBtJwLYZhKDMVmlSK1LxNkPo+ZH6g8B6p5AuALwC+APoFoVLeoT8whPeRSt+CZKmZVu3AiIsRlEtCktGyjy8xzuXYhvahS0JJHJ/4rLP3XnuffcAPfGdQ7mM6jRLSAF4BxqsbewB2lRS2o35mpEQaJcwCyANIdLi1DGBNSWEzqmdHRqRRwjqAJclhtExOSUEP+/xIiDRKhhUWfL7ShTtBuJnqcw+/z4Ql0xNmMEwSSz4kuNIzSgpjSsqYJP/GeE185wYJroedRyiLNEpGLLzzrHSuk+83SgbxvOcyyRaDziWsRVZkSRDinpzPbwVGWIucuohsKynMS47fAQyls/BMSRmKJo3AFhG5wm2N1wF+Zs3zebbFfR0RxrXcJHQlgH+LMW616pR/WiIMEXfW3mtzXyeEGWsjKot8c4TOI98L+iKaR5PS6IUk88RLAO9F8UjrbYoYMOosNavpfmODIiwRXRR/G3ohaWVo1RU/c30jV8ab2mV8qVGzHWBOLyTLZiWs5Rolg/C3ySOi0tXP/k4aEwOwSBKPJs7Rp16ABJTe+p1xVX0It/owqqdDEMRoqd3RFxqDPh20Ig6VEPVC0i5RSCD+6wl6HlW7GksSlUMV11/GrUs5NasFLusDE9ELSVphXemtJwaT/8JyIRvxNNCfBmIiNdR04LII3DSrbe0yjqvyJF/ppptqVlt+MCLCEh/oOkPPP6N38Mb5cnQBGFsEqmXg5j3QMwoMzwGnr4HYbybBq13gZAOom/FO63zdf2qQArCsZrUN2TlJy69eSDKYV+6Q4MpP75ivHzPA53ngaBW4eGuSOt0A/lsGPmXMz0+3TFJcTfFbPfFbfnwlhON+iQhlWmA82CQ4ocQ7c6KcfL3DHuls0yT6Sx4YnLXJDCQOIRRv5yGIJBgP8Sdisj2qubpc5UGJmo+W49ifVmzL8HcpGhQPvZCUKiCliIhEN0tr2OCqHuSA8gwQ/92MkU7gxEmeVqGrTTgpxPXbUrtGWYus0I9thRIraagRQUIDf7Qn4yZhKRiFQIyhfMfUr3yblokVWSJ6k8xSnc7eNN/RjowfCYiFoDUFer1S3gW6JiJ8Nt30EMbEhU+vzSIztuRYjRLsR8IHLjlf7HZ+MrWWEXxNmbvapt4jGSqZRYSkGUetSNTPzHsui5YMQ2ajJUNks6mw4wT54Ok2ShnzzIPCUGshzawCRKy5FqvrTZe0RWzQGvw79m67XZjKmxJrLsICjtZa55gxXy+6F4sYsEtxTqhXdRTLC8ulSDaWoCLsolfN+8YUhOsJV709H7Cudr0LlVEtzqBcN+shEyThdR941OnAbF8pirKJqXyupTRTtQSReiVmXW1j7oBErB0d9xM2WEd5J9ZKYtuR4WKwwBSoORbpGrJ5ZI9lt71irJmGX1px0JYE26uNErawr2zfIcP4OHEKXm66PA3wjpCNEfpJunI4muifPjKvsFCkGjExTq63yxMJsZNMYF/J4HmDC5A3Yq36jy0ClePHVhwuu/b1HSFlEfHD5ZtD1bEK44Qu1mWys6tbWmZyPWckzlPTGiRw/XHCuk+q4Rek+mVrVL/UppwrdDEGNV2kpyuhccgc5Oxm9vWnn+19vJrVpLor0kTUrGacMplb1CfOFyTD4o9uNrHqr2Z+ZMSp1c2XcVSORnh9Q81q3k599ETgkNnjg0nGzi10K7rX+bZpHbrblPcY5A4Zxk2xcjzCvTpd9027Aa0QtouyyrKFRR6D/04DwkFGvHPXM3Qda/Jb4nPgI7hQLVM1q5HIBt2MzQNa57Z1DiiLAGa5Mi+O4Sz3Mpp6laPHO6InII3ITnX1QtI+EOX+m9ZxleOZ/j9PiuKoLi3aqXPuEoSye/Vhkm+LalbLtHhMS0R6zu7aZ3vP2jOjL7QVv4McxhcDnZIelAQibGIbULOapf3PuE1Vs9qeaOTdkVKr00gCQiw4NlBzDvf1Lxx+uP5r3Dgv5KQZRzWn+GRwz8jmDS8itUg7iB6vLuJCF5Uty4A9mVKkFR6MiJDachST/oHvHgD+B4SoUIitpF05AAAAAElFTkSuQmCC" alt="Cookies">';
  399. html += ' </button>';
  400. html += '</div>';
  401. }
  402. if (tarteaucitron.parameters.showAlertSmall === true) {
  403. html += '<div id="tarteaucitronAlertSmall" class="tarteaucitronAlertSmall' + orientation + '">';
  404. html += ' <button type="button" id="tarteaucitronManager">';
  405. html += ' ' + tarteaucitron.lang.alertSmall;
  406. html += ' <span id="tarteaucitronDot">';
  407. html += ' <span id="tarteaucitronDotGreen"></span>';
  408. html += ' <span id="tarteaucitronDotYellow"></span>';
  409. html += ' <span id="tarteaucitronDotRed"></span>';
  410. html += ' </span>';
  411. if (tarteaucitron.parameters.cookieslist === true) {
  412. html += ' </button><!-- @whitespace';
  413. html += ' --><button type="button" id="tarteaucitronCookiesNumber">0</button>';
  414. html += ' <div id="tarteaucitronCookiesListContainer">';
  415. html += ' <button type="button" id="tarteaucitronClosePanelCookie">';
  416. html += ' ' + tarteaucitron.lang.close;
  417. html += ' </button>';
  418. html += ' <div class="tarteaucitronCookiesListMain" id="tarteaucitronCookiesTitle">';
  419. html += ' <span class="tarteaucitronH2" role="heading" aria-level="2" id="tarteaucitronCookiesNumberBis">0 cookie</span>';
  420. html += ' </div>';
  421. html += ' <div id="tarteaucitronCookiesList"></div>';
  422. html += ' </div>';
  423. } else {
  424. html += ' </div>';
  425. }
  426. html += '</div>';
  427. }
  428. tarteaucitron.addInternalScript(tarteaucitron.cdn + 'advertising' + (useJSDelivrMinifiedJS ? '.min' : '') + '.js?v=' + tarteaucitron.version, '', function () {
  429. if (tarteaucitronNoAdBlocker === true || tarteaucitron.parameters.adblocker === false) {
  430. // create a wrapper container at the same level than tarteaucitron so we can add an aria-hidden when tarteaucitron is opened
  431. /*var wrapper = document.createElement('div');
  432. wrapper.id = "contentWrapper";
  433. while (document.body.firstChild)
  434. {
  435. wrapper.appendChild(document.body.firstChild);
  436. }
  437. // Append the wrapper to the body
  438. document.body.appendChild(wrapper);*/
  439. div.id = 'tarteaucitronRoot';
  440. if (tarteaucitron.parameters.bodyPosition === 'top') {
  441. // Prepend tarteaucitron: #tarteaucitronRoot first-child of the body for better accessibility
  442. var bodyFirstChild = body.firstChild;
  443. body.insertBefore(div, bodyFirstChild);
  444. }
  445. else {
  446. // Append tarteaucitron: #tarteaucitronRoot last-child of the body
  447. body.appendChild(div, body);
  448. }
  449. div.innerHTML = html;
  450. //ie compatibility
  451. var tacRootAvailableEvent;
  452. if(typeof(Event) === 'function') {
  453. tacRootAvailableEvent = new Event("tac.root_available");
  454. }else{
  455. tacRootAvailableEvent = document.createEvent('Event');
  456. tacRootAvailableEvent.initEvent("tac.root_available", true, true);
  457. }
  458. //end ie compatibility
  459. window.dispatchEvent(tacRootAvailableEvent);
  460. if (tarteaucitron.job !== undefined) {
  461. tarteaucitron.job = tarteaucitron.cleanArray(tarteaucitron.job);
  462. for (index = 0; index < tarteaucitron.job.length; index += 1) {
  463. tarteaucitron.addService(tarteaucitron.job[index]);
  464. }
  465. } else {
  466. tarteaucitron.job = []
  467. }
  468. tarteaucitron.isAjax = true;
  469. tarteaucitron.job.push = function (id) {
  470. // ie <9 hack
  471. if (typeof tarteaucitron.job.indexOf === 'undefined') {
  472. tarteaucitron.job.indexOf = function (obj, start) {
  473. var i,
  474. j = this.length;
  475. for (i = (start || 0); i < j; i += 1) {
  476. if (this[i] === obj) { return i; }
  477. }
  478. return -1;
  479. };
  480. }
  481. if (tarteaucitron.job.indexOf(id) === -1) {
  482. Array.prototype.push.call(this, id);
  483. }
  484. tarteaucitron.launch[id] = false;
  485. tarteaucitron.addService(id);
  486. };
  487. if (document.location.hash === tarteaucitron.hashtag && tarteaucitron.hashtag !== '') {
  488. tarteaucitron.userInterface.openPanel();
  489. }
  490. tarteaucitron.cookie.number();
  491. setInterval(tarteaucitron.cookie.number, 60000);
  492. }
  493. }, tarteaucitron.parameters.adblocker);
  494. if (tarteaucitron.parameters.adblocker === true) {
  495. setTimeout(function () {
  496. if (tarteaucitronNoAdBlocker === false) {
  497. html = '<div id="tarteaucitronAlertBig" class="tarteaucitronAlertBig' + orientation + ' display-block" role="alert" aria-live="polite">';
  498. html += ' <p id="tarteaucitronDisclaimerAlert">';
  499. html += ' ' + tarteaucitron.lang.adblock + '<br/>';
  500. html += ' <strong>' + tarteaucitron.lang.adblock_call + '</strong>';
  501. html += ' </p>';
  502. html += ' <button type="button" class="tarteaucitronCTAButton" id="tarteaucitronCTAButton">';
  503. html += ' ' + tarteaucitron.lang.reload;
  504. html += ' </button>';
  505. html += '</div>';
  506. html += '<div id="tarteaucitronPremium"></div>';
  507. div.id = 'tarteaucitronRoot';
  508. if (tarteaucitron.parameters.bodyPosition === 'top') {
  509. // Prepend tarteaucitron: #tarteaucitronRoot first-child of the body for better accessibility
  510. var bodyFirstChild = body.firstChild;
  511. body.insertBefore(div, bodyFirstChild);
  512. }
  513. else {
  514. // Append tarteaucitron: #tarteaucitronRoot last-child of the body
  515. body.appendChild(div, body);
  516. }
  517. div.innerHTML = html;
  518. }
  519. }, 1500);
  520. }
  521. if(tarteaucitron.parameters.closePopup === true){
  522. let element = document.getElementById('tarteaucitronAlertBig');
  523. let span = document.createElement('span')
  524. span.textContent = 'X';
  525. span.style.cssText = 'position:absolute; color: #FFFF; font-size:2rem; cursor: pointer; top: 10px; right: 26px';
  526. span.setAttribute('id', "clossCross")
  527. element.insertBefore(span, element.firstElementChild)
  528. document.getElementById("clossCross").onclick = () =>{
  529. tarteaucitron.userInterface.closeAlert();
  530. }
  531. }
  532. // add a little timeout to be sure everything is accessible
  533. setTimeout(function () {
  534. // Setup events
  535. tarteaucitron.addClickEventToId("tarteaucitronPersonalize", function () {
  536. tarteaucitron.userInterface.openPanel();
  537. });
  538. tarteaucitron.addClickEventToId("tarteaucitronPersonalize2", function () {
  539. tarteaucitron.userInterface.respondAll(true);
  540. });
  541. tarteaucitron.addClickEventToId("tarteaucitronManager", function () {
  542. tarteaucitron.userInterface.openPanel();
  543. });
  544. tarteaucitron.addClickEventToId("tarteaucitronBack", function () {
  545. tarteaucitron.userInterface.closePanel();
  546. });
  547. tarteaucitron.addClickEventToId("tarteaucitronClosePanel", function () {
  548. tarteaucitron.userInterface.closePanel();
  549. });
  550. tarteaucitron.addClickEventToId("tarteaucitronClosePanelCookie", function () {
  551. tarteaucitron.userInterface.closePanel();
  552. });
  553. tarteaucitron.addClickEventToId("tarteaucitronPrivacyUrl", function () {
  554. document.location = tarteaucitron.parameters.privacyUrl;
  555. });
  556. tarteaucitron.addClickEventToId("tarteaucitronPrivacyUrlDialog", function () {
  557. document.location = tarteaucitron.parameters.privacyUrl;
  558. });
  559. tarteaucitron.addClickEventToId("tarteaucitronCookiesNumber", function () {
  560. tarteaucitron.userInterface.toggleCookiesList();
  561. });
  562. tarteaucitron.addClickEventToId("tarteaucitronAllAllowed", function () {
  563. tarteaucitron.userInterface.respondAll(true);
  564. });
  565. tarteaucitron.addClickEventToId("tarteaucitronAllDenied", function () {
  566. tarteaucitron.userInterface.respondAll(false);
  567. });
  568. tarteaucitron.addClickEventToId("tarteaucitronAllDenied2", function () {
  569. tarteaucitron.userInterface.respondAll(false);
  570. if (tarteaucitron.reloadThePage === true) {
  571. window.location.reload();
  572. }
  573. });
  574. tarteaucitron.addClickEventToId("tarteaucitronCloseAlert", function () {
  575. tarteaucitron.userInterface.openPanel();
  576. });
  577. tarteaucitron.addClickEventToId("tarteaucitronCTAButton", function () {
  578. location.reload();
  579. });
  580. var toggleBtns = document.getElementsByClassName("catToggleBtn"), i;
  581. for (i = 0; i < toggleBtns.length; i++) {
  582. toggleBtns[i].dataset.index = i;
  583. tarteaucitron.addClickEventToElement(toggleBtns[i], function () {
  584. tarteaucitron.userInterface.toggle('tarteaucitronDetails' + cat[this.dataset.index], 'tarteaucitronInfoBox');
  585. return false;
  586. });
  587. }
  588. var allowBtns = document.getElementsByClassName("tarteaucitronAllow");
  589. for (i = 0; i < allowBtns.length; i++) {
  590. tarteaucitron.addClickEventToElement(allowBtns[i], function () {
  591. tarteaucitron.userInterface.respond(this, true);
  592. });
  593. }
  594. var denyBtns = document.getElementsByClassName("tarteaucitronDeny");
  595. for (i = 0; i < denyBtns.length; i++) {
  596. tarteaucitron.addClickEventToElement(denyBtns[i], function () {
  597. tarteaucitron.userInterface.respond(this, false);
  598. });
  599. }
  600. }, 500);
  601. });
  602. });
  603. if(tarteaucitron.events.load) {
  604. tarteaucitron.events.load();
  605. }
  606. },
  607. "addService": function (serviceId) {
  608. "use strict";
  609. var html = '',
  610. s = tarteaucitron.services,
  611. service = s[serviceId],
  612. cookie = tarteaucitron.cookie.read(),
  613. hostname = document.location.hostname,
  614. hostRef = document.referrer.split('/')[2],
  615. isNavigating = (hostRef === hostname && window.location.href !== tarteaucitron.parameters.privacyUrl),
  616. isAutostart = (!service.needConsent),
  617. isWaiting = (cookie.indexOf(service.key + '=wait') >= 0),
  618. isDenied = (cookie.indexOf(service.key + '=false') >= 0),
  619. isAllowed = ((cookie.indexOf(service.key + '=true') >= 0) || (!service.needConsent && cookie.indexOf(service.key + '=false') < 0)),
  620. isResponded = (cookie.indexOf(service.key + '=false') >= 0 || cookie.indexOf(service.key + '=true') >= 0),
  621. isDNTRequested = (navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1" || window.doNotTrack === "1");
  622. if (tarteaucitron.added[service.key] !== true) {
  623. tarteaucitron.added[service.key] = true;
  624. html += '<li id="' + service.key + 'Line" class="tarteaucitronLine">';
  625. html += ' <div class="tarteaucitronName">';
  626. html += ' <span class="tarteaucitronH3" role="heading" aria-level="3">' + service.name + '</span>';
  627. html += ' <span id="tacCL' + service.key + '" class="tarteaucitronListCookies"></span><br/>';
  628. if (tarteaucitron.parameters.moreInfoLink == true) {
  629. var link = 'https://tarteaucitron.io/service/' + service.key + '/';
  630. if (service.readmoreLink !== undefined && service.readmoreLink !== '') {
  631. link = service.readmoreLink;
  632. }
  633. if (tarteaucitron.parameters.readmoreLink !== undefined && tarteaucitron.parameters.readmoreLink !== '') {
  634. link = tarteaucitron.parameters.readmoreLink;
  635. }
  636. html += ' <a href="' + link + '" target="_blank" rel="noreferrer noopener nofollow" title="'+ tarteaucitron.lang.cookieDetail + ' ' + service.name + ' ' + tarteaucitron.lang.ourSite + ' ' + tarteaucitron.lang.newWindow +'">';
  637. html += ' ' + tarteaucitron.lang.more;
  638. html += ' </a>';
  639. html += ' - ';
  640. html += ' <a href="' + service.uri + '" target="_blank" rel="noreferrer noopener" title="' + service.name + ' ' + tarteaucitron.lang.newWindow + '">';
  641. html += ' ' + tarteaucitron.lang.source;
  642. html += ' </a>';
  643. }
  644. html += ' </div>';
  645. html += ' <div class="tarteaucitronAsk">';
  646. html += ' <button type="button" id="' + service.key + 'Allowed" class="tarteaucitronAllow">';
  647. html += ' <span class="tarteaucitronCheck"></span> ' + tarteaucitron.lang.allow;
  648. html += ' </button> ';
  649. html += ' <button type="button" id="' + service.key + 'Denied" class="tarteaucitronDeny">';
  650. html += ' <span class="tarteaucitronCross"></span> ' + tarteaucitron.lang.deny;
  651. html += ' </button>';
  652. html += ' </div>';
  653. html += '</li>';
  654. tarteaucitron.userInterface.css('tarteaucitronServicesTitle_' + service.type, 'display', 'block');
  655. if (document.getElementById('tarteaucitronServices_' + service.type) !== null) {
  656. document.getElementById('tarteaucitronServices_' + service.type).innerHTML += html;
  657. }
  658. tarteaucitron.userInterface.css('tarteaucitronNoServicesTitle', 'display', 'none');
  659. tarteaucitron.userInterface.order(service.type);
  660. tarteaucitron.addClickEventToId(service.key + 'Allowed', function () {
  661. tarteaucitron.userInterface.respond(this, true);
  662. });
  663. tarteaucitron.addClickEventToId(service.key + 'Denied', function () {
  664. tarteaucitron.userInterface.respond(this, false);
  665. });
  666. }
  667. tarteaucitron.pro('!' + service.key + '=' + isAllowed);
  668. // allow by default for non EU
  669. if (isResponded === false && tarteaucitron.user.bypass === true) {
  670. isAllowed = true;
  671. tarteaucitron.cookie.create(service.key, true);
  672. }
  673. if ((!isResponded && (isAutostart || (isNavigating && isWaiting)) && !tarteaucitron.highPrivacy) || isAllowed) {
  674. if (!isAllowed || (!service.needConsent && cookie.indexOf(service.key + '=false') < 0)) {
  675. tarteaucitron.cookie.create(service.key, true);
  676. }
  677. if (tarteaucitron.launch[service.key] !== true) {
  678. tarteaucitron.launch[service.key] = true;
  679. if (typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + service.key + "_") < 0) { service.js(); }
  680. tarteaucitron.sendEvent(service.key + '_loaded');
  681. }
  682. tarteaucitron.state[service.key] = true;
  683. tarteaucitron.userInterface.color(service.key, true);
  684. } else if (isDenied) {
  685. if (typeof service.fallback === 'function') {
  686. if (typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + service.key + "_") < 0) { service.fallback(); }
  687. }
  688. tarteaucitron.state[service.key] = false;
  689. tarteaucitron.userInterface.color(service.key, false);
  690. } else if (!isResponded && isDNTRequested && tarteaucitron.handleBrowserDNTRequest) {
  691. tarteaucitron.cookie.create(service.key, 'false');
  692. if (typeof service.fallback === 'function') {
  693. if (typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + service.key + "_") < 0) { service.fallback(); }
  694. }
  695. tarteaucitron.state[service.key] = false;
  696. tarteaucitron.userInterface.color(service.key, false);
  697. } else if (!isResponded) {
  698. tarteaucitron.cookie.create(service.key, 'wait');
  699. if (typeof service.fallback === 'function') {
  700. if (typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + service.key + "_") < 0) { service.fallback(); }
  701. }
  702. tarteaucitron.userInterface.color(service.key, 'wait');
  703. tarteaucitron.userInterface.openAlert();
  704. }
  705. tarteaucitron.cookie.checkCount(service.key);
  706. tarteaucitron.sendEvent(service.key + '_added')
  707. },
  708. "sendEvent" : function(event_key) {
  709. if(event_key !== undefined) {
  710. //ie compatibility
  711. var send_event_item;
  712. if(typeof(Event) === 'function') {
  713. send_event_item = new Event(event_key);
  714. }else{
  715. send_event_item = document.createEvent('Event');
  716. send_event_item.initEvent(event_key, true, true);
  717. }
  718. //end ie compatibility
  719. document.dispatchEvent(send_event_item);
  720. }
  721. },
  722. "cleanArray": function cleanArray(arr) {
  723. "use strict";
  724. var i,
  725. len = arr.length,
  726. out = [],
  727. obj = {},
  728. s = tarteaucitron.services;
  729. for (i = 0; i < len; i += 1) {
  730. if (!obj[arr[i]]) {
  731. obj[arr[i]] = {};
  732. if (tarteaucitron.services[arr[i]] !== undefined) {
  733. out.push(arr[i]);
  734. }
  735. }
  736. }
  737. out = out.sort(function (a, b) {
  738. if (s[a].type + s[a].key > s[b].type + s[b].key) { return 1; }
  739. if (s[a].type + s[a].key < s[b].type + s[b].key) { return -1; }
  740. return 0;
  741. });
  742. return out;
  743. },
  744. "userInterface": {
  745. "css": function (id, property, value) {
  746. "use strict";
  747. if (document.getElementById(id) !== null) {
  748. if (property == "display" && value == "none" && (id == "tarteaucitron" || id == "tarteaucitronBack" || id == "tarteaucitronAlertBig")) {
  749. document.getElementById(id).style["opacity"] = "0";
  750. setTimeout(function() {document.getElementById(id).style[property] = value;}, 200);
  751. } else {
  752. document.getElementById(id).style[property] = value;
  753. if (property == "display" && value == "block" && (id == "tarteaucitron" || id == "tarteaucitronAlertBig")) {
  754. document.getElementById(id).style["opacity"] = "0";
  755. setTimeout(function() {document.getElementById(id).style["opacity"] = "1";}, 1);
  756. }
  757. if (property == "display" && value == "block" && id == "tarteaucitronBack") {
  758. document.getElementById(id).style["opacity"] = "0";
  759. setTimeout(function() {document.getElementById(id).style["opacity"] = "0.7";}, 1);
  760. }
  761. }
  762. }
  763. },
  764. "addClass": function (id, className) {
  765. "use strict";
  766. if (document.getElementById(id) !== null) {
  767. document.getElementById(id).classList.add(className);
  768. }
  769. },
  770. "removeClass": function (id, className) {
  771. "use strict";
  772. if (document.getElementById(id) !== null) {
  773. document.getElementById(id).classList.remove(className);
  774. }
  775. },
  776. "respondAll": function (status) {
  777. "use strict";
  778. var s = tarteaucitron.services,
  779. service,
  780. key,
  781. index = 0;
  782. for (index = 0; index < tarteaucitron.job.length; index += 1) {
  783. service = s[tarteaucitron.job[index]];
  784. key = service.key;
  785. if (tarteaucitron.state[key] !== status) {
  786. if (status === false && tarteaucitron.launch[key] === true) {
  787. tarteaucitron.reloadThePage = true;
  788. }
  789. if (tarteaucitron.launch[key] !== true && status === true) {
  790. tarteaucitron.pro('!' + key + '=engage');
  791. tarteaucitron.launch[key] = true;
  792. if (typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + key + "_") < 0) { tarteaucitron.services[key].js(); }
  793. tarteaucitron.sendEvent(key + '_loaded');
  794. }
  795. tarteaucitron.state[key] = status;
  796. tarteaucitron.cookie.create(key, status);
  797. tarteaucitron.userInterface.color(key, status);
  798. }
  799. }
  800. },
  801. "respond": function (el, status) {
  802. "use strict";
  803. if (el.id === '') {
  804. return;
  805. }
  806. var key = el.id.replace(new RegExp("(Eng[0-9]+|Allow|Deni)ed", "g"), '');
  807. if (key.substring(0, 13) === 'tarteaucitron' || key === '') {return;}
  808. // return if same state
  809. if (tarteaucitron.state[key] === status) {
  810. return;
  811. }
  812. if (status === false && tarteaucitron.launch[key] === true) {
  813. tarteaucitron.reloadThePage = true;
  814. }
  815. // if not already launched... launch the service
  816. if (status === true) {
  817. if (tarteaucitron.launch[key] !== true) {
  818. tarteaucitron.pro('!' + key + '=engage');
  819. tarteaucitron.launch[key] = true;
  820. tarteaucitron.sendEvent(key + '_loaded');
  821. if (typeof tarteaucitronMagic === 'undefined' || tarteaucitronMagic.indexOf("_" + key + "_") < 0) { tarteaucitron.services[key].js(); }
  822. }
  823. }
  824. tarteaucitron.state[key] = status;
  825. tarteaucitron.cookie.create(key, status);
  826. tarteaucitron.userInterface.color(key, status);
  827. },
  828. "color": function (key, status) {
  829. "use strict";
  830. var c = 'tarteaucitron',
  831. nbDenied = 0,
  832. nbPending = 0,
  833. nbAllowed = 0,
  834. sum = tarteaucitron.job.length,
  835. index;
  836. if (status === true) {
  837. document.getElementById(key + 'Line').classList.add('tarteaucitronIsAllowed');
  838. document.getElementById(key + 'Line').classList.remove('tarteaucitronIsDenied');
  839. } else if (status === false) {
  840. document.getElementById(key + 'Line').classList.remove('tarteaucitronIsAllowed');
  841. document.getElementById(key + 'Line').classList.add('tarteaucitronIsDenied');
  842. }
  843. // check if all services are allowed
  844. for (index = 0; index < sum; index += 1) {
  845. if (tarteaucitron.state[tarteaucitron.job[index]] === false) {
  846. nbDenied += 1;
  847. } else if (tarteaucitron.state[tarteaucitron.job[index]] === undefined) {
  848. nbPending += 1;
  849. } else if (tarteaucitron.state[tarteaucitron.job[index]] === true) {
  850. nbAllowed += 1;
  851. }
  852. }
  853. tarteaucitron.userInterface.css(c + 'DotGreen', 'width', ((100 / sum) * nbAllowed) + '%');
  854. tarteaucitron.userInterface.css(c + 'DotYellow', 'width', ((100 / sum) * nbPending) + '%');
  855. tarteaucitron.userInterface.css(c + 'DotRed', 'width', ((100 / sum) * nbDenied) + '%');
  856. if (nbDenied === 0 && nbPending === 0) {
  857. tarteaucitron.userInterface.removeClass(c + 'AllDenied', c + 'IsSelected');
  858. tarteaucitron.userInterface.addClass(c + 'AllAllowed', c + 'IsSelected');
  859. tarteaucitron.userInterface.addClass(c + 'MainLineOffset', c + 'IsAllowed');
  860. tarteaucitron.userInterface.removeClass(c + 'MainLineOffset', c + 'IsDenied');
  861. } else if (nbAllowed === 0 && nbPending === 0) {
  862. tarteaucitron.userInterface.removeClass(c + 'AllAllowed', c + 'IsSelected');
  863. tarteaucitron.userInterface.addClass(c + 'AllDenied', c + 'IsSelected');
  864. tarteaucitron.userInterface.removeClass(c + 'MainLineOffset', c + 'IsAllowed');
  865. tarteaucitron.userInterface.addClass(c + 'MainLineOffset', c + 'IsDenied');
  866. } else {
  867. tarteaucitron.userInterface.removeClass(c + 'AllAllowed', c + 'IsSelected');
  868. tarteaucitron.userInterface.removeClass(c + 'AllDenied', c + 'IsSelected');
  869. tarteaucitron.userInterface.removeClass(c + 'MainLineOffset', c + 'IsAllowed');
  870. tarteaucitron.userInterface.removeClass(c + 'MainLineOffset', c + 'IsDenied');
  871. }
  872. // close the alert if all service have been reviewed
  873. if (nbPending === 0) {
  874. tarteaucitron.userInterface.closeAlert();
  875. }
  876. if (tarteaucitron.services[key].cookies.length > 0 && status === false) {
  877. tarteaucitron.cookie.purge(tarteaucitron.services[key].cookies);
  878. }
  879. if (status === true) {
  880. if (document.getElementById('tacCL' + key) !== null) {
  881. document.getElementById('tacCL' + key).innerHTML = '...';
  882. }
  883. setTimeout(function () {
  884. tarteaucitron.cookie.checkCount(key);
  885. }, 2500);
  886. } else {
  887. tarteaucitron.cookie.checkCount(key);
  888. }
  889. },
  890. "openPanel": function () {
  891. "use strict";
  892. tarteaucitron.userInterface.css('tarteaucitron', 'display', 'block');
  893. tarteaucitron.userInterface.css('tarteaucitronBack', 'display', 'block');
  894. tarteaucitron.userInterface.css('tarteaucitronCookiesListContainer', 'display', 'none');
  895. document.getElementById('tarteaucitronClosePanel').focus();
  896. document.getElementsByTagName('body')[0].classList.add('modal-open');
  897. tarteaucitron.userInterface.focusTrap();
  898. tarteaucitron.userInterface.jsSizing('main');
  899. //ie compatibility
  900. var tacOpenPanelEvent;
  901. if(typeof(Event) === 'function') {
  902. tacOpenPanelEvent = new Event("tac.open_panel");
  903. }else{
  904. tacOpenPanelEvent = document.createEvent('Event');
  905. tacOpenPanelEvent.initEvent("tac.open_panel", true, true);
  906. }
  907. //end ie compatibility
  908. window.dispatchEvent(tacOpenPanelEvent);
  909. },
  910. "closePanel": function () {
  911. "use strict";
  912. if (document.location.hash === tarteaucitron.hashtag) {
  913. if (window.history) {
  914. window.history.replaceState('', document.title, window.location.pathname + window.location.search);
  915. } else {
  916. document.location.hash = '';
  917. }
  918. }
  919. tarteaucitron.userInterface.css('tarteaucitron', 'display', 'none');
  920. tarteaucitron.userInterface.css('tarteaucitronCookiesListContainer', 'display', 'none');
  921. tarteaucitron.fallback(['tarteaucitronInfoBox'], function (elem) {
  922. elem.style.display = 'none';
  923. }, true);
  924. if (tarteaucitron.reloadThePage === true) {
  925. window.location.reload();
  926. } else {
  927. tarteaucitron.userInterface.css('tarteaucitronBack', 'display', 'none');
  928. }
  929. if (document.getElementById('tarteaucitronCloseAlert') !== null) {
  930. document.getElementById('tarteaucitronCloseAlert').focus();
  931. }
  932. document.getElementsByTagName('body')[0].classList.remove('modal-open');
  933. //ie compatibility
  934. var tacClosePanelEvent;
  935. if(typeof(Event) === 'function') {
  936. tacClosePanelEvent = new Event("tac.close_panel");
  937. }else{
  938. tacClosePanelEvent = document.createEvent('Event');
  939. tacClosePanelEvent.initEvent("tac.close_panel", true, true);
  940. }
  941. //end ie compatibility
  942. window.dispatchEvent(tacClosePanelEvent);
  943. },
  944. "focusTrap": function() {
  945. "use strict";
  946. var focusableEls,
  947. firstFocusableEl,
  948. lastFocusableEl,
  949. filtered;
  950. focusableEls = document.getElementById('tarteaucitron').querySelectorAll('a[href], button');
  951. filtered = [];
  952. // get only visible items
  953. for (var i = 0, max = focusableEls.length; i < max; i++) {
  954. if (focusableEls[i].offsetHeight > 0) {
  955. filtered.push(focusableEls[i]);
  956. }
  957. }
  958. firstFocusableEl = filtered[0];
  959. lastFocusableEl = filtered[filtered.length - 1];
  960. //loop focus inside tarteaucitron
  961. document.getElementById('tarteaucitron').addEventListener("keydown", function (evt) {
  962. if ( evt.key === 'Tab' || evt.keyCode === 9 ) {
  963. if ( evt.shiftKey ) /* shift + tab */ {
  964. if (document.activeElement === firstFocusableEl) {
  965. lastFocusableEl.focus();
  966. evt.preventDefault();
  967. }
  968. } else /* tab */ {
  969. if (document.activeElement === lastFocusableEl) {
  970. firstFocusableEl.focus();
  971. evt.preventDefault();
  972. }
  973. }
  974. }
  975. })
  976. },
  977. "openAlert": function () {
  978. "use strict";
  979. var c = 'tarteaucitron';
  980. tarteaucitron.userInterface.css(c + 'Percentage', 'display', 'block');
  981. tarteaucitron.userInterface.css(c + 'AlertSmall', 'display', 'none');
  982. tarteaucitron.userInterface.css(c + 'Icon', 'display', 'none');
  983. tarteaucitron.userInterface.css(c + 'AlertBig', 'display', 'block');
  984. tarteaucitron.userInterface.addClass(c + 'Root', 'tarteaucitronBeforeVisible');
  985. //ie compatibility
  986. var tacOpenAlertEvent;
  987. if(typeof(Event) === 'function') {
  988. tacOpenAlertEvent = new Event("tac.open_alert");
  989. }else{
  990. tacOpenAlertEvent = document.createEvent('Event');
  991. tacOpenAlertEvent.initEvent("tac.open_alert", true, true);
  992. }
  993. //end ie compatibility
  994. window.dispatchEvent(tacOpenAlertEvent);
  995. },
  996. "closeAlert": function () {
  997. "use strict";
  998. var c = 'tarteaucitron';
  999. tarteaucitron.userInterface.css(c + 'Percentage', 'display', 'none');
  1000. tarteaucitron.userInterface.css(c + 'AlertSmall', 'display', 'block');
  1001. tarteaucitron.userInterface.css(c + 'Icon', 'display', 'block');
  1002. tarteaucitron.userInterface.css(c + 'AlertBig', 'display', 'none');
  1003. tarteaucitron.userInterface.removeClass(c + 'Root', 'tarteaucitronBeforeVisible');
  1004. tarteaucitron.userInterface.jsSizing('box');
  1005. //ie compatibility
  1006. var tacCloseAlertEvent;
  1007. if(typeof(Event) === 'function') {
  1008. tacCloseAlertEvent = new Event("tac.close_alert");
  1009. }else{
  1010. tacCloseAlertEvent = document.createEvent('Event');
  1011. tacCloseAlertEvent.initEvent("tac.close_alert", true, true);
  1012. }
  1013. //end ie compatibility
  1014. window.dispatchEvent(tacCloseAlertEvent);
  1015. },
  1016. "toggleCookiesList": function () {
  1017. "use strict";
  1018. var div = document.getElementById('tarteaucitronCookiesListContainer');
  1019. if (div === null) {
  1020. return;
  1021. }
  1022. if (div.style.display !== 'block') {
  1023. tarteaucitron.cookie.number();
  1024. div.style.display = 'block';
  1025. tarteaucitron.userInterface.jsSizing('cookie');
  1026. tarteaucitron.userInterface.css('tarteaucitron', 'display', 'none');
  1027. tarteaucitron.userInterface.css('tarteaucitronBack', 'display', 'block');
  1028. tarteaucitron.fallback(['tarteaucitronInfoBox'], function (elem) {
  1029. elem.style.display = 'none';
  1030. }, true);
  1031. } else {
  1032. div.style.display = 'none';
  1033. tarteaucitron.userInterface.css('tarteaucitron', 'display', 'none');
  1034. tarteaucitron.userInterface.css('tarteaucitronBack', 'display', 'none');
  1035. }
  1036. },
  1037. "toggle": function (id, closeClass) {
  1038. "use strict";
  1039. var div = document.getElementById(id);
  1040. if (div === null) {
  1041. return;
  1042. }
  1043. if (closeClass !== undefined) {
  1044. tarteaucitron.fallback([closeClass], function (elem) {
  1045. if (elem.id !== id) {
  1046. elem.style.display = 'none';
  1047. }
  1048. }, true);
  1049. }
  1050. if (div.style.display !== 'block') {
  1051. div.style.display = 'block';
  1052. } else {
  1053. div.style.display = 'none';
  1054. }
  1055. },
  1056. "order": function (id) {
  1057. "use strict";
  1058. var main = document.getElementById('tarteaucitronServices_' + id),
  1059. allDivs,
  1060. store = [],
  1061. i;
  1062. if (main === null) {
  1063. return;
  1064. }
  1065. allDivs = main.childNodes;
  1066. if (typeof Array.prototype.map === 'function' && typeof Enumerable === 'undefined') {
  1067. Array.prototype.map.call(main.children, Object).sort(function (a, b) {
  1068. //var mainChildren = Array.from(main.children);
  1069. //mainChildren.sort(function (a, b) {
  1070. if (tarteaucitron.services[a.id.replace(/Line/g, '')].name > tarteaucitron.services[b.id.replace(/Line/g, '')].name) { return 1; }
  1071. if (tarteaucitron.services[a.id.replace(/Line/g, '')].name < tarteaucitron.services[b.id.replace(/Line/g, '')].name) { return -1; }
  1072. return 0;
  1073. }).forEach(function (element) {
  1074. main.appendChild(element);
  1075. });
  1076. }
  1077. },
  1078. "jsSizing": function (type) {
  1079. "use strict";
  1080. var scrollbarMarginRight = 10,
  1081. scrollbarWidthParent,
  1082. scrollbarWidthChild,
  1083. servicesHeight,
  1084. e = window,
  1085. a = 'inner',
  1086. windowInnerHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight,
  1087. mainTop,
  1088. mainHeight,
  1089. closeButtonHeight,
  1090. headerHeight,
  1091. cookiesListHeight,
  1092. cookiesCloseHeight,
  1093. cookiesTitleHeight,
  1094. paddingBox,
  1095. alertSmallHeight,
  1096. cookiesNumberHeight;
  1097. if (type === 'box') {
  1098. if (document.getElementById('tarteaucitronAlertSmall') !== null && document.getElementById('tarteaucitronCookiesNumber') !== null) {
  1099. // reset
  1100. tarteaucitron.userInterface.css('tarteaucitronCookiesNumber', 'padding', '0px 10px');
  1101. // calculate
  1102. alertSmallHeight = document.getElementById('tarteaucitronAlertSmall').offsetHeight;
  1103. cookiesNumberHeight = document.getElementById('tarteaucitronCookiesNumber').offsetHeight;
  1104. paddingBox = (alertSmallHeight - cookiesNumberHeight) / 2;
  1105. // apply
  1106. tarteaucitron.userInterface.css('tarteaucitronCookiesNumber', 'padding', paddingBox + 'px 10px');
  1107. }
  1108. } else if (type === 'main') {
  1109. // get the real window width for media query
  1110. if (window.innerWidth === undefined) {
  1111. a = 'client';
  1112. e = document.documentElement || document.body;
  1113. }
  1114. // height of the services list container
  1115. if (document.getElementById('tarteaucitron') !== null && document.getElementById('tarteaucitronClosePanel') !== null && document.getElementById('tarteaucitronMainLineOffset') !== null) {
  1116. // reset
  1117. tarteaucitron.userInterface.css('tarteaucitronServices', 'height', 'auto');
  1118. // calculate
  1119. mainHeight = document.getElementById('tarteaucitron').offsetHeight;
  1120. closeButtonHeight = document.getElementById('tarteaucitronClosePanel').offsetHeight;
  1121. // apply
  1122. servicesHeight = (mainHeight - closeButtonHeight + 2);
  1123. tarteaucitron.userInterface.css('tarteaucitronServices', 'height', servicesHeight + 'px');
  1124. tarteaucitron.userInterface.css('tarteaucitronServices', 'overflow-x', 'auto');
  1125. }
  1126. // align the main allow/deny button depending on scrollbar width
  1127. if (document.getElementById('tarteaucitronServices') !== null && document.getElementById('tarteaucitronScrollbarChild') !== null) {
  1128. // media query
  1129. if (e[a + 'Width'] <= 479) {
  1130. //tarteaucitron.userInterface.css('tarteaucitronScrollbarAdjust', 'marginLeft', '11px');
  1131. } else if (e[a + 'Width'] <= 767) {
  1132. scrollbarMarginRight = 12;
  1133. }
  1134. scrollbarWidthParent = document.getElementById('tarteaucitronServices').offsetWidth;
  1135. scrollbarWidthChild = document.getElementById('tarteaucitronScrollbarChild').offsetWidth;
  1136. //tarteaucitron.userInterface.css('tarteaucitronScrollbarAdjust', 'marginRight', ((scrollbarWidthParent - scrollbarWidthChild) + scrollbarMarginRight) + 'px');
  1137. }
  1138. // center the main panel
  1139. if (document.getElementById('tarteaucitron') !== null) {
  1140. // media query
  1141. if (e[a + 'Width'] <= 767) {
  1142. mainTop = 0;
  1143. } else {
  1144. mainTop = ((windowInnerHeight - document.getElementById('tarteaucitron').offsetHeight) / 2) - 21;
  1145. }
  1146. if (document.getElementById('tarteaucitronMainLineOffset') !== null) {
  1147. if (document.getElementById('tarteaucitron').offsetHeight < (windowInnerHeight / 2)) {
  1148. mainTop -= document.getElementById('tarteaucitronMainLineOffset').offsetHeight;
  1149. }
  1150. }
  1151. // correct
  1152. if (mainTop < 0) {
  1153. mainTop = 0;
  1154. }
  1155. // apply
  1156. tarteaucitron.userInterface.css('tarteaucitron', 'top', mainTop + 'px');
  1157. }
  1158. } else if (type === 'cookie') {
  1159. // put cookies list at bottom
  1160. if (document.getElementById('tarteaucitronAlertSmall') !== null) {
  1161. tarteaucitron.userInterface.css('tarteaucitronCookiesListContainer', 'bottom', (document.getElementById('tarteaucitronAlertSmall').offsetHeight) + 'px');
  1162. }
  1163. // height of cookies list
  1164. if (document.getElementById('tarteaucitronCookiesListContainer') !== null) {
  1165. // reset
  1166. tarteaucitron.userInterface.css('tarteaucitronCookiesList', 'height', 'auto');
  1167. // calculate
  1168. cookiesListHeight = document.getElementById('tarteaucitronCookiesListContainer').offsetHeight;
  1169. cookiesCloseHeight = document.getElementById('tarteaucitronClosePanelCookie').offsetHeight;
  1170. cookiesTitleHeight = document.getElementById('tarteaucitronCookiesTitle').offsetHeight;
  1171. // apply
  1172. tarteaucitron.userInterface.css('tarteaucitronCookiesList', 'height', (cookiesListHeight - cookiesCloseHeight - cookiesTitleHeight - 2) + 'px');
  1173. }
  1174. }
  1175. }
  1176. },
  1177. "cookie": {
  1178. "owner": {},
  1179. "create": function (key, status) {
  1180. "use strict";
  1181. if (tarteaucitronForceExpire !== '') {
  1182. // The number of day(s)/hour(s) can't be higher than 1 year
  1183. if ((tarteaucitronExpireInDay && tarteaucitronForceExpire < 365) || (!tarteaucitronExpireInDay && tarteaucitronForceExpire < 8760)) {
  1184. if (tarteaucitronExpireInDay) {
  1185. // Multiplication to tranform the number of days to milliseconds
  1186. timeExpire = tarteaucitronForceExpire * 86400000;
  1187. } else {
  1188. // Multiplication to tranform the number of hours to milliseconds
  1189. timeExpire = tarteaucitronForceExpire * 3600000;
  1190. }
  1191. }
  1192. }
  1193. var d = new Date(),
  1194. time = d.getTime(),
  1195. expireTime = time + timeExpire, // 365 days
  1196. regex = new RegExp("!" + key + "=(wait|true|false)", "g"),
  1197. cookie = tarteaucitron.cookie.read().replace(regex, ""),
  1198. value = tarteaucitron.parameters.cookieName + '=' + cookie + '!' + key + '=' + status,
  1199. domain = (tarteaucitron.parameters.cookieDomain !== undefined && tarteaucitron.parameters.cookieDomain !== '') ? '; domain=' + tarteaucitron.parameters.cookieDomain : '',
  1200. secure = location.protocol === 'https:' ? '; Secure' : '';
  1201. d.setTime(expireTime);
  1202. document.cookie = value + '; expires=' + d.toGMTString() + '; path=/' + domain + secure + '; samesite=lax';
  1203. },
  1204. "read": function () {
  1205. "use strict";
  1206. var nameEQ = tarteaucitron.parameters.cookieName + "=",
  1207. ca = document.cookie.split(';'),
  1208. i,
  1209. c;
  1210. for (i = 0; i < ca.length; i += 1) {
  1211. c = ca[i];
  1212. while (c.charAt(0) === ' ') {
  1213. c = c.substring(1, c.length);
  1214. }
  1215. if (c.indexOf(nameEQ) === 0) {
  1216. return c.substring(nameEQ.length, c.length);
  1217. }
  1218. }
  1219. return '';
  1220. },
  1221. "purge": function (arr) {
  1222. "use strict";
  1223. var i;
  1224. for (i = 0; i < arr.length; i += 1) {
  1225. document.cookie = arr[i] + '=; expires=Thu, 01 Jan 2000 00:00:00 GMT; path=/;';
  1226. document.cookie = arr[i] + '=; expires=Thu, 01 Jan 2000 00:00:00 GMT; path=/; domain=.' + location.hostname + ';';
  1227. document.cookie = arr[i] + '=; expires=Thu, 01 Jan 2000 00:00:00 GMT; path=/; domain=.' + location.hostname.split('.').slice(-2).join('.') + ';';
  1228. }
  1229. },
  1230. "checkCount": function (key) {
  1231. "use strict";
  1232. var arr = tarteaucitron.services[key].cookies,
  1233. nb = arr.length,
  1234. nbCurrent = 0,
  1235. html = '',
  1236. i,
  1237. status = document.cookie.indexOf(key + '=true');
  1238. if (status >= 0 && nb === 0) {
  1239. html += tarteaucitron.lang.useNoCookie;
  1240. } else if (status >= 0) {
  1241. for (i = 0; i < nb; i += 1) {
  1242. if (document.cookie.indexOf(arr[i] + '=') !== -1) {
  1243. nbCurrent += 1;
  1244. if (tarteaucitron.cookie.owner[arr[i]] === undefined) {
  1245. tarteaucitron.cookie.owner[arr[i]] = [];
  1246. }
  1247. if (tarteaucitron.cookie.crossIndexOf(tarteaucitron.cookie.owner[arr[i]], tarteaucitron.services[key].name) === false) {
  1248. tarteaucitron.cookie.owner[arr[i]].push(tarteaucitron.services[key].name);
  1249. }
  1250. }
  1251. }
  1252. if (nbCurrent > 0) {
  1253. html += tarteaucitron.lang.useCookieCurrent + ' ' + nbCurrent + ' cookie';
  1254. if (nbCurrent > 1) {
  1255. html += 's';
  1256. }
  1257. html += '.';
  1258. } else {
  1259. html += tarteaucitron.lang.useNoCookie;
  1260. }
  1261. } else if (nb === 0) {
  1262. html = tarteaucitron.lang.noCookie;
  1263. } else {
  1264. html += tarteaucitron.lang.useCookie + ' ' + nb + ' cookie';
  1265. if (nb > 1) {
  1266. html += 's';
  1267. }
  1268. html += '.';
  1269. }
  1270. if (document.getElementById('tacCL' + key) !== null) {
  1271. document.getElementById('tacCL' + key).innerHTML = html;
  1272. }
  1273. },
  1274. "crossIndexOf": function (arr, match) {
  1275. "use strict";
  1276. var i;
  1277. for (i = 0; i < arr.length; i += 1) {
  1278. if (arr[i] === match) {
  1279. return true;
  1280. }
  1281. }
  1282. return false;
  1283. },
  1284. "number": function () {
  1285. "use strict";
  1286. var cookies = document.cookie.split(';'),
  1287. nb = (document.cookie !== '') ? cookies.length : 0,
  1288. html = '',
  1289. i,
  1290. name,
  1291. namea,
  1292. nameb,
  1293. c,
  1294. d,
  1295. s = (nb > 1) ? 's' : '',
  1296. savedname,
  1297. regex = /^https?\:\/\/([^\/?#]+)(?:[\/?#]|$)/i,
  1298. regexedDomain = (tarteaucitron.cdn.match(regex) !== null) ? tarteaucitron.cdn.match(regex)[1] : tarteaucitron.cdn,
  1299. host = (tarteaucitron.domain !== undefined) ? tarteaucitron.domain : regexedDomain;
  1300. cookies = cookies.sort(function (a, b) {
  1301. namea = a.split('=', 1).toString().replace(/ /g, '');
  1302. nameb = b.split('=', 1).toString().replace(/ /g, '');
  1303. c = (tarteaucitron.cookie.owner[namea] !== undefined) ? tarteaucitron.cookie.owner[namea] : '0';
  1304. d = (tarteaucitron.cookie.owner[nameb] !== undefined) ? tarteaucitron.cookie.owner[nameb] : '0';
  1305. if (c + a > d + b) { return 1; }
  1306. if (c + a < d + b) { return -1; }
  1307. return 0;
  1308. });
  1309. if (document.cookie !== '') {
  1310. for (i = 0; i < nb; i += 1) {
  1311. name = cookies[i].split('=', 1).toString().replace(/ /g, '');
  1312. if (tarteaucitron.cookie.owner[name] !== undefined && tarteaucitron.cookie.owner[name].join(' // ') !== savedname) {
  1313. savedname = tarteaucitron.cookie.owner[name].join(' // ');
  1314. html += '<div class="tarteaucitronHidden">';
  1315. html += ' <span class="tarteaucitronTitle tarteaucitronH3" role="heading" aria-level="3">';
  1316. html += ' ' + tarteaucitron.cookie.owner[name].join(' // ');
  1317. html += ' </span>';
  1318. html += '</div><ul class="cookie-list">';
  1319. } else if (tarteaucitron.cookie.owner[name] === undefined && host !== savedname) {
  1320. savedname = host;
  1321. html += '<div class="tarteaucitronHidden">';
  1322. html += ' <span class="tarteaucitronTitle tarteaucitronH3" role="heading" aria-level="3">';
  1323. html += ' ' + host;
  1324. html += ' </span>';
  1325. html += '</div><ul class="cookie-list">';
  1326. }
  1327. html += '<li class="tarteaucitronCookiesListMain">';
  1328. html += ' <div class="tarteaucitronCookiesListLeft"><button type="button" class="purgeBtn" data-cookie="' + tarteaucitron.fixSelfXSS(cookies[i].split('=', 1)) + '"><strong>&times;</strong></button> <strong>' + tarteaucitron.fixSelfXSS(name) + '</strong>';
  1329. html += ' </div>';
  1330. html += ' <div class="tarteaucitronCookiesListRight">' + tarteaucitron.fixSelfXSS(cookies[i].split('=').slice(1).join('=')) + '</div>';
  1331. html += '</li>';
  1332. }
  1333. html += '</ul>';
  1334. } else {
  1335. html += '<div class="tarteaucitronCookiesListMain">';
  1336. html += ' <div class="tarteaucitronCookiesListLeft"><strong>-</strong></div>';
  1337. html += ' <div class="tarteaucitronCookiesListRight"></div>';
  1338. html += '</div>';
  1339. }
  1340. html += '<div class="tarteaucitronHidden spacer-20"></div>';
  1341. if (document.getElementById('tarteaucitronCookiesList') !== null) {
  1342. document.getElementById('tarteaucitronCookiesList').innerHTML = html;
  1343. }
  1344. if (document.getElementById('tarteaucitronCookiesNumber') !== null) {
  1345. document.getElementById('tarteaucitronCookiesNumber').innerHTML = nb;
  1346. }
  1347. if (document.getElementById('tarteaucitronCookiesNumberBis') !== null) {
  1348. document.getElementById('tarteaucitronCookiesNumberBis').innerHTML = nb + ' cookie' + s;
  1349. }
  1350. var purgeBtns = document.getElementsByClassName("purgeBtn");
  1351. for (i = 0; i < purgeBtns.length; i++) {
  1352. tarteaucitron.addClickEventToElement(purgeBtns[i], function () {
  1353. tarteaucitron.cookie.purge([this.dataset.cookie]);
  1354. tarteaucitron.cookie.number();
  1355. tarteaucitron.userInterface.jsSizing('cookie');
  1356. return false;
  1357. });
  1358. }
  1359. for (i = 0; i < tarteaucitron.job.length; i += 1) {
  1360. tarteaucitron.cookie.checkCount(tarteaucitron.job[i]);
  1361. }
  1362. }
  1363. },
  1364. "fixSelfXSS": function(html) {
  1365. fixed = html.toString().replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#039;");
  1366. return fixed;
  1367. },
  1368. "getLanguage": function () {
  1369. "use strict";
  1370. var availableLanguages = 'bg,ca,cn,cs,da,de,el,en,es,fi,fr,hu,it,ja,lv,nl,no,oc,pl,pt,ro,ru,se,sk,sv,tr,vi,zh',
  1371. defaultLanguage = 'en';
  1372. if (tarteaucitronForceLanguage !== '') {
  1373. if (availableLanguages.indexOf(tarteaucitronForceLanguage) !== -1) {
  1374. return tarteaucitronForceLanguage;
  1375. }
  1376. }
  1377. if (!navigator) { return 'en'; }
  1378. var lang = navigator.language || navigator.browserLanguage ||
  1379. navigator.systemLanguage || navigator.userLang || null,
  1380. userLanguage = lang ? lang.substr(0, 2) : null;
  1381. if (availableLanguages.indexOf(userLanguage) === -1) {
  1382. return defaultLanguage;
  1383. }
  1384. return userLanguage;
  1385. },
  1386. "getLocale": function () {
  1387. "use strict";
  1388. if (!navigator) { return 'en_US'; }
  1389. var lang = navigator.language || navigator.browserLanguage ||
  1390. navigator.systemLanguage || navigator.userLang || null,
  1391. userLanguage = lang ? lang.substr(0, 2) : null;
  1392. if (userLanguage === 'fr') {
  1393. return 'fr_FR';
  1394. } else if (userLanguage === 'en') {
  1395. return 'en_US';
  1396. } else if (userLanguage === 'de') {
  1397. return 'de_DE';
  1398. } else if (userLanguage === 'es') {
  1399. return 'es_ES';
  1400. } else if (userLanguage === 'it') {
  1401. return 'it_IT';
  1402. } else if (userLanguage === 'pt') {
  1403. return 'pt_PT';
  1404. } else if (userLanguage === 'nl') {
  1405. return 'nl_NL';
  1406. } else if (userLanguage === 'el') {
  1407. return 'el_EL';
  1408. } else {
  1409. return 'en_US';
  1410. }
  1411. },
  1412. "addScript": function (url, id, callback, execute, attrName, attrVal, internal) {
  1413. "use strict";
  1414. var script,
  1415. done = false;
  1416. if (execute === false) {
  1417. if (typeof callback === 'function') {
  1418. callback();
  1419. }
  1420. } else {
  1421. script = document.createElement('script');
  1422. script.type = 'text/javascript';
  1423. script.id = (id !== undefined) ? id : '';
  1424. script.async = true;
  1425. script.src = url;
  1426. if (attrName !== undefined && attrVal !== undefined) {
  1427. script.setAttribute(attrName, attrVal);
  1428. }
  1429. if (typeof callback === 'function') {
  1430. if ( !tarteaucitron.parameters.useExternalJs || !internal ) {
  1431. script.onreadystatechange = script.onload = function () {
  1432. var state = script.readyState;
  1433. if (!done && (!state || /loaded|complete/.test(state))) {
  1434. done = true;
  1435. callback();
  1436. }
  1437. };
  1438. } else {
  1439. callback();
  1440. }
  1441. }
  1442. if ( !tarteaucitron.parameters.useExternalJs || !internal ) {
  1443. document.getElementsByTagName('head')[0].appendChild(script);
  1444. }
  1445. }
  1446. },
  1447. "addInternalScript": function (url, id, callback, execute, attrName, attrVal) {
  1448. tarteaucitron.addScript(url, id, callback, execute, attrName, attrVal, true);
  1449. },
  1450. "makeAsync": {
  1451. "antiGhost": 0,
  1452. "buffer": '',
  1453. "init": function (url, id) {
  1454. "use strict";
  1455. var savedWrite = document.write,
  1456. savedWriteln = document.writeln;
  1457. document.write = function (content) {
  1458. tarteaucitron.makeAsync.buffer += content;
  1459. };
  1460. document.writeln = function (content) {
  1461. tarteaucitron.makeAsync.buffer += content.concat("\n");
  1462. };
  1463. setTimeout(function () {
  1464. document.write = savedWrite;
  1465. document.writeln = savedWriteln;
  1466. }, 20000);
  1467. tarteaucitron.makeAsync.getAndParse(url, id);
  1468. },
  1469. "getAndParse": function (url, id) {
  1470. "use strict";
  1471. if (tarteaucitron.makeAsync.antiGhost > 9) {
  1472. tarteaucitron.makeAsync.antiGhost = 0;
  1473. return;
  1474. }
  1475. tarteaucitron.makeAsync.antiGhost += 1;
  1476. tarteaucitron.addInternalScript(url, '', function () {
  1477. if (document.getElementById(id) !== null) {
  1478. document.getElementById(id).innerHTML += "<span class='display-none'>&nbsp;</span>" + tarteaucitron.makeAsync.buffer;
  1479. tarteaucitron.makeAsync.buffer = '';
  1480. tarteaucitron.makeAsync.execJS(id);
  1481. }
  1482. });
  1483. },
  1484. "execJS": function (id) {
  1485. /* not strict because third party scripts may have errors */
  1486. var i,
  1487. scripts,
  1488. childId,
  1489. type;
  1490. if (document.getElementById(id) === null) {
  1491. return;
  1492. }
  1493. scripts = document.getElementById(id).getElementsByTagName('script');
  1494. for (i = 0; i < scripts.length; i += 1) {
  1495. type = (scripts[i].getAttribute('type') !== null) ? scripts[i].getAttribute('type') : '';
  1496. if (type === '') {
  1497. type = (scripts[i].getAttribute('language') !== null) ? scripts[i].getAttribute('language') : '';
  1498. }
  1499. if (scripts[i].getAttribute('src') !== null && scripts[i].getAttribute('src') !== '') {
  1500. childId = id + Math.floor(Math.random() * 99999999999);
  1501. document.getElementById(id).innerHTML += '<div id="' + childId + '"></div>';
  1502. tarteaucitron.makeAsync.getAndParse(scripts[i].getAttribute('src'), childId);
  1503. } else if (type.indexOf('javascript') !== -1 || type === '') {
  1504. eval(scripts[i].innerHTML);
  1505. }
  1506. }
  1507. }
  1508. },
  1509. "fallback": function (matchClass, content, noInner) {
  1510. "use strict";
  1511. var elems = document.getElementsByTagName('*'),
  1512. i,
  1513. index = 0;
  1514. for (i in elems) {
  1515. if (elems[i] !== undefined) {
  1516. for (index = 0; index < matchClass.length; index += 1) {
  1517. if ((' ' + elems[i].className + ' ')
  1518. .indexOf(' ' + matchClass[index] + ' ') > -1) {
  1519. if (typeof content === 'function') {
  1520. if (noInner === true) {
  1521. content(elems[i]);
  1522. } else {
  1523. elems[i].innerHTML = content(elems[i]);
  1524. }
  1525. } else {
  1526. elems[i].innerHTML = content;
  1527. }
  1528. }
  1529. }
  1530. }
  1531. }
  1532. },
  1533. "engage": function (id) {
  1534. "use strict";
  1535. var html = '',
  1536. r = Math.floor(Math.random() * 100000),
  1537. engage = tarteaucitron.services[id].name + ' ' + tarteaucitron.lang.fallback;
  1538. if (tarteaucitron.lang['engage-' + id] !== undefined) {
  1539. engage = tarteaucitron.lang['engage-' + id];
  1540. }
  1541. html += '<div class="tac_activate tac_activate_' + id + '">';
  1542. html += ' <div class="tac_float">';
  1543. html += ' ' + engage;
  1544. html += ' <button type="button" class="tarteaucitronAllow" id="Eng' + r + 'ed' + id + '">';
  1545. html += ' <span class="tarteaucitronCheck"></span> ' + tarteaucitron.lang.allow;
  1546. html += ' </button>';
  1547. html += ' </div>';
  1548. html += '</div>';
  1549. return html;
  1550. },
  1551. "extend": function (a, b) {
  1552. "use strict";
  1553. var prop;
  1554. for (prop in b) {
  1555. if (b.hasOwnProperty(prop)) {
  1556. a[prop] = b[prop];
  1557. }
  1558. }
  1559. },
  1560. "proTemp": '',
  1561. "proTimer": function () {
  1562. "use strict";
  1563. setTimeout(tarteaucitron.proPing, 500);
  1564. },
  1565. "pro": function (list) {
  1566. "use strict";
  1567. tarteaucitron.proTemp += list;
  1568. clearTimeout(tarteaucitron.proTimer);
  1569. tarteaucitron.proTimer = setTimeout(tarteaucitron.proPing, 500);
  1570. },
  1571. "proPing": function () {
  1572. "use strict";
  1573. if (tarteaucitron.uuid !== '' && tarteaucitron.uuid !== undefined && tarteaucitron.proTemp !== '') {
  1574. var div = document.getElementById('tarteaucitronPremium'),
  1575. timestamp = new Date().getTime(),
  1576. url = 'https://tarteaucitron.io/log/?';
  1577. if (div === null) {
  1578. return;
  1579. }
  1580. url += 'account=' + tarteaucitron.uuid + '&';
  1581. url += 'domain=' + tarteaucitron.domain + '&';
  1582. url += 'status=' + encodeURIComponent(tarteaucitron.proTemp) + '&';
  1583. url += '_time=' + timestamp;
  1584. div.innerHTML = '<img src="' + url + '" class="display-none" alt="" />';
  1585. tarteaucitron.proTemp = '';
  1586. }
  1587. tarteaucitron.cookie.number();
  1588. },
  1589. "AddOrUpdate" : function(source, custom){
  1590. /**
  1591. Utility function to Add or update the fields of obj1 with the ones in obj2
  1592. */
  1593. for(key in custom){
  1594. if(custom[key] instanceof Object){
  1595. source[key] = tarteaucitron.AddOrUpdate(source[key], custom[key]);
  1596. }else{
  1597. source[key] = custom[key];
  1598. }
  1599. }
  1600. return source;
  1601. },
  1602. "getElemWidth": function(elem) {
  1603. return elem.getAttribute('width') || elem.clientWidth;
  1604. },
  1605. "getElemHeight": function(elem) {
  1606. return elem.getAttribute('height') || elem.clientHeight;
  1607. },
  1608. "addClickEventToId": function (elemId, func) {
  1609. tarteaucitron.addClickEventToElement(document.getElementById(elemId), func);
  1610. },
  1611. "addClickEventToElement": function (e, func) {
  1612. if (e) {
  1613. if (e.addEventListener) {
  1614. e.addEventListener("click", func);
  1615. } else {
  1616. e.attachEvent("onclick", func);
  1617. }
  1618. }
  1619. }
  1620. };