UNPKG

webcom

Version:

Webcom library

18 lines 44.1 kB
/*! * Webcom. Build realtime apps. Share and sync data instantly between your clients * * Module name: Webcom * Version: 3.10.1 * Created: 2025-11-07T12:56:47.519Z * * Copyright (C) <2015-2025> Orange * * This software is confidential and proprietary information of Orange. * You shall not disclose such Confidential Information and shall use it only in * accordance with the terms of the agreement you entered into. * Unauthorized copying of this file, via any medium is strictly prohibited. * * If you are Orange employee you shall use this software in accordance with * the Orange Source Charter (http://opensource.itn.ftgroup/index.php/Orange_Source_Charter) */ !function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var n=e();for(var r in n)("object"==typeof exports?exports:t)[r]=n[r]}}(this,()=>(()=>{"use strict";var t={779:(t,e)=>{var n,r={cipher:{},hash:{},keyexchange:{},mode:{},misc:{},codec:{},exception:{corrupt:function(t){this.toString=function(){return"CORRUPT: "+this.message},this.message=t},invalid:function(t){this.toString=function(){return"INVALID: "+this.message},this.message=t},bug:function(t){this.toString=function(){return"BUG: "+this.message},this.message=t},notReady:function(t){this.toString=function(){return"NOT READY: "+this.message},this.message=t}}};r.bitArray={bitSlice:function(t,e,n){return t=r.bitArray._shiftRight(t.slice(e/32),32-(31&e)).slice(1),void 0===n?t:r.bitArray.clamp(t,n-e)},extract:function(t,e,n){var r=Math.floor(-e-n&31);return(-32&(e+n-1^e)?t[e/32|0]<<32-r^t[e/32+1|0]>>>r:t[e/32|0]>>>r)&(1<<n)-1},concat:function(t,e){if(0===t.length||0===e.length)return t.concat(e);var n=t[t.length-1],i=r.bitArray.getPartial(n);return 32===i?t.concat(e):r.bitArray._shiftRight(e,i,0|n,t.slice(0,t.length-1))},bitLength:function(t){var e,n=t.length;return 0===n?0:(e=t[n-1],32*(n-1)+r.bitArray.getPartial(e))},clamp:function(t,e){if(32*t.length<e)return t;var n=(t=t.slice(0,Math.ceil(e/32))).length;return e&=31,n>0&&e&&(t[n-1]=r.bitArray.partial(e,t[n-1]&2147483648>>e-1,1)),t},partial:function(t,e,n){return 32===t?e:(n?0|e:e<<32-t)+1099511627776*t},getPartial:function(t){return Math.round(t/1099511627776)||32},equal:function(t,e){if(r.bitArray.bitLength(t)!==r.bitArray.bitLength(e))return!1;var n,i=0;for(n=0;n<t.length;n++)i|=t[n]^e[n];return 0===i},_shiftRight:function(t,e,n,i){var o,a,s;for(void 0===i&&(i=[]);e>=32;e-=32)i.push(n),n=0;if(0===e)return i.concat(t);for(o=0;o<t.length;o++)i.push(n|t[o]>>>e),n=t[o]<<32-e;return a=t.length?t[t.length-1]:0,s=r.bitArray.getPartial(a),i.push(r.bitArray.partial(e+s&31,e+s>32?n:i.pop(),1)),i},_xor4:function(t,e){return[t[0]^e[0],t[1]^e[1],t[2]^e[2],t[3]^e[3]]},byteswapM:function(t){var e,n;for(e=0;e<t.length;++e)n=t[e],t[e]=n>>>24|n>>>8&65280|(65280&n)<<8|n<<24;return t}},r.codec.utf8String={fromBits:function(t){var e,n,i="",o=r.bitArray.bitLength(t);for(e=0;e<o/8;e++)3&e||(n=t[e/4]),i+=String.fromCharCode(n>>>8>>>8>>>8),n<<=8;return decodeURIComponent(escape(i))},toBits:function(t){t=unescape(encodeURIComponent(t));var e,n=[],i=0;for(e=0;e<t.length;e++)i=i<<8|t.charCodeAt(e),3&~e||(n.push(i),i=0);return 3&e&&n.push(r.bitArray.partial(8*(3&e),i)),n}},r.codec.base64={_chars:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",fromBits:function(t,e,n){var i,o="",a=0,s=r.codec.base64._chars,u=0,c=r.bitArray.bitLength(t);for(n&&(s=s.substr(0,62)+"-_"),i=0;6*o.length<c;)o+=s.charAt((u^t[i]>>>a)>>>26),a<6?(u=t[i]<<6-a,a+=26,i++):(u<<=6,a-=6);for(;3&o.length&&!e;)o+="=";return o},toBits:function(t,e){t=t.replace(/\s|=/g,"");var n,i,o=[],a=0,s=r.codec.base64._chars,u=0;for(e&&(s=s.substr(0,62)+"-_"),n=0;n<t.length;n++){if((i=s.indexOf(t.charAt(n)))<0)throw new r.exception.invalid("this isn't base64!");a>26?(a-=26,o.push(u^i>>>a),u=i<<32-a):u^=i<<32-(a+=6)}return 56&a&&o.push(r.bitArray.partial(56&a,u,1)),o}},r.codec.base64url={fromBits:function(t){return r.codec.base64.fromBits(t,1,1)},toBits:function(t){return r.codec.base64.toBits(t,1)}},r.hash.sha256=function(t){this._key[0]||this._precompute(),t?(this._h=t._h.slice(0),this._buffer=t._buffer.slice(0),this._length=t._length):this.reset()},r.hash.sha256.hash=function(t){return(new r.hash.sha256).update(t).finalize()},r.hash.sha256.prototype={blockSize:512,reset:function(){return this._h=this._init.slice(0),this._buffer=[],this._length=0,this},update:function(t){"string"==typeof t&&(t=r.codec.utf8String.toBits(t));var e,n=this._buffer=r.bitArray.concat(this._buffer,t),i=this._length,o=this._length=i+r.bitArray.bitLength(t);if(o>9007199254740991)throw new r.exception.invalid("Cannot hash more than 2^53 - 1 bits");if("undefined"!=typeof Uint32Array){var a=new Uint32Array(n),s=0;for(e=512+i-(512+i&511);e<=o;e+=512)this._block(a.subarray(16*s,16*(s+1))),s+=1;n.splice(0,16*s)}else for(e=512+i-(512+i&511);e<=o;e+=512)this._block(n.splice(0,16));return this},finalize:function(){var t,e=this._buffer,n=this._h;for(t=(e=r.bitArray.concat(e,[r.bitArray.partial(1,1)])).length+2;15&t;t++)e.push(0);for(e.push(Math.floor(this._length/4294967296)),e.push(0|this._length);e.length;)this._block(e.splice(0,16));return this.reset(),n},_init:[],_key:[],_precompute:function(){var t,e,n=0,r=2;function i(t){return 4294967296*(t-Math.floor(t))|0}for(;n<64;r++){for(e=!0,t=2;t*t<=r;t++)if(r%t===0){e=!1;break}e&&(n<8&&(this._init[n]=i(Math.pow(r,.5))),this._key[n]=i(Math.pow(r,1/3)),n++)}},_block:function(t){var e,n,r,i,o=this._h,a=this._key,s=o[0],u=o[1],c=o[2],h=o[3],f=o[4],l=o[5],d=o[6],p=o[7];for(e=0;e<64;e++)e<16?n=t[e]:(r=t[e+1&15],i=t[e+14&15],n=t[15&e]=(r>>>7^r>>>18^r>>>3^r<<25^r<<14)+(i>>>17^i>>>19^i>>>10^i<<15^i<<13)+t[15&e]+t[e+9&15]|0),n=n+p+(f>>>6^f>>>11^f>>>25^f<<26^f<<21^f<<7)+(d^f&(l^d))+a[e],p=d,d=l,l=f,f=h+n|0,h=c,c=u,s=n+((u=s)&c^h&(u^c))+(u>>>2^u>>>13^u>>>22^u<<30^u<<19^u<<10)|0;o[0]=o[0]+s|0,o[1]=o[1]+u|0,o[2]=o[2]+c|0,o[3]=o[3]+h|0,o[4]=o[4]+f|0,o[5]=o[5]+l|0,o[6]=o[6]+d|0,o[7]=o[7]+p|0}},r.hash.sha1=function(t){t?(this._h=t._h.slice(0),this._buffer=t._buffer.slice(0),this._length=t._length):this.reset()},r.hash.sha1.hash=function(t){return(new r.hash.sha1).update(t).finalize()},r.hash.sha1.prototype={blockSize:512,reset:function(){return this._h=this._init.slice(0),this._buffer=[],this._length=0,this},update:function(t){"string"==typeof t&&(t=r.codec.utf8String.toBits(t));var e,n=this._buffer=r.bitArray.concat(this._buffer,t),i=this._length,o=this._length=i+r.bitArray.bitLength(t);if(o>9007199254740991)throw new r.exception.invalid("Cannot hash more than 2^53 - 1 bits");if("undefined"!=typeof Uint32Array){var a=new Uint32Array(n),s=0;for(e=this.blockSize+i-(this.blockSize+i&this.blockSize-1);e<=o;e+=this.blockSize)this._block(a.subarray(16*s,16*(s+1))),s+=1;n.splice(0,16*s)}else for(e=this.blockSize+i-(this.blockSize+i&this.blockSize-1);e<=o;e+=this.blockSize)this._block(n.splice(0,16));return this},finalize:function(){var t,e=this._buffer,n=this._h;for(t=(e=r.bitArray.concat(e,[r.bitArray.partial(1,1)])).length+2;15&t;t++)e.push(0);for(e.push(Math.floor(this._length/4294967296)),e.push(0|this._length);e.length;)this._block(e.splice(0,16));return this.reset(),n},_init:[1732584193,4023233417,2562383102,271733878,3285377520],_key:[1518500249,1859775393,2400959708,3395469782],_f:function(t,e,n,r){return t<=19?e&n|~e&r:t<=39?e^n^r:t<=59?e&n|e&r|n&r:t<=79?e^n^r:void 0},_S:function(t,e){return e<<t|e>>>32-t},_block:function(t){var e,n,r,i,o,a,s,u,c=this._h;if("undefined"!=typeof Uint32Array){u=Array(80);for(var h=0;h<16;h++)u[h]=t[h]}else u=t;for(r=c[0],i=c[1],o=c[2],a=c[3],s=c[4],e=0;e<=79;e++)e>=16&&(u[e]=this._S(1,u[e-3]^u[e-8]^u[e-14]^u[e-16])),n=this._S(5,r)+this._f(e,i,o,a)+s+u[e]+this._key[Math.floor(e/20)]|0,s=a,a=o,o=this._S(30,i),i=r,r=n;c[0]=c[0]+r|0,c[1]=c[1]+i|0,c[2]=c[2]+o|0,c[3]=c[3]+a|0,c[4]=c[4]+s|0}},t.exports&&(t.exports=r),void 0===(n=function(){return r}.apply(e,[]))||(t.exports=n)}},e={};function n(r){var i=e[r];if(void 0!==i)return i.exports;var o=e[r]={exports:{}};return t[r](o,o.exports,n),o.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var r={};n.d(r,{default:()=>Bt});var i=function(){if("undefined"!=typeof globalThis)return globalThis;return"undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==n.g?n.g:Function("return this")()}();function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a(t)}function s(t){var e=function(t,e){if("object"!=a(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==a(e)?e:e+""}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,s(r.key),r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}function h(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=Array(e);n<e;n++)r[n]=t[n];return r}function f(t,e){if(t){if("string"==typeof t)return h(t,e);var n={}.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?h(t,e):void 0}}function l(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=n){var r,i,o,a,s=[],u=!0,c=!1;try{if(o=(n=n.call(t)).next,0===e){if(Object(n)!==n)return;u=!1}else for(;!(u=(r=o.call(n)).done)&&(s.push(r.value),s.length!==e);u=!0);}catch(t){c=!0,i=t}finally{try{if(!u&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return s}}(t,e)||f(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(t){return function(t){if(Array.isArray(t))return h(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||f(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var p=i.WebcomDependencies||{},v={};function g(t,e,n){Object.defineProperty(v,t,{enumerable:!0,get:e,set:n})}var y="browser",b="mobile/",m="".concat(b,"android"),_="".concat(b,"iOS"),w={};w[y]="b",w[m]="a",w[_]="i",w.node="n";var k,S=!0,A="device",O=p[A];if(!O){var P=i.window;P&&P.location?P.location.href.indexOf("webview.datasync.orange.com")<0?R(y):R(m):R(_)}function R(t){O=t,S=t===y,0===t.indexOf(b),k=(w[t]||"")+"3.10.1"}function E(t){return"string"==typeof t}function j(t){return"function"==typeof t}function I(t){return"object"===a(t)}g(A,function(){return O},function(t){return R(t)});var C="Webcom internal error";function x(t,e){t||N(C,e)}var T={values:[]};function H(t,e){for(var n=arguments.length,r=new Array(n>2?n-2:0),i=2;i<n;i++)r[i-2]=arguments[i];Object.assign(T,{method:t,args:e||[],checkers:r})}var N=function(t,e){var n;throw new Error("".concat((n="").concat.apply(n,d(t)),": ").concat(e))};function L(t,e){if(!T.method){for(var n=arguments.length,r=new Array(n>2?n-2:0),i=2;i<n;i++)r[i-2]=arguments[i];H.apply(void 0,[t,e].concat(r))}var o=T.method,a=T.args,s=T.checkers,u=T.values;Object.assign(T,{method:void 0,args:void 0,checkers:void 0,values:[]}),a.length>s.length&&N(o,"too many arguments, ".concat(a.length," instead of ").concat(s.length)),s.forEach(function(t,e){return U(t,a[e],o,function(t){return"argument #".concat(e+1," ").concat(t)})}),u.forEach(function(t){var e=t.name,n=t.value;return U(t.checker,n,o,function(t){return"".concat(e," ").concat(t)})})}function U(t,e,n,r){var i=t(e);i&&N(n,r(i))}function D(t){return function(e){return M("undefined")(e)&&t&&t(e)}}var F=function(t){return void 0===t?"is missing":""};function W(t){return function(e){return!(e instanceof t)&&"must be an instance of ".concat(t.name)}}function M(t){return function(e){return a(e)!==t&&"must be a ".concat(t)}}var z=M("undefined"),J=M("string"),q=M("function"),K=M("boolean"),B=X(Number.isFinite,"must be a finite number"),G=M("object");function V(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.every(function(e){return e(t)})&&"either ".concat(e.map(function(e){return e(t)}).join(" or "))}}var Q="is not valid";function X(t,e){return function(n){return!t(n)&&(e||Q)}}X(function(t){return"number"==typeof t&&Math.floor(t)===t},"must be an integer");var Y="console",$=p[Y],Z=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];var i=function(t){return I(t)?JSON.stringify(t):(t||"undefined").toString()};if(E(t)){var o=0;return[t=t.replace(/%(.)/g,function(t,e){switch(e){case"%":return"%";case"s":case"o":case"O":return i(n[o++]);case"d":case"i":case"f":return n[o++];default:return t}})].concat(d(n.slice(o).map(i))).join(" ")}return[t].concat(n).map(i).join(" ")};function tt(t,e,n,r,i){if(!n||!r||!i){var o=e,a=function(t){return function(e){return o("[".concat(t,"] ").concat(e))}};n=n||a("INFO"),r=r||a("WARN"),i=i||a("ERR!"),e=a("LOG ")}return{log:function(){return e.call(t,Z.apply(void 0,arguments))},info:function(){return n.call(t,Z.apply(void 0,arguments))},warn:function(){return r.call(t,Z.apply(void 0,arguments))},error:function(){return i.call(t,Z.apply(void 0,arguments))}}}if(j($))$=tt(i,$);else if(I($)&&$){var et=$,nt=et.log,rt=et.info,it=et.warn,ot=et.error;$=tt($,nt,rt,it,ot)}else{$=tt(i[Y],i[Y].log,i[Y].info,i[Y].warn,i[Y].error)}g(Y,function(){return $},function(t){return $=t});var at="setTimeout",st=p[at];st||(st=i[at]),g(at,function(){return st},function(t){return st=t}),i[at]||(i[at]=st),i.setImmediate||(i.setImmediate=st);var ut="clearTimeout",ct=p[ut];ct||(ct=i[ut]),g(ut,function(){return ct},function(t){return ct=t}),i[ut]||(i[ut]=ct),i.clearImmediate||(i.clearImmediate=ct);var ht="setInterval",ft=p[ht];ft||(ft=i[ht]),g(ht,function(){return ft},function(t){return ft=t});var lt="clearInterval",dt=p[lt];dt||(dt=i[lt]),g(lt,function(){return dt},function(t){return dt=t});var pt=Function.prototype;var vt={};function gt(t,e){var n=t.length;return n>=e?t.substring(0,e):t+mt.substring(0,e-n)}function yt(t){return t.map(function(t){return j(t)?t():t})}var bt=c(function t(e,n,r,i){o(this,t),this._fqdn=e,this._prefix=n;var a=e.join(".");this._count=void 0===vt[a]?vt[a]=0:++vt[a],this.displayTimestamp=r,this.setPrefixWidth(i||8),this._log=this._emitLog.bind(this,$.log),this._info=this._emitLog.bind(this,$.info),this._warn=this._emitLog.bind(this,$.warn),this._error=this._emitLog.bind(this,$.error),this._enabled=!0},[{key:"fqdn",get:function(){return this._fqdn}},{key:"_emitLog",value:function(t,e){var n=this.displayTimestamp?[(new Date).toISOString()]:[];n.push(this._displayedPrefix);for(var r=arguments.length,i=new Array(r>2?r-2:0),o=2;o<r;o++)i[o-2]=arguments[o];E(e)?(n.push(e),e=n.join(" "),t.apply(void 0,[e].concat(d(yt(i))))):t.apply(void 0,n.concat(d(yt([e].concat(i)))))}},{key:"setPrefixWidth",value:function(t){this._displayedPrefix="".concat(gt(this._prefix,t)," #").concat(gt(this._count.toString(),3))}},{key:"setLevel",value:function(t){this._enabled=t>=0,this.log=t>=Lt.LOG?this._log:pt,this.info=t>=Lt.INFO?this._info:pt,this.warn=t>=Lt.WARN?this._warn:pt,this.error=t>=Lt.ERROR?this._error:pt}},{key:"updateLevel",value:function(t){this._enabled&&this.setLevel(t)}}]),mt=" ",_t=!1,wt=15,kt=[],St={},At={},Ot={},Pt="_leaf_";function Rt(t){return t?t.split("."):[]}function Et(t){return{disabledDepth:Ct(t,Ot),enabledDepth:Ct(t,At)}}function jt(t,e,n,r){for(var i=0;i<t.length;){var o=t[i++];e.hasOwnProperty(o)||(e[o]={}),e=e[o]}r&&Object.keys(e).forEach(function(t){return delete e[t]}),e[Pt]=n}function It(t,e){for(var n=0;n<t.length;){var r=t[n++];if(!e.hasOwnProperty(r))return;e=e[r]}delete e[Pt]}function Ct(t,e){var n=-1,r=0;do{e.hasOwnProperty(Pt)&&(n=r)}while(r<t.length&&(e=e[t[r++]]));return n}function xt(t,e){Object.entries(t||{}).forEach(function(t){var n=l(t,2),r=n[0],i=n[1];r===Pt?e(i):xt(i,e)})}function Tt(t,e){for(var n=[],r=0;e&&r<t.length;)e=e[t[r++]];return xt(e,function(t){return n.push(t)}),n}function Ht(t){_t=t,kt.forEach(function(t){return t.displayTimestamp=_t})}var Nt="LogManager",Lt=function(){function t(){o(this,t)}return c(t,null,[{key:"enable",value:function(e){L([Nt,".enable"],arguments,D(J));var n=Rt(e),r=Et(n),i=r.enabledDepth,o=r.disabledDepth;i<=o&&(o<0&&t.disable(),jt(n,At,!0,!0),It(n,Ot),Tt(n,St).forEach(function(t){return t.setLevel(Dt)}))}},{key:"disable",value:function(t){L([Nt,".disable"],arguments,D(J));var e=Rt(t),n=Et(e),r=n.enabledDepth;n.disabledDepth<=r&&(jt(e,Ot,!0,!0),It(e,At),Tt(e,St).forEach(function(t){return t.setLevel(-1)}))}},{key:"showTimestamp",value:function(){L([Nt,".showTimestamp"],arguments),Ht(!0)}},{key:"hideTimestamp",value:function(){L([Nt,".hideTimestamp"],arguments),Ht(!1)}},{key:"setPrefixWidth",value:function(t){L([Nt,".setPrefixWidth"],arguments,B),t<0?t=0:t>mt.length&&(t=mt.length),wt=t,kt.forEach(function(t){return t.setPrefixWidth(wt)})}},{key:"level",get:function(){return Dt},set:function(t){L([Nt,".level"],arguments,B),t>-1&&t!==Dt&&(kt.forEach(function(e){return e.updateLevel(t)}),Dt=t)}},{key:"LOG",get:function(){return 4}},{key:"INFO",get:function(){return 3}},{key:"WARN",get:function(){return 2}},{key:"ERROR",get:function(){return 1}},{key:"NONE",get:function(){return 0}},{key:"debugOnCallback",value:function(t){var e=t&&t.toUpperCase();return function(t,n){return $.log("********** UPDATE ".concat(e||t.ref().pathString()," **********"),t.toString(),n?"[<<".concat(n,"]"):"")}}},{key:"debugOnCompletionCallback",value:function(t,e){var n=t&&t.toUpperCase();return function(t){return t?$.log("********** REVOKED ".concat(n," **********"),t):$.log("********** COMPLETED ".concat(n," **********")),e}}},{key:"debugOnCallbackWithCancel",value:function(e){var n=e&&e.toUpperCase();return[t.debugOnCallback(e),function(t){return $.log.apply($,["********** COMPLETE ".concat(n," **********")].concat(d(t?["FAILED:",t.code,t.message]:["cancelled"])))}]}}])}();function Ut(t,e){var n=Rt(t),r=new bt(n,e||n[n.length-1],_t,wt);return function(t){var e=t.fqdn;jt(e,St,t),kt.push(t);var n=Et(e),r=n.disabledDepth,i=n.enabledDepth;t.setLevel(i>=r?Dt:-1)}(r),r}var Dt=Lt.INFO,Ft="WebcomApp",Wt=c(function t(e){var n,r,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};o(this,t),L(["new ",Ft],arguments,(n=/^[a-z0-9](?:[-a-z0-9]{0,38}[a-z0-9])?$/,X(function(t){return n.test(t)},r)),D(V(G,J))),this._logger=Ut("api.WebcomApp",Ft),this._services={},this.appId=e,this.config={},E(i)&&(i=Object.keys(Jt).reduce(function(t,e){return t[e]={baseUrl:i},t},{})),this._fillConfig(i),this._logger.log("Initialized %s with options %s",e,JSON.stringify(this.config))},[{key:"dispose",value:function(){L([Ft,"#dispose"],arguments),Object.values(this._services).forEach(function(t){return t._dispose()}),this._services={}}},{key:"_fillConfig",value:function(t){Mt.call(this,t,Jt)}},{key:"toString",value:function(){return"".concat(this.appId,"{").concat(Object.keys(this._services).join(","),"}")}}]);function Mt(t,e){var n=this,r=function(t,e,i,o){var a=function(t){return"".concat(Ft,".Configuration.").concat(o.concat(t).join("."))};e=Object.assign({},e),Object.entries(i).forEach(function(i){var s=l(i,2),u=s[0],c=s[1];if(c instanceof Object&&!(c instanceof Array))t[u]=t[u]||{},r(t[u],e[u]||{},c,o.concat(u));else{var h=e[u],f=c[1]||function(t){return t};try{t[u]=f(void 0===h?void 0===t[u]?c.length?c[0]:c:t[u]:h)}catch(e){var d=a(u);void 0===e.value?N(d,e.message):(n._logger.warn("%s: %s",d,e.message),t[u]=e.value)}}delete e[u]}),Object.keys(e).forEach(function(t){return n._logger.warn("%s: unknown config key",a(t))})};r(this.config,t,e,[])}function zt(t,e,n){return"".concat(n.key,":").concat(e,":").concat(function(t,e){var n=e.baseUrl;return"/".concat(n.protocol.slice(0,-1),"/").concat(n.host,"/").concat(t.appId,"/")}(t,n))}var Jt={},qt="-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz";var Kt="Webcom",Bt=c(function t(){o(this,t),this._init.apply(this,arguments)},[{key:"_init",value:function(){N(["new ",Kt],"this static class cannot be instantiated")}}],[{key:"SDK_VERSION",get:function(){return"3.10.1"}},{key:"Log",get:function(){return Lt}},{key:"App",value:function(t,e){return new Wt(t,e)}},{key:"getUniqueKeyDate",value:function(t){return new Date(function(t){for(var e=t.substring(0,8),n=0,r=0;r<8;++r)n=64*n+qt.indexOf(e[r]);return n}(t))}},{key:"dependencies",get:function(){return v}}]),Gt=Ut("api.Webcom",Kt);function Vt(t){"http:"===t.protocol&&S&&"https:"===window.location.protocol&&this._logger.warn("Insecure access to a Webcom service from a secure page. Please setup your service with an https protocol.")}var Qt=new RegExp("^(?:([^:]+:)//)?(?:[^/@]+@)?([^/:]+(?::\\d+)?)(?:/.*)?$"),Xt="io.datasync.orange.com";function Yt(t,e){return function(n){var r=t(n);if(r)throw new Error(r);return e?e(n):n}}function $t(t,e,n,r){return te(t,e,{value:n},r)}function Zt(t,e,n,r){return te(t,e,{get:n},r)}function te(t,e,n,r){return Object.defineProperty(t,e,Object.assign(n,{enumerable:r,configurable:!0}))}var ee="some",ne="required",re="none",ie=c(function t(e,n){o(this,t),x(e===ee||e===ne||e===re,"Wrong state value for a new State object: expecting 'some', 'required' or 'none'."),this.state=e,x(e!==ee||n&&n.webcomAuthToken,"Missing details or webcomAuthToken for a new 'some' State"),this.details=n},[{key:"isUnauthenticated",value:function(){return this.state===re}},{key:"isAuthenticated",value:function(){return this.state===ee}},{key:"isRequired",value:function(){return this.state===ne}},{key:"isSameAs",value:function(t){return this.state===t.state&&(this.state!==ee||this.details.webcomAuthToken===t.details.webcomAuthToken)}}]),oe=new ie(re),ae=(new ie(ne),function(t){return new ie(ee,t)});var se,ue="Authentication";function ce(t){switch(L([Kt,".avatarURL"],arguments,G),t&&t.provider){case"facebook":return"https://graph.facebook.com/".concat(t.providerUid,"/picture?type=large");case"github":return t.providerProfile.avatar_url;case"gitlab":case"google":return t.providerProfile.picture}}function he(t){var e=t.code||"UNKNOWN_ERROR",n=t.message||JSON.stringify(t),r=new Error("".concat(e,"[").concat(n,"]"));return r.code=e,r}Jt[ue]={from:[void 0,Yt(D(W(Wt)))],baseUrl:[null,function(t){if(t&&(i.URL&&t instanceof URL||t.href&&t.protocol&&t.host))return t;var e=t?Qt.exec(t):[Xt,void 0,Xt];if(e){var n=l(e,3),r=n[0],o=n[1],a=n[2];return o||(r="".concat(o="https:","//").concat(r)),{href:r,protocol:o,host:a}}throw new Error("cannot parse base URL: ".concat(t))}],storage:[void 0,Yt(D(V(J,q)))],initialState:[void 0,function(t){return t&&JSON.parse(t)}],key:[void 0,Yt(z,function(){return"auth"})]},function(t,e,n,r){Zt(t.prototype,e,n,r)}(Wt,"authentication",function(){var t=this._services[ue];if(!t){var e=this.config[ue].from;t=e?e.authentication:se(this),this._services[ue]=t}return t});var fe=c(function t(){o(this,t),this.cache_={}},[{key:"length",get:function(){return Object.keys(this.cache_).length}},{key:"key",value:function(t){var e=Object.keys(this.cache_);return 0<=t&&t<e.length?e[t]:null}},{key:"getItem",value:function(t){return this.cache_.hasOwnProperty(t)?this.cache_[t]:null}},{key:"setItem",value:function(t,e){this.cache_[t]=e}},{key:"removeItem",value:function(t){delete this.cache_[t]}},{key:"clear",value:function(){this.cache_={}}}]),le="localStorage",de=p[le];de||(de=i[le]||new fe),g(le,function(){return de},function(t){return de=t});var pe="sessionStorage",ve=p[pe];function ge(t){return"webcom:"+t}ve||(ve=i[pe]||null),g(pe,function(){return ve},function(t){return ve=t});var ye=c(function t(e,n){o(this,t);var r=e();if(r){var i=ge("sentinel");r.setItem(i,""),r.removeItem(i)}function a(){return e()||N("JSONStorage","the ".concat(n," implementation could not be found!"))}this.set=function(t,e){if(null===e)a().removeItem(ge(t));else{var n=JSON.stringify(e);a().setItem(ge(t),"string"==typeof n?n:"null")}},this.get=function(t){var e=a().getItem(ge(t));return e&&JSON.parse(e)},this.remove=function(t){a().removeItem(ge(t))}}),be=new ye(function(){return de},"localStorage"),me=new ye(function(){return ve},"sessionStorage"),_e=n(779),we=n.n(_e);function ke(t){return decodeURIComponent(t.replace(/\+/g," "))}function Se(){var t=2147483648;return Math.floor(Math.random()*t).toString(36)+Math.abs(Math.floor(Math.random()*t)^Date.now()).toString(36)}function Ae(t){var e={};return t.replace(/^[^?]*\?/,"").split("&").forEach(function(t){var n=t.indexOf("=");if(n<0)e[ke(t)]=!0;else{var r=ke(t.substring(0,n));e[r]=ke(t.substring(n+1))}}),e}function Oe(t){if(!t)return"";var e=[];return Object.entries(t).forEach(function(t){var n=l(t,2),r=n[0],i=n[1];null!=i&&(I(i)&&(i=JSON.stringify(i)),e.push(encodeURIComponent(r)+"="+encodeURIComponent(i)))}),e.join("&")}function Pe(t,e){var n=t.indexOf("?"),r=e?(n<0?"?":"&")+Oe(e):"",i=t.indexOf("#");return i<0?t+r:t.substring(0,i)+r+t.substring(i)}function Re(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Re=function(){return!!t})()}function Ee(t,e){return Ee=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ee(t,e)}function je(t,e,n){if(Re())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,e);var i=new(t.bind.apply(t,r));return n&&Ee(i,n.prototype),i}var Ie="XMLHttpRequest",Ce=p[Ie];Ce||(void 0===(Ce=i[Ie])||function(){if(S&&"Microsoft Internet Explorer"===window.navigator.appName){var t=window.navigator.userAgent.match(/MSIE (\d+[.\d]*)/);return t&&t.length>1&&parseFloat(t[1])<10}return!1}())&&N(C,"XMLHttpRequest not found"),g(Ie,function(){return Ce},function(t){return Ce=t});var xe=Ut("network.HttpRequest","HttpRequest"),Te="application/x-www-form-urlencoded",He="application/json",Ne="Content-Type",Le="PUT",Ue="PATCH",De="POST",Fe="DELETE",We="GET",Me=c(function t(e,n){o(this,t),this.name=e,this.value=n}),ze=c(function t(e,n){o(this,t);for(var r=arguments.length,i=new Array(r>2?r-2:0),a=2;a<r;a++)i[a-2]=arguments[a];this.url=Pe([n].concat(d(i.filter(function(t){return t&&t.length}).map(function(t){return encodeURIComponent(t)}))).join("/"),{c:k}),this.method=e.toUpperCase(),this.headers={Accept:"application/json, text/plain"}},[{key:"addQueryParameters",value:function(t){return this.url=Pe(this.url,t),this}},{key:"addJson",value:function(t){return this.contentType=He,this.data=t,this}},{key:"addForm",value:function(t){return this.contentType=Te,this.data=t,this}},{key:"addHeader",value:function(t){return L(["HttpRequest","#addHeader"],arguments,D(W(Me))),t&&(this.headers[t.name]=t.value),this}},{key:"readResponseHeaders",value:function(){return this.readHeaders=!0,this}},{key:"send",value:function(){var t=this;return new Promise(function(e,n){var r=null;void 0!==t.data&&[De,Le,Ue].indexOf(t.method)>=0&&((r=t.contentType===Te?Oe(t.data):t.contentType===He?JSON.stringify(t.data):t.data)?t.headers[Ne]=t.contentType:delete t.headers[Ne]),xe.log("==> ".concat(t.method," ").concat(t.url)),Object.keys(t.headers).forEach(function(e){return xe.log(" > HEADER ".concat(e,": ").concat(t.headers[e]))}),r&&xe.log(" > DATA: ".concat(r)),t._open(r,e,function(t){xe.log("<== ERROR: ".concat(JSON.stringify(t))),n(he(t))})})}},{key:"_open",value:function(t,e,n){var r=this,i=new Ce,o="RESPONSE_PAYLOAD_ERROR";i.onreadystatechange=function(){if(4===i.readyState){var t=i.responseText,a=i.status;if(a>=500)n({code:o,message:"HTTP status ".concat(a)});else try{var s=t.length?JSON.parse(t):{};if(a>=400)n(s.error||s);else if(a>=200&&a<300||304===a){var u={body:s},c=u.body.error||null;c?n(I(c)?c:{code:u.body.status,message:c}):(r.readHeaders&&(u.headers=function(t){var e=t.getAllResponseHeaders().trim().split(/[\r\n]+/),n={};return e.forEach(function(t){var e=t.indexOf(": "),r=t.substring(0,e).toLowerCase();n[r]=t.substring(e+2)}),n}(i)),xe.log("<== ".concat(JSON.stringify(u))),e(u))}else n({code:o,message:"HTTP status ".concat(a)})}catch(t){n({code:o,message:"invalid response payload, not a Json content type"})}}},i.open(this.method,this.url,!0),Object.entries(this.headers).forEach(function(t){var e=l(t,2),n=e[0],r=e[1];return i.setRequestHeader(n,r)}),i.send(t)}}]);function Je(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return je(ze,[We,t].concat(n))}function qe(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return je(ze,[Le,t].concat(n))}function Ke(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return je(ze,[De,t].concat(n))}function Be(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return je(ze,[Fe,t].concat(n))}function Ge(t){if(t)return new Me("Authorization","Bearer ".concat(t))}var Ve=new(c(function t(e){o(this,t),$t(this,"name",e),this.counters_={}},[{key:"attach",value:function(t){this.counters_=t.counters_}},{key:"incrementCounter",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;this.counters_[t]=(this.counters_[t]||0)+e}},{key:"get",value:function(){return Object.assign({},this.counters_)}}]))("deprecated");function Qe(t,e,n,r){r=r&&r.concat(": ")||"",n=n?"use ".concat(n," instead"):"it should no longer be used",t.warn("".concat(r).concat(e," is deprecated, ").concat(n,".")),Ve.incrementCounter(e)}$t(Lt,"showDeprecations",function(){L([Nt,"showDeprecations"],arguments),Xe=Qe}),$t(Lt,"hideDeprecations",function(){L([Nt,"hideDeprecations"],arguments),Xe=pt});var Xe=Qe;$t(Bt,"Authentication",{avatarURL:ce}),Zt(Bt,"avatarURL",function(){return Xe(Gt,"Webcom.avatarURL","Webcom.Authentication.avatarURL"),ce});var Ye={code:"USER_DENIED",message:"The user aborted authentication"},$e={facebook:{height:650,width:680},google:{height:460,width:490},github:{height:760,width:340},gitlab:{height:710,width:800},orange:{height:700,width:1e3},mobileconnectOFR:{height:540,width:700}},Ze={menubar:0,location:0,resizable:0,scrollbars:1,status:0,dialog:1,width:700,height:375};function tn(t,e){var n=t.config[ue];return E(n.storage)?n.storage:zt(t,"state",n)+e}function en(t,e,n){st(function(){return t(e,n)})}function nn(){return S&&(me.get(this._oauthSessionKey)||be.get(this._oauthSessionKey))}var rn=c(function t(e){o(this,t),this._logger=Ut("api.Authentication",ue),this._logger.log("Initializing with options ".concat(JSON.stringify(e.config[ue]))),this._app=e,this._init(e)},[{key:"_init",value:function(t){var e=t.config[ue];Vt.call(this,e.baseUrl);var n=this._logger._count;this._currentState=function(t){try{return new ie(t.state,t.details)}catch(t){return oe}}(function(t,e){var n=t.config[ue];return n.initialState||(j(n.storage)?{}:be.get(tn(t,e)))}(t,n)),this._authStateSetter=function(t,e){var n=t.config[ue];if(j(n.storage))return function(t){return n.storage(JSON.stringify(t))};var r=tn(t,e);return function(t){return t&&!t.isUnauthenticated()?be.set(r,t):be.remove(r)}}(t,n),this._oauthSessionKey=zt(t,"ongoing",e)+n,this.isAuthContextual=!1,this._firstSubscriptions=[],this._lastSubscriptions=[],this._authRoute="".concat(e.baseUrl.href,"/auth/v2/").concat(t.appId),this._resumeAuthState(),this._logger.log("Initialized for appId %s",t.appId)}},{key:"_dispose",value:function(){}},{key:"currentState",get:function(){return this._currentState},set:function(t){this._currentState.isSameAs(t)||(this._currentState=function(t){if(t.isAuthenticated()){var e=Object.assign({},t.details);return delete e.extra,ae(e)}return t}(t),this._authStateSetter(this._currentState),this._notifyErrorOrAuthStateChanged(null,t))}},{key:"_resumeAuthState",value:function(){var t=this;if(S)if("popup"===be.get(this._oauthSessionKey))document.body.style.display="none",be.set(this._oauthSessionKey,Ae(location.search).__wcsession),window.close();else{var e=me.get(this._oauthSessionKey);if(e){var n=Ae(location.search).__wcsession;if(n)return void(this._oauthSessionPromise=this.resumeSession(n,e).finally(function(){delete t._oauthSessionPromise,me.remove(t._oauthSessionKey)}).catch(pt));me.remove(this._oauthSessionKey)}}this._logger.info("Authentication state resumed: %s",this.currentState.state),this._logger.log("Authentication details are: %o",this.currentState.details)}},{key:"getAccountDetails",value:function(){var t=[ue,"#removeIdentity"];try{L(t,arguments);var e=this._getCurrentAuthenticationDetails(t);return this._httpGet("accounts",e.uid).addHeader(Ge(e.webcomAuthToken)).send().then(function(t){for(var e={},n=0,r=Object.entries(t.body);n<r.length;n++){var i=l(r[n],2),o=i[0],a=i[1];switch(o){case"providers":for(var s={},u=0,c=Object.entries(a);u<c.length;u++){var h=l(c[u],2),f=h[0],d=h[1];s[f]=Object.keys(d)}e.identities=s;break;case"createdOn":e[o]=new Date(a);break;default:e[o]=a}}return e})}catch(t){return Promise.reject(t)}}},{key:"subscribe",value:function(t,e){return L([ue,"#subscribe"],arguments,q,D(K)),e?this._firstSubscriptions.push(t):this._lastSubscriptions.push(t),nn.call(this)?this._logger.log("Notification not sent, because an OAuth authentication is ongoing."):en(t,null,this.currentState),t}},{key:"unsubscribe",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;L([ue,"#unsubscribe"],arguments,D(q),D(K));var n=this._firstSubscriptions.length+this._lastSubscriptions.length,r=function(e){return t&&t!==e};return!1!==e&&(this._firstSubscriptions=this._firstSubscriptions.filter(r)),!0!==e&&(this._lastSubscriptions=this._lastSubscriptions.filter(r)),n-this._firstSubscriptions.length-this._lastSubscriptions.length}},{key:"_notifyErrorOrAuthStateChanged",value:function(t,e){this._firstSubscriptions.concat(this._lastSubscriptions).forEach(function(n){return en(n,t,e)})}},{key:"authenticationRevoked",value:function(t,e){L([ue,"#authenticationRevoked"],arguments,W(ie),J);var n=new Error("Authentication was revoked by the server: ".concat(e));n.code="AUTH_REVOKED",this._notifyErrorOrAuthStateChanged(n,null),this.currentState=t}},{key:"resumeSession",value:function(t,e){return L("AuthenticationImpl#resumeSession",arguments,J,J),this._logger.info("fetching authentication state from an ongoing OAuth2 session..."),Ke(this._authRoute,"session").addJson({sessionKey:t,requestKey:e}).send().then(this._updateStateFromHttpResponse(),this._notifyErrorFromHttpResponse.bind(this))}},{key:"_extendHttpRequest",value:function(t){var e=this,n=t;return n.addAuthContext=function(){var n=e._contextAuthToken();return n?t.addHeader(Ge(n)):t},n}},{key:"_httpGet",value:function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return this._extendHttpRequest(Je.apply(void 0,[this._authRoute].concat(e)))}},{key:"_httpPost",value:function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return this._extendHttpRequest(Ke.apply(void 0,[this._authRoute].concat(e)))}},{key:"_httpPut",value:function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return this._extendHttpRequest(qe.apply(void 0,[this._authRoute].concat(e)))}},{key:"_httpDelete",value:function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return this._extendHttpRequest(Be.apply(void 0,[this._authRoute].concat(e)))}},{key:"_updateStateFromHttpResponse",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(t){return t};return function(n){var r=e(n).body,i=r.token,o=r.user;if(i)return o.webcomAuthToken=i,t.currentState=ae(o),new Promise(function(t){return st(function(){return t(o)})});throw he({code:"UNEXPECTED_RESPONSE",message:"the 'token' property is missing."})}}},{key:"_notifyErrorFromHttpResponse",value:function(t){throw this._notifyErrorOrAuthStateChanged(t,null),t}},{key:"useCurrentContextForNextAuthOperation",value:function(){L([ue,"#useCurrentContextForNextAuthOperation"],arguments),this.isAuthContextual=!0}},{key:"useNewContextForNextAuthOperation",value:function(){L([ue,"#useNewContextForNextAuthOperation"],arguments),this.isAuthContextual=!1}},{key:"_contextAuthToken",value:function(){var t=this.isAuthContextual?this.currentState.details:null;return this.isAuthContextual=!1,t&&t.webcomAuthToken}},{key:"signInWithToken",value:function(t){try{return L([ue,"#signInWithToken"],arguments,J),this._httpGet("decode").addHeader(Ge(t)).send().then(this._updateStateFromHttpResponse(function(e){var n=e.body;return{body:{token:t,user:n.data}}}),this._notifyErrorFromHttpResponse.bind(this))}catch(t){return Promise.reject(t)}}},{key:"signInAsGuest",value:function(){try{return L([ue,"#signInAsGuest"],arguments),this._httpPost("anonymous","signin").addAuthContext().send().then(this._updateStateFromHttpResponse(),this._notifyErrorFromHttpResponse.bind(this))}catch(t){return Promise.reject(t)}}},{key:"signInWithCredentials",value:function(t,e){try{return L([ue,"#signInWithCredentials"],arguments,J,G),this._httpPost(t,"signin").addAuthContext().addJson(e).send().then(this._updateStateFromHttpResponse(),this._notifyErrorFromHttpResponse.bind(this))}catch(t){return Promise.reject(t)}}},{key:"sendOtp",value:function(t,e,n){try{return L([ue,"#sendOtp"],arguments,J,J,D(G)),this._httpPost(t,"otps").addQueryParameters(n).addJson(e).send().then(function(t){return t.body})}catch(t){return Promise.reject(t)}}},{key:"signInWithCustomProvider",value:function(t,e){try{return L([ue,"#signInWithCustomProvider"],arguments,J,J),this._httpPost("custom.".concat(t),"signin").addAuthContext().addForm({token:e}).send().then(this._updateStateFromHttpResponse(),this._notifyErrorFromHttpResponse.bind(this))}catch(t){return Promise.reject(t)}}},{key:"signInWithOAuth",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{return L([ue,"#signInWithOAuth"],arguments,J,D(G)),e.mode=e.mode||"popup","code"===e.mode?this._loginViaOAuthCode(t,e):this._loginViaOAuth(t,e)}catch(t){return Promise.reject(t)}}},{key:"signInWithWassup",value:function(t){try{return L([ue,"#signInWithWassup"],arguments,G),this._httpPost("wassup","signin").addAuthContext().addForm(t).send().then(this._updateStateFromHttpResponse(),this._notifyErrorFromHttpResponse.bind(this))}catch(t){return Promise.reject(t)}}},{key:"signOut",value:function(){try{return L([ue,"#signOut"],arguments),this.currentState=oe,new Promise(function(t){return st(function(){return t()})})}catch(t){return Promise.reject(t)}}},{key:"_loginViaOAuthCode",value:function(t,e){return e.code&&e.state||this._logger.warn("authWithOAuth(): options.code or options.state is missing!"),this._httpGet(t,"callback").addQueryParameters(e).send().then(this._updateStateFromHttpResponse(),this._notifyErrorFromHttpResponse.bind(this))}},{key:"_loginViaOAuth",value:function(t,e){if(nn.call(this))return this._oauthSessionPromise||Promise.reject(he({code:"ONGOING_OAUTH",message:"An OAuth authentication is already ongoing"}));var n=!S||"redirect"===e.mode||S&&(window.navigator.userAgent.match(/CriOS|Twitter for iPhone|FBAN\/FBIOS|Windows Phone/)||window.navigator.standalone);e.token=this._contextAuthToken(),e.mode="redirect",!e.to&&S&&(e.to=location.href.replace(/[?&]__wcsession=[^&]+/,"")),!e.from&&S&&(e.from=Se()+Se()+Se()+Se());var r,i,o=e.from;e.from=(r=o,i=!0,we().codec.base64.fromBits(we().hash.sha256.hash(r),!1,i)),e.pm="2";var a=e.popupFeatures||{};delete e.popupFeatures;var s=Pe("".concat(this._authRoute,"/").concat(t,"/signin"),e);if(!n)return this._oauthLoginViaPopup(t,a,s,o);try{return S&&(me.set(this._oauthSessionKey,o),document.location=s),Promise.resolve(s)}catch(t){return Promise.reject(t)}}},{key:"_oauthLoginViaPopup",value:function(t,e,n,r){var i=this,o=Object.assign({},Ze,$e[t],e),a=o.target||"_blank";delete o.target;var s=window.open(n,a,Object.entries(o).map(function(t){var e=l(t,2),n=e[0],r=e[1];return"".concat(n,"=").concat(r)}).join(","));return new Promise(function(t,e){if(s){be.set(i._oauthSessionKey,"popup");var o=function(){s.close(),be.remove(i._oauthSessionKey)};window.addEventListener("beforeunload",o);var a=ft(function(){if(s.closed){dt(a),window.removeEventListener("beforeunload",o);var n=be.get(i._oauthSessionKey);o(),"popup"===n?e(he(Ye)):t(i.resumeSession(n,r))}},250)}else e(he(function(t){return{code:"POPUP_FAILED",message:"Could not open popup at ".concat(t)}}(n)))})}},{key:"addIdentity",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};try{return L([ue,"#addIdentity"],arguments,J,G,D(G)),this._httpPost(t,"identities").addAuthContext().addQueryParameters(n).addJson(e).send().then(function(t){return t.body})}catch(t){return Promise.reject(t)}}},{key:"removeIdentity",value:function(){var t=[ue,"#removeIdentity"];try{L(t,arguments);var e=this._getCurrentAuthenticationDetails(t);return this._httpDelete(e.provider,"identities",e.providerUid).addHeader(Ge(e.webcomAuthToken)).send().then(function(){})}catch(t){return Promise.reject(t)}}},{key:"removeAccount",value:function(){var t=[ue,"#removeAccount"];try{L(t,arguments);var e=this._getCurrentAuthenticationDetails(t);return this._httpDelete("accounts",e.uid).addHeader(Ge(e.webcomAuthToken)).send().then(function(){})}catch(t){return Promise.reject(t)}}},{key:"verifyIdentity",value:function(t,e,n){try{return L([ue,"#verifyIdentity"],arguments,J,J,G),n.auth&&(n.challenge=n.auth.verificationPending,delete n.auth),this._httpPost(t,"identities",e,"verify").addAuthContext().addJson(n).send().then(this._updateStateFromHttpResponse(),this._notifyErrorFromHttpResponse.bind(this))}catch(t){return Promise.reject(t)}}},{key:"updateIdentityProfile",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=[ue,"#updateIdentityProfile"];try{L(n,arguments,F,D(J));var r=this._getCurrentAuthenticationDetails(n);return this._httpPut(r.provider,"identities",r.providerUid,"providerProfile",e).addHeader(Ge(r.webcomAuthToken)).addJson(t).send().then(function(t){return t.body})}catch(t){return Promise.reject(t)}}},{key:"_getCurrentAuthenticationDetails",value:function(t){var e;if(!this.currentState.isAuthenticated())throw he({code:"AUTH_MISSING",message:"".concat((e="").concat.apply(e,d(t))," failed: needs to be authenticated")});return this.currentState.details}},{key:"updatePassword",value:function(t,e,n){try{return L([ue,"#updatePassword"],arguments,J,J,J),this._httpPut("password","identities",t,"password").addForm({password:e,newPassword:n}).send().then(function(t){return t.body})}catch(t){return Promise.reject(t)}}},{key:"sendPasswordResetCode",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};try{return L([ue,"#sendPasswordResetCode"],arguments,J,J,D(G)),this._httpPost(t,"identities",e,"reset").addQueryParameters(n).send().then(function(t){return t.body})}catch(t){return Promise.reject(t)}}},{key:"sendVerificationCode",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};try{return L([ue,"#sendVerificationCode"],arguments,J,J,D(G)),this._httpPost(t,"identities",e,"sendVerification").addQueryParameters(n).send().then(function(t){return t.body})}catch(t){return Promise.reject(t)}}}]);return se=function(t){return new rn(t)},i[Kt]=Bt,r=r.default})());