"use strict";var IncitationNewslettersBannerController=function(e){this.$el=e,this.listen(),this.listenToCookie()};IncitationNewslettersBannerController.prototype={listen:function(){this.$el.on("click",".close-incitation",$.proxy(this.closeClickEvent,this)),this.$el.on("click",".subscribe",$.proxy(this.subscribeClickEvent,this))},listenToCookie:function(){var e;new RegExp("(?:; )?incitationNl=([^;]*);?").test(document.cookie)&&(e=decodeURIComponent(RegExp.$1)),void 0!==e&&"true"==e||this.showBanner()},showBanner:function(){if(this.canDisplayBanner()){var e=this.$el;$.ajax({type:"GET",url:"/moncompte/Newsletter/GetIncitation",dataType:"json",success:function(t){!1===t&&e.slideDown("slow")}})}},canDisplayBanner:function(){return!_.some(this.excludedPages,function(e){return window.location.pathname.startsWith(e)})},closeClickEvent:function(e){this.$el.slideUp("slow"),this.createCookie()},createCookie:function(){var e=new Date;e.setTime(e.getTime()+6048e5),document.cookie="incitationNl=true;expires="+e+"; path=/"},subscribeClickEvent:function(e){this.subscribe()},subscribe:function(){var e=this;this.createCookie(),$.post("/moncompte/MyAccount/Newsletters",{Newsletter:!0,NewsletterPromotions:!0,NewsletterPartners:!1}).done(function(){e.$el.html("Nous vous confirmons votre inscription à la newsletter Photoweb. Merci !"),e.$el.css("background-color","#00CCDD"),$.ajax("//www.photoweb.fr/statistiques/annonceur.asp?partenaire=157&operation=4212&code=V6A4N3"),setTimeout(function(){e.$el.slideUp("slow")},7e3)}).fail(function(){document.cookie="incitationNl=false;",e.$el.slideUp("slow")})}};