{"version":3,"sources":["../LuV.LUMAS.Services/scripts/spext/helpers/spContext.ts"],"names":["Context","prototype","getRootSiteCollectionUrl","window","ex","console","warn","this","getHostUrl","getSiteCollectionUrl","getWebUrl","withTailingSlash","a","document","createElement","href","protocol","host","getHostUrlRegex","RegExp","replace","parseUrl","url","returnAsServerRelative","_","isString","fullUrl","m","match","replaceToken","input","exports","default"],"mappings":"oHAEA,IAAAA;;;;AAIWA,EAAAC,UAAAC,yBAAP,WACI,IACI,OAAOC,OAAc,MAAW,QAAuB,oBACzD,MAAOC,GAIL,OAHID,OAAOE,SAAWF,OAAOE,QAAQC,MACjCH,OAAOE,QAAQC,KAAK,+EAEjBC,KAAKC,YAAW;;AAIxBR,EAAAC,UAAAQ,qBAAP,WACI,OAAON,OAA2B,mBAAmB;;AAGlDH,EAAAC,UAAAS,UAAP,WACI,OAAOP,OAA2B,mBAAkB;;;;AAKjDH,EAAAC,UAAAO,WAAP,SAAkBG,QAAA,IAAAA,IAAAA,GAAA,GACd,IAAMC,EAAIC,SAASC,cAAc,KAEjC,OADAF,EAAEG,KAAOR,KAAKE,uBACJG,EAAEI,SAAQ,KAAKJ,EAAEK,MAAON,EAAmB,IAAM;;AAGxDX,EAAAC,UAAAiB,gBAAP,WACI,IAAMN,EAAIC,SAASC,cAAc,KAEjC,OADAF,EAAEG,KAAOR,KAAKE,uBACP,IAAIU,OAAO,OAAOP,EAAEI,SAASI,QAAQ,IAAK,IAAG,QAAUR,EAAEK,KAAI,QAAU;;;;;;;;;;;AAY3EjB,EAAAC,UAAAoB,SAAP,SAAgBC,EAAaC,GACzB,QADyB,IAAAA,IAAAA,GAAA,IACpBC,EAAEC,SAASH,GACZ,KAAM,gCAEV,IAAMI,EAAUJ,EACXF,QAAQ,oBAAqBb,KAAKE,wBAClCW,QAAQ,UAAWb,KAAKG,aACxBU,QAAQ,wBAAyBb,KAAKL,4BAEtCkB,QAAQ,QAASb,KAAKC,YAAW,IAEjCY,QAAQ,OAAQ,KAAKA,QAAQ,KAAM,OACxC,GAAIG,EAAwB,CACxB,IAAMI,EAAID,EAAQE,MAAMrB,KAAKW,mBAC7B,GAAIS,EACA,MAAO,IAAMA,EAAE;;CAIvB,OAAOD;;;;;;;AASJ1B,EAAAC,UAAA4B,aAAP,SAAoBC,GAChB,IAAKN,EAAEC,SAASK,GACZ,KAAM,kCAIV,OAFeA,EACXV,QAAQ,4BAA6Bb,KAAKE,yBAGtDT,GAlFA,SAAAA,KAoFA+B,EAAAC,QAAe,IAAIhC","file":"spContext.js","sourcesContent":["import * as _ from 'lodash';\r\n\r\nclass Context {\r\n /** returns the absolute url of the root sitecollection\r\n * URL must be configured in window.itacs.context.rootSiteAbsoluteUrl, before calling this function or parseUrl function\r\n */\r\n public getRootSiteCollectionUrl(): string {\r\n try {\r\n return window[`itacs`][`context`][`rootSiteAbsoluteUrl`];\r\n } catch (ex) {\r\n if (window.console && window.console.warn) {\r\n window.console.warn(`missing config in window.itacs.context.rootSiteAbsoluteUrl! using host url!`);\r\n }\r\n return this.getHostUrl(false);\r\n }\r\n }\r\n /** returns the absolute url of the current sitecollection, without tailing slash */\r\n public getSiteCollectionUrl(): string {\r\n return window[`_spPageContextInfo`][`siteAbsoluteUrl`];\r\n }\r\n /** returns the url absolute url of the current web, without tailing slash */\r\n public getWebUrl(): string {\r\n return window[`_spPageContextInfo`][`webAbsoluteUrl`];\r\n }\r\n /** returns the absolute url of the current host, using the url of the current sitecollection with a tailing slash\r\n * e.g.: https://itacs.sharepoint.com/\r\n */\r\n public getHostUrl(withTailingSlash: boolean = true): string {\r\n const a = document.createElement('a');\r\n a.href = this.getSiteCollectionUrl();\r\n return `${a.protocol}//${a.host}${withTailingSlash ? '/' : ''}`;\r\n }\r\n /** returns a RegExp object, using the host url to match other urls */\r\n public getHostUrlRegex(): RegExp {\r\n const a = document.createElement('a');\r\n a.href = this.getSiteCollectionUrl();\r\n return new RegExp(`^(?:${a.protocol.replace(':', '')})?:\\/\\/${a.host}\\/(.*)`, `i`);\r\n }\r\n /** parse an url by searching for sharepoint token and replace them with values from the SP.PageContext\r\n *\r\n * Examples in web \"https://itacs.sharepoint.com/sites/test/subweb\"\r\n * ~sitecollection/subweb > https://itacs.sharepoint.com/sites/test/subweb\r\n * ~site/subweb2 > https://itacs.sharepoint.com/sites/test/subweb/subweb2\r\n * ~rootsitecollection/docs > https://itacs.sharepoint.com/sites/intranet/docs\r\n * /sites/test2 > https://itacs.sharepoint.com/sites/test2\r\n *\r\n * returns the url server relative (if same host with current) when returnAsServerRelative is true (default)\r\n */\r\n public parseUrl(url: string, returnAsServerRelative: boolean = true) {\r\n if (!_.isString(url)) {\r\n throw 'Parameter url must be string!';\r\n }\r\n const fullUrl = url\r\n .replace(/~sitecollection/ig, this.getSiteCollectionUrl())\r\n .replace(/~site/ig, this.getWebUrl())\r\n .replace(/~rootsitecollection/ig, this.getRootSiteCollectionUrl())\r\n //add current host to server relative urls\r\n .replace(/^\\//ig, this.getHostUrl(true))\r\n //remove multi slashes\r\n .replace(/\\/+/g, \"/\").replace(':/', \"://\");\r\n if (returnAsServerRelative) {\r\n const m = fullUrl.match(this.getHostUrlRegex());\r\n if (m) {\r\n return '/' + m[1];\r\n }\r\n //all other is server relative\r\n }\r\n return fullUrl;\r\n }\r\n\r\n /**\r\n * searchs for search token in input and replace them with correct values\r\n *\r\n * Currently supported (Examples in web \"https://itacs.sharepoint.com/sites/test/subweb\"):\r\n * {sitecollection.url} > https://itacs.sharepoint.com/sites/test\r\n */\r\n public replaceToken(input: string) {\r\n if (!_.isString(input)) {\r\n throw 'Parameter input must be string!';\r\n }\r\n const result = input.\r\n replace(/\\{sitecollection\\.url\\}/gi, this.getSiteCollectionUrl());\r\n return result;\r\n }\r\n}\r\n\r\nexport default new Context();\r\n"]}