(function () {
// Stop from running again, if accidently included more than once.
if (window.hasCookieConsent) return;
window.hasCookieConsent = true;
portal_url = window.portal_url || '';
window.cookieconsent_options = {
message: 'Questo sito NON utilizza cookie di profilazione.
Sono utilizzati soltanto cookie tecnici e di terze parti legati all\'uso di Google Analytics (IP anonimo) e all\'eventuale presenza di "Social plugin". Proseguendo la navigazione del sito acconsenti all\'uso dei cookie. Per maggiori informazioni leggi l\'informativa estesa sull\'uso dei cookie dove sono specificate le modalità per configurali o disattivarli.',
dismiss: 'chiudi',
learnMore: 'Informativa estesa',
// link: portal_url + '/informativa-cookiepolicy',
link: 'http://www.comune.fe.it/index.php?id=3177',
theme: 'http://www.comune.fe.it/style/cookiepolicy.css'
}
/*
Constants
*/
// Client variable which may be present containing options to override with
var OPTIONS_VARIABLE = 'cookieconsent_options';
// Name of cookie to be set when dismissed
var DISMISSED_COOKIE = 'cookieconsent_dismissed';
// The path to built in themes (s3 bucket)
var THEME_BUCKET_PATH = 'http://cc.silktide.com/';
// No point going further if they've already dismissed.
if (document.cookie.indexOf(DISMISSED_COOKIE) > -1) {
return;
}
// IE8...
if(typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
}
/*
Helper methods
*/
var Util = {
isArray: function (obj) {
var proto = Object.prototype.toString.call(obj);
return proto == '[object Array]';
},
isObject: function (obj) {
return Object.prototype.toString.call(obj) == '[object Object]';
},
each: function (arr, callback, /* optional: */context, force) {
if (Util.isObject(arr) && !force) {
for (var key in arr) {
if (arr.hasOwnProperty(key)) {
callback.call(context, arr[key], key, arr);
}
}
} else {
for (var i = 0, ii = arr.length; i < ii; i++) {
callback.call(context, arr[i], i, arr);
}
}
},
merge: function (obj1, obj2) {
if (!obj1) return;
Util.each(obj2, function (val, key) {
if (Util.isObject(val) && Util.isObject(obj1[key])) {
Util.merge(obj1[key], val);
} else {
obj1[key] = val;
}
})
},
bind: function (func, context) {
return function () {
return func.apply(context, arguments);
};
},
/*
find a property based on a . separated path.
i.e. queryObject({details: {name: 'Adam'}}, 'details.name') // -> 'Adam'
returns null if not found
*/
queryObject: function (object, query) {
var queryPart;
var i = 0;
var head = object;
query = query.split('.');
while ( (queryPart = query[i++]) && head.hasOwnProperty(queryPart) && (head = head[queryPart]) ) {
if (i === query.length) return head;
}
return null;
},
setCookie: function (name, value, expirydays) {
var exdate = new Date();
expirydays = expirydays || 365;
exdate.setDate(exdate.getDate() + expirydays);
document.cookie = name + '=' + value + '; expires=' + exdate.toUTCString() + '; path=/'
},
addEventListener: function (el, event, eventListener) {
if (el.addEventListener) {
el.addEventListener(event, eventListener);
} else {
el.attachEvent('on' + event, eventListener);
}
}
};
var DomBuilder = (function () {
/*
The attribute we store events in.
*/
var eventAttribute = 'data-cc-event';
var conditionAttribute = 'data-cc-if';
/*
Shim to make addEventListener work correctly with IE.
*/
var addEventListener = function (el, event, eventListener) {
// Add multiple event listeners at once if array is passed.
if (Util.isArray(event)) {
return Util.each(event, function (ev) {
addEventListener(el, ev, eventListener);
});
}
if (el.addEventListener) {
el.addEventListener(event, eventListener);
} else {
el.attachEvent('on' + event, eventListener);
}
};
/*
Replace {{variable.name}} with it's property on the scope
Also supports {{variable.name || another.name || 'string'}}
*/
var insertReplacements = function (htmlStr, scope) {
return htmlStr.replace(/\{\{(.*?)\}\}/g, function (_match, sub) {
var tokens = sub.split('||');
var value;
while (token = tokens.shift()) {
token = token.trim();
// If string
if (token[0] === '"') return token.slice(1, token.length - 1);
// If query matches
value = Util.queryObject(scope, token);
if (value) return value;
}
return '';
});
};
/*
Turn a string of html into DOM
*/
var buildDom = function (htmlStr) {
var container = document.createElement('div');
container.innerHTML = htmlStr;
return container.children[0];
};
var applyToElementsWithAttribute = function (dom, attribute, func) {
var els = dom.parentNode.querySelectorAll('[' + attribute + ']');
Util.each(els, function (element) {
var attributeVal = element.getAttribute(attribute);
func(element, attributeVal);
}, window, true);
};
/*
Parse event attributes in dom and set listeners to their matching scope methods
*/
var applyEvents = function (dom, scope) {
applyToElementsWithAttribute(dom, eventAttribute, function (element, attributeVal) {
var parts = attributeVal.split(':');
var listener = Util.queryObject(scope, parts[1]);
addEventListener(element, parts[0], Util.bind(listener, scope));
});
};
var applyConditionals = function (dom, scope) {
applyToElementsWithAttribute(dom, conditionAttribute, function (element, attributeVal) {
var value = Util.queryObject(scope, attributeVal);
if (!value) {
element.parentNode.removeChild(element);
}
});
};
return {
build: function (htmlStr, scope) {
if (Util.isArray(htmlStr)) htmlStr = htmlStr.join('');
htmlStr = insertReplacements(htmlStr, scope);
var dom = buildDom(htmlStr);
applyEvents(dom, scope);
applyConditionals(dom, scope);
return dom;
}
};
})();
/*
Plugin
*/
var cookieconsent = {
options: {
message: 'This website uses cookies to ensure you get the best experience on our website. ',
dismiss: 'Got it!',
learnMore: 'More info',
link: null,
container: null, // selector
theme: 'light-floating'
},
init: function () {
var options = window[OPTIONS_VARIABLE];
if (options) this.setOptions(options);
this.setContainer();
// Calls render when theme is loaded.
if (this.options.theme) {
this.loadTheme(this.render);
} else {
this.render();
}
},
setOptions: function (options) {
Util.merge(this.options, options);
},
setContainer: function () {
if (this.options.container) {
this.container = document.querySelector(this.options.container);
} else {
this.container = document.body;
}
// Add class to container classes so we can specify css for IE8 only.
this.containerClasses = '';
if (navigator.appVersion.indexOf('MSIE 8') > -1) {
this.containerClasses += ' cc_ie8'
}
},
loadTheme: function (callback) {
var theme = this.options.theme;
// If theme is specified by name
if (theme.indexOf('.css') === -1) {
theme = THEME_BUCKET_PATH + theme + '.css';
}
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = theme;
var loaded = false;
link.onload = Util.bind(function () {
if (!loaded && callback) {
callback.call(this);
loaded = true;
}
}, this);
document.getElementsByTagName("head")[0].appendChild(link);
},
markup: [
'