27282 lines
1.2 MiB
Plaintext
27282 lines
1.2 MiB
Plaintext
/*
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
*/
|
|
|
|
/*
|
|
Your use of this file is governed by the Microsoft Services Agreement http://go.microsoft.com/fwlink/?LinkId=266419.
|
|
*/
|
|
|
|
/*
|
|
* @overview es6-promise - a tiny implementation of Promises/A+.
|
|
* @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)
|
|
* @license Licensed under MIT license
|
|
* See https://raw.githubusercontent.com/jakearchibald/es6-promise/master/LICENSE
|
|
* @version 2.3.0
|
|
*/
|
|
|
|
|
|
// Sources:
|
|
// osfweb: 16.0\14703.10000
|
|
// runtime: 16.0\14703.10000
|
|
// core: 16.0\14703.10000
|
|
// host: 16.0\14703.10000
|
|
|
|
|
|
|
|
var __extends = (this && this.__extends) || (function () {
|
|
var extendStatics = function (d, b) {
|
|
extendStatics = Object.setPrototypeOf ||
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
function (d, b) { for (var p in b)
|
|
if (b.hasOwnProperty(p))
|
|
d[p] = b[p]; };
|
|
return extendStatics(d, b);
|
|
};
|
|
return function (d, b) {
|
|
extendStatics(d, b);
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
})();
|
|
var OfficeExt;
|
|
(function (OfficeExt) {
|
|
var MicrosoftAjaxFactory = (function () {
|
|
function MicrosoftAjaxFactory() {
|
|
}
|
|
MicrosoftAjaxFactory.prototype.isMsAjaxLoaded = function () {
|
|
if (typeof (Sys) !== 'undefined' && typeof (Type) !== 'undefined' &&
|
|
Sys.StringBuilder && typeof (Sys.StringBuilder) === "function" &&
|
|
Type.registerNamespace && typeof (Type.registerNamespace) === "function" &&
|
|
Type.registerClass && typeof (Type.registerClass) === "function" &&
|
|
typeof (Function._validateParams) === "function" &&
|
|
Sys.Serialization && Sys.Serialization.JavaScriptSerializer && typeof (Sys.Serialization.JavaScriptSerializer.serialize) === "function") {
|
|
return true;
|
|
}
|
|
else {
|
|
return false;
|
|
}
|
|
};
|
|
MicrosoftAjaxFactory.prototype.loadMsAjaxFull = function (callback) {
|
|
var msAjaxCDNPath = (window.location.protocol.toLowerCase() === 'https:' ? 'https:' : 'http:') + '//ajax.aspnetcdn.com/ajax/3.5/MicrosoftAjax.js';
|
|
OSF.OUtil.loadScript(msAjaxCDNPath, callback);
|
|
};
|
|
Object.defineProperty(MicrosoftAjaxFactory.prototype, "msAjaxError", {
|
|
get: function () {
|
|
if (this._msAjaxError == null && this.isMsAjaxLoaded()) {
|
|
this._msAjaxError = Error;
|
|
}
|
|
return this._msAjaxError;
|
|
},
|
|
set: function (errorClass) {
|
|
this._msAjaxError = errorClass;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MicrosoftAjaxFactory.prototype, "msAjaxString", {
|
|
get: function () {
|
|
if (this._msAjaxString == null && this.isMsAjaxLoaded()) {
|
|
this._msAjaxString = String;
|
|
}
|
|
return this._msAjaxString;
|
|
},
|
|
set: function (stringClass) {
|
|
this._msAjaxString = stringClass;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MicrosoftAjaxFactory.prototype, "msAjaxDebug", {
|
|
get: function () {
|
|
if (this._msAjaxDebug == null && this.isMsAjaxLoaded()) {
|
|
this._msAjaxDebug = Sys.Debug;
|
|
}
|
|
return this._msAjaxDebug;
|
|
},
|
|
set: function (debugClass) {
|
|
this._msAjaxDebug = debugClass;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
return MicrosoftAjaxFactory;
|
|
}());
|
|
OfficeExt.MicrosoftAjaxFactory = MicrosoftAjaxFactory;
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
var OsfMsAjaxFactory = new OfficeExt.MicrosoftAjaxFactory();
|
|
var OSF = OSF || {};
|
|
(function (OfficeExt) {
|
|
var SafeStorage = (function () {
|
|
function SafeStorage(_internalStorage) {
|
|
this._internalStorage = _internalStorage;
|
|
}
|
|
SafeStorage.prototype.getItem = function (key) {
|
|
try {
|
|
return this._internalStorage && this._internalStorage.getItem(key);
|
|
}
|
|
catch (e) {
|
|
return null;
|
|
}
|
|
};
|
|
SafeStorage.prototype.setItem = function (key, data) {
|
|
try {
|
|
this._internalStorage && this._internalStorage.setItem(key, data);
|
|
}
|
|
catch (e) {
|
|
}
|
|
};
|
|
SafeStorage.prototype.clear = function () {
|
|
try {
|
|
this._internalStorage && this._internalStorage.clear();
|
|
}
|
|
catch (e) {
|
|
}
|
|
};
|
|
SafeStorage.prototype.removeItem = function (key) {
|
|
try {
|
|
this._internalStorage && this._internalStorage.removeItem(key);
|
|
}
|
|
catch (e) {
|
|
}
|
|
};
|
|
SafeStorage.prototype.getKeysWithPrefix = function (keyPrefix) {
|
|
var keyList = [];
|
|
try {
|
|
var len = this._internalStorage && this._internalStorage.length || 0;
|
|
for (var i = 0; i < len; i++) {
|
|
var key = this._internalStorage.key(i);
|
|
if (key.indexOf(keyPrefix) === 0) {
|
|
keyList.push(key);
|
|
}
|
|
}
|
|
}
|
|
catch (e) {
|
|
}
|
|
return keyList;
|
|
};
|
|
SafeStorage.prototype.isLocalStorageAvailable = function () {
|
|
return (this._internalStorage != null);
|
|
};
|
|
return SafeStorage;
|
|
}());
|
|
OfficeExt.SafeStorage = SafeStorage;
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
OSF.XdmFieldName = {
|
|
ConversationUrl: "ConversationUrl",
|
|
AppId: "AppId"
|
|
};
|
|
OSF.TestFlightStart = 1000;
|
|
OSF.TestFlightEnd = 1009;
|
|
OSF.FlightNames = {
|
|
UseOriginNotUrl: 0,
|
|
AddinEnforceHttps: 2,
|
|
FirstPartyAnonymousProxyReadyCheckTimeout: 6,
|
|
AddinRibbonIdAllowUnknown: 9,
|
|
ManifestParserDevConsoleLog: 15,
|
|
AddinActionDefinitionHybridMode: 18,
|
|
UseActionIdForUILessCommand: 20,
|
|
RequirementSetRibbonApiOnePointTwo: 21,
|
|
SetFocusToTaskpaneIsEnabled: 22,
|
|
ShortcutInfoArrayInUserPreferenceData: 23,
|
|
OSFTestFlight1000: OSF.TestFlightStart,
|
|
OSFTestFlight1001: OSF.TestFlightStart + 1,
|
|
OSFTestFlight1002: OSF.TestFlightStart + 2,
|
|
OSFTestFlight1003: OSF.TestFlightStart + 3,
|
|
OSFTestFlight1004: OSF.TestFlightStart + 4,
|
|
OSFTestFlight1005: OSF.TestFlightStart + 5,
|
|
OSFTestFlight1006: OSF.TestFlightStart + 6,
|
|
OSFTestFlight1007: OSF.TestFlightStart + 7,
|
|
OSFTestFlight1008: OSF.TestFlightStart + 8,
|
|
OSFTestFlight1009: OSF.TestFlightEnd
|
|
};
|
|
OSF.FlightTreatmentNames = {
|
|
AllowStorageAccessByUserActivationOnIFrameCheck: "Microsoft.Office.SharedOnline.AllowStorageAccessByUserActivationOnIFrameCheck",
|
|
IsPrivateAddin: "Microsoft.Office.SharedOnline.IsPrivateAddin",
|
|
LogAllAddinsAsPublic: "Microsoft.Office.SharedOnline.LogAllAddinsAsPublic",
|
|
WopiPreinstalledAddInsEnabled: "Microsoft.Office.SharedOnline.WopiPreinstalledAddInsEnabled",
|
|
AddinCommandRibbonCacheFixEnabled: "Microsoft.Office.SharedOnline.AddinCommandRibbonCacheFixEnabled",
|
|
CheckProxyIsReadyRetry: "Microsoft.Office.SharedOnline.OEP.CheckProxyIsReadyRetry",
|
|
InsertionDialogFixesEnabled: "Microsoft.Office.SharedOnline.InsertionDialogFixesEnabled"
|
|
};
|
|
OSF.Flights = [];
|
|
OSF.Settings = {};
|
|
OSF.WindowNameItemKeys = {
|
|
BaseFrameName: "baseFrameName",
|
|
HostInfo: "hostInfo",
|
|
XdmInfo: "xdmInfo",
|
|
SerializerVersion: "serializerVersion",
|
|
AppContext: "appContext",
|
|
Flights: "flights"
|
|
};
|
|
OSF.OUtil = (function () {
|
|
var _uniqueId = -1;
|
|
var _xdmInfoKey = '&_xdm_Info=';
|
|
var _serializerVersionKey = '&_serializer_version=';
|
|
var _flightsKey = '&_flights=';
|
|
var _xdmSessionKeyPrefix = '_xdm_';
|
|
var _serializerVersionKeyPrefix = '_serializer_version=';
|
|
var _flightsKeyPrefix = '_flights=';
|
|
var _fragmentSeparator = '#';
|
|
var _fragmentInfoDelimiter = '&';
|
|
var _classN = "class";
|
|
var _loadedScripts = {};
|
|
var _defaultScriptLoadingTimeout = 30000;
|
|
var _safeSessionStorage = null;
|
|
var _safeLocalStorage = null;
|
|
var _rndentropy = new Date().getTime();
|
|
function _random() {
|
|
var nextrand = 0x7fffffff * (Math.random());
|
|
nextrand ^= _rndentropy ^ ((new Date().getMilliseconds()) << Math.floor(Math.random() * (31 - 10)));
|
|
return nextrand.toString(16);
|
|
}
|
|
;
|
|
function _getSessionStorage() {
|
|
if (!_safeSessionStorage) {
|
|
try {
|
|
var sessionStorage = window.sessionStorage;
|
|
}
|
|
catch (ex) {
|
|
sessionStorage = null;
|
|
}
|
|
_safeSessionStorage = new OfficeExt.SafeStorage(sessionStorage);
|
|
}
|
|
return _safeSessionStorage;
|
|
}
|
|
;
|
|
function _reOrderTabbableElements(elements) {
|
|
var bucket0 = [];
|
|
var bucketPositive = [];
|
|
var i;
|
|
var len = elements.length;
|
|
var ele;
|
|
for (i = 0; i < len; i++) {
|
|
ele = elements[i];
|
|
if (ele.tabIndex) {
|
|
if (ele.tabIndex > 0) {
|
|
bucketPositive.push(ele);
|
|
}
|
|
else if (ele.tabIndex === 0) {
|
|
bucket0.push(ele);
|
|
}
|
|
}
|
|
else {
|
|
bucket0.push(ele);
|
|
}
|
|
}
|
|
bucketPositive = bucketPositive.sort(function (left, right) {
|
|
var diff = left.tabIndex - right.tabIndex;
|
|
if (diff === 0) {
|
|
diff = bucketPositive.indexOf(left) - bucketPositive.indexOf(right);
|
|
}
|
|
return diff;
|
|
});
|
|
return [].concat(bucketPositive, bucket0);
|
|
}
|
|
;
|
|
return {
|
|
set_entropy: function OSF_OUtil$set_entropy(entropy) {
|
|
if (typeof entropy == "string") {
|
|
for (var i = 0; i < entropy.length; i += 4) {
|
|
var temp = 0;
|
|
for (var j = 0; j < 4 && i + j < entropy.length; j++) {
|
|
temp = (temp << 8) + entropy.charCodeAt(i + j);
|
|
}
|
|
_rndentropy ^= temp;
|
|
}
|
|
}
|
|
else if (typeof entropy == "number") {
|
|
_rndentropy ^= entropy;
|
|
}
|
|
else {
|
|
_rndentropy ^= 0x7fffffff * Math.random();
|
|
}
|
|
_rndentropy &= 0x7fffffff;
|
|
},
|
|
extend: function OSF_OUtil$extend(child, parent) {
|
|
var F = function () { };
|
|
F.prototype = parent.prototype;
|
|
child.prototype = new F();
|
|
child.prototype.constructor = child;
|
|
child.uber = parent.prototype;
|
|
if (parent.prototype.constructor === Object.prototype.constructor) {
|
|
parent.prototype.constructor = parent;
|
|
}
|
|
},
|
|
setNamespace: function OSF_OUtil$setNamespace(name, parent) {
|
|
if (parent && name && !parent[name]) {
|
|
parent[name] = {};
|
|
}
|
|
},
|
|
unsetNamespace: function OSF_OUtil$unsetNamespace(name, parent) {
|
|
if (parent && name && parent[name]) {
|
|
delete parent[name];
|
|
}
|
|
},
|
|
serializeSettings: function OSF_OUtil$serializeSettings(settingsCollection) {
|
|
var ret = {};
|
|
for (var key in settingsCollection) {
|
|
var value = settingsCollection[key];
|
|
try {
|
|
if (JSON) {
|
|
value = JSON.stringify(value, function dateReplacer(k, v) {
|
|
return OSF.OUtil.isDate(this[k]) ? OSF.DDA.SettingsManager.DateJSONPrefix + this[k].getTime() + OSF.DDA.SettingsManager.DataJSONSuffix : v;
|
|
});
|
|
}
|
|
else {
|
|
value = Sys.Serialization.JavaScriptSerializer.serialize(value);
|
|
}
|
|
ret[key] = value;
|
|
}
|
|
catch (ex) {
|
|
}
|
|
}
|
|
return ret;
|
|
},
|
|
deserializeSettings: function OSF_OUtil$deserializeSettings(serializedSettings) {
|
|
var ret = {};
|
|
serializedSettings = serializedSettings || {};
|
|
for (var key in serializedSettings) {
|
|
var value = serializedSettings[key];
|
|
try {
|
|
if (JSON) {
|
|
value = JSON.parse(value, function dateReviver(k, v) {
|
|
var d;
|
|
if (typeof v === 'string' && v && v.length > 6 && v.slice(0, 5) === OSF.DDA.SettingsManager.DateJSONPrefix && v.slice(-1) === OSF.DDA.SettingsManager.DataJSONSuffix) {
|
|
d = new Date(parseInt(v.slice(5, -1)));
|
|
if (d) {
|
|
return d;
|
|
}
|
|
}
|
|
return v;
|
|
});
|
|
}
|
|
else {
|
|
value = Sys.Serialization.JavaScriptSerializer.deserialize(value, true);
|
|
}
|
|
ret[key] = value;
|
|
}
|
|
catch (ex) {
|
|
}
|
|
}
|
|
return ret;
|
|
},
|
|
loadScript: function OSF_OUtil$loadScript(url, callback, timeoutInMs) {
|
|
if (url && callback) {
|
|
var doc = window.document;
|
|
var _loadedScriptEntry = _loadedScripts[url];
|
|
if (!_loadedScriptEntry) {
|
|
var script = doc.createElement("script");
|
|
script.type = "text/javascript";
|
|
_loadedScriptEntry = { loaded: false, pendingCallbacks: [callback], timer: null };
|
|
_loadedScripts[url] = _loadedScriptEntry;
|
|
var onLoadCallback = function OSF_OUtil_loadScript$onLoadCallback() {
|
|
if (_loadedScriptEntry.timer != null) {
|
|
clearTimeout(_loadedScriptEntry.timer);
|
|
delete _loadedScriptEntry.timer;
|
|
}
|
|
_loadedScriptEntry.loaded = true;
|
|
var pendingCallbackCount = _loadedScriptEntry.pendingCallbacks.length;
|
|
for (var i = 0; i < pendingCallbackCount; i++) {
|
|
var currentCallback = _loadedScriptEntry.pendingCallbacks.shift();
|
|
currentCallback();
|
|
}
|
|
};
|
|
var onLoadTimeOut = function OSF_OUtil_loadScript$onLoadTimeOut() {
|
|
if (window.navigator.userAgent.indexOf("Trident") > 0) {
|
|
onLoadError(null);
|
|
}
|
|
else {
|
|
onLoadError(new Event("Script load timed out"));
|
|
}
|
|
};
|
|
var onLoadError = function OSF_OUtil_loadScript$onLoadError(errorEvent) {
|
|
delete _loadedScripts[url];
|
|
if (_loadedScriptEntry.timer != null) {
|
|
clearTimeout(_loadedScriptEntry.timer);
|
|
delete _loadedScriptEntry.timer;
|
|
}
|
|
var pendingCallbackCount = _loadedScriptEntry.pendingCallbacks.length;
|
|
for (var i = 0; i < pendingCallbackCount; i++) {
|
|
var currentCallback = _loadedScriptEntry.pendingCallbacks.shift();
|
|
currentCallback();
|
|
}
|
|
};
|
|
if (script.readyState) {
|
|
script.onreadystatechange = function () {
|
|
if (script.readyState == "loaded" || script.readyState == "complete") {
|
|
script.onreadystatechange = null;
|
|
onLoadCallback();
|
|
}
|
|
};
|
|
}
|
|
else {
|
|
script.onload = onLoadCallback;
|
|
}
|
|
script.onerror = onLoadError;
|
|
timeoutInMs = timeoutInMs || _defaultScriptLoadingTimeout;
|
|
_loadedScriptEntry.timer = setTimeout(onLoadTimeOut, timeoutInMs);
|
|
script.setAttribute("crossOrigin", "anonymous");
|
|
script.src = url;
|
|
doc.getElementsByTagName("head")[0].appendChild(script);
|
|
}
|
|
else if (_loadedScriptEntry.loaded) {
|
|
callback();
|
|
}
|
|
else {
|
|
_loadedScriptEntry.pendingCallbacks.push(callback);
|
|
}
|
|
}
|
|
},
|
|
loadCSS: function OSF_OUtil$loadCSS(url) {
|
|
if (url) {
|
|
var doc = window.document;
|
|
var link = doc.createElement("link");
|
|
link.type = "text/css";
|
|
link.rel = "stylesheet";
|
|
link.href = url;
|
|
doc.getElementsByTagName("head")[0].appendChild(link);
|
|
}
|
|
},
|
|
parseEnum: function OSF_OUtil$parseEnum(str, enumObject) {
|
|
var parsed = enumObject[str.trim()];
|
|
if (typeof (parsed) == 'undefined') {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("invalid enumeration string:" + str);
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("str");
|
|
}
|
|
return parsed;
|
|
},
|
|
delayExecutionAndCache: function OSF_OUtil$delayExecutionAndCache() {
|
|
var obj = { calc: arguments[0] };
|
|
return function () {
|
|
if (obj.calc) {
|
|
obj.val = obj.calc.apply(this, arguments);
|
|
delete obj.calc;
|
|
}
|
|
return obj.val;
|
|
};
|
|
},
|
|
getUniqueId: function OSF_OUtil$getUniqueId() {
|
|
_uniqueId = _uniqueId + 1;
|
|
return _uniqueId.toString();
|
|
},
|
|
formatString: function OSF_OUtil$formatString() {
|
|
var args = arguments;
|
|
var source = args[0];
|
|
return source.replace(/{(\d+)}/gm, function (match, number) {
|
|
var index = parseInt(number, 10) + 1;
|
|
return args[index] === undefined ? '{' + number + '}' : args[index];
|
|
});
|
|
},
|
|
generateConversationId: function OSF_OUtil$generateConversationId() {
|
|
return [_random(), _random(), (new Date()).getTime().toString()].join('_');
|
|
},
|
|
getFrameName: function OSF_OUtil$getFrameName(cacheKey) {
|
|
return _xdmSessionKeyPrefix + cacheKey + this.generateConversationId();
|
|
},
|
|
addXdmInfoAsHash: function OSF_OUtil$addXdmInfoAsHash(url, xdmInfoValue) {
|
|
return OSF.OUtil.addInfoAsHash(url, _xdmInfoKey, xdmInfoValue, false);
|
|
},
|
|
addSerializerVersionAsHash: function OSF_OUtil$addSerializerVersionAsHash(url, serializerVersion) {
|
|
return OSF.OUtil.addInfoAsHash(url, _serializerVersionKey, serializerVersion, true);
|
|
},
|
|
addFlightsAsHash: function OSF_OUtil$addFlightsAsHash(url, flights) {
|
|
return OSF.OUtil.addInfoAsHash(url, _flightsKey, flights, true);
|
|
},
|
|
addInfoAsHash: function OSF_OUtil$addInfoAsHash(url, keyName, infoValue, encodeInfo) {
|
|
url = url.trim() || '';
|
|
var urlParts = url.split(_fragmentSeparator);
|
|
var urlWithoutFragment = urlParts.shift();
|
|
var fragment = urlParts.join(_fragmentSeparator);
|
|
var newFragment;
|
|
if (encodeInfo) {
|
|
newFragment = [keyName, encodeURIComponent(infoValue), fragment].join('');
|
|
}
|
|
else {
|
|
newFragment = [fragment, keyName, infoValue].join('');
|
|
}
|
|
return [urlWithoutFragment, _fragmentSeparator, newFragment].join('');
|
|
},
|
|
parseHostInfoFromWindowName: function OSF_OUtil$parseHostInfoFromWindowName(skipSessionStorage, windowName) {
|
|
return OSF.OUtil.parseInfoFromWindowName(skipSessionStorage, windowName, OSF.WindowNameItemKeys.HostInfo);
|
|
},
|
|
parseXdmInfo: function OSF_OUtil$parseXdmInfo(skipSessionStorage) {
|
|
var xdmInfoValue = OSF.OUtil.parseXdmInfoWithGivenFragment(skipSessionStorage, window.location.hash);
|
|
if (!xdmInfoValue) {
|
|
xdmInfoValue = OSF.OUtil.parseXdmInfoFromWindowName(skipSessionStorage, window.name);
|
|
}
|
|
return xdmInfoValue;
|
|
},
|
|
parseXdmInfoFromWindowName: function OSF_OUtil$parseXdmInfoFromWindowName(skipSessionStorage, windowName) {
|
|
return OSF.OUtil.parseInfoFromWindowName(skipSessionStorage, windowName, OSF.WindowNameItemKeys.XdmInfo);
|
|
},
|
|
parseXdmInfoWithGivenFragment: function OSF_OUtil$parseXdmInfoWithGivenFragment(skipSessionStorage, fragment) {
|
|
return OSF.OUtil.parseInfoWithGivenFragment(_xdmInfoKey, _xdmSessionKeyPrefix, false, skipSessionStorage, fragment);
|
|
},
|
|
parseSerializerVersion: function OSF_OUtil$parseSerializerVersion(skipSessionStorage) {
|
|
var serializerVersion = OSF.OUtil.parseSerializerVersionWithGivenFragment(skipSessionStorage, window.location.hash);
|
|
if (isNaN(serializerVersion)) {
|
|
serializerVersion = OSF.OUtil.parseSerializerVersionFromWindowName(skipSessionStorage, window.name);
|
|
}
|
|
return serializerVersion;
|
|
},
|
|
parseSerializerVersionFromWindowName: function OSF_OUtil$parseSerializerVersionFromWindowName(skipSessionStorage, windowName) {
|
|
return parseInt(OSF.OUtil.parseInfoFromWindowName(skipSessionStorage, windowName, OSF.WindowNameItemKeys.SerializerVersion));
|
|
},
|
|
parseSerializerVersionWithGivenFragment: function OSF_OUtil$parseSerializerVersionWithGivenFragment(skipSessionStorage, fragment) {
|
|
return parseInt(OSF.OUtil.parseInfoWithGivenFragment(_serializerVersionKey, _serializerVersionKeyPrefix, true, skipSessionStorage, fragment));
|
|
},
|
|
parseFlights: function OSF_OUtil$parseFlights(skipSessionStorage) {
|
|
var flights = OSF.OUtil.parseFlightsWithGivenFragment(skipSessionStorage, window.location.hash);
|
|
if (flights.length == 0) {
|
|
flights = OSF.OUtil.parseFlightsFromWindowName(skipSessionStorage, window.name);
|
|
}
|
|
return flights;
|
|
},
|
|
checkFlight: function OSF_OUtil$checkFlightEnabled(flight) {
|
|
return OSF.Flights && OSF.Flights.indexOf(flight) >= 0;
|
|
},
|
|
pushFlight: function OSF_OUtil$pushFlight(flight) {
|
|
if (OSF.Flights.indexOf(flight) < 0) {
|
|
OSF.Flights.push(flight);
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
getBooleanSetting: function OSF_OUtil$getSetting(settingName) {
|
|
return OSF.OUtil.getBooleanFromDictionary(OSF.Settings, settingName);
|
|
},
|
|
getBooleanFromDictionary: function OSF_OUtil$getBooleanFromDictionary(settings, settingName) {
|
|
var result = (settings && settingName && settings[settingName] !== undefined && settings[settingName] &&
|
|
((typeof (settings[settingName]) === "string" && settings[settingName].toUpperCase() === 'TRUE') ||
|
|
(typeof (settings[settingName]) === "boolean" && settings[settingName])));
|
|
return result !== undefined ? result : false;
|
|
},
|
|
parseFlightsFromWindowName: function OSF_OUtil$parseFlightsFromWindowName(skipSessionStorage, windowName) {
|
|
return OSF.OUtil.parseArrayWithDefault(OSF.OUtil.parseInfoFromWindowName(skipSessionStorage, windowName, OSF.WindowNameItemKeys.Flights));
|
|
},
|
|
parseFlightsWithGivenFragment: function OSF_OUtil$parseFlightsWithGivenFragment(skipSessionStorage, fragment) {
|
|
return OSF.OUtil.parseArrayWithDefault(OSF.OUtil.parseInfoWithGivenFragment(_flightsKey, _flightsKeyPrefix, true, skipSessionStorage, fragment));
|
|
},
|
|
parseArrayWithDefault: function OSF_OUtil$parseArrayWithDefault(jsonString) {
|
|
var array = [];
|
|
try {
|
|
array = JSON.parse(jsonString);
|
|
}
|
|
catch (ex) { }
|
|
if (!Array.isArray(array)) {
|
|
array = [];
|
|
}
|
|
return array;
|
|
},
|
|
parseInfoFromWindowName: function OSF_OUtil$parseInfoFromWindowName(skipSessionStorage, windowName, infoKey) {
|
|
try {
|
|
var windowNameObj = JSON.parse(windowName);
|
|
var infoValue = windowNameObj != null ? windowNameObj[infoKey] : null;
|
|
var osfSessionStorage = _getSessionStorage();
|
|
if (!skipSessionStorage && osfSessionStorage && windowNameObj != null) {
|
|
var sessionKey = windowNameObj[OSF.WindowNameItemKeys.BaseFrameName] + infoKey;
|
|
if (infoValue) {
|
|
osfSessionStorage.setItem(sessionKey, infoValue);
|
|
}
|
|
else {
|
|
infoValue = osfSessionStorage.getItem(sessionKey);
|
|
}
|
|
}
|
|
return infoValue;
|
|
}
|
|
catch (Exception) {
|
|
return null;
|
|
}
|
|
},
|
|
parseInfoWithGivenFragment: function OSF_OUtil$parseInfoWithGivenFragment(infoKey, infoKeyPrefix, decodeInfo, skipSessionStorage, fragment) {
|
|
var fragmentParts = fragment.split(infoKey);
|
|
var infoValue = fragmentParts.length > 1 ? fragmentParts[fragmentParts.length - 1] : null;
|
|
if (decodeInfo && infoValue != null) {
|
|
if (infoValue.indexOf(_fragmentInfoDelimiter) >= 0) {
|
|
infoValue = infoValue.split(_fragmentInfoDelimiter)[0];
|
|
}
|
|
infoValue = decodeURIComponent(infoValue);
|
|
}
|
|
var osfSessionStorage = _getSessionStorage();
|
|
if (!skipSessionStorage && osfSessionStorage) {
|
|
var sessionKeyStart = window.name.indexOf(infoKeyPrefix);
|
|
if (sessionKeyStart > -1) {
|
|
var sessionKeyEnd = window.name.indexOf(";", sessionKeyStart);
|
|
if (sessionKeyEnd == -1) {
|
|
sessionKeyEnd = window.name.length;
|
|
}
|
|
var sessionKey = window.name.substring(sessionKeyStart, sessionKeyEnd);
|
|
if (infoValue) {
|
|
osfSessionStorage.setItem(sessionKey, infoValue);
|
|
}
|
|
else {
|
|
infoValue = osfSessionStorage.getItem(sessionKey);
|
|
}
|
|
}
|
|
}
|
|
return infoValue;
|
|
},
|
|
getConversationId: function OSF_OUtil$getConversationId() {
|
|
var searchString = window.location.search;
|
|
var conversationId = null;
|
|
if (searchString) {
|
|
var index = searchString.indexOf("&");
|
|
conversationId = index > 0 ? searchString.substring(1, index) : searchString.substr(1);
|
|
if (conversationId && conversationId.charAt(conversationId.length - 1) === '=') {
|
|
conversationId = conversationId.substring(0, conversationId.length - 1);
|
|
if (conversationId) {
|
|
conversationId = decodeURIComponent(conversationId);
|
|
}
|
|
}
|
|
}
|
|
return conversationId;
|
|
},
|
|
getInfoItems: function OSF_OUtil$getInfoItems(strInfo) {
|
|
var items = strInfo.split("$");
|
|
if (typeof items[1] == "undefined") {
|
|
items = strInfo.split("|");
|
|
}
|
|
if (typeof items[1] == "undefined") {
|
|
items = strInfo.split("%7C");
|
|
}
|
|
return items;
|
|
},
|
|
getXdmFieldValue: function OSF_OUtil$getXdmFieldValue(xdmFieldName, skipSessionStorage) {
|
|
var fieldValue = '';
|
|
var xdmInfoValue = OSF.OUtil.parseXdmInfo(skipSessionStorage);
|
|
if (xdmInfoValue) {
|
|
var items = OSF.OUtil.getInfoItems(xdmInfoValue);
|
|
if (items != undefined && items.length >= 3) {
|
|
switch (xdmFieldName) {
|
|
case OSF.XdmFieldName.ConversationUrl:
|
|
fieldValue = items[2];
|
|
break;
|
|
case OSF.XdmFieldName.AppId:
|
|
fieldValue = items[1];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return fieldValue;
|
|
},
|
|
validateParamObject: function OSF_OUtil$validateParamObject(params, expectedProperties, callback) {
|
|
var e = Function._validateParams(arguments, [{ name: "params", type: Object, mayBeNull: false },
|
|
{ name: "expectedProperties", type: Object, mayBeNull: false },
|
|
{ name: "callback", type: Function, mayBeNull: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
for (var p in expectedProperties) {
|
|
e = Function._validateParameter(params[p], expectedProperties[p], p);
|
|
if (e)
|
|
throw e;
|
|
}
|
|
},
|
|
writeProfilerMark: function OSF_OUtil$writeProfilerMark(text) {
|
|
if (window.msWriteProfilerMark) {
|
|
window.msWriteProfilerMark(text);
|
|
OsfMsAjaxFactory.msAjaxDebug.trace(text);
|
|
}
|
|
},
|
|
outputDebug: function OSF_OUtil$outputDebug(text) {
|
|
if (typeof (OsfMsAjaxFactory) !== 'undefined' && OsfMsAjaxFactory.msAjaxDebug && OsfMsAjaxFactory.msAjaxDebug.trace) {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace(text);
|
|
}
|
|
},
|
|
defineNondefaultProperty: function OSF_OUtil$defineNondefaultProperty(obj, prop, descriptor, attributes) {
|
|
descriptor = descriptor || {};
|
|
for (var nd in attributes) {
|
|
var attribute = attributes[nd];
|
|
if (descriptor[attribute] == undefined) {
|
|
descriptor[attribute] = true;
|
|
}
|
|
}
|
|
Object.defineProperty(obj, prop, descriptor);
|
|
return obj;
|
|
},
|
|
defineNondefaultProperties: function OSF_OUtil$defineNondefaultProperties(obj, descriptors, attributes) {
|
|
descriptors = descriptors || {};
|
|
for (var prop in descriptors) {
|
|
OSF.OUtil.defineNondefaultProperty(obj, prop, descriptors[prop], attributes);
|
|
}
|
|
return obj;
|
|
},
|
|
defineEnumerableProperty: function OSF_OUtil$defineEnumerableProperty(obj, prop, descriptor) {
|
|
return OSF.OUtil.defineNondefaultProperty(obj, prop, descriptor, ["enumerable"]);
|
|
},
|
|
defineEnumerableProperties: function OSF_OUtil$defineEnumerableProperties(obj, descriptors) {
|
|
return OSF.OUtil.defineNondefaultProperties(obj, descriptors, ["enumerable"]);
|
|
},
|
|
defineMutableProperty: function OSF_OUtil$defineMutableProperty(obj, prop, descriptor) {
|
|
return OSF.OUtil.defineNondefaultProperty(obj, prop, descriptor, ["writable", "enumerable", "configurable"]);
|
|
},
|
|
defineMutableProperties: function OSF_OUtil$defineMutableProperties(obj, descriptors) {
|
|
return OSF.OUtil.defineNondefaultProperties(obj, descriptors, ["writable", "enumerable", "configurable"]);
|
|
},
|
|
finalizeProperties: function OSF_OUtil$finalizeProperties(obj, descriptor) {
|
|
descriptor = descriptor || {};
|
|
var props = Object.getOwnPropertyNames(obj);
|
|
var propsLength = props.length;
|
|
for (var i = 0; i < propsLength; i++) {
|
|
var prop = props[i];
|
|
var desc = Object.getOwnPropertyDescriptor(obj, prop);
|
|
if (!desc.get && !desc.set) {
|
|
desc.writable = descriptor.writable || false;
|
|
}
|
|
desc.configurable = descriptor.configurable || false;
|
|
desc.enumerable = descriptor.enumerable || true;
|
|
Object.defineProperty(obj, prop, desc);
|
|
}
|
|
return obj;
|
|
},
|
|
mapList: function OSF_OUtil$MapList(list, mapFunction) {
|
|
var ret = [];
|
|
if (list) {
|
|
for (var item in list) {
|
|
ret.push(mapFunction(list[item]));
|
|
}
|
|
}
|
|
return ret;
|
|
},
|
|
listContainsKey: function OSF_OUtil$listContainsKey(list, key) {
|
|
for (var item in list) {
|
|
if (key == item) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
listContainsValue: function OSF_OUtil$listContainsElement(list, value) {
|
|
for (var item in list) {
|
|
if (value == list[item]) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
augmentList: function OSF_OUtil$augmentList(list, addenda) {
|
|
var add = list.push ? function (key, value) { list.push(value); } : function (key, value) { list[key] = value; };
|
|
for (var key in addenda) {
|
|
add(key, addenda[key]);
|
|
}
|
|
},
|
|
redefineList: function OSF_Outil$redefineList(oldList, newList) {
|
|
for (var key1 in oldList) {
|
|
delete oldList[key1];
|
|
}
|
|
for (var key2 in newList) {
|
|
oldList[key2] = newList[key2];
|
|
}
|
|
},
|
|
isArray: function OSF_OUtil$isArray(obj) {
|
|
return Object.prototype.toString.apply(obj) === "[object Array]";
|
|
},
|
|
isFunction: function OSF_OUtil$isFunction(obj) {
|
|
return Object.prototype.toString.apply(obj) === "[object Function]";
|
|
},
|
|
isDate: function OSF_OUtil$isDate(obj) {
|
|
return Object.prototype.toString.apply(obj) === "[object Date]";
|
|
},
|
|
addEventListener: function OSF_OUtil$addEventListener(element, eventName, listener) {
|
|
if (element.addEventListener) {
|
|
element.addEventListener(eventName, listener, false);
|
|
}
|
|
else if ((Sys.Browser.agent === Sys.Browser.InternetExplorer) && element.attachEvent) {
|
|
element.attachEvent("on" + eventName, listener);
|
|
}
|
|
else {
|
|
element["on" + eventName] = listener;
|
|
}
|
|
},
|
|
removeEventListener: function OSF_OUtil$removeEventListener(element, eventName, listener) {
|
|
if (element.removeEventListener) {
|
|
element.removeEventListener(eventName, listener, false);
|
|
}
|
|
else if ((Sys.Browser.agent === Sys.Browser.InternetExplorer) && element.detachEvent) {
|
|
element.detachEvent("on" + eventName, listener);
|
|
}
|
|
else {
|
|
element["on" + eventName] = null;
|
|
}
|
|
},
|
|
getCookieValue: function OSF_OUtil$getCookieValue(cookieName) {
|
|
var tmpCookieString = RegExp(cookieName + "[^;]+").exec(document.cookie);
|
|
return tmpCookieString.toString().replace(/^[^=]+./, "");
|
|
},
|
|
xhrGet: function OSF_OUtil$xhrGet(url, onSuccess, onError) {
|
|
var xmlhttp;
|
|
try {
|
|
xmlhttp = new XMLHttpRequest();
|
|
xmlhttp.onreadystatechange = function () {
|
|
if (xmlhttp.readyState == 4) {
|
|
if (xmlhttp.status == 200) {
|
|
onSuccess(xmlhttp.responseText);
|
|
}
|
|
else {
|
|
onError(xmlhttp.status);
|
|
}
|
|
}
|
|
};
|
|
xmlhttp.open("GET", url, true);
|
|
xmlhttp.send();
|
|
}
|
|
catch (ex) {
|
|
onError(ex);
|
|
}
|
|
},
|
|
xhrGetFull: function OSF_OUtil$xhrGetFull(url, oneDriveFileName, onSuccess, onError) {
|
|
var xmlhttp;
|
|
var requestedFileName = oneDriveFileName;
|
|
try {
|
|
xmlhttp = new XMLHttpRequest();
|
|
xmlhttp.onreadystatechange = function () {
|
|
if (xmlhttp.readyState == 4) {
|
|
if (xmlhttp.status == 200) {
|
|
onSuccess(xmlhttp, requestedFileName);
|
|
}
|
|
else {
|
|
onError(xmlhttp.status);
|
|
}
|
|
}
|
|
};
|
|
xmlhttp.open("GET", url, true);
|
|
xmlhttp.send();
|
|
}
|
|
catch (ex) {
|
|
onError(ex);
|
|
}
|
|
},
|
|
encodeBase64: function OSF_Outil$encodeBase64(input) {
|
|
if (!input)
|
|
return input;
|
|
var codex = "ABCDEFGHIJKLMNOP" + "QRSTUVWXYZabcdef" + "ghijklmnopqrstuv" + "wxyz0123456789+/=";
|
|
var output = [];
|
|
var temp = [];
|
|
var index = 0;
|
|
var c1, c2, c3, a, b, c;
|
|
var i;
|
|
var length = input.length;
|
|
do {
|
|
c1 = input.charCodeAt(index++);
|
|
c2 = input.charCodeAt(index++);
|
|
c3 = input.charCodeAt(index++);
|
|
i = 0;
|
|
a = c1 & 255;
|
|
b = c1 >> 8;
|
|
c = c2 & 255;
|
|
temp[i++] = a >> 2;
|
|
temp[i++] = ((a & 3) << 4) | (b >> 4);
|
|
temp[i++] = ((b & 15) << 2) | (c >> 6);
|
|
temp[i++] = c & 63;
|
|
if (!isNaN(c2)) {
|
|
a = c2 >> 8;
|
|
b = c3 & 255;
|
|
c = c3 >> 8;
|
|
temp[i++] = a >> 2;
|
|
temp[i++] = ((a & 3) << 4) | (b >> 4);
|
|
temp[i++] = ((b & 15) << 2) | (c >> 6);
|
|
temp[i++] = c & 63;
|
|
}
|
|
if (isNaN(c2)) {
|
|
temp[i - 1] = 64;
|
|
}
|
|
else if (isNaN(c3)) {
|
|
temp[i - 2] = 64;
|
|
temp[i - 1] = 64;
|
|
}
|
|
for (var t = 0; t < i; t++) {
|
|
output.push(codex.charAt(temp[t]));
|
|
}
|
|
} while (index < length);
|
|
return output.join("");
|
|
},
|
|
getSessionStorage: function OSF_Outil$getSessionStorage() {
|
|
return _getSessionStorage();
|
|
},
|
|
getLocalStorage: function OSF_Outil$getLocalStorage() {
|
|
if (!_safeLocalStorage) {
|
|
try {
|
|
var localStorage = window.localStorage;
|
|
}
|
|
catch (ex) {
|
|
localStorage = null;
|
|
}
|
|
_safeLocalStorage = new OfficeExt.SafeStorage(localStorage);
|
|
}
|
|
return _safeLocalStorage;
|
|
},
|
|
convertIntToCssHexColor: function OSF_Outil$convertIntToCssHexColor(val) {
|
|
var hex = "#" + (Number(val) + 0x1000000).toString(16).slice(-6);
|
|
return hex;
|
|
},
|
|
attachClickHandler: function OSF_Outil$attachClickHandler(element, handler) {
|
|
element.onclick = function (e) {
|
|
handler();
|
|
};
|
|
element.ontouchend = function (e) {
|
|
handler();
|
|
e.preventDefault();
|
|
};
|
|
},
|
|
getQueryStringParamValue: function OSF_Outil$getQueryStringParamValue(queryString, paramName) {
|
|
var e = Function._validateParams(arguments, [{ name: "queryString", type: String, mayBeNull: false },
|
|
{ name: "paramName", type: String, mayBeNull: false }
|
|
]);
|
|
if (e) {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("OSF_Outil_getQueryStringParamValue: Parameters cannot be null.");
|
|
return "";
|
|
}
|
|
var queryExp = new RegExp("[\\?&]" + paramName + "=([^&#]*)", "i");
|
|
if (!queryExp.test(queryString)) {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("OSF_Outil_getQueryStringParamValue: The parameter is not found.");
|
|
return "";
|
|
}
|
|
return queryExp.exec(queryString)[1];
|
|
},
|
|
getHostnamePortionForLogging: function OSF_Outil$getHostnamePortionForLogging(hostname) {
|
|
var e = Function._validateParams(arguments, [{ name: "hostname", type: String, mayBeNull: false }
|
|
]);
|
|
if (e) {
|
|
return "";
|
|
}
|
|
var hostnameSubstrings = hostname.split('.');
|
|
var len = hostnameSubstrings.length;
|
|
if (len >= 2) {
|
|
return hostnameSubstrings[len - 2] + "." + hostnameSubstrings[len - 1];
|
|
}
|
|
else if (len == 1) {
|
|
return hostnameSubstrings[0];
|
|
}
|
|
},
|
|
isiOS: function OSF_Outil$isiOS() {
|
|
return (window.navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false);
|
|
},
|
|
isChrome: function OSF_Outil$isChrome() {
|
|
return (window.navigator.userAgent.indexOf("Chrome") > 0) && !OSF.OUtil.isEdge();
|
|
},
|
|
isEdge: function OSF_Outil$isEdge() {
|
|
return window.navigator.userAgent.indexOf("Edge") > 0;
|
|
},
|
|
isIE: function OSF_Outil$isIE() {
|
|
return window.navigator.userAgent.indexOf("Trident") > 0;
|
|
},
|
|
isFirefox: function OSF_Outil$isFirefox() {
|
|
return window.navigator.userAgent.indexOf("Firefox") > 0;
|
|
},
|
|
startsWith: function OSF_Outil$startsWith(originalString, patternToCheck, browserIsIE) {
|
|
if (browserIsIE) {
|
|
return originalString.substr(0, patternToCheck.length) === patternToCheck;
|
|
}
|
|
else {
|
|
return originalString.startsWith(patternToCheck);
|
|
}
|
|
},
|
|
containsPort: function OSF_Outil$containsPort(url, protocol, hostname, portNumber) {
|
|
return this.startsWith(url, protocol + "//" + hostname + ":" + portNumber, true) || this.startsWith(url, hostname + ":" + portNumber, true);
|
|
},
|
|
getRedundandPortString: function OSF_Outil$getRedundandPortString(url, parser) {
|
|
if (!url || !parser)
|
|
return "";
|
|
if (parser.protocol == "https:" && this.containsPort(url, "https:", parser.hostname, "443"))
|
|
return ":443";
|
|
else if (parser.protocol == "http:" && this.containsPort(url, "http:", parser.hostname, "80"))
|
|
return ":80";
|
|
return "";
|
|
},
|
|
removeChar: function OSF_Outil$removeChar(url, indexOfCharToRemove) {
|
|
if (indexOfCharToRemove < url.length - 1)
|
|
return url.substring(0, indexOfCharToRemove) + url.substring(indexOfCharToRemove + 1);
|
|
else if (indexOfCharToRemove == url.length - 1)
|
|
return url.substring(0, url.length - 1);
|
|
else
|
|
return url;
|
|
},
|
|
cleanUrlOfChar: function OSF_Outil$cleanUrlOfChar(url, charToClean) {
|
|
var i;
|
|
for (i = 0; i < url.length; i++) {
|
|
if (url.charAt(i) === charToClean) {
|
|
if (i + 1 >= url.length) {
|
|
return this.removeChar(url, i);
|
|
}
|
|
else if (charToClean === '/') {
|
|
if (url.charAt(i + 1) === '?' || url.charAt(i + 1) === '#') {
|
|
return this.removeChar(url, i);
|
|
}
|
|
}
|
|
else if (charToClean === '?') {
|
|
if (url.charAt(i + 1) === '#') {
|
|
return this.removeChar(url, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return url;
|
|
},
|
|
cleanUrl: function OSF_Outil$cleanUrl(url) {
|
|
url = this.cleanUrlOfChar(url, '/');
|
|
url = this.cleanUrlOfChar(url, '?');
|
|
url = this.cleanUrlOfChar(url, '#');
|
|
if (url.substr(0, 8) == "https://") {
|
|
var portIndex = url.indexOf(":443");
|
|
if (portIndex != -1) {
|
|
if (portIndex == url.length - 4 || url.charAt(portIndex + 4) == "/" || url.charAt(portIndex + 4) == "?" || url.charAt(portIndex + 4) == "#") {
|
|
url = url.substring(0, portIndex) + url.substring(portIndex + 4);
|
|
}
|
|
}
|
|
}
|
|
else if (url.substr(0, 7) == "http://") {
|
|
var portIndex = url.indexOf(":80");
|
|
if (portIndex != -1) {
|
|
if (portIndex == url.length - 3 || url.charAt(portIndex + 3) == "/" || url.charAt(portIndex + 3) == "?" || url.charAt(portIndex + 3) == "#") {
|
|
url = url.substring(0, portIndex) + url.substring(portIndex + 3);
|
|
}
|
|
}
|
|
}
|
|
return url;
|
|
},
|
|
parseUrl: function OSF_Outil$parseUrl(url, enforceHttps) {
|
|
if (enforceHttps === void 0) {
|
|
enforceHttps = false;
|
|
}
|
|
if (typeof url === "undefined" || !url) {
|
|
return undefined;
|
|
}
|
|
var notHttpsErrorMessage = "NotHttps";
|
|
var invalidUrlErrorMessage = "InvalidUrl";
|
|
var isIEBoolean = this.isIE();
|
|
var parsedUrlObj = {
|
|
protocol: undefined,
|
|
hostname: undefined,
|
|
host: undefined,
|
|
port: undefined,
|
|
pathname: undefined,
|
|
search: undefined,
|
|
hash: undefined,
|
|
isPortPartOfUrl: undefined
|
|
};
|
|
try {
|
|
if (isIEBoolean) {
|
|
var parser = document.createElement("a");
|
|
parser.href = url;
|
|
if (!parser || !parser.protocol || !parser.host || !parser.hostname || !parser.href
|
|
|| this.cleanUrl(parser.href).toLowerCase() !== this.cleanUrl(url).toLowerCase()) {
|
|
throw invalidUrlErrorMessage;
|
|
}
|
|
if (OSF.OUtil.checkFlight(OSF.FlightNames.AddinEnforceHttps)) {
|
|
if (enforceHttps && parser.protocol != "https:")
|
|
throw new Error(notHttpsErrorMessage);
|
|
}
|
|
var redundandPortString = this.getRedundandPortString(url, parser);
|
|
parsedUrlObj.protocol = parser.protocol;
|
|
parsedUrlObj.hostname = parser.hostname;
|
|
parsedUrlObj.port = (redundandPortString == "") ? parser.port : "";
|
|
parsedUrlObj.host = (redundandPortString != "") ? parser.hostname : parser.host;
|
|
parsedUrlObj.pathname = (isIEBoolean ? "/" : "") + parser.pathname;
|
|
parsedUrlObj.search = parser.search;
|
|
parsedUrlObj.hash = parser.hash;
|
|
parsedUrlObj.isPortPartOfUrl = this.containsPort(url, parser.protocol, parser.hostname, parser.port);
|
|
}
|
|
else {
|
|
var urlObj = new URL(url);
|
|
if (urlObj && urlObj.protocol && urlObj.host && urlObj.hostname) {
|
|
if (OSF.OUtil.checkFlight(OSF.FlightNames.AddinEnforceHttps)) {
|
|
if (enforceHttps && urlObj.protocol != "https:")
|
|
throw new Error(notHttpsErrorMessage);
|
|
}
|
|
parsedUrlObj.protocol = urlObj.protocol;
|
|
parsedUrlObj.hostname = urlObj.hostname;
|
|
parsedUrlObj.port = urlObj.port;
|
|
parsedUrlObj.host = urlObj.host;
|
|
parsedUrlObj.pathname = urlObj.pathname;
|
|
parsedUrlObj.search = urlObj.search;
|
|
parsedUrlObj.hash = urlObj.hash;
|
|
parsedUrlObj.isPortPartOfUrl = urlObj.host.lastIndexOf(":" + urlObj.port) == (urlObj.host.length - urlObj.port.length - 1);
|
|
}
|
|
}
|
|
}
|
|
catch (err) {
|
|
if (err.message === notHttpsErrorMessage)
|
|
throw err;
|
|
}
|
|
return parsedUrlObj;
|
|
},
|
|
shallowCopy: function OSF_Outil$shallowCopy(sourceObj) {
|
|
if (sourceObj == null) {
|
|
return null;
|
|
}
|
|
else if (!(sourceObj instanceof Object)) {
|
|
return sourceObj;
|
|
}
|
|
else if (Array.isArray(sourceObj)) {
|
|
var copyArr = [];
|
|
for (var i = 0; i < sourceObj.length; i++) {
|
|
copyArr.push(sourceObj[i]);
|
|
}
|
|
return copyArr;
|
|
}
|
|
else {
|
|
var copyObj = sourceObj.constructor();
|
|
for (var property in sourceObj) {
|
|
if (sourceObj.hasOwnProperty(property)) {
|
|
copyObj[property] = sourceObj[property];
|
|
}
|
|
}
|
|
return copyObj;
|
|
}
|
|
},
|
|
createObject: function OSF_Outil$createObject(properties) {
|
|
var obj = null;
|
|
if (properties) {
|
|
obj = {};
|
|
var len = properties.length;
|
|
for (var i = 0; i < len; i++) {
|
|
obj[properties[i].name] = properties[i].value;
|
|
}
|
|
}
|
|
return obj;
|
|
},
|
|
addClass: function OSF_OUtil$addClass(elmt, val) {
|
|
if (!OSF.OUtil.hasClass(elmt, val)) {
|
|
var className = elmt.getAttribute(_classN);
|
|
if (className) {
|
|
elmt.setAttribute(_classN, className + " " + val);
|
|
}
|
|
else {
|
|
elmt.setAttribute(_classN, val);
|
|
}
|
|
}
|
|
},
|
|
removeClass: function OSF_OUtil$removeClass(elmt, val) {
|
|
if (OSF.OUtil.hasClass(elmt, val)) {
|
|
var className = elmt.getAttribute(_classN);
|
|
var reg = new RegExp('(\\s|^)' + val + '(\\s|$)');
|
|
className = className.replace(reg, '');
|
|
elmt.setAttribute(_classN, className);
|
|
}
|
|
},
|
|
hasClass: function OSF_OUtil$hasClass(elmt, clsName) {
|
|
var className = elmt.getAttribute(_classN);
|
|
return className && className.match(new RegExp('(\\s|^)' + clsName + '(\\s|$)'));
|
|
},
|
|
focusToFirstTabbable: function OSF_OUtil$focusToFirstTabbable(all, backward) {
|
|
var next;
|
|
var focused = false;
|
|
var candidate;
|
|
var setFlag = function (e) {
|
|
focused = true;
|
|
};
|
|
var findNextPos = function (allLen, currPos, backward) {
|
|
if (currPos < 0 || currPos > allLen) {
|
|
return -1;
|
|
}
|
|
else if (currPos === 0 && backward) {
|
|
return -1;
|
|
}
|
|
else if (currPos === allLen - 1 && !backward) {
|
|
return -1;
|
|
}
|
|
if (backward) {
|
|
return currPos - 1;
|
|
}
|
|
else {
|
|
return currPos + 1;
|
|
}
|
|
};
|
|
all = _reOrderTabbableElements(all);
|
|
next = backward ? all.length - 1 : 0;
|
|
if (all.length === 0) {
|
|
return null;
|
|
}
|
|
while (!focused && next >= 0 && next < all.length) {
|
|
candidate = all[next];
|
|
window.focus();
|
|
candidate.addEventListener('focus', setFlag);
|
|
candidate.focus();
|
|
candidate.removeEventListener('focus', setFlag);
|
|
next = findNextPos(all.length, next, backward);
|
|
if (!focused && candidate === document.activeElement) {
|
|
focused = true;
|
|
}
|
|
}
|
|
if (focused) {
|
|
return candidate;
|
|
}
|
|
else {
|
|
return null;
|
|
}
|
|
},
|
|
focusToNextTabbable: function OSF_OUtil$focusToNextTabbable(all, curr, shift) {
|
|
var currPos;
|
|
var next;
|
|
var focused = false;
|
|
var candidate;
|
|
var setFlag = function (e) {
|
|
focused = true;
|
|
};
|
|
var findCurrPos = function (all, curr) {
|
|
var i = 0;
|
|
for (; i < all.length; i++) {
|
|
if (all[i] === curr) {
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
};
|
|
var findNextPos = function (allLen, currPos, shift) {
|
|
if (currPos < 0 || currPos > allLen) {
|
|
return -1;
|
|
}
|
|
else if (currPos === 0 && shift) {
|
|
return -1;
|
|
}
|
|
else if (currPos === allLen - 1 && !shift) {
|
|
return -1;
|
|
}
|
|
if (shift) {
|
|
return currPos - 1;
|
|
}
|
|
else {
|
|
return currPos + 1;
|
|
}
|
|
};
|
|
all = _reOrderTabbableElements(all);
|
|
currPos = findCurrPos(all, curr);
|
|
next = findNextPos(all.length, currPos, shift);
|
|
if (next < 0) {
|
|
return null;
|
|
}
|
|
while (!focused && next >= 0 && next < all.length) {
|
|
candidate = all[next];
|
|
candidate.addEventListener('focus', setFlag);
|
|
candidate.focus();
|
|
candidate.removeEventListener('focus', setFlag);
|
|
next = findNextPos(all.length, next, shift);
|
|
if (!focused && candidate === document.activeElement) {
|
|
focused = true;
|
|
}
|
|
}
|
|
if (focused) {
|
|
return candidate;
|
|
}
|
|
else {
|
|
return null;
|
|
}
|
|
},
|
|
isNullOrUndefined: function OSF_OUtil$isNullOrUndefined(value) {
|
|
if (typeof (value) === "undefined") {
|
|
return true;
|
|
}
|
|
if (value === null) {
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
stringEndsWith: function OSF_OUtil$stringEndsWith(value, subString) {
|
|
if (!OSF.OUtil.isNullOrUndefined(value) && !OSF.OUtil.isNullOrUndefined(subString)) {
|
|
if (subString.length > value.length) {
|
|
return false;
|
|
}
|
|
if (value.substr(value.length - subString.length) === subString) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
hashCode: function OSF_OUtil$hashCode(str) {
|
|
var hash = 0;
|
|
if (!OSF.OUtil.isNullOrUndefined(str)) {
|
|
var i = 0;
|
|
var len = str.length;
|
|
while (i < len) {
|
|
hash = (hash << 5) - hash + str.charCodeAt(i++) | 0;
|
|
}
|
|
}
|
|
return hash;
|
|
},
|
|
getValue: function OSF_OUtil$getValue(value, defaultValue) {
|
|
if (OSF.OUtil.isNullOrUndefined(value)) {
|
|
return defaultValue;
|
|
}
|
|
return value;
|
|
},
|
|
externalNativeFunctionExists: function OSF_OUtil$externalNativeFunctionExists(type) {
|
|
return type === 'unknown' || type !== 'undefined';
|
|
}
|
|
};
|
|
})();
|
|
OSF.OUtil.Guid = (function () {
|
|
var hexCode = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"];
|
|
return {
|
|
generateNewGuid: function OSF_Outil_Guid$generateNewGuid() {
|
|
var result = "";
|
|
var tick = (new Date()).getTime();
|
|
var index = 0;
|
|
for (; index < 32 && tick > 0; index++) {
|
|
if (index == 8 || index == 12 || index == 16 || index == 20) {
|
|
result += "-";
|
|
}
|
|
result += hexCode[tick % 16];
|
|
tick = Math.floor(tick / 16);
|
|
}
|
|
for (; index < 32; index++) {
|
|
if (index == 8 || index == 12 || index == 16 || index == 20) {
|
|
result += "-";
|
|
}
|
|
result += hexCode[Math.floor(Math.random() * 16)];
|
|
}
|
|
return result;
|
|
}
|
|
};
|
|
})();
|
|
try {
|
|
(function () {
|
|
OSF.Flights = OSF.OUtil.parseFlights(true);
|
|
})();
|
|
}
|
|
catch (ex) { }
|
|
window.OSF = OSF;
|
|
OSF.OUtil.setNamespace("OSF", window);
|
|
OSF.MessageIDs = {
|
|
"FetchBundleUrl": 0,
|
|
"LoadReactBundle": 1,
|
|
"LoadBundleSuccess": 2,
|
|
"LoadBundleError": 3
|
|
};
|
|
OSF.AppName = {
|
|
Unsupported: 0,
|
|
Excel: 1,
|
|
Word: 2,
|
|
PowerPoint: 4,
|
|
Outlook: 8,
|
|
ExcelWebApp: 16,
|
|
WordWebApp: 32,
|
|
OutlookWebApp: 64,
|
|
Project: 128,
|
|
AccessWebApp: 256,
|
|
PowerpointWebApp: 512,
|
|
ExcelIOS: 1024,
|
|
Sway: 2048,
|
|
WordIOS: 4096,
|
|
PowerPointIOS: 8192,
|
|
Access: 16384,
|
|
Lync: 32768,
|
|
OutlookIOS: 65536,
|
|
OneNoteWebApp: 131072,
|
|
OneNote: 262144,
|
|
ExcelWinRT: 524288,
|
|
WordWinRT: 1048576,
|
|
PowerpointWinRT: 2097152,
|
|
OutlookAndroid: 4194304,
|
|
OneNoteWinRT: 8388608,
|
|
ExcelAndroid: 8388609,
|
|
VisioWebApp: 8388610,
|
|
OneNoteIOS: 8388611,
|
|
WordAndroid: 8388613,
|
|
PowerpointAndroid: 8388614,
|
|
Visio: 8388615,
|
|
OneNoteAndroid: 4194305
|
|
};
|
|
OSF.InternalPerfMarker = {
|
|
DataCoercionBegin: "Agave.HostCall.CoerceDataStart",
|
|
DataCoercionEnd: "Agave.HostCall.CoerceDataEnd"
|
|
};
|
|
OSF.HostCallPerfMarker = {
|
|
IssueCall: "Agave.HostCall.IssueCall",
|
|
ReceiveResponse: "Agave.HostCall.ReceiveResponse",
|
|
RuntimeExceptionRaised: "Agave.HostCall.RuntimeExecptionRaised"
|
|
};
|
|
OSF.AgaveHostAction = {
|
|
"Select": 0,
|
|
"UnSelect": 1,
|
|
"CancelDialog": 2,
|
|
"InsertAgave": 3,
|
|
"CtrlF6In": 4,
|
|
"CtrlF6Exit": 5,
|
|
"CtrlF6ExitShift": 6,
|
|
"SelectWithError": 7,
|
|
"NotifyHostError": 8,
|
|
"RefreshAddinCommands": 9,
|
|
"PageIsReady": 10,
|
|
"TabIn": 11,
|
|
"TabInShift": 12,
|
|
"TabExit": 13,
|
|
"TabExitShift": 14,
|
|
"EscExit": 15,
|
|
"F2Exit": 16,
|
|
"ExitNoFocusable": 17,
|
|
"ExitNoFocusableShift": 18,
|
|
"MouseEnter": 19,
|
|
"MouseLeave": 20,
|
|
"UpdateTargetUrl": 21,
|
|
"InstallCustomFunctions": 22,
|
|
"SendTelemetryEvent": 23,
|
|
"UninstallCustomFunctions": 24,
|
|
"SendMessage": 25,
|
|
"LaunchExtensionComponent": 26,
|
|
"StopExtensionComponent": 27,
|
|
"RestartExtensionComponent": 28,
|
|
"EnableTaskPaneHeaderButton": 29,
|
|
"DisableTaskPaneHeaderButton": 30,
|
|
"TaskPaneHeaderButtonClicked": 31,
|
|
"RemoveAppCommandsAddin": 32,
|
|
"RefreshRibbonGallery": 33,
|
|
"GetOriginalControlId": 34,
|
|
"OfficeJsReady": 35,
|
|
"InsertDevManifest": 36,
|
|
"InsertDevManifestError": 37,
|
|
"SendCustomerContent": 38,
|
|
"KeyboardShortcuts": 39
|
|
};
|
|
OSF.SharedConstants = {
|
|
"NotificationConversationIdSuffix": '_ntf'
|
|
};
|
|
OSF.DialogMessageType = {
|
|
DialogMessageReceived: 0,
|
|
DialogParentMessageReceived: 1,
|
|
DialogClosed: 12006
|
|
};
|
|
OSF.OfficeAppContext = function OSF_OfficeAppContext(id, appName, appVersion, appUILocale, dataLocale, docUrl, clientMode, settings, reason, osfControlType, eToken, correlationId, appInstanceId, touchEnabled, commerceAllowed, appMinorVersion, requirementMatrix, hostCustomMessage, hostFullVersion, clientWindowHeight, clientWindowWidth, addinName, appDomains, dialogRequirementMatrix, featureGates, officeTheme, initialDisplayMode) {
|
|
this._id = id;
|
|
this._appName = appName;
|
|
this._appVersion = appVersion;
|
|
this._appUILocale = appUILocale;
|
|
this._dataLocale = dataLocale;
|
|
this._docUrl = docUrl;
|
|
this._clientMode = clientMode;
|
|
this._settings = settings;
|
|
this._reason = reason;
|
|
this._osfControlType = osfControlType;
|
|
this._eToken = eToken;
|
|
this._correlationId = correlationId;
|
|
this._appInstanceId = appInstanceId;
|
|
this._touchEnabled = touchEnabled;
|
|
this._commerceAllowed = commerceAllowed;
|
|
this._appMinorVersion = appMinorVersion;
|
|
this._requirementMatrix = requirementMatrix;
|
|
this._hostCustomMessage = hostCustomMessage;
|
|
this._hostFullVersion = hostFullVersion;
|
|
this._isDialog = false;
|
|
this._clientWindowHeight = clientWindowHeight;
|
|
this._clientWindowWidth = clientWindowWidth;
|
|
this._addinName = addinName;
|
|
this._appDomains = appDomains;
|
|
this._dialogRequirementMatrix = dialogRequirementMatrix;
|
|
this._featureGates = featureGates;
|
|
this._officeTheme = officeTheme;
|
|
this._initialDisplayMode = initialDisplayMode;
|
|
this.get_id = function get_id() { return this._id; };
|
|
this.get_appName = function get_appName() { return this._appName; };
|
|
this.get_appVersion = function get_appVersion() { return this._appVersion; };
|
|
this.get_appUILocale = function get_appUILocale() { return this._appUILocale; };
|
|
this.get_dataLocale = function get_dataLocale() { return this._dataLocale; };
|
|
this.get_docUrl = function get_docUrl() { return this._docUrl; };
|
|
this.get_clientMode = function get_clientMode() { return this._clientMode; };
|
|
this.get_bindings = function get_bindings() { return this._bindings; };
|
|
this.get_settings = function get_settings() { return this._settings; };
|
|
this.get_reason = function get_reason() { return this._reason; };
|
|
this.get_osfControlType = function get_osfControlType() { return this._osfControlType; };
|
|
this.get_eToken = function get_eToken() { return this._eToken; };
|
|
this.get_correlationId = function get_correlationId() { return this._correlationId; };
|
|
this.get_appInstanceId = function get_appInstanceId() { return this._appInstanceId; };
|
|
this.get_touchEnabled = function get_touchEnabled() { return this._touchEnabled; };
|
|
this.get_commerceAllowed = function get_commerceAllowed() { return this._commerceAllowed; };
|
|
this.get_appMinorVersion = function get_appMinorVersion() { return this._appMinorVersion; };
|
|
this.get_requirementMatrix = function get_requirementMatrix() { return this._requirementMatrix; };
|
|
this.get_dialogRequirementMatrix = function get_dialogRequirementMatrix() { return this._dialogRequirementMatrix; };
|
|
this.get_hostCustomMessage = function get_hostCustomMessage() { return this._hostCustomMessage; };
|
|
this.get_hostFullVersion = function get_hostFullVersion() { return this._hostFullVersion; };
|
|
this.get_isDialog = function get_isDialog() { return this._isDialog; };
|
|
this.get_clientWindowHeight = function get_clientWindowHeight() { return this._clientWindowHeight; };
|
|
this.get_clientWindowWidth = function get_clientWindowWidth() { return this._clientWindowWidth; };
|
|
this.get_addinName = function get_addinName() { return this._addinName; };
|
|
this.get_appDomains = function get_appDomains() { return this._appDomains; };
|
|
this.get_featureGates = function get_featureGates() { return this._featureGates; };
|
|
this.get_officeTheme = function get_officeTheme() { return this._officeTheme; };
|
|
this.get_initialDisplayMode = function get_initialDisplayMode() { return this._initialDisplayMode ? this._initialDisplayMode : 0; };
|
|
};
|
|
OSF.OsfControlType = {
|
|
DocumentLevel: 0,
|
|
ContainerLevel: 1
|
|
};
|
|
OSF.ClientMode = {
|
|
ReadOnly: 0,
|
|
ReadWrite: 1
|
|
};
|
|
OSF.OUtil.setNamespace("Microsoft", window);
|
|
OSF.OUtil.setNamespace("Office", Microsoft);
|
|
OSF.OUtil.setNamespace("Client", Microsoft.Office);
|
|
OSF.OUtil.setNamespace("WebExtension", Microsoft.Office);
|
|
Microsoft.Office.WebExtension.InitializationReason = {
|
|
Inserted: "inserted",
|
|
DocumentOpened: "documentOpened",
|
|
ControlActivation: "controlActivation"
|
|
};
|
|
Microsoft.Office.WebExtension.ValueFormat = {
|
|
Unformatted: "unformatted",
|
|
Formatted: "formatted"
|
|
};
|
|
Microsoft.Office.WebExtension.FilterType = {
|
|
All: "all"
|
|
};
|
|
Microsoft.Office.WebExtension.Parameters = {
|
|
BindingType: "bindingType",
|
|
CoercionType: "coercionType",
|
|
ValueFormat: "valueFormat",
|
|
FilterType: "filterType",
|
|
Columns: "columns",
|
|
SampleData: "sampleData",
|
|
GoToType: "goToType",
|
|
SelectionMode: "selectionMode",
|
|
Id: "id",
|
|
PromptText: "promptText",
|
|
ItemName: "itemName",
|
|
FailOnCollision: "failOnCollision",
|
|
StartRow: "startRow",
|
|
StartColumn: "startColumn",
|
|
RowCount: "rowCount",
|
|
ColumnCount: "columnCount",
|
|
Callback: "callback",
|
|
AsyncContext: "asyncContext",
|
|
Data: "data",
|
|
Rows: "rows",
|
|
OverwriteIfStale: "overwriteIfStale",
|
|
FileType: "fileType",
|
|
EventType: "eventType",
|
|
Handler: "handler",
|
|
SliceSize: "sliceSize",
|
|
SliceIndex: "sliceIndex",
|
|
ActiveView: "activeView",
|
|
Status: "status",
|
|
PlatformType: "platformType",
|
|
HostType: "hostType",
|
|
ForceConsent: "forceConsent",
|
|
ForceAddAccount: "forceAddAccount",
|
|
AuthChallenge: "authChallenge",
|
|
AllowConsentPrompt: "allowConsentPrompt",
|
|
ForMSGraphAccess: "forMSGraphAccess",
|
|
AllowSignInPrompt: "allowSignInPrompt",
|
|
JsonPayload: "jsonPayload",
|
|
EnableNewHosts: "enableNewHosts",
|
|
AccountTypeFilter: "accountTypeFilter",
|
|
AddinTrustId: "addinTrustId",
|
|
Reserved: "reserved",
|
|
Tcid: "tcid",
|
|
Xml: "xml",
|
|
Namespace: "namespace",
|
|
Prefix: "prefix",
|
|
XPath: "xPath",
|
|
Text: "text",
|
|
ImageLeft: "imageLeft",
|
|
ImageTop: "imageTop",
|
|
ImageWidth: "imageWidth",
|
|
ImageHeight: "imageHeight",
|
|
TaskId: "taskId",
|
|
FieldId: "fieldId",
|
|
FieldValue: "fieldValue",
|
|
ServerUrl: "serverUrl",
|
|
ListName: "listName",
|
|
ResourceId: "resourceId",
|
|
ViewType: "viewType",
|
|
ViewName: "viewName",
|
|
GetRawValue: "getRawValue",
|
|
CellFormat: "cellFormat",
|
|
TableOptions: "tableOptions",
|
|
TaskIndex: "taskIndex",
|
|
ResourceIndex: "resourceIndex",
|
|
CustomFieldId: "customFieldId",
|
|
Url: "url",
|
|
MessageHandler: "messageHandler",
|
|
Width: "width",
|
|
Height: "height",
|
|
RequireHTTPs: "requireHTTPS",
|
|
MessageToParent: "messageToParent",
|
|
DisplayInIframe: "displayInIframe",
|
|
MessageContent: "messageContent",
|
|
HideTitle: "hideTitle",
|
|
UseDeviceIndependentPixels: "useDeviceIndependentPixels",
|
|
PromptBeforeOpen: "promptBeforeOpen",
|
|
EnforceAppDomain: "enforceAppDomain",
|
|
UrlNoHostInfo: "urlNoHostInfo",
|
|
TargetOrigin: "targetOrigin",
|
|
AppCommandInvocationCompletedData: "appCommandInvocationCompletedData",
|
|
Base64: "base64",
|
|
FormId: "formId"
|
|
};
|
|
OSF.OUtil.setNamespace("DDA", OSF);
|
|
OSF.DDA.DocumentMode = {
|
|
ReadOnly: 1,
|
|
ReadWrite: 0
|
|
};
|
|
OSF.DDA.PropertyDescriptors = {
|
|
AsyncResultStatus: "AsyncResultStatus"
|
|
};
|
|
OSF.DDA.EventDescriptors = {};
|
|
OSF.DDA.ListDescriptors = {};
|
|
OSF.DDA.UI = {};
|
|
OSF.DDA.getXdmEventName = function OSF_DDA$GetXdmEventName(id, eventType) {
|
|
if (eventType == Microsoft.Office.WebExtension.EventType.BindingSelectionChanged ||
|
|
eventType == Microsoft.Office.WebExtension.EventType.BindingDataChanged ||
|
|
eventType == Microsoft.Office.WebExtension.EventType.DataNodeDeleted ||
|
|
eventType == Microsoft.Office.WebExtension.EventType.DataNodeInserted ||
|
|
eventType == Microsoft.Office.WebExtension.EventType.DataNodeReplaced) {
|
|
return id + "_" + eventType;
|
|
}
|
|
else {
|
|
return eventType;
|
|
}
|
|
};
|
|
OSF.DDA.MethodDispId = {
|
|
dispidMethodMin: 64,
|
|
dispidGetSelectedDataMethod: 64,
|
|
dispidSetSelectedDataMethod: 65,
|
|
dispidAddBindingFromSelectionMethod: 66,
|
|
dispidAddBindingFromPromptMethod: 67,
|
|
dispidGetBindingMethod: 68,
|
|
dispidReleaseBindingMethod: 69,
|
|
dispidGetBindingDataMethod: 70,
|
|
dispidSetBindingDataMethod: 71,
|
|
dispidAddRowsMethod: 72,
|
|
dispidClearAllRowsMethod: 73,
|
|
dispidGetAllBindingsMethod: 74,
|
|
dispidLoadSettingsMethod: 75,
|
|
dispidSaveSettingsMethod: 76,
|
|
dispidGetDocumentCopyMethod: 77,
|
|
dispidAddBindingFromNamedItemMethod: 78,
|
|
dispidAddColumnsMethod: 79,
|
|
dispidGetDocumentCopyChunkMethod: 80,
|
|
dispidReleaseDocumentCopyMethod: 81,
|
|
dispidNavigateToMethod: 82,
|
|
dispidGetActiveViewMethod: 83,
|
|
dispidGetDocumentThemeMethod: 84,
|
|
dispidGetOfficeThemeMethod: 85,
|
|
dispidGetFilePropertiesMethod: 86,
|
|
dispidClearFormatsMethod: 87,
|
|
dispidSetTableOptionsMethod: 88,
|
|
dispidSetFormatsMethod: 89,
|
|
dispidExecuteRichApiRequestMethod: 93,
|
|
dispidAppCommandInvocationCompletedMethod: 94,
|
|
dispidCloseContainerMethod: 97,
|
|
dispidGetAccessTokenMethod: 98,
|
|
dispidGetAuthContextMethod: 99,
|
|
dispidOpenBrowserWindow: 102,
|
|
dispidCreateDocumentMethod: 105,
|
|
dispidInsertFormMethod: 106,
|
|
dispidDisplayRibbonCalloutAsyncMethod: 109,
|
|
dispidGetSelectedTaskMethod: 110,
|
|
dispidGetSelectedResourceMethod: 111,
|
|
dispidGetTaskMethod: 112,
|
|
dispidGetResourceFieldMethod: 113,
|
|
dispidGetWSSUrlMethod: 114,
|
|
dispidGetTaskFieldMethod: 115,
|
|
dispidGetProjectFieldMethod: 116,
|
|
dispidGetSelectedViewMethod: 117,
|
|
dispidGetTaskByIndexMethod: 118,
|
|
dispidGetResourceByIndexMethod: 119,
|
|
dispidSetTaskFieldMethod: 120,
|
|
dispidSetResourceFieldMethod: 121,
|
|
dispidGetMaxTaskIndexMethod: 122,
|
|
dispidGetMaxResourceIndexMethod: 123,
|
|
dispidCreateTaskMethod: 124,
|
|
dispidAddDataPartMethod: 128,
|
|
dispidGetDataPartByIdMethod: 129,
|
|
dispidGetDataPartsByNamespaceMethod: 130,
|
|
dispidGetDataPartXmlMethod: 131,
|
|
dispidGetDataPartNodesMethod: 132,
|
|
dispidDeleteDataPartMethod: 133,
|
|
dispidGetDataNodeValueMethod: 134,
|
|
dispidGetDataNodeXmlMethod: 135,
|
|
dispidGetDataNodesMethod: 136,
|
|
dispidSetDataNodeValueMethod: 137,
|
|
dispidSetDataNodeXmlMethod: 138,
|
|
dispidAddDataNamespaceMethod: 139,
|
|
dispidGetDataUriByPrefixMethod: 140,
|
|
dispidGetDataPrefixByUriMethod: 141,
|
|
dispidGetDataNodeTextMethod: 142,
|
|
dispidSetDataNodeTextMethod: 143,
|
|
dispidMessageParentMethod: 144,
|
|
dispidSendMessageMethod: 145,
|
|
dispidExecuteFeature: 146,
|
|
dispidQueryFeature: 147,
|
|
dispidMethodMax: 147
|
|
};
|
|
OSF.DDA.EventDispId = {
|
|
dispidEventMin: 0,
|
|
dispidInitializeEvent: 0,
|
|
dispidSettingsChangedEvent: 1,
|
|
dispidDocumentSelectionChangedEvent: 2,
|
|
dispidBindingSelectionChangedEvent: 3,
|
|
dispidBindingDataChangedEvent: 4,
|
|
dispidDocumentOpenEvent: 5,
|
|
dispidDocumentCloseEvent: 6,
|
|
dispidActiveViewChangedEvent: 7,
|
|
dispidDocumentThemeChangedEvent: 8,
|
|
dispidOfficeThemeChangedEvent: 9,
|
|
dispidDialogMessageReceivedEvent: 10,
|
|
dispidDialogNotificationShownInAddinEvent: 11,
|
|
dispidDialogParentMessageReceivedEvent: 12,
|
|
dispidObjectDeletedEvent: 13,
|
|
dispidObjectSelectionChangedEvent: 14,
|
|
dispidObjectDataChangedEvent: 15,
|
|
dispidContentControlAddedEvent: 16,
|
|
dispidActivationStatusChangedEvent: 32,
|
|
dispidRichApiMessageEvent: 33,
|
|
dispidAppCommandInvokedEvent: 39,
|
|
dispidOlkItemSelectedChangedEvent: 46,
|
|
dispidOlkRecipientsChangedEvent: 47,
|
|
dispidOlkAppointmentTimeChangedEvent: 48,
|
|
dispidOlkRecurrenceChangedEvent: 49,
|
|
dispidOlkAttachmentsChangedEvent: 50,
|
|
dispidOlkEnhancedLocationsChangedEvent: 51,
|
|
dispidOlkInfobarClickedEvent: 52,
|
|
dispidTaskSelectionChangedEvent: 56,
|
|
dispidResourceSelectionChangedEvent: 57,
|
|
dispidViewSelectionChangedEvent: 58,
|
|
dispidDataNodeAddedEvent: 60,
|
|
dispidDataNodeReplacedEvent: 61,
|
|
dispidDataNodeDeletedEvent: 62,
|
|
dispidEventMax: 63
|
|
};
|
|
OSF.DDA.ErrorCodeManager = (function () {
|
|
var _errorMappings = {};
|
|
return {
|
|
getErrorArgs: function OSF_DDA_ErrorCodeManager$getErrorArgs(errorCode) {
|
|
var errorArgs = _errorMappings[errorCode];
|
|
if (!errorArgs) {
|
|
errorArgs = _errorMappings[this.errorCodes.ooeInternalError];
|
|
}
|
|
else {
|
|
if (!errorArgs.name) {
|
|
errorArgs.name = _errorMappings[this.errorCodes.ooeInternalError].name;
|
|
}
|
|
if (!errorArgs.message) {
|
|
errorArgs.message = _errorMappings[this.errorCodes.ooeInternalError].message;
|
|
}
|
|
}
|
|
return errorArgs;
|
|
},
|
|
addErrorMessage: function OSF_DDA_ErrorCodeManager$addErrorMessage(errorCode, errorNameMessage) {
|
|
_errorMappings[errorCode] = errorNameMessage;
|
|
},
|
|
errorCodes: {
|
|
ooeSuccess: 0,
|
|
ooeChunkResult: 1,
|
|
ooeCoercionTypeNotSupported: 1000,
|
|
ooeGetSelectionNotMatchDataType: 1001,
|
|
ooeCoercionTypeNotMatchBinding: 1002,
|
|
ooeInvalidGetRowColumnCounts: 1003,
|
|
ooeSelectionNotSupportCoercionType: 1004,
|
|
ooeInvalidGetStartRowColumn: 1005,
|
|
ooeNonUniformPartialGetNotSupported: 1006,
|
|
ooeGetDataIsTooLarge: 1008,
|
|
ooeFileTypeNotSupported: 1009,
|
|
ooeGetDataParametersConflict: 1010,
|
|
ooeInvalidGetColumns: 1011,
|
|
ooeInvalidGetRows: 1012,
|
|
ooeInvalidReadForBlankRow: 1013,
|
|
ooeUnsupportedDataObject: 2000,
|
|
ooeCannotWriteToSelection: 2001,
|
|
ooeDataNotMatchSelection: 2002,
|
|
ooeOverwriteWorksheetData: 2003,
|
|
ooeDataNotMatchBindingSize: 2004,
|
|
ooeInvalidSetStartRowColumn: 2005,
|
|
ooeInvalidDataFormat: 2006,
|
|
ooeDataNotMatchCoercionType: 2007,
|
|
ooeDataNotMatchBindingType: 2008,
|
|
ooeSetDataIsTooLarge: 2009,
|
|
ooeNonUniformPartialSetNotSupported: 2010,
|
|
ooeInvalidSetColumns: 2011,
|
|
ooeInvalidSetRows: 2012,
|
|
ooeSetDataParametersConflict: 2013,
|
|
ooeCellDataAmountBeyondLimits: 2014,
|
|
ooeSelectionCannotBound: 3000,
|
|
ooeBindingNotExist: 3002,
|
|
ooeBindingToMultipleSelection: 3003,
|
|
ooeInvalidSelectionForBindingType: 3004,
|
|
ooeOperationNotSupportedOnThisBindingType: 3005,
|
|
ooeNamedItemNotFound: 3006,
|
|
ooeMultipleNamedItemFound: 3007,
|
|
ooeInvalidNamedItemForBindingType: 3008,
|
|
ooeUnknownBindingType: 3009,
|
|
ooeOperationNotSupportedOnMatrixData: 3010,
|
|
ooeInvalidColumnsForBinding: 3011,
|
|
ooeSettingNameNotExist: 4000,
|
|
ooeSettingsCannotSave: 4001,
|
|
ooeSettingsAreStale: 4002,
|
|
ooeOperationNotSupported: 5000,
|
|
ooeInternalError: 5001,
|
|
ooeDocumentReadOnly: 5002,
|
|
ooeEventHandlerNotExist: 5003,
|
|
ooeInvalidApiCallInContext: 5004,
|
|
ooeShuttingDown: 5005,
|
|
ooeUnsupportedEnumeration: 5007,
|
|
ooeIndexOutOfRange: 5008,
|
|
ooeBrowserAPINotSupported: 5009,
|
|
ooeInvalidParam: 5010,
|
|
ooeRequestTimeout: 5011,
|
|
ooeInvalidOrTimedOutSession: 5012,
|
|
ooeInvalidApiArguments: 5013,
|
|
ooeOperationCancelled: 5014,
|
|
ooeWorkbookHidden: 5015,
|
|
ooeWriteNotSupportedWhenModalDialogOpen: 5016,
|
|
ooeTooManyIncompleteRequests: 5100,
|
|
ooeRequestTokenUnavailable: 5101,
|
|
ooeActivityLimitReached: 5102,
|
|
ooeRequestPayloadSizeLimitExceeded: 5103,
|
|
ooeResponsePayloadSizeLimitExceeded: 5104,
|
|
ooeCustomXmlNodeNotFound: 6000,
|
|
ooeCustomXmlError: 6100,
|
|
ooeCustomXmlExceedQuota: 6101,
|
|
ooeCustomXmlOutOfDate: 6102,
|
|
ooeNoCapability: 7000,
|
|
ooeCannotNavTo: 7001,
|
|
ooeSpecifiedIdNotExist: 7002,
|
|
ooeNavOutOfBound: 7004,
|
|
ooeElementMissing: 8000,
|
|
ooeProtectedError: 8001,
|
|
ooeInvalidCellsValue: 8010,
|
|
ooeInvalidTableOptionValue: 8011,
|
|
ooeInvalidFormatValue: 8012,
|
|
ooeRowIndexOutOfRange: 8020,
|
|
ooeColIndexOutOfRange: 8021,
|
|
ooeFormatValueOutOfRange: 8022,
|
|
ooeCellFormatAmountBeyondLimits: 8023,
|
|
ooeMemoryFileLimit: 11000,
|
|
ooeNetworkProblemRetrieveFile: 11001,
|
|
ooeInvalidSliceSize: 11002,
|
|
ooeInvalidCallback: 11101,
|
|
ooeInvalidWidth: 12000,
|
|
ooeInvalidHeight: 12001,
|
|
ooeNavigationError: 12002,
|
|
ooeInvalidScheme: 12003,
|
|
ooeAppDomains: 12004,
|
|
ooeRequireHTTPS: 12005,
|
|
ooeWebDialogClosed: 12006,
|
|
ooeDialogAlreadyOpened: 12007,
|
|
ooeEndUserAllow: 12008,
|
|
ooeEndUserIgnore: 12009,
|
|
ooeNotUILessDialog: 12010,
|
|
ooeCrossZone: 12011,
|
|
ooeNotSSOAgave: 13000,
|
|
ooeSSOUserNotSignedIn: 13001,
|
|
ooeSSOUserAborted: 13002,
|
|
ooeSSOUnsupportedUserIdentity: 13003,
|
|
ooeSSOInvalidResourceUrl: 13004,
|
|
ooeSSOInvalidGrant: 13005,
|
|
ooeSSOClientError: 13006,
|
|
ooeSSOServerError: 13007,
|
|
ooeAddinIsAlreadyRequestingToken: 13008,
|
|
ooeSSOUserConsentNotSupportedByCurrentAddinCategory: 13009,
|
|
ooeSSOConnectionLost: 13010,
|
|
ooeResourceNotAllowed: 13011,
|
|
ooeSSOUnsupportedPlatform: 13012,
|
|
ooeSSOCallThrottled: 13013,
|
|
ooeAccessDenied: 13990,
|
|
ooeGeneralException: 13991
|
|
},
|
|
initializeErrorMessages: function OSF_DDA_ErrorCodeManager$initializeErrorMessages(stringNS) {
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCoercionTypeNotSupported] = { name: stringNS.L_InvalidCoercion, message: stringNS.L_CoercionTypeNotSupported };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeGetSelectionNotMatchDataType] = { name: stringNS.L_DataReadError, message: stringNS.L_GetSelectionNotSupported };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCoercionTypeNotMatchBinding] = { name: stringNS.L_InvalidCoercion, message: stringNS.L_CoercionTypeNotMatchBinding };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidGetRowColumnCounts] = { name: stringNS.L_DataReadError, message: stringNS.L_InvalidGetRowColumnCounts };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSelectionNotSupportCoercionType] = { name: stringNS.L_DataReadError, message: stringNS.L_SelectionNotSupportCoercionType };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidGetStartRowColumn] = { name: stringNS.L_DataReadError, message: stringNS.L_InvalidGetStartRowColumn };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeNonUniformPartialGetNotSupported] = { name: stringNS.L_DataReadError, message: stringNS.L_NonUniformPartialGetNotSupported };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeGetDataIsTooLarge] = { name: stringNS.L_DataReadError, message: stringNS.L_GetDataIsTooLarge };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeFileTypeNotSupported] = { name: stringNS.L_DataReadError, message: stringNS.L_FileTypeNotSupported };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeGetDataParametersConflict] = { name: stringNS.L_DataReadError, message: stringNS.L_GetDataParametersConflict };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidGetColumns] = { name: stringNS.L_DataReadError, message: stringNS.L_InvalidGetColumns };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidGetRows] = { name: stringNS.L_DataReadError, message: stringNS.L_InvalidGetRows };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidReadForBlankRow] = { name: stringNS.L_DataReadError, message: stringNS.L_InvalidReadForBlankRow };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeUnsupportedDataObject] = { name: stringNS.L_DataWriteError, message: stringNS.L_UnsupportedDataObject };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCannotWriteToSelection] = { name: stringNS.L_DataWriteError, message: stringNS.L_CannotWriteToSelection };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeDataNotMatchSelection] = { name: stringNS.L_DataWriteError, message: stringNS.L_DataNotMatchSelection };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeOverwriteWorksheetData] = { name: stringNS.L_DataWriteError, message: stringNS.L_OverwriteWorksheetData };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeDataNotMatchBindingSize] = { name: stringNS.L_DataWriteError, message: stringNS.L_DataNotMatchBindingSize };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidSetStartRowColumn] = { name: stringNS.L_DataWriteError, message: stringNS.L_InvalidSetStartRowColumn };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidDataFormat] = { name: stringNS.L_InvalidFormat, message: stringNS.L_InvalidDataFormat };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeDataNotMatchCoercionType] = { name: stringNS.L_InvalidDataObject, message: stringNS.L_DataNotMatchCoercionType };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeDataNotMatchBindingType] = { name: stringNS.L_InvalidDataObject, message: stringNS.L_DataNotMatchBindingType };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSetDataIsTooLarge] = { name: stringNS.L_DataWriteError, message: stringNS.L_SetDataIsTooLarge };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeNonUniformPartialSetNotSupported] = { name: stringNS.L_DataWriteError, message: stringNS.L_NonUniformPartialSetNotSupported };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidSetColumns] = { name: stringNS.L_DataWriteError, message: stringNS.L_InvalidSetColumns };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidSetRows] = { name: stringNS.L_DataWriteError, message: stringNS.L_InvalidSetRows };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSetDataParametersConflict] = { name: stringNS.L_DataWriteError, message: stringNS.L_SetDataParametersConflict };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSelectionCannotBound] = { name: stringNS.L_BindingCreationError, message: stringNS.L_SelectionCannotBound };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeBindingNotExist] = { name: stringNS.L_InvalidBindingError, message: stringNS.L_BindingNotExist };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeBindingToMultipleSelection] = { name: stringNS.L_BindingCreationError, message: stringNS.L_BindingToMultipleSelection };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidSelectionForBindingType] = { name: stringNS.L_BindingCreationError, message: stringNS.L_InvalidSelectionForBindingType };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeOperationNotSupportedOnThisBindingType] = { name: stringNS.L_InvalidBindingOperation, message: stringNS.L_OperationNotSupportedOnThisBindingType };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeNamedItemNotFound] = { name: stringNS.L_BindingCreationError, message: stringNS.L_NamedItemNotFound };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeMultipleNamedItemFound] = { name: stringNS.L_BindingCreationError, message: stringNS.L_MultipleNamedItemFound };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidNamedItemForBindingType] = { name: stringNS.L_BindingCreationError, message: stringNS.L_InvalidNamedItemForBindingType };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeUnknownBindingType] = { name: stringNS.L_InvalidBinding, message: stringNS.L_UnknownBindingType };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeOperationNotSupportedOnMatrixData] = { name: stringNS.L_InvalidBindingOperation, message: stringNS.L_OperationNotSupportedOnMatrixData };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidColumnsForBinding] = { name: stringNS.L_InvalidBinding, message: stringNS.L_InvalidColumnsForBinding };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSettingNameNotExist] = { name: stringNS.L_ReadSettingsError, message: stringNS.L_SettingNameNotExist };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSettingsCannotSave] = { name: stringNS.L_SaveSettingsError, message: stringNS.L_SettingsCannotSave };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSettingsAreStale] = { name: stringNS.L_SettingsStaleError, message: stringNS.L_SettingsAreStale };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeOperationNotSupported] = { name: stringNS.L_HostError, message: stringNS.L_OperationNotSupported };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError] = { name: stringNS.L_InternalError, message: stringNS.L_InternalErrorDescription };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeDocumentReadOnly] = { name: stringNS.L_PermissionDenied, message: stringNS.L_DocumentReadOnly };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeEventHandlerNotExist] = { name: stringNS.L_EventRegistrationError, message: stringNS.L_EventHandlerNotExist };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidApiCallInContext] = { name: stringNS.L_InvalidAPICall, message: stringNS.L_InvalidApiCallInContext };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeShuttingDown] = { name: stringNS.L_ShuttingDown, message: stringNS.L_ShuttingDown };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeUnsupportedEnumeration] = { name: stringNS.L_UnsupportedEnumeration, message: stringNS.L_UnsupportedEnumerationMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeIndexOutOfRange] = { name: stringNS.L_IndexOutOfRange, message: stringNS.L_IndexOutOfRange };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeBrowserAPINotSupported] = { name: stringNS.L_APINotSupported, message: stringNS.L_BrowserAPINotSupported };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeRequestTimeout] = { name: stringNS.L_APICallFailed, message: stringNS.L_RequestTimeout };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidOrTimedOutSession] = { name: stringNS.L_InvalidOrTimedOutSession, message: stringNS.L_InvalidOrTimedOutSessionMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidApiArguments] = { name: stringNS.L_APICallFailed, message: stringNS.L_InvalidApiArgumentsMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeWorkbookHidden] = { name: stringNS.L_APICallFailed, message: stringNS.L_WorkbookHiddenMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeWriteNotSupportedWhenModalDialogOpen] = { name: stringNS.L_APICallFailed, message: stringNS.L_WriteNotSupportedWhenModalDialogOpen };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeTooManyIncompleteRequests] = { name: stringNS.L_APICallFailed, message: stringNS.L_TooManyIncompleteRequests };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeRequestTokenUnavailable] = { name: stringNS.L_APICallFailed, message: stringNS.L_RequestTokenUnavailable };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeActivityLimitReached] = { name: stringNS.L_APICallFailed, message: stringNS.L_ActivityLimitReached };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeRequestPayloadSizeLimitExceeded] = { name: stringNS.L_APICallFailed, message: stringNS.L_RequestPayloadSizeLimitExceededMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeResponsePayloadSizeLimitExceeded] = { name: stringNS.L_APICallFailed, message: stringNS.L_ResponsePayloadSizeLimitExceededMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCustomXmlNodeNotFound] = { name: stringNS.L_InvalidNode, message: stringNS.L_CustomXmlNodeNotFound };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCustomXmlError] = { name: stringNS.L_CustomXmlError, message: stringNS.L_CustomXmlError };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCustomXmlExceedQuota] = { name: stringNS.L_CustomXmlExceedQuotaName, message: stringNS.L_CustomXmlExceedQuotaMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCustomXmlOutOfDate] = { name: stringNS.L_CustomXmlOutOfDateName, message: stringNS.L_CustomXmlOutOfDateMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability] = { name: stringNS.L_PermissionDenied, message: stringNS.L_NoCapability };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCannotNavTo] = { name: stringNS.L_CannotNavigateTo, message: stringNS.L_CannotNavigateTo };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSpecifiedIdNotExist] = { name: stringNS.L_SpecifiedIdNotExist, message: stringNS.L_SpecifiedIdNotExist };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeNavOutOfBound] = { name: stringNS.L_NavOutOfBound, message: stringNS.L_NavOutOfBound };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCellDataAmountBeyondLimits] = { name: stringNS.L_DataWriteReminder, message: stringNS.L_CellDataAmountBeyondLimits };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeElementMissing] = { name: stringNS.L_MissingParameter, message: stringNS.L_ElementMissing };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeProtectedError] = { name: stringNS.L_PermissionDenied, message: stringNS.L_NoCapability };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidCellsValue] = { name: stringNS.L_InvalidValue, message: stringNS.L_InvalidCellsValue };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidTableOptionValue] = { name: stringNS.L_InvalidValue, message: stringNS.L_InvalidTableOptionValue };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidFormatValue] = { name: stringNS.L_InvalidValue, message: stringNS.L_InvalidFormatValue };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeRowIndexOutOfRange] = { name: stringNS.L_OutOfRange, message: stringNS.L_RowIndexOutOfRange };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeColIndexOutOfRange] = { name: stringNS.L_OutOfRange, message: stringNS.L_ColIndexOutOfRange };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeFormatValueOutOfRange] = { name: stringNS.L_OutOfRange, message: stringNS.L_FormatValueOutOfRange };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCellFormatAmountBeyondLimits] = { name: stringNS.L_FormattingReminder, message: stringNS.L_CellFormatAmountBeyondLimits };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeMemoryFileLimit] = { name: stringNS.L_MemoryLimit, message: stringNS.L_CloseFileBeforeRetrieve };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeNetworkProblemRetrieveFile] = { name: stringNS.L_NetworkProblem, message: stringNS.L_NetworkProblemRetrieveFile };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidSliceSize] = { name: stringNS.L_InvalidValue, message: stringNS.L_SliceSizeNotSupported };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeDialogAlreadyOpened] = { name: stringNS.L_DisplayDialogError, message: stringNS.L_DialogAlreadyOpened };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidWidth] = { name: stringNS.L_IndexOutOfRange, message: stringNS.L_IndexOutOfRange };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidHeight] = { name: stringNS.L_IndexOutOfRange, message: stringNS.L_IndexOutOfRange };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeNavigationError] = { name: stringNS.L_DisplayDialogError, message: stringNS.L_NetworkProblem };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidScheme] = { name: stringNS.L_DialogNavigateError, message: stringNS.L_DialogInvalidScheme };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeAppDomains] = { name: stringNS.L_DisplayDialogError, message: stringNS.L_DialogAddressNotTrusted };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeRequireHTTPS] = { name: stringNS.L_DisplayDialogError, message: stringNS.L_DialogRequireHTTPS };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeEndUserIgnore] = { name: stringNS.L_DisplayDialogError, message: stringNS.L_UserClickIgnore };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeCrossZone] = { name: stringNS.L_DisplayDialogError, message: stringNS.L_NewWindowCrossZoneErrorString };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeNotSSOAgave] = { name: stringNS.L_APINotSupported, message: stringNS.L_InvalidSSOAddinMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOUserNotSignedIn] = { name: stringNS.L_UserNotSignedIn, message: stringNS.L_UserNotSignedIn };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOUserAborted] = { name: stringNS.L_UserAborted, message: stringNS.L_UserAbortedMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOUnsupportedUserIdentity] = { name: stringNS.L_UnsupportedUserIdentity, message: stringNS.L_UnsupportedUserIdentityMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOInvalidResourceUrl] = { name: stringNS.L_InvalidResourceUrl, message: stringNS.L_InvalidResourceUrlMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOInvalidGrant] = { name: stringNS.L_InvalidGrant, message: stringNS.L_InvalidGrantMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOClientError] = { name: stringNS.L_SSOClientError, message: stringNS.L_SSOClientErrorMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOServerError] = { name: stringNS.L_SSOServerError, message: stringNS.L_SSOServerErrorMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeAddinIsAlreadyRequestingToken] = { name: stringNS.L_AddinIsAlreadyRequestingToken, message: stringNS.L_AddinIsAlreadyRequestingTokenMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOUserConsentNotSupportedByCurrentAddinCategory] = { name: stringNS.L_SSOUserConsentNotSupportedByCurrentAddinCategory, message: stringNS.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOConnectionLost] = { name: stringNS.L_SSOConnectionLostError, message: stringNS.L_SSOConnectionLostErrorMessage };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOUnsupportedPlatform] = { name: stringNS.L_APINotSupported, message: stringNS.L_SSOUnsupportedPlatform };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeSSOCallThrottled] = { name: stringNS.L_APICallFailed, message: stringNS.L_RequestTokenUnavailable };
|
|
_errorMappings[OSF.DDA.ErrorCodeManager.errorCodes.ooeOperationCancelled] = { name: stringNS.L_OperationCancelledError, message: stringNS.L_OperationCancelledErrorMessage };
|
|
}
|
|
};
|
|
})();
|
|
(function (OfficeExt) {
|
|
var Requirement;
|
|
(function (Requirement) {
|
|
var RequirementVersion = (function () {
|
|
function RequirementVersion() {
|
|
}
|
|
return RequirementVersion;
|
|
}());
|
|
Requirement.RequirementVersion = RequirementVersion;
|
|
var RequirementMatrix = (function () {
|
|
function RequirementMatrix(_setMap) {
|
|
this.isSetSupported = function _isSetSupported(name, minVersion) {
|
|
if (name == undefined) {
|
|
return false;
|
|
}
|
|
if (minVersion == undefined) {
|
|
minVersion = 0;
|
|
}
|
|
var setSupportArray = this._setMap;
|
|
var sets = setSupportArray._sets;
|
|
if (sets.hasOwnProperty(name.toLowerCase())) {
|
|
var setMaxVersion = sets[name.toLowerCase()];
|
|
try {
|
|
var setMaxVersionNum = this._getVersion(setMaxVersion);
|
|
minVersion = minVersion + "";
|
|
var minVersionNum = this._getVersion(minVersion);
|
|
if (setMaxVersionNum.major > 0 && setMaxVersionNum.major > minVersionNum.major) {
|
|
return true;
|
|
}
|
|
if (setMaxVersionNum.major > 0 &&
|
|
setMaxVersionNum.minor >= 0 &&
|
|
setMaxVersionNum.major == minVersionNum.major &&
|
|
setMaxVersionNum.minor >= minVersionNum.minor) {
|
|
return true;
|
|
}
|
|
}
|
|
catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
this._getVersion = function (version) {
|
|
version = version + "";
|
|
var temp = version.split(".");
|
|
var major = 0;
|
|
var minor = 0;
|
|
if (temp.length < 2 && isNaN(Number(version))) {
|
|
throw "version format incorrect";
|
|
}
|
|
else {
|
|
major = Number(temp[0]);
|
|
if (temp.length >= 2) {
|
|
minor = Number(temp[1]);
|
|
}
|
|
if (isNaN(major) || isNaN(minor)) {
|
|
throw "version format incorrect";
|
|
}
|
|
}
|
|
var result = { "minor": minor, "major": major };
|
|
return result;
|
|
};
|
|
this._setMap = _setMap;
|
|
this.isSetSupported = this.isSetSupported.bind(this);
|
|
}
|
|
return RequirementMatrix;
|
|
}());
|
|
Requirement.RequirementMatrix = RequirementMatrix;
|
|
var DefaultSetRequirement = (function () {
|
|
function DefaultSetRequirement(setMap) {
|
|
this._addSetMap = function DefaultSetRequirement_addSetMap(addedSet) {
|
|
for (var name in addedSet) {
|
|
this._sets[name] = addedSet[name];
|
|
}
|
|
};
|
|
this._sets = setMap;
|
|
}
|
|
return DefaultSetRequirement;
|
|
}());
|
|
Requirement.DefaultSetRequirement = DefaultSetRequirement;
|
|
var DefaultRequiredDialogSetRequirement = (function (_super) {
|
|
__extends(DefaultRequiredDialogSetRequirement, _super);
|
|
function DefaultRequiredDialogSetRequirement() {
|
|
return _super.call(this, {
|
|
"dialogapi": 1.1
|
|
}) || this;
|
|
}
|
|
return DefaultRequiredDialogSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.DefaultRequiredDialogSetRequirement = DefaultRequiredDialogSetRequirement;
|
|
var DefaultOptionalDialogSetRequirement = (function (_super) {
|
|
__extends(DefaultOptionalDialogSetRequirement, _super);
|
|
function DefaultOptionalDialogSetRequirement() {
|
|
return _super.call(this, {
|
|
"dialogorigin": 1.1
|
|
}) || this;
|
|
}
|
|
return DefaultOptionalDialogSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.DefaultOptionalDialogSetRequirement = DefaultOptionalDialogSetRequirement;
|
|
var ExcelClientDefaultSetRequirement = (function (_super) {
|
|
__extends(ExcelClientDefaultSetRequirement, _super);
|
|
function ExcelClientDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"bindingevents": 1.1,
|
|
"documentevents": 1.1,
|
|
"excelapi": 1.1,
|
|
"matrixbindings": 1.1,
|
|
"matrixcoercion": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"tablebindings": 1.1,
|
|
"tablecoercion": 1.1,
|
|
"textbindings": 1.1,
|
|
"textcoercion": 1.1
|
|
}) || this;
|
|
}
|
|
return ExcelClientDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.ExcelClientDefaultSetRequirement = ExcelClientDefaultSetRequirement;
|
|
var ExcelClientV1DefaultSetRequirement = (function (_super) {
|
|
__extends(ExcelClientV1DefaultSetRequirement, _super);
|
|
function ExcelClientV1DefaultSetRequirement() {
|
|
var _this = _super.call(this) || this;
|
|
_this._addSetMap({
|
|
"imagecoercion": 1.1
|
|
});
|
|
return _this;
|
|
}
|
|
return ExcelClientV1DefaultSetRequirement;
|
|
}(ExcelClientDefaultSetRequirement));
|
|
Requirement.ExcelClientV1DefaultSetRequirement = ExcelClientV1DefaultSetRequirement;
|
|
var OutlookClientDefaultSetRequirement = (function (_super) {
|
|
__extends(OutlookClientDefaultSetRequirement, _super);
|
|
function OutlookClientDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"mailbox": 1.3
|
|
}) || this;
|
|
}
|
|
return OutlookClientDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.OutlookClientDefaultSetRequirement = OutlookClientDefaultSetRequirement;
|
|
var WordClientDefaultSetRequirement = (function (_super) {
|
|
__extends(WordClientDefaultSetRequirement, _super);
|
|
function WordClientDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"bindingevents": 1.1,
|
|
"compressedfile": 1.1,
|
|
"customxmlparts": 1.1,
|
|
"documentevents": 1.1,
|
|
"file": 1.1,
|
|
"htmlcoercion": 1.1,
|
|
"matrixbindings": 1.1,
|
|
"matrixcoercion": 1.1,
|
|
"ooxmlcoercion": 1.1,
|
|
"pdffile": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"tablebindings": 1.1,
|
|
"tablecoercion": 1.1,
|
|
"textbindings": 1.1,
|
|
"textcoercion": 1.1,
|
|
"textfile": 1.1,
|
|
"wordapi": 1.1
|
|
}) || this;
|
|
}
|
|
return WordClientDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.WordClientDefaultSetRequirement = WordClientDefaultSetRequirement;
|
|
var WordClientV1DefaultSetRequirement = (function (_super) {
|
|
__extends(WordClientV1DefaultSetRequirement, _super);
|
|
function WordClientV1DefaultSetRequirement() {
|
|
var _this = _super.call(this) || this;
|
|
_this._addSetMap({
|
|
"customxmlparts": 1.2,
|
|
"wordapi": 1.2,
|
|
"imagecoercion": 1.1
|
|
});
|
|
return _this;
|
|
}
|
|
return WordClientV1DefaultSetRequirement;
|
|
}(WordClientDefaultSetRequirement));
|
|
Requirement.WordClientV1DefaultSetRequirement = WordClientV1DefaultSetRequirement;
|
|
var PowerpointClientDefaultSetRequirement = (function (_super) {
|
|
__extends(PowerpointClientDefaultSetRequirement, _super);
|
|
function PowerpointClientDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"activeview": 1.1,
|
|
"compressedfile": 1.1,
|
|
"documentevents": 1.1,
|
|
"file": 1.1,
|
|
"pdffile": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"textcoercion": 1.1
|
|
}) || this;
|
|
}
|
|
return PowerpointClientDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.PowerpointClientDefaultSetRequirement = PowerpointClientDefaultSetRequirement;
|
|
var PowerpointClientV1DefaultSetRequirement = (function (_super) {
|
|
__extends(PowerpointClientV1DefaultSetRequirement, _super);
|
|
function PowerpointClientV1DefaultSetRequirement() {
|
|
var _this = _super.call(this) || this;
|
|
_this._addSetMap({
|
|
"imagecoercion": 1.1
|
|
});
|
|
return _this;
|
|
}
|
|
return PowerpointClientV1DefaultSetRequirement;
|
|
}(PowerpointClientDefaultSetRequirement));
|
|
Requirement.PowerpointClientV1DefaultSetRequirement = PowerpointClientV1DefaultSetRequirement;
|
|
var ProjectClientDefaultSetRequirement = (function (_super) {
|
|
__extends(ProjectClientDefaultSetRequirement, _super);
|
|
function ProjectClientDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"selection": 1.1,
|
|
"textcoercion": 1.1
|
|
}) || this;
|
|
}
|
|
return ProjectClientDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.ProjectClientDefaultSetRequirement = ProjectClientDefaultSetRequirement;
|
|
var ExcelWebDefaultSetRequirement = (function (_super) {
|
|
__extends(ExcelWebDefaultSetRequirement, _super);
|
|
function ExcelWebDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"bindingevents": 1.1,
|
|
"documentevents": 1.1,
|
|
"matrixbindings": 1.1,
|
|
"matrixcoercion": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"tablebindings": 1.1,
|
|
"tablecoercion": 1.1,
|
|
"textbindings": 1.1,
|
|
"textcoercion": 1.1,
|
|
"file": 1.1
|
|
}) || this;
|
|
}
|
|
return ExcelWebDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.ExcelWebDefaultSetRequirement = ExcelWebDefaultSetRequirement;
|
|
var WordWebDefaultSetRequirement = (function (_super) {
|
|
__extends(WordWebDefaultSetRequirement, _super);
|
|
function WordWebDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"compressedfile": 1.1,
|
|
"documentevents": 1.1,
|
|
"file": 1.1,
|
|
"imagecoercion": 1.1,
|
|
"matrixcoercion": 1.1,
|
|
"ooxmlcoercion": 1.1,
|
|
"pdffile": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"tablecoercion": 1.1,
|
|
"textcoercion": 1.1,
|
|
"textfile": 1.1
|
|
}) || this;
|
|
}
|
|
return WordWebDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.WordWebDefaultSetRequirement = WordWebDefaultSetRequirement;
|
|
var PowerpointWebDefaultSetRequirement = (function (_super) {
|
|
__extends(PowerpointWebDefaultSetRequirement, _super);
|
|
function PowerpointWebDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"activeview": 1.1,
|
|
"settings": 1.1
|
|
}) || this;
|
|
}
|
|
return PowerpointWebDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.PowerpointWebDefaultSetRequirement = PowerpointWebDefaultSetRequirement;
|
|
var OutlookWebDefaultSetRequirement = (function (_super) {
|
|
__extends(OutlookWebDefaultSetRequirement, _super);
|
|
function OutlookWebDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"mailbox": 1.3
|
|
}) || this;
|
|
}
|
|
return OutlookWebDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.OutlookWebDefaultSetRequirement = OutlookWebDefaultSetRequirement;
|
|
var SwayWebDefaultSetRequirement = (function (_super) {
|
|
__extends(SwayWebDefaultSetRequirement, _super);
|
|
function SwayWebDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"activeview": 1.1,
|
|
"documentevents": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"textcoercion": 1.1
|
|
}) || this;
|
|
}
|
|
return SwayWebDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.SwayWebDefaultSetRequirement = SwayWebDefaultSetRequirement;
|
|
var AccessWebDefaultSetRequirement = (function (_super) {
|
|
__extends(AccessWebDefaultSetRequirement, _super);
|
|
function AccessWebDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"bindingevents": 1.1,
|
|
"partialtablebindings": 1.1,
|
|
"settings": 1.1,
|
|
"tablebindings": 1.1,
|
|
"tablecoercion": 1.1
|
|
}) || this;
|
|
}
|
|
return AccessWebDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.AccessWebDefaultSetRequirement = AccessWebDefaultSetRequirement;
|
|
var ExcelIOSDefaultSetRequirement = (function (_super) {
|
|
__extends(ExcelIOSDefaultSetRequirement, _super);
|
|
function ExcelIOSDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"bindingevents": 1.1,
|
|
"documentevents": 1.1,
|
|
"matrixbindings": 1.1,
|
|
"matrixcoercion": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"tablebindings": 1.1,
|
|
"tablecoercion": 1.1,
|
|
"textbindings": 1.1,
|
|
"textcoercion": 1.1
|
|
}) || this;
|
|
}
|
|
return ExcelIOSDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.ExcelIOSDefaultSetRequirement = ExcelIOSDefaultSetRequirement;
|
|
var WordIOSDefaultSetRequirement = (function (_super) {
|
|
__extends(WordIOSDefaultSetRequirement, _super);
|
|
function WordIOSDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"bindingevents": 1.1,
|
|
"compressedfile": 1.1,
|
|
"customxmlparts": 1.1,
|
|
"documentevents": 1.1,
|
|
"file": 1.1,
|
|
"htmlcoercion": 1.1,
|
|
"matrixbindings": 1.1,
|
|
"matrixcoercion": 1.1,
|
|
"ooxmlcoercion": 1.1,
|
|
"pdffile": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"tablebindings": 1.1,
|
|
"tablecoercion": 1.1,
|
|
"textbindings": 1.1,
|
|
"textcoercion": 1.1,
|
|
"textfile": 1.1
|
|
}) || this;
|
|
}
|
|
return WordIOSDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.WordIOSDefaultSetRequirement = WordIOSDefaultSetRequirement;
|
|
var WordIOSV1DefaultSetRequirement = (function (_super) {
|
|
__extends(WordIOSV1DefaultSetRequirement, _super);
|
|
function WordIOSV1DefaultSetRequirement() {
|
|
var _this = _super.call(this) || this;
|
|
_this._addSetMap({
|
|
"customxmlparts": 1.2,
|
|
"wordapi": 1.2
|
|
});
|
|
return _this;
|
|
}
|
|
return WordIOSV1DefaultSetRequirement;
|
|
}(WordIOSDefaultSetRequirement));
|
|
Requirement.WordIOSV1DefaultSetRequirement = WordIOSV1DefaultSetRequirement;
|
|
var PowerpointIOSDefaultSetRequirement = (function (_super) {
|
|
__extends(PowerpointIOSDefaultSetRequirement, _super);
|
|
function PowerpointIOSDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"activeview": 1.1,
|
|
"compressedfile": 1.1,
|
|
"documentevents": 1.1,
|
|
"file": 1.1,
|
|
"pdffile": 1.1,
|
|
"selection": 1.1,
|
|
"settings": 1.1,
|
|
"textcoercion": 1.1
|
|
}) || this;
|
|
}
|
|
return PowerpointIOSDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.PowerpointIOSDefaultSetRequirement = PowerpointIOSDefaultSetRequirement;
|
|
var OutlookIOSDefaultSetRequirement = (function (_super) {
|
|
__extends(OutlookIOSDefaultSetRequirement, _super);
|
|
function OutlookIOSDefaultSetRequirement() {
|
|
return _super.call(this, {
|
|
"mailbox": 1.1
|
|
}) || this;
|
|
}
|
|
return OutlookIOSDefaultSetRequirement;
|
|
}(DefaultSetRequirement));
|
|
Requirement.OutlookIOSDefaultSetRequirement = OutlookIOSDefaultSetRequirement;
|
|
var RequirementsMatrixFactory = (function () {
|
|
function RequirementsMatrixFactory() {
|
|
}
|
|
RequirementsMatrixFactory.initializeOsfDda = function () {
|
|
OSF.OUtil.setNamespace("Requirement", OSF.DDA);
|
|
};
|
|
RequirementsMatrixFactory.getDefaultRequirementMatrix = function (appContext) {
|
|
this.initializeDefaultSetMatrix();
|
|
var defaultRequirementMatrix = undefined;
|
|
var clientRequirement = appContext.get_requirementMatrix();
|
|
if (clientRequirement != undefined && clientRequirement.length > 0 && typeof (JSON) !== "undefined") {
|
|
var matrixItem = JSON.parse(appContext.get_requirementMatrix().toLowerCase());
|
|
try {
|
|
var setName = "dialogorigin";
|
|
if (!matrixItem.hasOwnProperty(setName)) {
|
|
matrixItem[setName] = 1.1;
|
|
}
|
|
}
|
|
catch (ex) { }
|
|
defaultRequirementMatrix = new RequirementMatrix(new DefaultSetRequirement(matrixItem));
|
|
}
|
|
else {
|
|
var appLocator = RequirementsMatrixFactory.getClientFullVersionString(appContext);
|
|
if (RequirementsMatrixFactory.DefaultSetArrayMatrix != undefined && RequirementsMatrixFactory.DefaultSetArrayMatrix[appLocator] != undefined) {
|
|
defaultRequirementMatrix = new RequirementMatrix(RequirementsMatrixFactory.DefaultSetArrayMatrix[appLocator]);
|
|
}
|
|
else {
|
|
defaultRequirementMatrix = new RequirementMatrix(new DefaultSetRequirement({}));
|
|
}
|
|
}
|
|
return defaultRequirementMatrix;
|
|
};
|
|
RequirementsMatrixFactory.getDefaultDialogRequirementMatrix = function (appContext) {
|
|
var setRequirements = undefined;
|
|
var clientRequirement = appContext.get_dialogRequirementMatrix();
|
|
if (clientRequirement != undefined && clientRequirement.length > 0 && typeof (JSON) !== "undefined") {
|
|
var matrixItem = JSON.parse(appContext.get_requirementMatrix().toLowerCase());
|
|
setRequirements = new DefaultSetRequirement(matrixItem);
|
|
}
|
|
else {
|
|
setRequirements = new DefaultRequiredDialogSetRequirement();
|
|
var mainRequirement = appContext.get_requirementMatrix();
|
|
if (mainRequirement != undefined && mainRequirement.length > 0 && typeof (JSON) !== "undefined") {
|
|
var matrixItem = JSON.parse(mainRequirement.toLowerCase());
|
|
for (var name in setRequirements._sets) {
|
|
if (matrixItem.hasOwnProperty(name)) {
|
|
setRequirements._sets[name] = matrixItem[name];
|
|
}
|
|
}
|
|
var dialogOptionalSetRequirement = new DefaultOptionalDialogSetRequirement();
|
|
for (var name in dialogOptionalSetRequirement._sets) {
|
|
if (matrixItem.hasOwnProperty(name)) {
|
|
setRequirements._sets[name] = matrixItem[name];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
try {
|
|
var setName = "dialogorigin";
|
|
if (!setRequirements._sets.hasOwnProperty(setName) && window.opener) {
|
|
setRequirements._sets[setName] = 1.1;
|
|
}
|
|
}
|
|
catch (ex) { }
|
|
return new RequirementMatrix(setRequirements);
|
|
};
|
|
RequirementsMatrixFactory.getClientFullVersionString = function (appContext) {
|
|
var appMinorVersion = appContext.get_appMinorVersion();
|
|
var appMinorVersionString = "";
|
|
var appFullVersion = "";
|
|
var appName = appContext.get_appName();
|
|
var isIOSClient = appName == 1024 ||
|
|
appName == 4096 ||
|
|
appName == 8192 ||
|
|
appName == 65536;
|
|
if (isIOSClient && appContext.get_appVersion() == 1) {
|
|
if (appName == 4096 && appMinorVersion >= 15) {
|
|
appFullVersion = "16.00.01";
|
|
}
|
|
else {
|
|
appFullVersion = "16.00";
|
|
}
|
|
}
|
|
else if (appContext.get_appName() == 64) {
|
|
appFullVersion = appContext.get_appVersion();
|
|
}
|
|
else {
|
|
if (appMinorVersion < 10) {
|
|
appMinorVersionString = "0" + appMinorVersion;
|
|
}
|
|
else {
|
|
appMinorVersionString = "" + appMinorVersion;
|
|
}
|
|
appFullVersion = appContext.get_appVersion() + "." + appMinorVersionString;
|
|
}
|
|
return appContext.get_appName() + "-" + appFullVersion;
|
|
};
|
|
RequirementsMatrixFactory.initializeDefaultSetMatrix = function () {
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Excel_RCLIENT_1600] = new ExcelClientDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Word_RCLIENT_1600] = new WordClientDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.PowerPoint_RCLIENT_1600] = new PowerpointClientDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Excel_RCLIENT_1601] = new ExcelClientV1DefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Word_RCLIENT_1601] = new WordClientV1DefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.PowerPoint_RCLIENT_1601] = new PowerpointClientV1DefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Outlook_RCLIENT_1600] = new OutlookClientDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Excel_WAC_1600] = new ExcelWebDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Word_WAC_1600] = new WordWebDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Outlook_WAC_1600] = new OutlookWebDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Outlook_WAC_1601] = new OutlookWebDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Project_RCLIENT_1600] = new ProjectClientDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Access_WAC_1600] = new AccessWebDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.PowerPoint_WAC_1600] = new PowerpointWebDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Excel_IOS_1600] = new ExcelIOSDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.SWAY_WAC_1600] = new SwayWebDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Word_IOS_1600] = new WordIOSDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Word_IOS_16001] = new WordIOSV1DefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.PowerPoint_IOS_1600] = new PowerpointIOSDefaultSetRequirement();
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix[RequirementsMatrixFactory.Outlook_IOS_1600] = new OutlookIOSDefaultSetRequirement();
|
|
};
|
|
RequirementsMatrixFactory.Excel_RCLIENT_1600 = "1-16.00";
|
|
RequirementsMatrixFactory.Excel_RCLIENT_1601 = "1-16.01";
|
|
RequirementsMatrixFactory.Word_RCLIENT_1600 = "2-16.00";
|
|
RequirementsMatrixFactory.Word_RCLIENT_1601 = "2-16.01";
|
|
RequirementsMatrixFactory.PowerPoint_RCLIENT_1600 = "4-16.00";
|
|
RequirementsMatrixFactory.PowerPoint_RCLIENT_1601 = "4-16.01";
|
|
RequirementsMatrixFactory.Outlook_RCLIENT_1600 = "8-16.00";
|
|
RequirementsMatrixFactory.Excel_WAC_1600 = "16-16.00";
|
|
RequirementsMatrixFactory.Word_WAC_1600 = "32-16.00";
|
|
RequirementsMatrixFactory.Outlook_WAC_1600 = "64-16.00";
|
|
RequirementsMatrixFactory.Outlook_WAC_1601 = "64-16.01";
|
|
RequirementsMatrixFactory.Project_RCLIENT_1600 = "128-16.00";
|
|
RequirementsMatrixFactory.Access_WAC_1600 = "256-16.00";
|
|
RequirementsMatrixFactory.PowerPoint_WAC_1600 = "512-16.00";
|
|
RequirementsMatrixFactory.Excel_IOS_1600 = "1024-16.00";
|
|
RequirementsMatrixFactory.SWAY_WAC_1600 = "2048-16.00";
|
|
RequirementsMatrixFactory.Word_IOS_1600 = "4096-16.00";
|
|
RequirementsMatrixFactory.Word_IOS_16001 = "4096-16.00.01";
|
|
RequirementsMatrixFactory.PowerPoint_IOS_1600 = "8192-16.00";
|
|
RequirementsMatrixFactory.Outlook_IOS_1600 = "65536-16.00";
|
|
RequirementsMatrixFactory.DefaultSetArrayMatrix = {};
|
|
return RequirementsMatrixFactory;
|
|
}());
|
|
Requirement.RequirementsMatrixFactory = RequirementsMatrixFactory;
|
|
})(Requirement = OfficeExt.Requirement || (OfficeExt.Requirement = {}));
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
OfficeExt.Requirement.RequirementsMatrixFactory.initializeOsfDda();
|
|
Microsoft.Office.WebExtension.ApplicationMode = {
|
|
WebEditor: "webEditor",
|
|
WebViewer: "webViewer",
|
|
Client: "client"
|
|
};
|
|
Microsoft.Office.WebExtension.DocumentMode = {
|
|
ReadOnly: "readOnly",
|
|
ReadWrite: "readWrite"
|
|
};
|
|
OSF.NamespaceManager = (function OSF_NamespaceManager() {
|
|
var _userOffice;
|
|
var _useShortcut = false;
|
|
return {
|
|
enableShortcut: function OSF_NamespaceManager$enableShortcut() {
|
|
if (!_useShortcut) {
|
|
if (window.Office) {
|
|
_userOffice = window.Office;
|
|
}
|
|
else {
|
|
OSF.OUtil.setNamespace("Office", window);
|
|
}
|
|
window.Office = Microsoft.Office.WebExtension;
|
|
_useShortcut = true;
|
|
}
|
|
},
|
|
disableShortcut: function OSF_NamespaceManager$disableShortcut() {
|
|
if (_useShortcut) {
|
|
if (_userOffice) {
|
|
window.Office = _userOffice;
|
|
}
|
|
else {
|
|
OSF.OUtil.unsetNamespace("Office", window);
|
|
}
|
|
_useShortcut = false;
|
|
}
|
|
}
|
|
};
|
|
})();
|
|
OSF.NamespaceManager.enableShortcut();
|
|
Microsoft.Office.WebExtension.useShortNamespace = function Microsoft_Office_WebExtension_useShortNamespace(useShortcut) {
|
|
if (useShortcut) {
|
|
OSF.NamespaceManager.enableShortcut();
|
|
}
|
|
else {
|
|
OSF.NamespaceManager.disableShortcut();
|
|
}
|
|
};
|
|
Microsoft.Office.WebExtension.select = function Microsoft_Office_WebExtension_select(str, errorCallback) {
|
|
var promise;
|
|
if (str && typeof str == "string") {
|
|
var index = str.indexOf("#");
|
|
if (index != -1) {
|
|
var op = str.substring(0, index);
|
|
var target = str.substring(index + 1);
|
|
switch (op) {
|
|
case "binding":
|
|
case "bindings":
|
|
if (target) {
|
|
promise = new OSF.DDA.BindingPromise(target);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (!promise) {
|
|
if (errorCallback) {
|
|
var callbackType = typeof errorCallback;
|
|
if (callbackType == "function") {
|
|
var callArgs = {};
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.Callback] = errorCallback;
|
|
OSF.DDA.issueAsyncResult(callArgs, OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidApiCallInContext, OSF.DDA.ErrorCodeManager.getErrorArgs(OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidApiCallInContext));
|
|
}
|
|
else {
|
|
throw OSF.OUtil.formatString(Strings.OfficeOM.L_CallbackNotAFunction, callbackType);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
promise.onFail = errorCallback;
|
|
return promise;
|
|
}
|
|
};
|
|
OSF.DDA.Context = function OSF_DDA_Context(officeAppContext, document, license, appOM, getOfficeTheme) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"contentLanguage": {
|
|
value: officeAppContext.get_dataLocale()
|
|
},
|
|
"displayLanguage": {
|
|
value: officeAppContext.get_appUILocale()
|
|
},
|
|
"touchEnabled": {
|
|
value: officeAppContext.get_touchEnabled()
|
|
},
|
|
"commerceAllowed": {
|
|
value: officeAppContext.get_commerceAllowed()
|
|
},
|
|
"host": {
|
|
value: OfficeExt.HostName.Host.getInstance().getHost()
|
|
},
|
|
"platform": {
|
|
value: OfficeExt.HostName.Host.getInstance().getPlatform()
|
|
},
|
|
"isDialog": {
|
|
value: OSF._OfficeAppFactory.getHostInfo().isDialog
|
|
},
|
|
"diagnostics": {
|
|
value: OfficeExt.HostName.Host.getInstance().getDiagnostics(officeAppContext.get_hostFullVersion())
|
|
}
|
|
});
|
|
if (license) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "license", {
|
|
value: license
|
|
});
|
|
}
|
|
if (officeAppContext.ui) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "ui", {
|
|
value: officeAppContext.ui
|
|
});
|
|
}
|
|
if (officeAppContext.auth) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "auth", {
|
|
value: officeAppContext.auth
|
|
});
|
|
}
|
|
if (officeAppContext.webAuth) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "webAuth", {
|
|
value: officeAppContext.webAuth
|
|
});
|
|
}
|
|
if (officeAppContext.application) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "application", {
|
|
value: officeAppContext.application
|
|
});
|
|
}
|
|
if (officeAppContext.extensionLifeCycle) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "extensionLifeCycle", {
|
|
value: officeAppContext.extensionLifeCycle
|
|
});
|
|
}
|
|
if (officeAppContext.messaging) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "messaging", {
|
|
value: officeAppContext.messaging
|
|
});
|
|
}
|
|
if (officeAppContext.ui && officeAppContext.ui.taskPaneAction) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "taskPaneAction", {
|
|
value: officeAppContext.ui.taskPaneAction
|
|
});
|
|
}
|
|
if (officeAppContext.ui && officeAppContext.ui.ribbonGallery) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "ribbonGallery", {
|
|
value: officeAppContext.ui.ribbonGallery
|
|
});
|
|
}
|
|
if (officeAppContext.get_isDialog()) {
|
|
var requirements = OfficeExt.Requirement.RequirementsMatrixFactory.getDefaultDialogRequirementMatrix(officeAppContext);
|
|
OSF.OUtil.defineEnumerableProperty(this, "requirements", {
|
|
value: requirements
|
|
});
|
|
}
|
|
else {
|
|
if (document) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "document", {
|
|
value: document
|
|
});
|
|
}
|
|
if (appOM) {
|
|
var displayName = appOM.displayName || "appOM";
|
|
delete appOM.displayName;
|
|
OSF.OUtil.defineEnumerableProperty(this, displayName, {
|
|
value: appOM
|
|
});
|
|
}
|
|
if (officeAppContext.get_officeTheme()) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "officeTheme", {
|
|
get: function () {
|
|
return officeAppContext.get_officeTheme();
|
|
}
|
|
});
|
|
}
|
|
else if (getOfficeTheme) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "officeTheme", {
|
|
get: function () {
|
|
return getOfficeTheme();
|
|
}
|
|
});
|
|
}
|
|
var requirements = OfficeExt.Requirement.RequirementsMatrixFactory.getDefaultRequirementMatrix(officeAppContext);
|
|
OSF.OUtil.defineEnumerableProperty(this, "requirements", {
|
|
value: requirements
|
|
});
|
|
}
|
|
};
|
|
OSF.DDA.OutlookContext = function OSF_DDA_OutlookContext(appContext, settings, license, appOM, getOfficeTheme) {
|
|
OSF.DDA.OutlookContext.uber.constructor.call(this, appContext, null, license, appOM, getOfficeTheme);
|
|
if (settings) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "roamingSettings", {
|
|
value: settings
|
|
});
|
|
}
|
|
};
|
|
OSF.OUtil.extend(OSF.DDA.OutlookContext, OSF.DDA.Context);
|
|
OSF.DDA.OutlookAppOm = function OSF_DDA_OutlookAppOm(appContext, window, appReady) { };
|
|
OSF.DDA.Application = function OSF_DDA_Application(officeAppContext) {
|
|
};
|
|
OSF.DDA.Document = function OSF_DDA_Document(officeAppContext, settings) {
|
|
var mode;
|
|
switch (officeAppContext.get_clientMode()) {
|
|
case OSF.ClientMode.ReadOnly:
|
|
mode = Microsoft.Office.WebExtension.DocumentMode.ReadOnly;
|
|
break;
|
|
case OSF.ClientMode.ReadWrite:
|
|
mode = Microsoft.Office.WebExtension.DocumentMode.ReadWrite;
|
|
break;
|
|
}
|
|
;
|
|
if (settings) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "settings", {
|
|
value: settings
|
|
});
|
|
}
|
|
;
|
|
OSF.OUtil.defineMutableProperties(this, {
|
|
"mode": {
|
|
value: mode
|
|
},
|
|
"url": {
|
|
value: officeAppContext.get_docUrl()
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.JsomDocument = function OSF_DDA_JsomDocument(officeAppContext, bindingFacade, settings) {
|
|
OSF.DDA.JsomDocument.uber.constructor.call(this, officeAppContext, settings);
|
|
if (bindingFacade) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "bindings", {
|
|
get: function OSF_DDA_Document$GetBindings() { return bindingFacade; }
|
|
});
|
|
}
|
|
var am = OSF.DDA.AsyncMethodNames;
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this, [
|
|
am.GetSelectedDataAsync,
|
|
am.SetSelectedDataAsync
|
|
]);
|
|
OSF.DDA.DispIdHost.addEventSupport(this, new OSF.EventDispatch([Microsoft.Office.WebExtension.EventType.DocumentSelectionChanged]));
|
|
};
|
|
OSF.OUtil.extend(OSF.DDA.JsomDocument, OSF.DDA.Document);
|
|
OSF.OUtil.defineEnumerableProperty(Microsoft.Office.WebExtension, "context", {
|
|
get: function Microsoft_Office_WebExtension$GetContext() {
|
|
var context;
|
|
if (OSF && OSF._OfficeAppFactory) {
|
|
context = OSF._OfficeAppFactory.getContext();
|
|
}
|
|
return context;
|
|
}
|
|
});
|
|
OSF.DDA.License = function OSF_DDA_License(eToken) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "value", {
|
|
value: eToken
|
|
});
|
|
};
|
|
OSF.DDA.ApiMethodCall = function OSF_DDA_ApiMethodCall(requiredParameters, supportedOptions, privateStateCallbacks, checkCallArgs, displayName) {
|
|
var requiredCount = requiredParameters.length;
|
|
var getInvalidParameterString = OSF.OUtil.delayExecutionAndCache(function () {
|
|
return OSF.OUtil.formatString(Strings.OfficeOM.L_InvalidParameters, displayName);
|
|
});
|
|
this.verifyArguments = function OSF_DDA_ApiMethodCall$VerifyArguments(params, args) {
|
|
for (var name in params) {
|
|
var param = params[name];
|
|
var arg = args[name];
|
|
if (param["enum"]) {
|
|
switch (typeof arg) {
|
|
case "string":
|
|
if (OSF.OUtil.listContainsValue(param["enum"], arg)) {
|
|
break;
|
|
}
|
|
case "undefined":
|
|
throw OSF.DDA.ErrorCodeManager.errorCodes.ooeUnsupportedEnumeration;
|
|
default:
|
|
throw getInvalidParameterString();
|
|
}
|
|
}
|
|
if (param["types"]) {
|
|
if (!OSF.OUtil.listContainsValue(param["types"], typeof arg)) {
|
|
throw getInvalidParameterString();
|
|
}
|
|
}
|
|
}
|
|
};
|
|
this.extractRequiredArguments = function OSF_DDA_ApiMethodCall$ExtractRequiredArguments(userArgs, caller, stateInfo) {
|
|
if (userArgs.length < requiredCount) {
|
|
throw OsfMsAjaxFactory.msAjaxError.parameterCount(Strings.OfficeOM.L_MissingRequiredArguments);
|
|
}
|
|
var requiredArgs = [];
|
|
var index;
|
|
for (index = 0; index < requiredCount; index++) {
|
|
requiredArgs.push(userArgs[index]);
|
|
}
|
|
this.verifyArguments(requiredParameters, requiredArgs);
|
|
var ret = {};
|
|
for (index = 0; index < requiredCount; index++) {
|
|
var param = requiredParameters[index];
|
|
var arg = requiredArgs[index];
|
|
if (param.verify) {
|
|
var isValid = param.verify(arg, caller, stateInfo);
|
|
if (!isValid) {
|
|
throw getInvalidParameterString();
|
|
}
|
|
}
|
|
ret[param.name] = arg;
|
|
}
|
|
return ret;
|
|
},
|
|
this.fillOptions = function OSF_DDA_ApiMethodCall$FillOptions(options, requiredArgs, caller, stateInfo) {
|
|
options = options || {};
|
|
for (var optionName in supportedOptions) {
|
|
if (!OSF.OUtil.listContainsKey(options, optionName)) {
|
|
var value = undefined;
|
|
var option = supportedOptions[optionName];
|
|
if (option.calculate && requiredArgs) {
|
|
value = option.calculate(requiredArgs, caller, stateInfo);
|
|
}
|
|
if (!value && option.defaultValue !== undefined) {
|
|
value = option.defaultValue;
|
|
}
|
|
options[optionName] = value;
|
|
}
|
|
}
|
|
return options;
|
|
};
|
|
this.constructCallArgs = function OSF_DAA_ApiMethodCall$ConstructCallArgs(required, options, caller, stateInfo) {
|
|
var callArgs = {};
|
|
for (var r in required) {
|
|
callArgs[r] = required[r];
|
|
}
|
|
for (var o in options) {
|
|
callArgs[o] = options[o];
|
|
}
|
|
for (var s in privateStateCallbacks) {
|
|
callArgs[s] = privateStateCallbacks[s](caller, stateInfo);
|
|
}
|
|
if (checkCallArgs) {
|
|
callArgs = checkCallArgs(callArgs, caller, stateInfo);
|
|
}
|
|
return callArgs;
|
|
};
|
|
};
|
|
OSF.OUtil.setNamespace("AsyncResultEnum", OSF.DDA);
|
|
OSF.DDA.AsyncResultEnum.Properties = {
|
|
Context: "Context",
|
|
Value: "Value",
|
|
Status: "Status",
|
|
Error: "Error"
|
|
};
|
|
Microsoft.Office.WebExtension.AsyncResultStatus = {
|
|
Succeeded: "succeeded",
|
|
Failed: "failed"
|
|
};
|
|
OSF.DDA.AsyncResultEnum.ErrorCode = {
|
|
Success: 0,
|
|
Failed: 1
|
|
};
|
|
OSF.DDA.AsyncResultEnum.ErrorProperties = {
|
|
Name: "Name",
|
|
Message: "Message",
|
|
Code: "Code"
|
|
};
|
|
OSF.DDA.AsyncMethodNames = {};
|
|
OSF.DDA.AsyncMethodNames.addNames = function (methodNames) {
|
|
for (var entry in methodNames) {
|
|
var am = {};
|
|
OSF.OUtil.defineEnumerableProperties(am, {
|
|
"id": {
|
|
value: entry
|
|
},
|
|
"displayName": {
|
|
value: methodNames[entry]
|
|
}
|
|
});
|
|
OSF.DDA.AsyncMethodNames[entry] = am;
|
|
}
|
|
};
|
|
OSF.DDA.AsyncMethodCall = function OSF_DDA_AsyncMethodCall(requiredParameters, supportedOptions, privateStateCallbacks, onSucceeded, onFailed, checkCallArgs, displayName) {
|
|
var requiredCount = requiredParameters.length;
|
|
var apiMethods = new OSF.DDA.ApiMethodCall(requiredParameters, supportedOptions, privateStateCallbacks, checkCallArgs, displayName);
|
|
function OSF_DAA_AsyncMethodCall$ExtractOptions(userArgs, requiredArgs, caller, stateInfo) {
|
|
if (userArgs.length > requiredCount + 2) {
|
|
throw OsfMsAjaxFactory.msAjaxError.parameterCount(Strings.OfficeOM.L_TooManyArguments);
|
|
}
|
|
var options, parameterCallback;
|
|
for (var i = userArgs.length - 1; i >= requiredCount; i--) {
|
|
var argument = userArgs[i];
|
|
switch (typeof argument) {
|
|
case "object":
|
|
if (options) {
|
|
throw OsfMsAjaxFactory.msAjaxError.parameterCount(Strings.OfficeOM.L_TooManyOptionalObjects);
|
|
}
|
|
else {
|
|
options = argument;
|
|
}
|
|
break;
|
|
case "function":
|
|
if (parameterCallback) {
|
|
throw OsfMsAjaxFactory.msAjaxError.parameterCount(Strings.OfficeOM.L_TooManyOptionalFunction);
|
|
}
|
|
else {
|
|
parameterCallback = argument;
|
|
}
|
|
break;
|
|
default:
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Strings.OfficeOM.L_InValidOptionalArgument);
|
|
break;
|
|
}
|
|
}
|
|
options = apiMethods.fillOptions(options, requiredArgs, caller, stateInfo);
|
|
if (parameterCallback) {
|
|
if (options[Microsoft.Office.WebExtension.Parameters.Callback]) {
|
|
throw Strings.OfficeOM.L_RedundantCallbackSpecification;
|
|
}
|
|
else {
|
|
options[Microsoft.Office.WebExtension.Parameters.Callback] = parameterCallback;
|
|
}
|
|
}
|
|
apiMethods.verifyArguments(supportedOptions, options);
|
|
return options;
|
|
}
|
|
;
|
|
this.verifyAndExtractCall = function OSF_DAA_AsyncMethodCall$VerifyAndExtractCall(userArgs, caller, stateInfo) {
|
|
var required = apiMethods.extractRequiredArguments(userArgs, caller, stateInfo);
|
|
var options = OSF_DAA_AsyncMethodCall$ExtractOptions(userArgs, required, caller, stateInfo);
|
|
var callArgs = apiMethods.constructCallArgs(required, options, caller, stateInfo);
|
|
return callArgs;
|
|
};
|
|
this.processResponse = function OSF_DAA_AsyncMethodCall$ProcessResponse(status, response, caller, callArgs) {
|
|
var payload;
|
|
if (status == OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
if (onSucceeded) {
|
|
payload = onSucceeded(response, caller, callArgs);
|
|
}
|
|
else {
|
|
payload = response;
|
|
}
|
|
}
|
|
else {
|
|
if (onFailed) {
|
|
payload = onFailed(status, response);
|
|
}
|
|
else {
|
|
payload = OSF.DDA.ErrorCodeManager.getErrorArgs(status);
|
|
}
|
|
}
|
|
return payload;
|
|
};
|
|
this.getCallArgs = function (suppliedArgs) {
|
|
var options, parameterCallback;
|
|
for (var i = suppliedArgs.length - 1; i >= requiredCount; i--) {
|
|
var argument = suppliedArgs[i];
|
|
switch (typeof argument) {
|
|
case "object":
|
|
options = argument;
|
|
break;
|
|
case "function":
|
|
parameterCallback = argument;
|
|
break;
|
|
}
|
|
}
|
|
options = options || {};
|
|
if (parameterCallback) {
|
|
options[Microsoft.Office.WebExtension.Parameters.Callback] = parameterCallback;
|
|
}
|
|
return options;
|
|
};
|
|
};
|
|
OSF.DDA.AsyncMethodCallFactory = (function () {
|
|
return {
|
|
manufacture: function (params) {
|
|
var supportedOptions = params.supportedOptions ? OSF.OUtil.createObject(params.supportedOptions) : [];
|
|
var privateStateCallbacks = params.privateStateCallbacks ? OSF.OUtil.createObject(params.privateStateCallbacks) : [];
|
|
return new OSF.DDA.AsyncMethodCall(params.requiredArguments || [], supportedOptions, privateStateCallbacks, params.onSucceeded, params.onFailed, params.checkCallArgs, params.method.displayName);
|
|
}
|
|
};
|
|
})();
|
|
OSF.DDA.AsyncMethodCalls = {};
|
|
OSF.DDA.AsyncMethodCalls.define = function (callDefinition) {
|
|
OSF.DDA.AsyncMethodCalls[callDefinition.method.id] = OSF.DDA.AsyncMethodCallFactory.manufacture(callDefinition);
|
|
};
|
|
OSF.DDA.Error = function OSF_DDA_Error(name, message, code) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"name": {
|
|
value: name
|
|
},
|
|
"message": {
|
|
value: message
|
|
},
|
|
"code": {
|
|
value: code
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.AsyncResult = function OSF_DDA_AsyncResult(initArgs, errorArgs) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"value": {
|
|
value: initArgs[OSF.DDA.AsyncResultEnum.Properties.Value]
|
|
},
|
|
"status": {
|
|
value: errorArgs ? Microsoft.Office.WebExtension.AsyncResultStatus.Failed : Microsoft.Office.WebExtension.AsyncResultStatus.Succeeded
|
|
}
|
|
});
|
|
if (initArgs[OSF.DDA.AsyncResultEnum.Properties.Context]) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "asyncContext", {
|
|
value: initArgs[OSF.DDA.AsyncResultEnum.Properties.Context]
|
|
});
|
|
}
|
|
if (errorArgs) {
|
|
OSF.OUtil.defineEnumerableProperty(this, "error", {
|
|
value: new OSF.DDA.Error(errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Name], errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Message], errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Code])
|
|
});
|
|
}
|
|
};
|
|
OSF.DDA.issueAsyncResult = function OSF_DDA$IssueAsyncResult(callArgs, status, payload) {
|
|
var callback = callArgs[Microsoft.Office.WebExtension.Parameters.Callback];
|
|
if (callback) {
|
|
var asyncInitArgs = {};
|
|
asyncInitArgs[OSF.DDA.AsyncResultEnum.Properties.Context] = callArgs[Microsoft.Office.WebExtension.Parameters.AsyncContext];
|
|
var errorArgs;
|
|
if (status == OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
asyncInitArgs[OSF.DDA.AsyncResultEnum.Properties.Value] = payload;
|
|
}
|
|
else {
|
|
errorArgs = {};
|
|
payload = payload || OSF.DDA.ErrorCodeManager.getErrorArgs(OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError);
|
|
errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Code] = status || OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;
|
|
errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Name] = payload.name || payload;
|
|
errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Message] = payload.message || payload;
|
|
}
|
|
callback(new OSF.DDA.AsyncResult(asyncInitArgs, errorArgs));
|
|
}
|
|
};
|
|
OSF.DDA.SyncMethodNames = {};
|
|
OSF.DDA.SyncMethodNames.addNames = function (methodNames) {
|
|
for (var entry in methodNames) {
|
|
var am = {};
|
|
OSF.OUtil.defineEnumerableProperties(am, {
|
|
"id": {
|
|
value: entry
|
|
},
|
|
"displayName": {
|
|
value: methodNames[entry]
|
|
}
|
|
});
|
|
OSF.DDA.SyncMethodNames[entry] = am;
|
|
}
|
|
};
|
|
OSF.DDA.SyncMethodCall = function OSF_DDA_SyncMethodCall(requiredParameters, supportedOptions, privateStateCallbacks, checkCallArgs, displayName) {
|
|
var requiredCount = requiredParameters.length;
|
|
var apiMethods = new OSF.DDA.ApiMethodCall(requiredParameters, supportedOptions, privateStateCallbacks, checkCallArgs, displayName);
|
|
function OSF_DAA_SyncMethodCall$ExtractOptions(userArgs, requiredArgs, caller, stateInfo) {
|
|
if (userArgs.length > requiredCount + 1) {
|
|
throw OsfMsAjaxFactory.msAjaxError.parameterCount(Strings.OfficeOM.L_TooManyArguments);
|
|
}
|
|
var options, parameterCallback;
|
|
for (var i = userArgs.length - 1; i >= requiredCount; i--) {
|
|
var argument = userArgs[i];
|
|
switch (typeof argument) {
|
|
case "object":
|
|
if (options) {
|
|
throw OsfMsAjaxFactory.msAjaxError.parameterCount(Strings.OfficeOM.L_TooManyOptionalObjects);
|
|
}
|
|
else {
|
|
options = argument;
|
|
}
|
|
break;
|
|
default:
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Strings.OfficeOM.L_InValidOptionalArgument);
|
|
break;
|
|
}
|
|
}
|
|
options = apiMethods.fillOptions(options, requiredArgs, caller, stateInfo);
|
|
apiMethods.verifyArguments(supportedOptions, options);
|
|
return options;
|
|
}
|
|
;
|
|
this.verifyAndExtractCall = function OSF_DAA_AsyncMethodCall$VerifyAndExtractCall(userArgs, caller, stateInfo) {
|
|
var required = apiMethods.extractRequiredArguments(userArgs, caller, stateInfo);
|
|
var options = OSF_DAA_SyncMethodCall$ExtractOptions(userArgs, required, caller, stateInfo);
|
|
var callArgs = apiMethods.constructCallArgs(required, options, caller, stateInfo);
|
|
return callArgs;
|
|
};
|
|
};
|
|
OSF.DDA.SyncMethodCallFactory = (function () {
|
|
return {
|
|
manufacture: function (params) {
|
|
var supportedOptions = params.supportedOptions ? OSF.OUtil.createObject(params.supportedOptions) : [];
|
|
return new OSF.DDA.SyncMethodCall(params.requiredArguments || [], supportedOptions, params.privateStateCallbacks, params.checkCallArgs, params.method.displayName);
|
|
}
|
|
};
|
|
})();
|
|
OSF.DDA.SyncMethodCalls = {};
|
|
OSF.DDA.SyncMethodCalls.define = function (callDefinition) {
|
|
OSF.DDA.SyncMethodCalls[callDefinition.method.id] = OSF.DDA.SyncMethodCallFactory.manufacture(callDefinition);
|
|
};
|
|
OSF.DDA.ListType = (function () {
|
|
var listTypes = {};
|
|
return {
|
|
setListType: function OSF_DDA_ListType$AddListType(t, prop) { listTypes[t] = prop; },
|
|
isListType: function OSF_DDA_ListType$IsListType(t) { return OSF.OUtil.listContainsKey(listTypes, t); },
|
|
getDescriptor: function OSF_DDA_ListType$getDescriptor(t) { return listTypes[t]; }
|
|
};
|
|
})();
|
|
OSF.DDA.HostParameterMap = function (specialProcessor, mappings) {
|
|
var toHostMap = "toHost";
|
|
var fromHostMap = "fromHost";
|
|
var sourceData = "sourceData";
|
|
var self = "self";
|
|
var dynamicTypes = {};
|
|
dynamicTypes[Microsoft.Office.WebExtension.Parameters.Data] = {
|
|
toHost: function (data) {
|
|
if (data != null && data.rows !== undefined) {
|
|
var tableData = {};
|
|
tableData[OSF.DDA.TableDataProperties.TableRows] = data.rows;
|
|
tableData[OSF.DDA.TableDataProperties.TableHeaders] = data.headers;
|
|
data = tableData;
|
|
}
|
|
return data;
|
|
},
|
|
fromHost: function (args) {
|
|
return args;
|
|
}
|
|
};
|
|
dynamicTypes[Microsoft.Office.WebExtension.Parameters.SampleData] = dynamicTypes[Microsoft.Office.WebExtension.Parameters.Data];
|
|
function mapValues(preimageSet, mapping) {
|
|
var ret = preimageSet ? {} : undefined;
|
|
for (var entry in preimageSet) {
|
|
var preimage = preimageSet[entry];
|
|
var image;
|
|
if (OSF.DDA.ListType.isListType(entry)) {
|
|
image = [];
|
|
for (var subEntry in preimage) {
|
|
image.push(mapValues(preimage[subEntry], mapping));
|
|
}
|
|
}
|
|
else if (OSF.OUtil.listContainsKey(dynamicTypes, entry)) {
|
|
image = dynamicTypes[entry][mapping](preimage);
|
|
}
|
|
else if (mapping == fromHostMap && specialProcessor.preserveNesting(entry)) {
|
|
image = mapValues(preimage, mapping);
|
|
}
|
|
else {
|
|
var maps = mappings[entry];
|
|
if (maps) {
|
|
var map = maps[mapping];
|
|
if (map) {
|
|
image = map[preimage];
|
|
if (image === undefined) {
|
|
image = preimage;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
image = preimage;
|
|
}
|
|
}
|
|
ret[entry] = image;
|
|
}
|
|
return ret;
|
|
}
|
|
;
|
|
function generateArguments(imageSet, parameters) {
|
|
var ret;
|
|
for (var param in parameters) {
|
|
var arg;
|
|
if (specialProcessor.isComplexType(param)) {
|
|
arg = generateArguments(imageSet, mappings[param][toHostMap]);
|
|
}
|
|
else {
|
|
arg = imageSet[param];
|
|
}
|
|
if (arg != undefined) {
|
|
if (!ret) {
|
|
ret = {};
|
|
}
|
|
var index = parameters[param];
|
|
if (index == self) {
|
|
index = param;
|
|
}
|
|
ret[index] = specialProcessor.pack(param, arg);
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
;
|
|
function extractArguments(source, parameters, extracted) {
|
|
if (!extracted) {
|
|
extracted = {};
|
|
}
|
|
for (var param in parameters) {
|
|
var index = parameters[param];
|
|
var value;
|
|
if (index == self) {
|
|
value = source;
|
|
}
|
|
else if (index == sourceData) {
|
|
extracted[param] = source.toArray();
|
|
continue;
|
|
}
|
|
else {
|
|
value = source[index];
|
|
}
|
|
if (value === null || value === undefined) {
|
|
extracted[param] = undefined;
|
|
}
|
|
else {
|
|
value = specialProcessor.unpack(param, value);
|
|
var map;
|
|
if (specialProcessor.isComplexType(param)) {
|
|
map = mappings[param][fromHostMap];
|
|
if (specialProcessor.preserveNesting(param)) {
|
|
extracted[param] = extractArguments(value, map);
|
|
}
|
|
else {
|
|
extractArguments(value, map, extracted);
|
|
}
|
|
}
|
|
else {
|
|
if (OSF.DDA.ListType.isListType(param)) {
|
|
map = {};
|
|
var entryDescriptor = OSF.DDA.ListType.getDescriptor(param);
|
|
map[entryDescriptor] = self;
|
|
var extractedValues = new Array(value.length);
|
|
for (var item in value) {
|
|
extractedValues[item] = extractArguments(value[item], map);
|
|
}
|
|
extracted[param] = extractedValues;
|
|
}
|
|
else {
|
|
extracted[param] = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return extracted;
|
|
}
|
|
;
|
|
function applyMap(mapName, preimage, mapping) {
|
|
var parameters = mappings[mapName][mapping];
|
|
var image;
|
|
if (mapping == "toHost") {
|
|
var imageSet = mapValues(preimage, mapping);
|
|
image = generateArguments(imageSet, parameters);
|
|
}
|
|
else if (mapping == "fromHost") {
|
|
var argumentSet = extractArguments(preimage, parameters);
|
|
image = mapValues(argumentSet, mapping);
|
|
}
|
|
return image;
|
|
}
|
|
;
|
|
if (!mappings) {
|
|
mappings = {};
|
|
}
|
|
this.addMapping = function (mapName, description) {
|
|
var toHost, fromHost;
|
|
if (description.map) {
|
|
toHost = description.map;
|
|
fromHost = {};
|
|
for (var preimage in toHost) {
|
|
var image = toHost[preimage];
|
|
if (image == self) {
|
|
image = preimage;
|
|
}
|
|
fromHost[image] = preimage;
|
|
}
|
|
}
|
|
else {
|
|
toHost = description.toHost;
|
|
fromHost = description.fromHost;
|
|
}
|
|
var pair = mappings[mapName];
|
|
if (pair) {
|
|
var currMap = pair[toHostMap];
|
|
for (var th in currMap)
|
|
toHost[th] = currMap[th];
|
|
currMap = pair[fromHostMap];
|
|
for (var fh in currMap)
|
|
fromHost[fh] = currMap[fh];
|
|
}
|
|
else {
|
|
pair = mappings[mapName] = {};
|
|
}
|
|
pair[toHostMap] = toHost;
|
|
pair[fromHostMap] = fromHost;
|
|
};
|
|
this.toHost = function (mapName, preimage) { return applyMap(mapName, preimage, toHostMap); };
|
|
this.fromHost = function (mapName, image) { return applyMap(mapName, image, fromHostMap); };
|
|
this.self = self;
|
|
this.sourceData = sourceData;
|
|
this.addComplexType = function (ct) { specialProcessor.addComplexType(ct); };
|
|
this.getDynamicType = function (dt) { return specialProcessor.getDynamicType(dt); };
|
|
this.setDynamicType = function (dt, handler) { specialProcessor.setDynamicType(dt, handler); };
|
|
this.dynamicTypes = dynamicTypes;
|
|
this.doMapValues = function (preimageSet, mapping) { return mapValues(preimageSet, mapping); };
|
|
};
|
|
OSF.DDA.SpecialProcessor = function (complexTypes, dynamicTypes) {
|
|
this.addComplexType = function OSF_DDA_SpecialProcessor$addComplexType(ct) {
|
|
complexTypes.push(ct);
|
|
};
|
|
this.getDynamicType = function OSF_DDA_SpecialProcessor$getDynamicType(dt) {
|
|
return dynamicTypes[dt];
|
|
};
|
|
this.setDynamicType = function OSF_DDA_SpecialProcessor$setDynamicType(dt, handler) {
|
|
dynamicTypes[dt] = handler;
|
|
};
|
|
this.isComplexType = function OSF_DDA_SpecialProcessor$isComplexType(t) {
|
|
return OSF.OUtil.listContainsValue(complexTypes, t);
|
|
};
|
|
this.isDynamicType = function OSF_DDA_SpecialProcessor$isDynamicType(p) {
|
|
return OSF.OUtil.listContainsKey(dynamicTypes, p);
|
|
};
|
|
this.preserveNesting = function OSF_DDA_SpecialProcessor$preserveNesting(p) {
|
|
var pn = [];
|
|
if (OSF.DDA.PropertyDescriptors)
|
|
pn.push(OSF.DDA.PropertyDescriptors.Subset);
|
|
if (OSF.DDA.DataNodeEventProperties) {
|
|
pn = pn.concat([
|
|
OSF.DDA.DataNodeEventProperties.OldNode,
|
|
OSF.DDA.DataNodeEventProperties.NewNode,
|
|
OSF.DDA.DataNodeEventProperties.NextSiblingNode
|
|
]);
|
|
}
|
|
return OSF.OUtil.listContainsValue(pn, p);
|
|
};
|
|
this.pack = function OSF_DDA_SpecialProcessor$pack(param, arg) {
|
|
var value;
|
|
if (this.isDynamicType(param)) {
|
|
value = dynamicTypes[param].toHost(arg);
|
|
}
|
|
else {
|
|
value = arg;
|
|
}
|
|
return value;
|
|
};
|
|
this.unpack = function OSF_DDA_SpecialProcessor$unpack(param, arg) {
|
|
var value;
|
|
if (this.isDynamicType(param)) {
|
|
value = dynamicTypes[param].fromHost(arg);
|
|
}
|
|
else {
|
|
value = arg;
|
|
}
|
|
return value;
|
|
};
|
|
};
|
|
OSF.DDA.getDecoratedParameterMap = function (specialProcessor, initialDefs) {
|
|
var parameterMap = new OSF.DDA.HostParameterMap(specialProcessor);
|
|
var self = parameterMap.self;
|
|
function createObject(properties) {
|
|
var obj = null;
|
|
if (properties) {
|
|
obj = {};
|
|
var len = properties.length;
|
|
for (var i = 0; i < len; i++) {
|
|
obj[properties[i].name] = properties[i].value;
|
|
}
|
|
}
|
|
return obj;
|
|
}
|
|
parameterMap.define = function define(definition) {
|
|
var args = {};
|
|
var toHost = createObject(definition.toHost);
|
|
if (definition.invertible) {
|
|
args.map = toHost;
|
|
}
|
|
else if (definition.canonical) {
|
|
args.toHost = args.fromHost = toHost;
|
|
}
|
|
else {
|
|
args.toHost = toHost;
|
|
args.fromHost = createObject(definition.fromHost);
|
|
}
|
|
parameterMap.addMapping(definition.type, args);
|
|
if (definition.isComplexType)
|
|
parameterMap.addComplexType(definition.type);
|
|
};
|
|
for (var id in initialDefs)
|
|
parameterMap.define(initialDefs[id]);
|
|
return parameterMap;
|
|
};
|
|
OSF.OUtil.setNamespace("DispIdHost", OSF.DDA);
|
|
OSF.DDA.DispIdHost.Methods = {
|
|
InvokeMethod: "invokeMethod",
|
|
AddEventHandler: "addEventHandler",
|
|
RemoveEventHandler: "removeEventHandler",
|
|
OpenDialog: "openDialog",
|
|
CloseDialog: "closeDialog",
|
|
MessageParent: "messageParent",
|
|
SendMessage: "sendMessage"
|
|
};
|
|
OSF.DDA.DispIdHost.Delegates = {
|
|
ExecuteAsync: "executeAsync",
|
|
RegisterEventAsync: "registerEventAsync",
|
|
UnregisterEventAsync: "unregisterEventAsync",
|
|
ParameterMap: "parameterMap",
|
|
OpenDialog: "openDialog",
|
|
CloseDialog: "closeDialog",
|
|
MessageParent: "messageParent",
|
|
SendMessage: "sendMessage"
|
|
};
|
|
OSF.DDA.DispIdHost.Facade = function OSF_DDA_DispIdHost_Facade(getDelegateMethods, parameterMap) {
|
|
var dispIdMap = {};
|
|
var jsom = OSF.DDA.AsyncMethodNames;
|
|
var did = OSF.DDA.MethodDispId;
|
|
var methodMap = {
|
|
"GoToByIdAsync": did.dispidNavigateToMethod,
|
|
"GetSelectedDataAsync": did.dispidGetSelectedDataMethod,
|
|
"SetSelectedDataAsync": did.dispidSetSelectedDataMethod,
|
|
"GetDocumentCopyChunkAsync": did.dispidGetDocumentCopyChunkMethod,
|
|
"ReleaseDocumentCopyAsync": did.dispidReleaseDocumentCopyMethod,
|
|
"GetDocumentCopyAsync": did.dispidGetDocumentCopyMethod,
|
|
"AddFromSelectionAsync": did.dispidAddBindingFromSelectionMethod,
|
|
"AddFromPromptAsync": did.dispidAddBindingFromPromptMethod,
|
|
"AddFromNamedItemAsync": did.dispidAddBindingFromNamedItemMethod,
|
|
"GetAllAsync": did.dispidGetAllBindingsMethod,
|
|
"GetByIdAsync": did.dispidGetBindingMethod,
|
|
"ReleaseByIdAsync": did.dispidReleaseBindingMethod,
|
|
"GetDataAsync": did.dispidGetBindingDataMethod,
|
|
"SetDataAsync": did.dispidSetBindingDataMethod,
|
|
"AddRowsAsync": did.dispidAddRowsMethod,
|
|
"AddColumnsAsync": did.dispidAddColumnsMethod,
|
|
"DeleteAllDataValuesAsync": did.dispidClearAllRowsMethod,
|
|
"RefreshAsync": did.dispidLoadSettingsMethod,
|
|
"SaveAsync": did.dispidSaveSettingsMethod,
|
|
"GetActiveViewAsync": did.dispidGetActiveViewMethod,
|
|
"GetFilePropertiesAsync": did.dispidGetFilePropertiesMethod,
|
|
"GetOfficeThemeAsync": did.dispidGetOfficeThemeMethod,
|
|
"GetDocumentThemeAsync": did.dispidGetDocumentThemeMethod,
|
|
"ClearFormatsAsync": did.dispidClearFormatsMethod,
|
|
"SetTableOptionsAsync": did.dispidSetTableOptionsMethod,
|
|
"SetFormatsAsync": did.dispidSetFormatsMethod,
|
|
"GetAccessTokenAsync": did.dispidGetAccessTokenMethod,
|
|
"GetAuthContextAsync": did.dispidGetAuthContextMethod,
|
|
"ExecuteRichApiRequestAsync": did.dispidExecuteRichApiRequestMethod,
|
|
"AppCommandInvocationCompletedAsync": did.dispidAppCommandInvocationCompletedMethod,
|
|
"CloseContainerAsync": did.dispidCloseContainerMethod,
|
|
"OpenBrowserWindow": did.dispidOpenBrowserWindow,
|
|
"CreateDocumentAsync": did.dispidCreateDocumentMethod,
|
|
"InsertFormAsync": did.dispidInsertFormMethod,
|
|
"ExecuteFeature": did.dispidExecuteFeature,
|
|
"QueryFeature": did.dispidQueryFeature,
|
|
"AddDataPartAsync": did.dispidAddDataPartMethod,
|
|
"GetDataPartByIdAsync": did.dispidGetDataPartByIdMethod,
|
|
"GetDataPartsByNameSpaceAsync": did.dispidGetDataPartsByNamespaceMethod,
|
|
"GetPartXmlAsync": did.dispidGetDataPartXmlMethod,
|
|
"GetPartNodesAsync": did.dispidGetDataPartNodesMethod,
|
|
"DeleteDataPartAsync": did.dispidDeleteDataPartMethod,
|
|
"GetNodeValueAsync": did.dispidGetDataNodeValueMethod,
|
|
"GetNodeXmlAsync": did.dispidGetDataNodeXmlMethod,
|
|
"GetRelativeNodesAsync": did.dispidGetDataNodesMethod,
|
|
"SetNodeValueAsync": did.dispidSetDataNodeValueMethod,
|
|
"SetNodeXmlAsync": did.dispidSetDataNodeXmlMethod,
|
|
"AddDataPartNamespaceAsync": did.dispidAddDataNamespaceMethod,
|
|
"GetDataPartNamespaceAsync": did.dispidGetDataUriByPrefixMethod,
|
|
"GetDataPartPrefixAsync": did.dispidGetDataPrefixByUriMethod,
|
|
"GetNodeTextAsync": did.dispidGetDataNodeTextMethod,
|
|
"SetNodeTextAsync": did.dispidSetDataNodeTextMethod,
|
|
"GetSelectedTask": did.dispidGetSelectedTaskMethod,
|
|
"GetTask": did.dispidGetTaskMethod,
|
|
"GetWSSUrl": did.dispidGetWSSUrlMethod,
|
|
"GetTaskField": did.dispidGetTaskFieldMethod,
|
|
"GetSelectedResource": did.dispidGetSelectedResourceMethod,
|
|
"GetResourceField": did.dispidGetResourceFieldMethod,
|
|
"GetProjectField": did.dispidGetProjectFieldMethod,
|
|
"GetSelectedView": did.dispidGetSelectedViewMethod,
|
|
"GetTaskByIndex": did.dispidGetTaskByIndexMethod,
|
|
"GetResourceByIndex": did.dispidGetResourceByIndexMethod,
|
|
"SetTaskField": did.dispidSetTaskFieldMethod,
|
|
"SetResourceField": did.dispidSetResourceFieldMethod,
|
|
"GetMaxTaskIndex": did.dispidGetMaxTaskIndexMethod,
|
|
"GetMaxResourceIndex": did.dispidGetMaxResourceIndexMethod,
|
|
"CreateTask": did.dispidCreateTaskMethod
|
|
};
|
|
for (var method in methodMap) {
|
|
if (jsom[method]) {
|
|
dispIdMap[jsom[method].id] = methodMap[method];
|
|
}
|
|
}
|
|
jsom = OSF.DDA.SyncMethodNames;
|
|
did = OSF.DDA.MethodDispId;
|
|
var syncMethodMap = {
|
|
"MessageParent": did.dispidMessageParentMethod,
|
|
"SendMessage": did.dispidSendMessageMethod
|
|
};
|
|
for (var method in syncMethodMap) {
|
|
if (jsom[method]) {
|
|
dispIdMap[jsom[method].id] = syncMethodMap[method];
|
|
}
|
|
}
|
|
jsom = Microsoft.Office.WebExtension.EventType;
|
|
did = OSF.DDA.EventDispId;
|
|
var eventMap = {
|
|
"SettingsChanged": did.dispidSettingsChangedEvent,
|
|
"DocumentSelectionChanged": did.dispidDocumentSelectionChangedEvent,
|
|
"BindingSelectionChanged": did.dispidBindingSelectionChangedEvent,
|
|
"BindingDataChanged": did.dispidBindingDataChangedEvent,
|
|
"ActiveViewChanged": did.dispidActiveViewChangedEvent,
|
|
"OfficeThemeChanged": did.dispidOfficeThemeChangedEvent,
|
|
"DocumentThemeChanged": did.dispidDocumentThemeChangedEvent,
|
|
"AppCommandInvoked": did.dispidAppCommandInvokedEvent,
|
|
"DialogMessageReceived": did.dispidDialogMessageReceivedEvent,
|
|
"DialogParentMessageReceived": did.dispidDialogParentMessageReceivedEvent,
|
|
"ObjectDeleted": did.dispidObjectDeletedEvent,
|
|
"ObjectSelectionChanged": did.dispidObjectSelectionChangedEvent,
|
|
"ObjectDataChanged": did.dispidObjectDataChangedEvent,
|
|
"ContentControlAdded": did.dispidContentControlAddedEvent,
|
|
"RichApiMessage": did.dispidRichApiMessageEvent,
|
|
"ItemChanged": did.dispidOlkItemSelectedChangedEvent,
|
|
"RecipientsChanged": did.dispidOlkRecipientsChangedEvent,
|
|
"AppointmentTimeChanged": did.dispidOlkAppointmentTimeChangedEvent,
|
|
"RecurrenceChanged": did.dispidOlkRecurrenceChangedEvent,
|
|
"AttachmentsChanged": did.dispidOlkAttachmentsChangedEvent,
|
|
"EnhancedLocationsChanged": did.dispidOlkEnhancedLocationsChangedEvent,
|
|
"InfobarClicked": did.dispidOlkInfobarClickedEvent,
|
|
"TaskSelectionChanged": did.dispidTaskSelectionChangedEvent,
|
|
"ResourceSelectionChanged": did.dispidResourceSelectionChangedEvent,
|
|
"ViewSelectionChanged": did.dispidViewSelectionChangedEvent,
|
|
"DataNodeInserted": did.dispidDataNodeAddedEvent,
|
|
"DataNodeReplaced": did.dispidDataNodeReplacedEvent,
|
|
"DataNodeDeleted": did.dispidDataNodeDeletedEvent
|
|
};
|
|
for (var event in eventMap) {
|
|
if (jsom[event]) {
|
|
dispIdMap[jsom[event]] = eventMap[event];
|
|
}
|
|
}
|
|
function IsObjectEvent(dispId) {
|
|
return (dispId == OSF.DDA.EventDispId.dispidObjectDeletedEvent ||
|
|
dispId == OSF.DDA.EventDispId.dispidObjectSelectionChangedEvent ||
|
|
dispId == OSF.DDA.EventDispId.dispidObjectDataChangedEvent ||
|
|
dispId == OSF.DDA.EventDispId.dispidContentControlAddedEvent);
|
|
}
|
|
function onException(ex, asyncMethodCall, suppliedArgs, callArgs) {
|
|
if (typeof ex == "number") {
|
|
if (!callArgs) {
|
|
callArgs = asyncMethodCall.getCallArgs(suppliedArgs);
|
|
}
|
|
OSF.DDA.issueAsyncResult(callArgs, ex, OSF.DDA.ErrorCodeManager.getErrorArgs(ex));
|
|
}
|
|
else {
|
|
throw ex;
|
|
}
|
|
}
|
|
;
|
|
this[OSF.DDA.DispIdHost.Methods.InvokeMethod] = function OSF_DDA_DispIdHost_Facade$InvokeMethod(method, suppliedArguments, caller, privateState) {
|
|
var callArgs;
|
|
try {
|
|
var methodName = method.id;
|
|
var asyncMethodCall = OSF.DDA.AsyncMethodCalls[methodName];
|
|
callArgs = asyncMethodCall.verifyAndExtractCall(suppliedArguments, caller, privateState);
|
|
var dispId = dispIdMap[methodName];
|
|
var delegate = getDelegateMethods(methodName);
|
|
var richApiInExcelMethodSubstitution = null;
|
|
if (window.Excel && window.Office.context.requirements.isSetSupported("RedirectV1Api")) {
|
|
window.Excel._RedirectV1APIs = true;
|
|
}
|
|
if (window.Excel && window.Excel._RedirectV1APIs && (richApiInExcelMethodSubstitution = window.Excel._V1APIMap[methodName])) {
|
|
var preprocessedCallArgs = OSF.OUtil.shallowCopy(callArgs);
|
|
delete preprocessedCallArgs[Microsoft.Office.WebExtension.Parameters.AsyncContext];
|
|
if (richApiInExcelMethodSubstitution.preprocess) {
|
|
preprocessedCallArgs = richApiInExcelMethodSubstitution.preprocess(preprocessedCallArgs);
|
|
}
|
|
var ctx = new window.Excel.RequestContext();
|
|
var result = richApiInExcelMethodSubstitution.call(ctx, preprocessedCallArgs);
|
|
ctx.sync()
|
|
.then(function () {
|
|
var response = result.value;
|
|
var status = response.status;
|
|
delete response["status"];
|
|
delete response["@odata.type"];
|
|
if (richApiInExcelMethodSubstitution.postprocess) {
|
|
response = richApiInExcelMethodSubstitution.postprocess(response, preprocessedCallArgs);
|
|
}
|
|
if (status != 0) {
|
|
response = OSF.DDA.ErrorCodeManager.getErrorArgs(status);
|
|
}
|
|
OSF.DDA.issueAsyncResult(callArgs, status, response);
|
|
})["catch"](function (error) {
|
|
OSF.DDA.issueAsyncResult(callArgs, OSF.DDA.ErrorCodeManager.errorCodes.ooeFailure, null);
|
|
});
|
|
}
|
|
else {
|
|
var hostCallArgs;
|
|
if (parameterMap.toHost) {
|
|
hostCallArgs = parameterMap.toHost(dispId, callArgs);
|
|
}
|
|
else {
|
|
hostCallArgs = callArgs;
|
|
}
|
|
var startTime = (new Date()).getTime();
|
|
delegate[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]({
|
|
"dispId": dispId,
|
|
"hostCallArgs": hostCallArgs,
|
|
"onCalling": function OSF_DDA_DispIdFacade$Execute_onCalling() { },
|
|
"onReceiving": function OSF_DDA_DispIdFacade$Execute_onReceiving() { },
|
|
"onComplete": function (status, hostResponseArgs) {
|
|
var responseArgs;
|
|
if (status == OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
if (parameterMap.fromHost) {
|
|
responseArgs = parameterMap.fromHost(dispId, hostResponseArgs);
|
|
}
|
|
else {
|
|
responseArgs = hostResponseArgs;
|
|
}
|
|
}
|
|
else {
|
|
responseArgs = hostResponseArgs;
|
|
}
|
|
var payload = asyncMethodCall.processResponse(status, responseArgs, caller, callArgs);
|
|
OSF.DDA.issueAsyncResult(callArgs, status, payload);
|
|
if (OSF.AppTelemetry && !(OSF.ConstantNames && OSF.ConstantNames.IsCustomFunctionsRuntime)) {
|
|
OSF.AppTelemetry.onMethodDone(dispId, hostCallArgs, Math.abs((new Date()).getTime() - startTime), status);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
catch (ex) {
|
|
onException(ex, asyncMethodCall, suppliedArguments, callArgs);
|
|
}
|
|
};
|
|
this[OSF.DDA.DispIdHost.Methods.AddEventHandler] = function OSF_DDA_DispIdHost_Facade$AddEventHandler(suppliedArguments, eventDispatch, caller, isPopupWindow) {
|
|
var callArgs;
|
|
var eventType, handler;
|
|
var isObjectEvent = false;
|
|
function onEnsureRegistration(status) {
|
|
if (status == OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
var added = !isObjectEvent ? eventDispatch.addEventHandler(eventType, handler) :
|
|
eventDispatch.addObjectEventHandler(eventType, callArgs[Microsoft.Office.WebExtension.Parameters.Id], handler);
|
|
if (!added) {
|
|
status = OSF.DDA.ErrorCodeManager.errorCodes.ooeEventHandlerAdditionFailed;
|
|
}
|
|
}
|
|
var error;
|
|
if (status != OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
error = OSF.DDA.ErrorCodeManager.getErrorArgs(status);
|
|
}
|
|
OSF.DDA.issueAsyncResult(callArgs, status, error);
|
|
}
|
|
try {
|
|
var asyncMethodCall = OSF.DDA.AsyncMethodCalls[OSF.DDA.AsyncMethodNames.AddHandlerAsync.id];
|
|
callArgs = asyncMethodCall.verifyAndExtractCall(suppliedArguments, caller, eventDispatch);
|
|
eventType = callArgs[Microsoft.Office.WebExtension.Parameters.EventType];
|
|
handler = callArgs[Microsoft.Office.WebExtension.Parameters.Handler];
|
|
if (isPopupWindow) {
|
|
onEnsureRegistration(OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess);
|
|
return;
|
|
}
|
|
var dispId_1 = dispIdMap[eventType];
|
|
isObjectEvent = IsObjectEvent(dispId_1);
|
|
var targetId_1 = (isObjectEvent ? callArgs[Microsoft.Office.WebExtension.Parameters.Id] : (caller.id || ""));
|
|
var count = isObjectEvent ? eventDispatch.getObjectEventHandlerCount(eventType, targetId_1) : eventDispatch.getEventHandlerCount(eventType);
|
|
if (count == 0) {
|
|
var invoker = getDelegateMethods(eventType)[OSF.DDA.DispIdHost.Delegates.RegisterEventAsync];
|
|
invoker({
|
|
"eventType": eventType,
|
|
"dispId": dispId_1,
|
|
"targetId": targetId_1,
|
|
"onCalling": function OSF_DDA_DispIdFacade$Execute_onCalling() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.IssueCall); },
|
|
"onReceiving": function OSF_DDA_DispIdFacade$Execute_onReceiving() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.ReceiveResponse); },
|
|
"onComplete": onEnsureRegistration,
|
|
"onEvent": function handleEvent(hostArgs) {
|
|
var args = parameterMap.fromHost(dispId_1, hostArgs);
|
|
if (!isObjectEvent)
|
|
eventDispatch.fireEvent(OSF.DDA.OMFactory.manufactureEventArgs(eventType, caller, args));
|
|
else
|
|
eventDispatch.fireObjectEvent(targetId_1, OSF.DDA.OMFactory.manufactureEventArgs(eventType, targetId_1, args));
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
onEnsureRegistration(OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess);
|
|
}
|
|
}
|
|
catch (ex) {
|
|
onException(ex, asyncMethodCall, suppliedArguments, callArgs);
|
|
}
|
|
};
|
|
this[OSF.DDA.DispIdHost.Methods.RemoveEventHandler] = function OSF_DDA_DispIdHost_Facade$RemoveEventHandler(suppliedArguments, eventDispatch, caller) {
|
|
var callArgs;
|
|
var eventType, handler;
|
|
var isObjectEvent = false;
|
|
function onEnsureRegistration(status) {
|
|
var error;
|
|
if (status != OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
error = OSF.DDA.ErrorCodeManager.getErrorArgs(status);
|
|
}
|
|
OSF.DDA.issueAsyncResult(callArgs, status, error);
|
|
}
|
|
try {
|
|
var asyncMethodCall = OSF.DDA.AsyncMethodCalls[OSF.DDA.AsyncMethodNames.RemoveHandlerAsync.id];
|
|
callArgs = asyncMethodCall.verifyAndExtractCall(suppliedArguments, caller, eventDispatch);
|
|
eventType = callArgs[Microsoft.Office.WebExtension.Parameters.EventType];
|
|
handler = callArgs[Microsoft.Office.WebExtension.Parameters.Handler];
|
|
var dispId = dispIdMap[eventType];
|
|
isObjectEvent = IsObjectEvent(dispId);
|
|
var targetId = (isObjectEvent ? callArgs[Microsoft.Office.WebExtension.Parameters.Id] : (caller.id || ""));
|
|
var status, removeSuccess;
|
|
if (handler === null) {
|
|
removeSuccess = isObjectEvent ? eventDispatch.clearObjectEventHandlers(eventType, targetId) : eventDispatch.clearEventHandlers(eventType);
|
|
status = OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess;
|
|
}
|
|
else {
|
|
removeSuccess = isObjectEvent ? eventDispatch.removeObjectEventHandler(eventType, targetId, handler) : eventDispatch.removeEventHandler(eventType, handler);
|
|
status = removeSuccess ? OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess : OSF.DDA.ErrorCodeManager.errorCodes.ooeEventHandlerNotExist;
|
|
}
|
|
var count = isObjectEvent ? eventDispatch.getObjectEventHandlerCount(eventType, targetId) : eventDispatch.getEventHandlerCount(eventType);
|
|
if (removeSuccess && count == 0) {
|
|
var invoker = getDelegateMethods(eventType)[OSF.DDA.DispIdHost.Delegates.UnregisterEventAsync];
|
|
invoker({
|
|
"eventType": eventType,
|
|
"dispId": dispId,
|
|
"targetId": targetId,
|
|
"onCalling": function OSF_DDA_DispIdFacade$Execute_onCalling() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.IssueCall); },
|
|
"onReceiving": function OSF_DDA_DispIdFacade$Execute_onReceiving() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.ReceiveResponse); },
|
|
"onComplete": onEnsureRegistration
|
|
});
|
|
}
|
|
else {
|
|
onEnsureRegistration(status);
|
|
}
|
|
}
|
|
catch (ex) {
|
|
onException(ex, asyncMethodCall, suppliedArguments, callArgs);
|
|
}
|
|
};
|
|
this[OSF.DDA.DispIdHost.Methods.OpenDialog] = function OSF_DDA_DispIdHost_Facade$OpenDialog(suppliedArguments, eventDispatch, caller) {
|
|
var callArgs;
|
|
var targetId;
|
|
var dialogMessageEvent = Microsoft.Office.WebExtension.EventType.DialogMessageReceived;
|
|
var dialogOtherEvent = Microsoft.Office.WebExtension.EventType.DialogEventReceived;
|
|
function onEnsureRegistration(status) {
|
|
var payload;
|
|
if (status != OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
payload = OSF.DDA.ErrorCodeManager.getErrorArgs(status);
|
|
}
|
|
else {
|
|
var onSucceedArgs = {};
|
|
onSucceedArgs[Microsoft.Office.WebExtension.Parameters.Id] = targetId;
|
|
onSucceedArgs[Microsoft.Office.WebExtension.Parameters.Data] = eventDispatch;
|
|
var payload = asyncMethodCall.processResponse(status, onSucceedArgs, caller, callArgs);
|
|
OSF.DialogShownStatus.hasDialogShown = true;
|
|
eventDispatch.clearEventHandlers(dialogMessageEvent);
|
|
eventDispatch.clearEventHandlers(dialogOtherEvent);
|
|
}
|
|
OSF.DDA.issueAsyncResult(callArgs, status, payload);
|
|
}
|
|
try {
|
|
if (dialogMessageEvent == undefined || dialogOtherEvent == undefined) {
|
|
onEnsureRegistration(OSF.DDA.ErrorCodeManager.ooeOperationNotSupported);
|
|
}
|
|
if (OSF.DDA.AsyncMethodNames.DisplayDialogAsync == null) {
|
|
onEnsureRegistration(OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError);
|
|
return;
|
|
}
|
|
var asyncMethodCall = OSF.DDA.AsyncMethodCalls[OSF.DDA.AsyncMethodNames.DisplayDialogAsync.id];
|
|
callArgs = asyncMethodCall.verifyAndExtractCall(suppliedArguments, caller, eventDispatch);
|
|
var dispId = dispIdMap[dialogMessageEvent];
|
|
var delegateMethods = getDelegateMethods(dialogMessageEvent);
|
|
var invoker = delegateMethods[OSF.DDA.DispIdHost.Delegates.OpenDialog] != undefined ?
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.OpenDialog] :
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.RegisterEventAsync];
|
|
targetId = JSON.stringify(callArgs);
|
|
if (!OSF.DialogShownStatus.hasDialogShown) {
|
|
eventDispatch.clearQueuedEvent(dialogMessageEvent);
|
|
eventDispatch.clearQueuedEvent(dialogOtherEvent);
|
|
eventDispatch.clearQueuedEvent(Microsoft.Office.WebExtension.EventType.DialogParentMessageReceived);
|
|
}
|
|
invoker({
|
|
"eventType": dialogMessageEvent,
|
|
"dispId": dispId,
|
|
"targetId": targetId,
|
|
"onCalling": function OSF_DDA_DispIdFacade$Execute_onCalling() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.IssueCall); },
|
|
"onReceiving": function OSF_DDA_DispIdFacade$Execute_onReceiving() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.ReceiveResponse); },
|
|
"onComplete": onEnsureRegistration,
|
|
"onEvent": function handleEvent(hostArgs) {
|
|
var args = parameterMap.fromHost(dispId, hostArgs);
|
|
var event = OSF.DDA.OMFactory.manufactureEventArgs(dialogMessageEvent, caller, args);
|
|
if (event.type == dialogOtherEvent) {
|
|
var payload = OSF.DDA.ErrorCodeManager.getErrorArgs(event.error);
|
|
var errorArgs = {};
|
|
errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Code] = status || OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;
|
|
errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Name] = payload.name || payload;
|
|
errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Message] = payload.message || payload;
|
|
event.error = new OSF.DDA.Error(errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Name], errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Message], errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Code]);
|
|
}
|
|
eventDispatch.fireOrQueueEvent(event);
|
|
if (args[OSF.DDA.PropertyDescriptors.MessageType] == OSF.DialogMessageType.DialogClosed) {
|
|
eventDispatch.clearEventHandlers(dialogMessageEvent);
|
|
eventDispatch.clearEventHandlers(dialogOtherEvent);
|
|
eventDispatch.clearEventHandlers(Microsoft.Office.WebExtension.EventType.DialogParentMessageReceived);
|
|
OSF.DialogShownStatus.hasDialogShown = false;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
catch (ex) {
|
|
onException(ex, asyncMethodCall, suppliedArguments, callArgs);
|
|
}
|
|
};
|
|
this[OSF.DDA.DispIdHost.Methods.CloseDialog] = function OSF_DDA_DispIdHost_Facade$CloseDialog(suppliedArguments, targetId, eventDispatch, caller) {
|
|
var callArgs;
|
|
var dialogMessageEvent, dialogOtherEvent;
|
|
var closeStatus = OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess;
|
|
function closeCallback(status) {
|
|
closeStatus = status;
|
|
OSF.DialogShownStatus.hasDialogShown = false;
|
|
}
|
|
try {
|
|
var asyncMethodCall = OSF.DDA.AsyncMethodCalls[OSF.DDA.AsyncMethodNames.CloseAsync.id];
|
|
callArgs = asyncMethodCall.verifyAndExtractCall(suppliedArguments, caller, eventDispatch);
|
|
dialogMessageEvent = Microsoft.Office.WebExtension.EventType.DialogMessageReceived;
|
|
dialogOtherEvent = Microsoft.Office.WebExtension.EventType.DialogEventReceived;
|
|
eventDispatch.clearEventHandlers(dialogMessageEvent);
|
|
eventDispatch.clearEventHandlers(dialogOtherEvent);
|
|
var dispId = dispIdMap[dialogMessageEvent];
|
|
var delegateMethods = getDelegateMethods(dialogMessageEvent);
|
|
var invoker = delegateMethods[OSF.DDA.DispIdHost.Delegates.CloseDialog] != undefined ?
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.CloseDialog] :
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.UnregisterEventAsync];
|
|
invoker({
|
|
"eventType": dialogMessageEvent,
|
|
"dispId": dispId,
|
|
"targetId": targetId,
|
|
"onCalling": function OSF_DDA_DispIdFacade$Execute_onCalling() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.IssueCall); },
|
|
"onReceiving": function OSF_DDA_DispIdFacade$Execute_onReceiving() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.ReceiveResponse); },
|
|
"onComplete": closeCallback
|
|
});
|
|
}
|
|
catch (ex) {
|
|
onException(ex, asyncMethodCall, suppliedArguments, callArgs);
|
|
}
|
|
if (closeStatus != OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
throw OSF.OUtil.formatString(Strings.OfficeOM.L_FunctionCallFailed, OSF.DDA.AsyncMethodNames.CloseAsync.displayName, closeStatus);
|
|
}
|
|
};
|
|
this[OSF.DDA.DispIdHost.Methods.MessageParent] = function OSF_DDA_DispIdHost_Facade$MessageParent(suppliedArguments, caller) {
|
|
var stateInfo = {};
|
|
var syncMethodCall = OSF.DDA.SyncMethodCalls[OSF.DDA.SyncMethodNames.MessageParent.id];
|
|
var callArgs = syncMethodCall.verifyAndExtractCall(suppliedArguments, caller, stateInfo);
|
|
var delegate = getDelegateMethods(OSF.DDA.SyncMethodNames.MessageParent.id);
|
|
var invoker = delegate[OSF.DDA.DispIdHost.Delegates.MessageParent];
|
|
var dispId = dispIdMap[OSF.DDA.SyncMethodNames.MessageParent.id];
|
|
return invoker({
|
|
"dispId": dispId,
|
|
"hostCallArgs": callArgs,
|
|
"onCalling": function OSF_DDA_DispIdFacade$Execute_onCalling() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.IssueCall); },
|
|
"onReceiving": function OSF_DDA_DispIdFacade$Execute_onReceiving() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.ReceiveResponse); }
|
|
});
|
|
};
|
|
this[OSF.DDA.DispIdHost.Methods.SendMessage] = function OSF_DDA_DispIdHost_Facade$SendMessage(suppliedArguments, eventDispatch, caller) {
|
|
var stateInfo = {};
|
|
var syncMethodCall = OSF.DDA.SyncMethodCalls[OSF.DDA.SyncMethodNames.SendMessage.id];
|
|
var callArgs = syncMethodCall.verifyAndExtractCall(suppliedArguments, caller, stateInfo);
|
|
var delegate = getDelegateMethods(OSF.DDA.SyncMethodNames.SendMessage.id);
|
|
var invoker = delegate[OSF.DDA.DispIdHost.Delegates.SendMessage];
|
|
var dispId = dispIdMap[OSF.DDA.SyncMethodNames.SendMessage.id];
|
|
return invoker({
|
|
"dispId": dispId,
|
|
"hostCallArgs": callArgs,
|
|
"onCalling": function OSF_DDA_DispIdFacade$Execute_onCalling() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.IssueCall); },
|
|
"onReceiving": function OSF_DDA_DispIdFacade$Execute_onReceiving() { OSF.OUtil.writeProfilerMark(OSF.HostCallPerfMarker.ReceiveResponse); }
|
|
});
|
|
};
|
|
};
|
|
OSF.DDA.DispIdHost.addAsyncMethods = function OSF_DDA_DispIdHost$AddAsyncMethods(target, asyncMethodNames, privateState) {
|
|
for (var entry in asyncMethodNames) {
|
|
var method = asyncMethodNames[entry];
|
|
var name = method.displayName;
|
|
if (!target[name]) {
|
|
OSF.OUtil.defineEnumerableProperty(target, name, {
|
|
value: (function (asyncMethod) {
|
|
return function () {
|
|
var invokeMethod = OSF._OfficeAppFactory.getHostFacade()[OSF.DDA.DispIdHost.Methods.InvokeMethod];
|
|
invokeMethod(asyncMethod, arguments, target, privateState);
|
|
};
|
|
})(method)
|
|
});
|
|
}
|
|
}
|
|
};
|
|
OSF.DDA.DispIdHost.addEventSupport = function OSF_DDA_DispIdHost$AddEventSupport(target, eventDispatch, isPopupWindow) {
|
|
var add = OSF.DDA.AsyncMethodNames.AddHandlerAsync.displayName;
|
|
var remove = OSF.DDA.AsyncMethodNames.RemoveHandlerAsync.displayName;
|
|
if (!target[add]) {
|
|
OSF.OUtil.defineEnumerableProperty(target, add, {
|
|
value: function () {
|
|
var addEventHandler = OSF._OfficeAppFactory.getHostFacade()[OSF.DDA.DispIdHost.Methods.AddEventHandler];
|
|
addEventHandler(arguments, eventDispatch, target, isPopupWindow);
|
|
}
|
|
});
|
|
}
|
|
if (!target[remove]) {
|
|
OSF.OUtil.defineEnumerableProperty(target, remove, {
|
|
value: function () {
|
|
var removeEventHandler = OSF._OfficeAppFactory.getHostFacade()[OSF.DDA.DispIdHost.Methods.RemoveEventHandler];
|
|
removeEventHandler(arguments, eventDispatch, target);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
OSF.ShowWindowDialogParameterKeys = {
|
|
Url: "url",
|
|
Width: "width",
|
|
Height: "height",
|
|
DisplayInIframe: "displayInIframe",
|
|
HideTitle: "hideTitle",
|
|
UseDeviceIndependentPixels: "useDeviceIndependentPixels",
|
|
PromptBeforeOpen: "promptBeforeOpen",
|
|
EnforceAppDomain: "enforceAppDomain",
|
|
UrlNoHostInfo: "urlNoHostInfo"
|
|
};
|
|
OSF.HostThemeButtonStyleKeys = {
|
|
ButtonBorderColor: "buttonBorderColor",
|
|
ButtonBackgroundColor: "buttonBackgroundColor"
|
|
};
|
|
OSF.OmexPageParameterKeys = {
|
|
AppName: "client",
|
|
AppVersion: "cv",
|
|
AppUILocale: "ui",
|
|
AppDomain: "appDomain",
|
|
StoreLocator: "rs",
|
|
AssetId: "assetid",
|
|
NotificationType: "notificationType",
|
|
AppCorrelationId: "corr",
|
|
AuthType: "authType",
|
|
AppId: "appid",
|
|
Scopes: "scopes"
|
|
};
|
|
OSF.AuthType = {
|
|
Anonymous: 0,
|
|
MSA: 1,
|
|
OrgId: 2,
|
|
ADAL: 3
|
|
};
|
|
OSF.OmexMessageKeys = {
|
|
MessageType: "messageType",
|
|
MessageValue: "messageValue"
|
|
};
|
|
OSF.OmexRemoveAddinMessageKeys = {
|
|
RemoveAddinResultCode: "resultCode",
|
|
RemoveAddinResultValue: "resultValue"
|
|
};
|
|
OSF.OmexRemoveAddinResultCode = {
|
|
Success: 0,
|
|
ClientError: 400,
|
|
ServerError: 500,
|
|
UnknownError: 600
|
|
};
|
|
(function (OfficeExt) {
|
|
var WACUtils;
|
|
(function (WACUtils) {
|
|
var _trustedDomain = "^https:\/\/[a-z0-9-]+\.(officeapps\.live|officeapps-df\.live|partner\.officewebapps)\.com\/";
|
|
function parseAppContextFromWindowName(skipSessionStorage, windowName) {
|
|
return OSF.OUtil.parseInfoFromWindowName(skipSessionStorage, windowName, OSF.WindowNameItemKeys.AppContext);
|
|
}
|
|
WACUtils.parseAppContextFromWindowName = parseAppContextFromWindowName;
|
|
function serializeObjectToString(obj) {
|
|
if (typeof (JSON) !== "undefined") {
|
|
try {
|
|
return JSON.stringify(obj);
|
|
}
|
|
catch (ex) {
|
|
}
|
|
}
|
|
return "";
|
|
}
|
|
WACUtils.serializeObjectToString = serializeObjectToString;
|
|
function isHostTrusted() {
|
|
return (new RegExp(_trustedDomain)).test(OSF.getClientEndPoint()._targetUrl.toLowerCase());
|
|
}
|
|
WACUtils.isHostTrusted = isHostTrusted;
|
|
function addHostInfoAsQueryParam(url, hostInfoValue) {
|
|
if (!url) {
|
|
return null;
|
|
}
|
|
url = url.trim() || '';
|
|
var questionMark = "?";
|
|
var hostInfo = "_host_Info=";
|
|
var ampHostInfo = "&_host_Info=";
|
|
var fragmentSeparator = "#";
|
|
var urlParts = url.split(fragmentSeparator);
|
|
var urlWithoutFragment = urlParts.shift();
|
|
var fragment = urlParts.join(fragmentSeparator);
|
|
var querySplits = urlWithoutFragment.split(questionMark);
|
|
var urlWithoutFragmentWithHostInfo;
|
|
if (querySplits.length > 1) {
|
|
urlWithoutFragmentWithHostInfo = urlWithoutFragment + ampHostInfo + hostInfoValue;
|
|
}
|
|
else if (querySplits.length > 0) {
|
|
urlWithoutFragmentWithHostInfo = urlWithoutFragment + questionMark + hostInfo + hostInfoValue;
|
|
}
|
|
if (fragment) {
|
|
return [urlWithoutFragmentWithHostInfo, fragmentSeparator, fragment].join('');
|
|
}
|
|
else {
|
|
return urlWithoutFragmentWithHostInfo;
|
|
}
|
|
}
|
|
WACUtils.addHostInfoAsQueryParam = addHostInfoAsQueryParam;
|
|
function getDomainForUrl(url) {
|
|
if (!url) {
|
|
return null;
|
|
}
|
|
var url_parser = document.createElement('a');
|
|
url_parser.href = url;
|
|
return url_parser.protocol + "//" + url_parser.host;
|
|
}
|
|
WACUtils.getDomainForUrl = getDomainForUrl;
|
|
function shouldUseLocalStorageToPassMessage() {
|
|
try {
|
|
var osList = [
|
|
"Windows NT 6.1",
|
|
"Windows NT 6.2",
|
|
"Windows NT 6.3",
|
|
"Windows NT 10.0"
|
|
];
|
|
var userAgent = window.navigator.userAgent;
|
|
for (var i = 0, len = osList.length; i < len; i++) {
|
|
if (userAgent.indexOf(osList[i]) > -1) {
|
|
return isInternetExplorer();
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
catch (e) {
|
|
logExceptionToBrowserConsole("Error happens in shouldUseLocalStorageToPassMessage.", e);
|
|
return false;
|
|
}
|
|
}
|
|
WACUtils.shouldUseLocalStorageToPassMessage = shouldUseLocalStorageToPassMessage;
|
|
function isInternetExplorer() {
|
|
try {
|
|
var userAgent = window.navigator.userAgent;
|
|
return userAgent.indexOf("MSIE ") > -1 || userAgent.indexOf("Trident/") > -1 || userAgent.indexOf("Edge/") > -1;
|
|
}
|
|
catch (e) {
|
|
logExceptionToBrowserConsole("Error happens in isInternetExplorer.", e);
|
|
return false;
|
|
}
|
|
}
|
|
WACUtils.isInternetExplorer = isInternetExplorer;
|
|
function removeMatchesFromLocalStorage(regexPatterns) {
|
|
var _localStorage = OSF.OUtil.getLocalStorage();
|
|
var keys = _localStorage.getKeysWithPrefix("");
|
|
for (var i = 0, len = keys.length; i < len; i++) {
|
|
var key = keys[i];
|
|
for (var j = 0, lenRegex = regexPatterns.length; j < lenRegex; j++) {
|
|
if (regexPatterns[j].test(key)) {
|
|
_localStorage.removeItem(key);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
WACUtils.removeMatchesFromLocalStorage = removeMatchesFromLocalStorage;
|
|
function logExceptionToBrowserConsole(message, exception) {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace(message + " Exception details: " + serializeObjectToString(exception));
|
|
}
|
|
WACUtils.logExceptionToBrowserConsole = logExceptionToBrowserConsole;
|
|
function isTeamsWebView() {
|
|
var ua = navigator.userAgent;
|
|
return /Teams\/((?:(\d+)\.)?(?:(\d+)\.)?(?:(\d+)\.\d+)).* Electron\/((?:(\d+)\.)?(?:(\d+)\.)?(?:(\d+)\.\d+))/.test(ua);
|
|
}
|
|
WACUtils.isTeamsWebView = isTeamsWebView;
|
|
function getHostSecure(url) {
|
|
if (typeof url === "undefined" || !url) {
|
|
return undefined;
|
|
}
|
|
var host = undefined;
|
|
var httpsProtocol = "https:";
|
|
try {
|
|
var urlObj = new URL(url);
|
|
if (urlObj) {
|
|
host = urlObj.host;
|
|
}
|
|
if (!urlObj.protocol) {
|
|
throw "fallback";
|
|
}
|
|
else if (urlObj.protocol !== httpsProtocol) {
|
|
return undefined;
|
|
}
|
|
}
|
|
catch (ex) {
|
|
try {
|
|
var parser = document.createElement("a");
|
|
parser.href = url;
|
|
if (parser.protocol !== httpsProtocol) {
|
|
return undefined;
|
|
}
|
|
var match = url.match(new RegExp("^https://[^/?#]+", "i"));
|
|
var naiveMatch = (match && match.length == 1) ? match[0].toLowerCase() : "";
|
|
var parsedUrlWithoutPort = (parser.protocol + "//" + parser.hostname).toLowerCase();
|
|
var parsedUrlWithPort = (parser.protocol + "//" + parser.host).toLowerCase();
|
|
if (parsedUrlWithPort === naiveMatch || parsedUrlWithoutPort == naiveMatch) {
|
|
host = parser.port == "443" ? parser.hostname : parser.host;
|
|
}
|
|
}
|
|
catch (ex) {
|
|
return undefined;
|
|
}
|
|
}
|
|
return host ? host.toLowerCase() : undefined;
|
|
}
|
|
WACUtils.getHostSecure = getHostSecure;
|
|
var CacheConstants = (function () {
|
|
function CacheConstants() {
|
|
}
|
|
CacheConstants.GatedCacheKeyPrefix = "__OSF_GATED_OMEX.";
|
|
CacheConstants.AnonymousCacheKeyPrefix = "__OSF_ANONYMOUS_OMEX.";
|
|
CacheConstants.UngatedCacheKeyPrefix = "__OSF_OMEX.";
|
|
CacheConstants.ActivatedCacheKeyPrefix = "__OSF_RUNTIME_.Activated.";
|
|
CacheConstants.AppinstallAuthenticated = "appinstall_authenticated.";
|
|
CacheConstants.Entitlement = "entitle.";
|
|
CacheConstants.AppState = "appState.";
|
|
CacheConstants.AppDetails = "appDetails.";
|
|
CacheConstants.AppInstallInfo = "appInstallInfo.";
|
|
CacheConstants.AuthenticatedAppInstallInfoCacheKey = CacheConstants.GatedCacheKeyPrefix + CacheConstants.AppinstallAuthenticated + "{0}.{1}.{2}.{3}";
|
|
CacheConstants.EntitlementsKey = CacheConstants.Entitlement + "{0}.{1}";
|
|
CacheConstants.AppStateCacheKey = "{0}" + CacheConstants.AppState + "{1}.{2}";
|
|
CacheConstants.AppDetailKey = "{0}" + CacheConstants.AppDetails + "{1}";
|
|
CacheConstants.AppInstallInfoKey = "{0}" + CacheConstants.AppInstallInfo + "{1}.{2}";
|
|
CacheConstants.ActivatedCacheKey = CacheConstants.ActivatedCacheKeyPrefix + "{0}.{1}.{2}";
|
|
return CacheConstants;
|
|
}());
|
|
WACUtils.CacheConstants = CacheConstants;
|
|
})(WACUtils = OfficeExt.WACUtils || (OfficeExt.WACUtils = {}));
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
(function (OfficeExt) {
|
|
var MsAjaxTypeHelper = (function () {
|
|
function MsAjaxTypeHelper() {
|
|
}
|
|
MsAjaxTypeHelper.isInstanceOfType = function (type, instance) {
|
|
if (typeof (instance) === "undefined" || instance === null)
|
|
return false;
|
|
if (instance instanceof type)
|
|
return true;
|
|
var instanceType = instance.constructor;
|
|
if (!instanceType || (typeof (instanceType) !== "function") || !instanceType.__typeName || instanceType.__typeName === 'Object') {
|
|
instanceType = Object;
|
|
}
|
|
return !!(instanceType === type) ||
|
|
(instanceType.__typeName && type.__typeName && instanceType.__typeName === type.__typeName);
|
|
};
|
|
return MsAjaxTypeHelper;
|
|
}());
|
|
OfficeExt.MsAjaxTypeHelper = MsAjaxTypeHelper;
|
|
var MsAjaxError = (function () {
|
|
function MsAjaxError() {
|
|
}
|
|
MsAjaxError.create = function (message, errorInfo) {
|
|
var err = new Error(message);
|
|
err.message = message;
|
|
if (errorInfo) {
|
|
for (var v in errorInfo) {
|
|
err[v] = errorInfo[v];
|
|
}
|
|
}
|
|
err.popStackFrame();
|
|
return err;
|
|
};
|
|
MsAjaxError.parameterCount = function (message) {
|
|
var displayMessage = "Sys.ParameterCountException: " + (message ? message : "Parameter count mismatch.");
|
|
var err = MsAjaxError.create(displayMessage, { name: 'Sys.ParameterCountException' });
|
|
err.popStackFrame();
|
|
return err;
|
|
};
|
|
MsAjaxError.argument = function (paramName, message) {
|
|
var displayMessage = "Sys.ArgumentException: " + (message ? message : "Value does not fall within the expected range.");
|
|
if (paramName) {
|
|
displayMessage += "\n" + MsAjaxString.format("Parameter name: {0}", paramName);
|
|
}
|
|
var err = MsAjaxError.create(displayMessage, { name: "Sys.ArgumentException", paramName: paramName });
|
|
err.popStackFrame();
|
|
return err;
|
|
};
|
|
MsAjaxError.argumentNull = function (paramName, message) {
|
|
var displayMessage = "Sys.ArgumentNullException: " + (message ? message : "Value cannot be null.");
|
|
if (paramName) {
|
|
displayMessage += "\n" + MsAjaxString.format("Parameter name: {0}", paramName);
|
|
}
|
|
var err = MsAjaxError.create(displayMessage, { name: "Sys.ArgumentNullException", paramName: paramName });
|
|
err.popStackFrame();
|
|
return err;
|
|
};
|
|
MsAjaxError.argumentOutOfRange = function (paramName, actualValue, message) {
|
|
var displayMessage = "Sys.ArgumentOutOfRangeException: " + (message ? message : "Specified argument was out of the range of valid values.");
|
|
if (paramName) {
|
|
displayMessage += "\n" + MsAjaxString.format("Parameter name: {0}", paramName);
|
|
}
|
|
if (typeof (actualValue) !== "undefined" && actualValue !== null) {
|
|
displayMessage += "\n" + MsAjaxString.format("Actual value was {0}.", actualValue);
|
|
}
|
|
var err = MsAjaxError.create(displayMessage, {
|
|
name: "Sys.ArgumentOutOfRangeException",
|
|
paramName: paramName,
|
|
actualValue: actualValue
|
|
});
|
|
err.popStackFrame();
|
|
return err;
|
|
};
|
|
MsAjaxError.argumentType = function (paramName, actualType, expectedType, message) {
|
|
var displayMessage = "Sys.ArgumentTypeException: ";
|
|
if (message) {
|
|
displayMessage += message;
|
|
}
|
|
else if (actualType && expectedType) {
|
|
displayMessage += MsAjaxString.format("Object of type '{0}' cannot be converted to type '{1}'.", actualType.getName ? actualType.getName() : actualType, expectedType.getName ? expectedType.getName() : expectedType);
|
|
}
|
|
else {
|
|
displayMessage += "Object cannot be converted to the required type.";
|
|
}
|
|
if (paramName) {
|
|
displayMessage += "\n" + MsAjaxString.format("Parameter name: {0}", paramName);
|
|
}
|
|
var err = MsAjaxError.create(displayMessage, {
|
|
name: "Sys.ArgumentTypeException",
|
|
paramName: paramName,
|
|
actualType: actualType,
|
|
expectedType: expectedType
|
|
});
|
|
err.popStackFrame();
|
|
return err;
|
|
};
|
|
MsAjaxError.argumentUndefined = function (paramName, message) {
|
|
var displayMessage = "Sys.ArgumentUndefinedException: " + (message ? message : "Value cannot be undefined.");
|
|
if (paramName) {
|
|
displayMessage += "\n" + MsAjaxString.format("Parameter name: {0}", paramName);
|
|
}
|
|
var err = MsAjaxError.create(displayMessage, { name: "Sys.ArgumentUndefinedException", paramName: paramName });
|
|
err.popStackFrame();
|
|
return err;
|
|
};
|
|
MsAjaxError.invalidOperation = function (message) {
|
|
var displayMessage = "Sys.InvalidOperationException: " + (message ? message : "Operation is not valid due to the current state of the object.");
|
|
var err = MsAjaxError.create(displayMessage, { name: 'Sys.InvalidOperationException' });
|
|
err.popStackFrame();
|
|
return err;
|
|
};
|
|
return MsAjaxError;
|
|
}());
|
|
OfficeExt.MsAjaxError = MsAjaxError;
|
|
var MsAjaxString = (function () {
|
|
function MsAjaxString() {
|
|
}
|
|
MsAjaxString.format = function (format) {
|
|
var args = [];
|
|
for (var _i = 1; _i < arguments.length; _i++) {
|
|
args[_i - 1] = arguments[_i];
|
|
}
|
|
var source = format;
|
|
return source.replace(/{(\d+)}/gm, function (match, number) {
|
|
var index = parseInt(number, 10);
|
|
return args[index] === undefined ? '{' + number + '}' : args[index];
|
|
});
|
|
};
|
|
MsAjaxString.startsWith = function (str, prefix) {
|
|
return (str.substr(0, prefix.length) === prefix);
|
|
};
|
|
return MsAjaxString;
|
|
}());
|
|
OfficeExt.MsAjaxString = MsAjaxString;
|
|
var MsAjaxDebug = (function () {
|
|
function MsAjaxDebug() {
|
|
}
|
|
MsAjaxDebug.trace = function (text) {
|
|
if (typeof Debug !== "undefined" && Debug.writeln)
|
|
Debug.writeln(text);
|
|
if (window.console && window.console.log)
|
|
window.console.log(text);
|
|
if (window.opera && window.opera.postError)
|
|
window.opera.postError(text);
|
|
if (window.debugService && window.debugService.trace)
|
|
window.debugService.trace(text);
|
|
var a = document.getElementById("TraceConsole");
|
|
if (a && a.tagName.toUpperCase() === "TEXTAREA") {
|
|
a.innerHTML += text + "\n";
|
|
}
|
|
};
|
|
return MsAjaxDebug;
|
|
}());
|
|
OfficeExt.MsAjaxDebug = MsAjaxDebug;
|
|
if (!OsfMsAjaxFactory.isMsAjaxLoaded()) {
|
|
var registerTypeInternal = function registerTypeInternal(type, name, isClass) {
|
|
if (type.__typeName === undefined || type.__typeName === null) {
|
|
type.__typeName = name;
|
|
}
|
|
if (type.__class === undefined || type.__class === null) {
|
|
type.__class = isClass;
|
|
}
|
|
};
|
|
registerTypeInternal(Function, "Function", true);
|
|
registerTypeInternal(Error, "Error", true);
|
|
registerTypeInternal(Object, "Object", true);
|
|
registerTypeInternal(String, "String", true);
|
|
registerTypeInternal(Boolean, "Boolean", true);
|
|
registerTypeInternal(Date, "Date", true);
|
|
registerTypeInternal(Number, "Number", true);
|
|
registerTypeInternal(RegExp, "RegExp", true);
|
|
registerTypeInternal(Array, "Array", true);
|
|
if (!Function.createCallback) {
|
|
Function.createCallback = function Function$createCallback(method, context) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "method", type: Function },
|
|
{ name: "context", mayBeNull: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
return function () {
|
|
var l = arguments.length;
|
|
if (l > 0) {
|
|
var args = [];
|
|
for (var i = 0; i < l; i++) {
|
|
args[i] = arguments[i];
|
|
}
|
|
args[l] = context;
|
|
return method.apply(this, args);
|
|
}
|
|
return method.call(this, context);
|
|
};
|
|
};
|
|
}
|
|
if (!Function.createDelegate) {
|
|
Function.createDelegate = function Function$createDelegate(instance, method) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "instance", mayBeNull: true },
|
|
{ name: "method", type: Function }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
return function () {
|
|
return method.apply(instance, arguments);
|
|
};
|
|
};
|
|
}
|
|
if (!Function._validateParams) {
|
|
Function._validateParams = function (params, expectedParams, validateParameterCount) {
|
|
var e, expectedLength = expectedParams.length;
|
|
validateParameterCount = validateParameterCount || (typeof (validateParameterCount) === "undefined");
|
|
e = Function._validateParameterCount(params, expectedParams, validateParameterCount);
|
|
if (e) {
|
|
e.popStackFrame();
|
|
return e;
|
|
}
|
|
for (var i = 0, l = params.length; i < l; i++) {
|
|
var expectedParam = expectedParams[Math.min(i, expectedLength - 1)], paramName = expectedParam.name;
|
|
if (expectedParam.parameterArray) {
|
|
paramName += "[" + (i - expectedLength + 1) + "]";
|
|
}
|
|
else if (!validateParameterCount && (i >= expectedLength)) {
|
|
break;
|
|
}
|
|
e = Function._validateParameter(params[i], expectedParam, paramName);
|
|
if (e) {
|
|
e.popStackFrame();
|
|
return e;
|
|
}
|
|
}
|
|
return null;
|
|
};
|
|
}
|
|
if (!Function._validateParameterCount) {
|
|
Function._validateParameterCount = function (params, expectedParams, validateParameterCount) {
|
|
var i, error, expectedLen = expectedParams.length, actualLen = params.length;
|
|
if (actualLen < expectedLen) {
|
|
var minParams = expectedLen;
|
|
for (i = 0; i < expectedLen; i++) {
|
|
var param = expectedParams[i];
|
|
if (param.optional || param.parameterArray) {
|
|
minParams--;
|
|
}
|
|
}
|
|
if (actualLen < minParams) {
|
|
error = true;
|
|
}
|
|
}
|
|
else if (validateParameterCount && (actualLen > expectedLen)) {
|
|
error = true;
|
|
for (i = 0; i < expectedLen; i++) {
|
|
if (expectedParams[i].parameterArray) {
|
|
error = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (error) {
|
|
var e = MsAjaxError.parameterCount();
|
|
e.popStackFrame();
|
|
return e;
|
|
}
|
|
return null;
|
|
};
|
|
}
|
|
if (!Function._validateParameter) {
|
|
Function._validateParameter = function (param, expectedParam, paramName) {
|
|
var e, expectedType = expectedParam.type, expectedInteger = !!expectedParam.integer, expectedDomElement = !!expectedParam.domElement, mayBeNull = !!expectedParam.mayBeNull;
|
|
e = Function._validateParameterType(param, expectedType, expectedInteger, expectedDomElement, mayBeNull, paramName);
|
|
if (e) {
|
|
e.popStackFrame();
|
|
return e;
|
|
}
|
|
var expectedElementType = expectedParam.elementType, elementMayBeNull = !!expectedParam.elementMayBeNull;
|
|
if (expectedType === Array && typeof (param) !== "undefined" && param !== null &&
|
|
(expectedElementType || !elementMayBeNull)) {
|
|
var expectedElementInteger = !!expectedParam.elementInteger, expectedElementDomElement = !!expectedParam.elementDomElement;
|
|
for (var i = 0; i < param.length; i++) {
|
|
var elem = param[i];
|
|
e = Function._validateParameterType(elem, expectedElementType, expectedElementInteger, expectedElementDomElement, elementMayBeNull, paramName + "[" + i + "]");
|
|
if (e) {
|
|
e.popStackFrame();
|
|
return e;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
};
|
|
}
|
|
if (!Function._validateParameterType) {
|
|
Function._validateParameterType = function (param, expectedType, expectedInteger, expectedDomElement, mayBeNull, paramName) {
|
|
var e, i;
|
|
if (typeof (param) === "undefined") {
|
|
if (mayBeNull) {
|
|
return null;
|
|
}
|
|
else {
|
|
e = OfficeExt.MsAjaxError.argumentUndefined(paramName);
|
|
e.popStackFrame();
|
|
return e;
|
|
}
|
|
}
|
|
if (param === null) {
|
|
if (mayBeNull) {
|
|
return null;
|
|
}
|
|
else {
|
|
e = OfficeExt.MsAjaxError.argumentNull(paramName);
|
|
e.popStackFrame();
|
|
return e;
|
|
}
|
|
}
|
|
if (expectedType && !OfficeExt.MsAjaxTypeHelper.isInstanceOfType(expectedType, param)) {
|
|
e = OfficeExt.MsAjaxError.argumentType(paramName, typeof (param), expectedType);
|
|
e.popStackFrame();
|
|
return e;
|
|
}
|
|
return null;
|
|
};
|
|
}
|
|
if (!window.Type) {
|
|
window.Type = Function;
|
|
}
|
|
if (!Type.registerNamespace) {
|
|
Type.registerNamespace = function (ns) {
|
|
var namespaceParts = ns.split('.');
|
|
var currentNamespace = window;
|
|
for (var i = 0; i < namespaceParts.length; i++) {
|
|
currentNamespace[namespaceParts[i]] = currentNamespace[namespaceParts[i]] || {};
|
|
currentNamespace = currentNamespace[namespaceParts[i]];
|
|
}
|
|
};
|
|
}
|
|
if (!Type.prototype.registerClass) {
|
|
Type.prototype.registerClass = function (cls) { cls = {}; };
|
|
}
|
|
if (typeof (Sys) === "undefined") {
|
|
Type.registerNamespace('Sys');
|
|
}
|
|
if (!Error.prototype.popStackFrame) {
|
|
Error.prototype.popStackFrame = function () {
|
|
if (arguments.length !== 0)
|
|
throw MsAjaxError.parameterCount();
|
|
if (typeof (this.stack) === "undefined" || this.stack === null ||
|
|
typeof (this.fileName) === "undefined" || this.fileName === null ||
|
|
typeof (this.lineNumber) === "undefined" || this.lineNumber === null) {
|
|
return;
|
|
}
|
|
var stackFrames = this.stack.split("\n");
|
|
var currentFrame = stackFrames[0];
|
|
var pattern = this.fileName + ":" + this.lineNumber;
|
|
while (typeof (currentFrame) !== "undefined" &&
|
|
currentFrame !== null &&
|
|
currentFrame.indexOf(pattern) === -1) {
|
|
stackFrames.shift();
|
|
currentFrame = stackFrames[0];
|
|
}
|
|
var nextFrame = stackFrames[1];
|
|
if (typeof (nextFrame) === "undefined" || nextFrame === null) {
|
|
return;
|
|
}
|
|
var nextFrameParts = nextFrame.match(/@(.*):(\d+)$/);
|
|
if (typeof (nextFrameParts) === "undefined" || nextFrameParts === null) {
|
|
return;
|
|
}
|
|
this.fileName = nextFrameParts[1];
|
|
this.lineNumber = parseInt(nextFrameParts[2]);
|
|
stackFrames.shift();
|
|
this.stack = stackFrames.join("\n");
|
|
};
|
|
}
|
|
OsfMsAjaxFactory.msAjaxError = MsAjaxError;
|
|
OsfMsAjaxFactory.msAjaxString = MsAjaxString;
|
|
OsfMsAjaxFactory.msAjaxDebug = MsAjaxDebug;
|
|
}
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
OSF.OUtil.setNamespace("Microsoft", window);
|
|
OSF.OUtil.setNamespace("Office", Microsoft);
|
|
OSF.OUtil.setNamespace("Common", Microsoft.Office);
|
|
Microsoft.Office.Common.InvokeType = {
|
|
"async": 0,
|
|
"sync": 1,
|
|
"asyncRegisterEvent": 2,
|
|
"asyncUnregisterEvent": 3,
|
|
"syncRegisterEvent": 4,
|
|
"syncUnregisterEvent": 5
|
|
};
|
|
OSF.SerializerVersion = {
|
|
MsAjax: 0,
|
|
Browser: 1
|
|
};
|
|
(function (OfficeExt) {
|
|
function appSpecificCheckOriginFunction(allowed_domains, eventObj, origin, checkOriginFunction) {
|
|
return false;
|
|
}
|
|
;
|
|
OfficeExt.appSpecificCheckOrigin = appSpecificCheckOriginFunction;
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
Microsoft.Office.Common.InvokeType = { "async": 0,
|
|
"sync": 1,
|
|
"asyncRegisterEvent": 2,
|
|
"asyncUnregisterEvent": 3,
|
|
"syncRegisterEvent": 4,
|
|
"syncUnregisterEvent": 5
|
|
};
|
|
Microsoft.Office.Common.InvokeResultCode = {
|
|
"noError": 0,
|
|
"errorInRequest": -1,
|
|
"errorHandlingRequest": -2,
|
|
"errorInResponse": -3,
|
|
"errorHandlingResponse": -4,
|
|
"errorHandlingRequestAccessDenied": -5,
|
|
"errorHandlingMethodCallTimedout": -6
|
|
};
|
|
Microsoft.Office.Common.MessageType = { "request": 0,
|
|
"response": 1
|
|
};
|
|
Microsoft.Office.Common.ActionType = { "invoke": 0,
|
|
"registerEvent": 1,
|
|
"unregisterEvent": 2 };
|
|
Microsoft.Office.Common.ResponseType = { "forCalling": 0,
|
|
"forEventing": 1
|
|
};
|
|
Microsoft.Office.Common.HostTrustStatus = {
|
|
"unknown": 0,
|
|
"untrusted": 1,
|
|
"nothttps": 2,
|
|
"trusted": 3
|
|
};
|
|
Microsoft.Office.Common.MethodObject = function Microsoft_Office_Common_MethodObject(method, invokeType, blockingOthers) {
|
|
this._method = method;
|
|
this._invokeType = invokeType;
|
|
this._blockingOthers = blockingOthers;
|
|
};
|
|
Microsoft.Office.Common.MethodObject.prototype = {
|
|
getMethod: function Microsoft_Office_Common_MethodObject$getMethod() {
|
|
return this._method;
|
|
},
|
|
getInvokeType: function Microsoft_Office_Common_MethodObject$getInvokeType() {
|
|
return this._invokeType;
|
|
},
|
|
getBlockingFlag: function Microsoft_Office_Common_MethodObject$getBlockingFlag() {
|
|
return this._blockingOthers;
|
|
}
|
|
};
|
|
Microsoft.Office.Common.EventMethodObject = function Microsoft_Office_Common_EventMethodObject(registerMethodObject, unregisterMethodObject) {
|
|
this._registerMethodObject = registerMethodObject;
|
|
this._unregisterMethodObject = unregisterMethodObject;
|
|
};
|
|
Microsoft.Office.Common.EventMethodObject.prototype = {
|
|
getRegisterMethodObject: function Microsoft_Office_Common_EventMethodObject$getRegisterMethodObject() {
|
|
return this._registerMethodObject;
|
|
},
|
|
getUnregisterMethodObject: function Microsoft_Office_Common_EventMethodObject$getUnregisterMethodObject() {
|
|
return this._unregisterMethodObject;
|
|
}
|
|
};
|
|
Microsoft.Office.Common.ServiceEndPoint = function Microsoft_Office_Common_ServiceEndPoint(serviceEndPointId) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "serviceEndPointId", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
this._methodObjectList = {};
|
|
this._eventHandlerProxyList = {};
|
|
this._Id = serviceEndPointId;
|
|
this._conversations = {};
|
|
this._policyManager = null;
|
|
this._appDomains = {};
|
|
this._onHandleRequestError = null;
|
|
};
|
|
Microsoft.Office.Common.ServiceEndPoint.prototype = {
|
|
registerMethod: function Microsoft_Office_Common_ServiceEndPoint$registerMethod(methodName, method, invokeType, blockingOthers) {
|
|
var e = Function._validateParams(arguments, [{ name: "methodName", type: String, mayBeNull: false },
|
|
{ name: "method", type: Function, mayBeNull: false },
|
|
{ name: "invokeType", type: Number, mayBeNull: false },
|
|
{ name: "blockingOthers", type: Boolean, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
if (invokeType !== Microsoft.Office.Common.InvokeType.async
|
|
&& invokeType !== Microsoft.Office.Common.InvokeType.sync) {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("invokeType");
|
|
}
|
|
var methodObject = new Microsoft.Office.Common.MethodObject(method, invokeType, blockingOthers);
|
|
this._methodObjectList[methodName] = methodObject;
|
|
},
|
|
unregisterMethod: function Microsoft_Office_Common_ServiceEndPoint$unregisterMethod(methodName) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "methodName", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
delete this._methodObjectList[methodName];
|
|
},
|
|
registerEvent: function Microsoft_Office_Common_ServiceEndPoint$registerEvent(eventName, registerMethod, unregisterMethod) {
|
|
var e = Function._validateParams(arguments, [{ name: "eventName", type: String, mayBeNull: false },
|
|
{ name: "registerMethod", type: Function, mayBeNull: false },
|
|
{ name: "unregisterMethod", type: Function, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
var methodObject = new Microsoft.Office.Common.EventMethodObject(new Microsoft.Office.Common.MethodObject(registerMethod, Microsoft.Office.Common.InvokeType.syncRegisterEvent, false), new Microsoft.Office.Common.MethodObject(unregisterMethod, Microsoft.Office.Common.InvokeType.syncUnregisterEvent, false));
|
|
this._methodObjectList[eventName] = methodObject;
|
|
},
|
|
registerEventEx: function Microsoft_Office_Common_ServiceEndPoint$registerEventEx(eventName, registerMethod, registerMethodInvokeType, unregisterMethod, unregisterMethodInvokeType) {
|
|
var e = Function._validateParams(arguments, [{ name: "eventName", type: String, mayBeNull: false },
|
|
{ name: "registerMethod", type: Function, mayBeNull: false },
|
|
{ name: "registerMethodInvokeType", type: Number, mayBeNull: false },
|
|
{ name: "unregisterMethod", type: Function, mayBeNull: false },
|
|
{ name: "unregisterMethodInvokeType", type: Number, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
var methodObject = new Microsoft.Office.Common.EventMethodObject(new Microsoft.Office.Common.MethodObject(registerMethod, registerMethodInvokeType, false), new Microsoft.Office.Common.MethodObject(unregisterMethod, unregisterMethodInvokeType, false));
|
|
this._methodObjectList[eventName] = methodObject;
|
|
},
|
|
unregisterEvent: function (eventName) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "eventName", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
this.unregisterMethod(eventName);
|
|
},
|
|
registerConversation: function Microsoft_Office_Common_ServiceEndPoint$registerConversation(conversationId, conversationUrl, appDomains, serializerVersion) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "conversationId", type: String, mayBeNull: false },
|
|
{ name: "conversationUrl", type: String, mayBeNull: false, optional: true },
|
|
{ name: "appDomains", type: Object, mayBeNull: true, optional: true },
|
|
{ name: "serializerVersion", type: Number, mayBeNull: true, optional: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
;
|
|
if (appDomains) {
|
|
if (!(appDomains instanceof Array)) {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("appDomains");
|
|
}
|
|
this._appDomains[conversationId] = appDomains;
|
|
}
|
|
this._conversations[conversationId] = { url: conversationUrl, serializerVersion: serializerVersion };
|
|
},
|
|
unregisterConversation: function Microsoft_Office_Common_ServiceEndPoint$unregisterConversation(conversationId) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "conversationId", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
delete this._conversations[conversationId];
|
|
},
|
|
setPolicyManager: function Microsoft_Office_Common_ServiceEndPoint$setPolicyManager(policyManager) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "policyManager", type: Object, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
if (!policyManager.checkPermission) {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("policyManager");
|
|
}
|
|
this._policyManager = policyManager;
|
|
},
|
|
getPolicyManager: function Microsoft_Office_Common_ServiceEndPoint$getPolicyManager() {
|
|
return this._policyManager;
|
|
},
|
|
dispose: function Microsoft_Office_Common_ServiceEndPoint$dispose() {
|
|
this._methodObjectList = null;
|
|
this._eventHandlerProxyList = null;
|
|
this._Id = null;
|
|
this._conversations = null;
|
|
this._policyManager = null;
|
|
this._appDomains = null;
|
|
this._onHandleRequestError = null;
|
|
}
|
|
};
|
|
Microsoft.Office.Common.ClientEndPoint = function Microsoft_Office_Common_ClientEndPoint(conversationId, targetWindow, targetUrl, serializerVersion) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "conversationId", type: String, mayBeNull: false },
|
|
{ name: "targetWindow", mayBeNull: false },
|
|
{ name: "targetUrl", type: String, mayBeNull: false },
|
|
{ name: "serializerVersion", type: Number, mayBeNull: true, optional: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
try {
|
|
if (!targetWindow.postMessage) {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("targetWindow");
|
|
}
|
|
}
|
|
catch (ex) {
|
|
if (!Object.prototype.hasOwnProperty.call(targetWindow, "postMessage")) {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("targetWindow");
|
|
}
|
|
}
|
|
this._conversationId = conversationId;
|
|
this._targetWindow = targetWindow;
|
|
this._targetUrl = targetUrl;
|
|
this._callingIndex = 0;
|
|
this._callbackList = {};
|
|
this._eventHandlerList = {};
|
|
if (serializerVersion != null) {
|
|
this._serializerVersion = serializerVersion;
|
|
}
|
|
else {
|
|
this._serializerVersion = OSF.SerializerVersion.Browser;
|
|
}
|
|
this._checkReceiverOriginAndRun = null;
|
|
this._hostTrustCheckStatus = Microsoft.Office.Common.HostTrustStatus.unknown;
|
|
this._checkStatusLogged = false;
|
|
};
|
|
Microsoft.Office.Common.ClientEndPoint.prototype = {
|
|
invoke: function Microsoft_Office_Common_ClientEndPoint$invoke(targetMethodName, callback, param) {
|
|
var e = Function._validateParams(arguments, [{ name: "targetMethodName", type: String, mayBeNull: false },
|
|
{ name: "callback", type: Function, mayBeNull: true },
|
|
{ name: "param", mayBeNull: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
var me = this;
|
|
var funcToRun = function () {
|
|
var correlationId = me._callingIndex++;
|
|
var now = new Date();
|
|
var callbackEntry = { "callback": callback, "createdOn": now.getTime() };
|
|
if (param && typeof param === "object" && typeof param.__timeout__ === "number") {
|
|
callbackEntry.timeout = param.__timeout__;
|
|
delete param.__timeout__;
|
|
}
|
|
me._callbackList[correlationId] = callbackEntry;
|
|
try {
|
|
if (me._hostTrustCheckStatus !== Microsoft.Office.Common.HostTrustStatus.trusted) {
|
|
if (targetMethodName !== "ContextActivationManager_getAppContextAsync") {
|
|
throw "Access Denied";
|
|
}
|
|
}
|
|
var callRequest = new Microsoft.Office.Common.Request(targetMethodName, Microsoft.Office.Common.ActionType.invoke, me._conversationId, correlationId, param);
|
|
var msg = Microsoft.Office.Common.MessagePackager.envelope(callRequest, me._serializerVersion);
|
|
me._targetWindow.postMessage(msg, me._targetUrl);
|
|
Microsoft.Office.Common.XdmCommunicationManager._startMethodTimeoutTimer();
|
|
}
|
|
catch (ex) {
|
|
try {
|
|
if (callback !== null)
|
|
callback(Microsoft.Office.Common.InvokeResultCode.errorInRequest, ex);
|
|
}
|
|
finally {
|
|
delete me._callbackList[correlationId];
|
|
}
|
|
}
|
|
};
|
|
if (me._checkReceiverOriginAndRun) {
|
|
me._checkReceiverOriginAndRun(funcToRun);
|
|
}
|
|
else {
|
|
me._hostTrustCheckStatus = Microsoft.Office.Common.HostTrustStatus.trusted;
|
|
funcToRun();
|
|
}
|
|
},
|
|
registerForEvent: function Microsoft_Office_Common_ClientEndPoint$registerForEvent(targetEventName, eventHandler, callback, data) {
|
|
var e = Function._validateParams(arguments, [{ name: "targetEventName", type: String, mayBeNull: false },
|
|
{ name: "eventHandler", type: Function, mayBeNull: false },
|
|
{ name: "callback", type: Function, mayBeNull: true },
|
|
{ name: "data", mayBeNull: true, optional: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
var correlationId = this._callingIndex++;
|
|
var now = new Date();
|
|
this._callbackList[correlationId] = { "callback": callback, "createdOn": now.getTime() };
|
|
try {
|
|
var callRequest = new Microsoft.Office.Common.Request(targetEventName, Microsoft.Office.Common.ActionType.registerEvent, this._conversationId, correlationId, data);
|
|
var msg = Microsoft.Office.Common.MessagePackager.envelope(callRequest, this._serializerVersion);
|
|
this._targetWindow.postMessage(msg, this._targetUrl);
|
|
Microsoft.Office.Common.XdmCommunicationManager._startMethodTimeoutTimer();
|
|
this._eventHandlerList[targetEventName] = eventHandler;
|
|
}
|
|
catch (ex) {
|
|
try {
|
|
if (callback !== null) {
|
|
callback(Microsoft.Office.Common.InvokeResultCode.errorInRequest, ex);
|
|
}
|
|
}
|
|
finally {
|
|
delete this._callbackList[correlationId];
|
|
}
|
|
}
|
|
},
|
|
unregisterForEvent: function Microsoft_Office_Common_ClientEndPoint$unregisterForEvent(targetEventName, callback, data) {
|
|
var e = Function._validateParams(arguments, [{ name: "targetEventName", type: String, mayBeNull: false },
|
|
{ name: "callback", type: Function, mayBeNull: true },
|
|
{ name: "data", mayBeNull: true, optional: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
var correlationId = this._callingIndex++;
|
|
var now = new Date();
|
|
this._callbackList[correlationId] = { "callback": callback, "createdOn": now.getTime() };
|
|
try {
|
|
var callRequest = new Microsoft.Office.Common.Request(targetEventName, Microsoft.Office.Common.ActionType.unregisterEvent, this._conversationId, correlationId, data);
|
|
var msg = Microsoft.Office.Common.MessagePackager.envelope(callRequest, this._serializerVersion);
|
|
this._targetWindow.postMessage(msg, this._targetUrl);
|
|
Microsoft.Office.Common.XdmCommunicationManager._startMethodTimeoutTimer();
|
|
}
|
|
catch (ex) {
|
|
try {
|
|
if (callback !== null) {
|
|
callback(Microsoft.Office.Common.InvokeResultCode.errorInRequest, ex);
|
|
}
|
|
}
|
|
finally {
|
|
delete this._callbackList[correlationId];
|
|
}
|
|
}
|
|
finally {
|
|
delete this._eventHandlerList[targetEventName];
|
|
}
|
|
}
|
|
};
|
|
Microsoft.Office.Common.XdmCommunicationManager = (function () {
|
|
var _invokerQueue = [];
|
|
var _lastMessageProcessTime = null;
|
|
var _messageProcessingTimer = null;
|
|
var _processInterval = 10;
|
|
var _blockingFlag = false;
|
|
var _methodTimeoutTimer = null;
|
|
var _methodTimeoutProcessInterval = 2000;
|
|
var _methodTimeoutDefault = 65000;
|
|
var _methodTimeout = _methodTimeoutDefault;
|
|
var _serviceEndPoints = {};
|
|
var _clientEndPoints = {};
|
|
var _initialized = false;
|
|
function _lookupServiceEndPoint(conversationId) {
|
|
for (var id in _serviceEndPoints) {
|
|
if (_serviceEndPoints[id]._conversations[conversationId]) {
|
|
return _serviceEndPoints[id];
|
|
}
|
|
}
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("Unknown conversation Id.");
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("conversationId");
|
|
}
|
|
;
|
|
function _lookupClientEndPoint(conversationId) {
|
|
var clientEndPoint = _clientEndPoints[conversationId];
|
|
if (!clientEndPoint) {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("Unknown conversation Id.");
|
|
}
|
|
return clientEndPoint;
|
|
}
|
|
;
|
|
function _lookupMethodObject(serviceEndPoint, messageObject) {
|
|
var methodOrEventMethodObject = serviceEndPoint._methodObjectList[messageObject._actionName];
|
|
if (!methodOrEventMethodObject) {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("The specified method is not registered on service endpoint:" + messageObject._actionName);
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("messageObject");
|
|
}
|
|
var methodObject = null;
|
|
if (messageObject._actionType === Microsoft.Office.Common.ActionType.invoke) {
|
|
methodObject = methodOrEventMethodObject;
|
|
}
|
|
else if (messageObject._actionType === Microsoft.Office.Common.ActionType.registerEvent) {
|
|
methodObject = methodOrEventMethodObject.getRegisterMethodObject();
|
|
}
|
|
else {
|
|
methodObject = methodOrEventMethodObject.getUnregisterMethodObject();
|
|
}
|
|
return methodObject;
|
|
}
|
|
;
|
|
function _enqueInvoker(invoker) {
|
|
_invokerQueue.push(invoker);
|
|
}
|
|
;
|
|
function _dequeInvoker() {
|
|
if (_messageProcessingTimer !== null) {
|
|
if (!_blockingFlag) {
|
|
if (_invokerQueue.length > 0) {
|
|
var invoker = _invokerQueue.shift();
|
|
_executeCommand(invoker);
|
|
}
|
|
else {
|
|
clearInterval(_messageProcessingTimer);
|
|
_messageProcessingTimer = null;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("channel is not ready.");
|
|
}
|
|
}
|
|
;
|
|
function _executeCommand(invoker) {
|
|
_blockingFlag = invoker.getInvokeBlockingFlag();
|
|
invoker.invoke();
|
|
_lastMessageProcessTime = (new Date()).getTime();
|
|
}
|
|
;
|
|
function _checkMethodTimeout() {
|
|
if (_methodTimeoutTimer) {
|
|
var clientEndPoint;
|
|
var methodCallsNotTimedout = 0;
|
|
var now = new Date();
|
|
var timeoutValue;
|
|
for (var conversationId in _clientEndPoints) {
|
|
clientEndPoint = _clientEndPoints[conversationId];
|
|
for (var correlationId in clientEndPoint._callbackList) {
|
|
var callbackEntry = clientEndPoint._callbackList[correlationId];
|
|
timeoutValue = callbackEntry.timeout ? callbackEntry.timeout : _methodTimeout;
|
|
if (timeoutValue >= 0 && Math.abs(now.getTime() - callbackEntry.createdOn) >= timeoutValue) {
|
|
try {
|
|
if (callbackEntry.callback) {
|
|
callbackEntry.callback(Microsoft.Office.Common.InvokeResultCode.errorHandlingMethodCallTimedout, null);
|
|
}
|
|
}
|
|
finally {
|
|
delete clientEndPoint._callbackList[correlationId];
|
|
}
|
|
}
|
|
else {
|
|
methodCallsNotTimedout++;
|
|
}
|
|
;
|
|
}
|
|
}
|
|
if (methodCallsNotTimedout === 0) {
|
|
clearInterval(_methodTimeoutTimer);
|
|
_methodTimeoutTimer = null;
|
|
}
|
|
}
|
|
else {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("channel is not ready.");
|
|
}
|
|
}
|
|
;
|
|
function _postCallbackHandler() {
|
|
_blockingFlag = false;
|
|
}
|
|
;
|
|
function _registerListener(listener) {
|
|
if (window.addEventListener) {
|
|
window.addEventListener("message", listener, false);
|
|
}
|
|
else if ((navigator.userAgent.indexOf("MSIE") > -1) && window.attachEvent) {
|
|
window.attachEvent("onmessage", listener);
|
|
}
|
|
else {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("Browser doesn't support the required API.");
|
|
throw OsfMsAjaxFactory.msAjaxError.argument("Browser");
|
|
}
|
|
}
|
|
;
|
|
function _checkOrigin(url, origin) {
|
|
var res = false;
|
|
if (!url || !origin || url === "null" || origin === "null" || !url.length || !origin.length) {
|
|
return res;
|
|
}
|
|
if (OSF.OUtil.checkFlight(OSF.FlightNames.AddinEnforceHttps)) {
|
|
res = _urlCompareUsingUrlStrings(url, origin);
|
|
}
|
|
else {
|
|
var url_parser, org_parser;
|
|
url_parser = document.createElement('a');
|
|
org_parser = document.createElement('a');
|
|
url_parser.href = url;
|
|
org_parser.href = origin;
|
|
res = _urlCompare(url_parser, org_parser);
|
|
}
|
|
return res;
|
|
}
|
|
function _checkOriginWithAppDomains(allowed_domains, origin) {
|
|
var res = false;
|
|
if (!origin || origin === "null" || !origin.length || !(allowed_domains) || !(allowed_domains instanceof Array) || !allowed_domains.length) {
|
|
return res;
|
|
}
|
|
var org_parser = document.createElement('a');
|
|
var app_domain_parser = document.createElement('a');
|
|
org_parser.href = origin;
|
|
for (var i = 0; i < allowed_domains.length && !res; i++) {
|
|
if (allowed_domains[i].indexOf("://") !== -1) {
|
|
if (OSF.OUtil.checkFlight(OSF.FlightNames.AddinEnforceHttps)) {
|
|
res = _urlCompareUsingUrlStrings(origin, allowed_domains[i]);
|
|
}
|
|
else {
|
|
app_domain_parser.href = allowed_domains[i];
|
|
res = _urlCompare(org_parser, app_domain_parser);
|
|
}
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
function _isHostNameValidWacDomain(hostName) {
|
|
if (!hostName || hostName === "null") {
|
|
return false;
|
|
}
|
|
var regexHostNameStringArray = new Array("^office-int\\.com$", "^officeapps\\.live-int\\.com$", "^.*\\.dod\\.online\\.office365\\.us$", "^.*\\.gov\\.online\\.office365\\.us$", "^.*\\.officeapps\\.live\\.com$", "^.*\\.officeapps\\.live-int\\.com$", "^.*\\.officeapps-df\\.live\\.com$", "^.*\\.online\\.office\\.de$", "^.*\\.partner\\.officewebapps\\.cn$", "^.*\\.office\\.net$", "^" + document.domain.replace(new RegExp("\\.", "g"), "\\.") + "$");
|
|
var regexHostName = new RegExp(regexHostNameStringArray.join("|"));
|
|
return regexHostName.test(hostName);
|
|
}
|
|
function _isTargetSubdomainOfSourceLocation(sourceLocation, messageOrigin) {
|
|
if (!sourceLocation || !messageOrigin || sourceLocation === "null" || messageOrigin === "null") {
|
|
return false;
|
|
}
|
|
var sourceLocationParser;
|
|
var messageOriginParser;
|
|
if (OSF.OUtil.checkFlight(OSF.FlightNames.AddinEnforceHttps)) {
|
|
sourceLocationParser = OSF.OUtil.parseUrl(sourceLocation, true);
|
|
messageOriginParser = OSF.OUtil.parseUrl(messageOrigin, true);
|
|
}
|
|
else {
|
|
sourceLocationParser = document.createElement('a');
|
|
sourceLocationParser.href = sourceLocation;
|
|
messageOriginParser = document.createElement('a');
|
|
messageOriginParser.href = messageOrigin;
|
|
}
|
|
var isSameProtocol = sourceLocationParser.protocol === messageOriginParser.protocol;
|
|
var isSamePort = sourceLocationParser.port === messageOriginParser.port;
|
|
var originHostName = messageOriginParser.hostname;
|
|
var sourceLocationHostName = sourceLocationParser.hostname;
|
|
var isSameDomain = originHostName === sourceLocationHostName;
|
|
var isSubDomain = false;
|
|
if (!isSameDomain && originHostName.length > sourceLocationHostName.length + 1) {
|
|
isSubDomain = originHostName.slice(-(sourceLocationHostName.length + 1)) === '.' + sourceLocationHostName;
|
|
}
|
|
var isSameDomainOrSubdomain = isSameDomain || isSubDomain;
|
|
return isSamePort && isSameProtocol && isSameDomainOrSubdomain;
|
|
}
|
|
function _urlCompareUsingUrlStrings(url_str1, url_str2) {
|
|
var parsedUrl1 = OSF.OUtil.parseUrl(url_str1, true);
|
|
var parsedUrl2 = OSF.OUtil.parseUrl(url_str2, true);
|
|
return _urlCompare(parsedUrl1, parsedUrl2);
|
|
}
|
|
function _urlCompare(url_parser1, url_parser2) {
|
|
return ((url_parser1.hostname == url_parser2.hostname) &&
|
|
(url_parser1.protocol == url_parser2.protocol) &&
|
|
_hasSamePort(url_parser1, url_parser2));
|
|
}
|
|
function _hasSamePort(url_parser1, url_parser2) {
|
|
var httpPort = "80";
|
|
var httpsPort = "443";
|
|
return ((url_parser1.port == url_parser2.port) ||
|
|
(url_parser1.port == "" && url_parser1.protocol == "http:" && url_parser2.port == httpPort) ||
|
|
(url_parser1.port == "" && url_parser1.protocol == "https:" && url_parser2.port == httpsPort) ||
|
|
(url_parser2.port == "" && url_parser2.protocol == "http:" && url_parser1.port == httpPort) ||
|
|
(url_parser2.port == "" && url_parser2.protocol == "https:" && url_parser1.port == httpsPort));
|
|
}
|
|
function _receive(e) {
|
|
if (!OSF) {
|
|
return;
|
|
}
|
|
if (e.data != '') {
|
|
var messageObject;
|
|
var serializerVersion = OSF.SerializerVersion.Browser;
|
|
var serializedMessage = e.data;
|
|
try {
|
|
messageObject = Microsoft.Office.Common.MessagePackager.unenvelope(serializedMessage, OSF.SerializerVersion.Browser);
|
|
serializerVersion = messageObject._serializerVersion != null ? messageObject._serializerVersion : serializerVersion;
|
|
}
|
|
catch (ex) {
|
|
return;
|
|
}
|
|
if (messageObject._messageType === Microsoft.Office.Common.MessageType.request) {
|
|
var requesterUrl = (e.origin == null || e.origin === "null") ? messageObject._origin : e.origin;
|
|
try {
|
|
var serviceEndPoint = _lookupServiceEndPoint(messageObject._conversationId);
|
|
;
|
|
var conversation = serviceEndPoint._conversations[messageObject._conversationId];
|
|
serializerVersion = conversation.serializerVersion != null ? conversation.serializerVersion : serializerVersion;
|
|
;
|
|
var allowedDomains = [conversation.url].concat(serviceEndPoint._appDomains[messageObject._conversationId]);
|
|
if (!_checkOriginWithAppDomains(allowedDomains, e.origin)) {
|
|
if (!OfficeExt.appSpecificCheckOrigin(allowedDomains, e, messageObject._origin, _checkOriginWithAppDomains)) {
|
|
var isOriginSubdomain = _isTargetSubdomainOfSourceLocation(conversation.url, e.origin);
|
|
if (!isOriginSubdomain) {
|
|
throw "Failed origin check";
|
|
}
|
|
}
|
|
}
|
|
var dataWithOrigin = (messageObject._data != null) ? messageObject._data : {};
|
|
dataWithOrigin.SecurityOrigin = e.origin;
|
|
var policyManager = serviceEndPoint.getPolicyManager();
|
|
if (policyManager && !policyManager.checkPermission(messageObject._conversationId, messageObject._actionName, dataWithOrigin)) {
|
|
throw "Access Denied";
|
|
}
|
|
var methodObject = _lookupMethodObject(serviceEndPoint, messageObject);
|
|
var invokeCompleteCallback = new Microsoft.Office.Common.InvokeCompleteCallback(e.source, requesterUrl, messageObject._actionName, messageObject._conversationId, messageObject._correlationId, _postCallbackHandler, serializerVersion);
|
|
var invoker = new Microsoft.Office.Common.Invoker(methodObject, dataWithOrigin, invokeCompleteCallback, serviceEndPoint._eventHandlerProxyList, messageObject._conversationId, messageObject._actionName, serializerVersion);
|
|
var shouldEnque = true;
|
|
if (_messageProcessingTimer == null) {
|
|
if ((_lastMessageProcessTime == null || (new Date()).getTime() - _lastMessageProcessTime > _processInterval) && !_blockingFlag) {
|
|
_executeCommand(invoker);
|
|
shouldEnque = false;
|
|
}
|
|
else {
|
|
_messageProcessingTimer = setInterval(_dequeInvoker, _processInterval);
|
|
}
|
|
}
|
|
if (shouldEnque) {
|
|
_enqueInvoker(invoker);
|
|
}
|
|
}
|
|
catch (ex) {
|
|
if (serviceEndPoint && serviceEndPoint._onHandleRequestError) {
|
|
serviceEndPoint._onHandleRequestError(messageObject, ex);
|
|
}
|
|
var errorCode = Microsoft.Office.Common.InvokeResultCode.errorHandlingRequest;
|
|
if (ex == "Access Denied") {
|
|
errorCode = Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied;
|
|
}
|
|
var callResponse = new Microsoft.Office.Common.Response(messageObject._actionName, messageObject._conversationId, messageObject._correlationId, errorCode, Microsoft.Office.Common.ResponseType.forCalling, ex);
|
|
var envelopedResult = Microsoft.Office.Common.MessagePackager.envelope(callResponse, serializerVersion);
|
|
var canPostMessage = false;
|
|
try {
|
|
canPostMessage = !!(e.source && e.source.postMessage);
|
|
}
|
|
catch (ex) {
|
|
}
|
|
var isOriginValid = false;
|
|
if (window.location.href && e.origin && e.origin !== "null" && _isTargetSubdomainOfSourceLocation(window.location.href, e.origin)) {
|
|
isOriginValid = true;
|
|
}
|
|
else {
|
|
if (e.origin && e.origin !== "null") {
|
|
if (OSF.OUtil.checkFlight(OSF.FlightNames.AddinEnforceHttps)) {
|
|
var hostname = OSF.OUtil.parseUrl(e.origin, true).hostname;
|
|
isOriginValid = _isHostNameValidWacDomain(hostname);
|
|
}
|
|
else {
|
|
var parser = document.createElement("a");
|
|
parser.href = e.origin;
|
|
isOriginValid = _isHostNameValidWacDomain(parser.hostname);
|
|
}
|
|
}
|
|
}
|
|
if (canPostMessage && isOriginValid) {
|
|
e.source.postMessage(envelopedResult, requesterUrl);
|
|
}
|
|
}
|
|
}
|
|
else if (messageObject._messageType === Microsoft.Office.Common.MessageType.response) {
|
|
var clientEndPoint = _lookupClientEndPoint(messageObject._conversationId);
|
|
if (!clientEndPoint) {
|
|
return;
|
|
}
|
|
clientEndPoint._serializerVersion = serializerVersion;
|
|
;
|
|
if (!_checkOrigin(clientEndPoint._targetUrl, e.origin)) {
|
|
throw "Failed orgin check";
|
|
}
|
|
if (messageObject._responseType === Microsoft.Office.Common.ResponseType.forCalling) {
|
|
var callbackEntry = clientEndPoint._callbackList[messageObject._correlationId];
|
|
if (callbackEntry) {
|
|
try {
|
|
if (callbackEntry.callback)
|
|
callbackEntry.callback(messageObject._errorCode, messageObject._data);
|
|
}
|
|
finally {
|
|
delete clientEndPoint._callbackList[messageObject._correlationId];
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
var eventhandler = clientEndPoint._eventHandlerList[messageObject._actionName];
|
|
if (eventhandler !== undefined && eventhandler !== null) {
|
|
eventhandler(messageObject._data);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
;
|
|
function _initialize() {
|
|
if (!_initialized) {
|
|
_registerListener(_receive);
|
|
_initialized = true;
|
|
}
|
|
}
|
|
;
|
|
return {
|
|
connect: function Microsoft_Office_Common_XdmCommunicationManager$connect(conversationId, targetWindow, targetUrl, serializerVersion) {
|
|
var clientEndPoint = _clientEndPoints[conversationId];
|
|
if (!clientEndPoint) {
|
|
_initialize();
|
|
clientEndPoint = new Microsoft.Office.Common.ClientEndPoint(conversationId, targetWindow, targetUrl, serializerVersion);
|
|
_clientEndPoints[conversationId] = clientEndPoint;
|
|
}
|
|
return clientEndPoint;
|
|
},
|
|
getClientEndPoint: function Microsoft_Office_Common_XdmCommunicationManager$getClientEndPoint(conversationId) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "conversationId", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
return _clientEndPoints[conversationId];
|
|
},
|
|
createServiceEndPoint: function Microsoft_Office_Common_XdmCommunicationManager$createServiceEndPoint(serviceEndPointId) {
|
|
_initialize();
|
|
var serviceEndPoint = new Microsoft.Office.Common.ServiceEndPoint(serviceEndPointId);
|
|
_serviceEndPoints[serviceEndPointId] = serviceEndPoint;
|
|
return serviceEndPoint;
|
|
},
|
|
getServiceEndPoint: function Microsoft_Office_Common_XdmCommunicationManager$getServiceEndPoint(serviceEndPointId) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "serviceEndPointId", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
return _serviceEndPoints[serviceEndPointId];
|
|
},
|
|
deleteClientEndPoint: function Microsoft_Office_Common_XdmCommunicationManager$deleteClientEndPoint(conversationId) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "conversationId", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
delete _clientEndPoints[conversationId];
|
|
},
|
|
deleteServiceEndPoint: function Microsoft_Office_Common_XdmCommunicationManager$deleteServiceEndPoint(serviceEndPointId) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "serviceEndPointId", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
delete _serviceEndPoints[serviceEndPointId];
|
|
},
|
|
urlCompare: function Microsoft_Office_Common_XdmCommunicationManager$_urlCompare(url_parser1, url_parser2) {
|
|
return _urlCompare(url_parser1, url_parser2);
|
|
},
|
|
checkUrlWithAppDomains: function Microsoft_Office_Common_XdmCommunicationManager$_checkUrlWithAppDomains(appDomains, origin) {
|
|
return _checkOriginWithAppDomains(appDomains, origin);
|
|
},
|
|
isTargetSubdomainOfSourceLocation: function Microsoft_Office_Common_XdmCommunicationManager$_isTargetSubdomainOfSourceLocation(sourceLocation, messageOrigin) {
|
|
return _isTargetSubdomainOfSourceLocation(sourceLocation, messageOrigin);
|
|
},
|
|
_setMethodTimeout: function Microsoft_Office_Common_XdmCommunicationManager$_setMethodTimeout(methodTimeout) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "methodTimeout", type: Number, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
_methodTimeout = (methodTimeout <= 0) ? _methodTimeoutDefault : methodTimeout;
|
|
},
|
|
_startMethodTimeoutTimer: function Microsoft_Office_Common_XdmCommunicationManager$_startMethodTimeoutTimer() {
|
|
if (!_methodTimeoutTimer) {
|
|
_methodTimeoutTimer = setInterval(_checkMethodTimeout, _methodTimeoutProcessInterval);
|
|
}
|
|
},
|
|
isHostNameValidWacDomain: function Microsoft_Office_Common_XdmCommunicationManager$_isHostNameValidWacDomain(hostName) {
|
|
return _isHostNameValidWacDomain(hostName);
|
|
},
|
|
_hasSamePort: function Microsoft_Office_Common_XdmCommunicationManager$_hasSamePort(url_parser1, url_parser2) {
|
|
return _hasSamePort(url_parser1, url_parser2);
|
|
}
|
|
};
|
|
})();
|
|
Microsoft.Office.Common.Message = function Microsoft_Office_Common_Message(messageType, actionName, conversationId, correlationId, data) {
|
|
var e = Function._validateParams(arguments, [{ name: "messageType", type: Number, mayBeNull: false },
|
|
{ name: "actionName", type: String, mayBeNull: false },
|
|
{ name: "conversationId", type: String, mayBeNull: false },
|
|
{ name: "correlationId", mayBeNull: false },
|
|
{ name: "data", mayBeNull: true, optional: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
this._messageType = messageType;
|
|
this._actionName = actionName;
|
|
this._conversationId = conversationId;
|
|
this._correlationId = correlationId;
|
|
this._origin = window.location.origin;
|
|
if (typeof data == "undefined") {
|
|
this._data = null;
|
|
}
|
|
else {
|
|
this._data = data;
|
|
}
|
|
};
|
|
Microsoft.Office.Common.Message.prototype = {
|
|
getActionName: function Microsoft_Office_Common_Message$getActionName() {
|
|
return this._actionName;
|
|
},
|
|
getConversationId: function Microsoft_Office_Common_Message$getConversationId() {
|
|
return this._conversationId;
|
|
},
|
|
getCorrelationId: function Microsoft_Office_Common_Message$getCorrelationId() {
|
|
return this._correlationId;
|
|
},
|
|
getOrigin: function Microsoft_Office_Common_Message$getOrigin() {
|
|
return this._origin;
|
|
},
|
|
getData: function Microsoft_Office_Common_Message$getData() {
|
|
return this._data;
|
|
},
|
|
getMessageType: function Microsoft_Office_Common_Message$getMessageType() {
|
|
return this._messageType;
|
|
}
|
|
};
|
|
Microsoft.Office.Common.Request = function Microsoft_Office_Common_Request(actionName, actionType, conversationId, correlationId, data) {
|
|
Microsoft.Office.Common.Request.uber.constructor.call(this, Microsoft.Office.Common.MessageType.request, actionName, conversationId, correlationId, data);
|
|
this._actionType = actionType;
|
|
};
|
|
OSF.OUtil.extend(Microsoft.Office.Common.Request, Microsoft.Office.Common.Message);
|
|
Microsoft.Office.Common.Request.prototype.getActionType = function Microsoft_Office_Common_Request$getActionType() {
|
|
return this._actionType;
|
|
};
|
|
Microsoft.Office.Common.Response = function Microsoft_Office_Common_Response(actionName, conversationId, correlationId, errorCode, responseType, data) {
|
|
Microsoft.Office.Common.Response.uber.constructor.call(this, Microsoft.Office.Common.MessageType.response, actionName, conversationId, correlationId, data);
|
|
this._errorCode = errorCode;
|
|
this._responseType = responseType;
|
|
};
|
|
OSF.OUtil.extend(Microsoft.Office.Common.Response, Microsoft.Office.Common.Message);
|
|
Microsoft.Office.Common.Response.prototype.getErrorCode = function Microsoft_Office_Common_Response$getErrorCode() {
|
|
return this._errorCode;
|
|
};
|
|
Microsoft.Office.Common.Response.prototype.getResponseType = function Microsoft_Office_Common_Response$getResponseType() {
|
|
return this._responseType;
|
|
};
|
|
Microsoft.Office.Common.MessagePackager = {
|
|
envelope: function Microsoft_Office_Common_MessagePackager$envelope(messageObject, serializerVersion) {
|
|
if (typeof (messageObject) === "object") {
|
|
messageObject._serializerVersion = OSF.SerializerVersion.Browser;
|
|
}
|
|
return JSON.stringify(messageObject);
|
|
},
|
|
unenvelope: function Microsoft_Office_Common_MessagePackager$unenvelope(messageObject, serializerVersion) {
|
|
return JSON.parse(messageObject);
|
|
}
|
|
};
|
|
Microsoft.Office.Common.ResponseSender = function Microsoft_Office_Common_ResponseSender(requesterWindow, requesterUrl, actionName, conversationId, correlationId, responseType, serializerVersion) {
|
|
var e = Function._validateParams(arguments, [{ name: "requesterWindow", mayBeNull: false },
|
|
{ name: "requesterUrl", type: String, mayBeNull: false },
|
|
{ name: "actionName", type: String, mayBeNull: false },
|
|
{ name: "conversationId", type: String, mayBeNull: false },
|
|
{ name: "correlationId", mayBeNull: false },
|
|
{ name: "responsetype", type: Number, maybeNull: false },
|
|
{ name: "serializerVersion", type: Number, maybeNull: true, optional: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
this._requesterWindow = requesterWindow;
|
|
this._requesterUrl = requesterUrl;
|
|
this._actionName = actionName;
|
|
this._conversationId = conversationId;
|
|
this._correlationId = correlationId;
|
|
this._invokeResultCode = Microsoft.Office.Common.InvokeResultCode.noError;
|
|
this._responseType = responseType;
|
|
var me = this;
|
|
this._send = function (result) {
|
|
var validateTargetMatchesRequester = function (targetOrigin, requesterUrl) {
|
|
var parsedTargetOrigin = OSF.OUtil.parseUrl(targetOrigin);
|
|
var parsedRequesterUrl = OSF.OUtil.parseUrl(requesterUrl);
|
|
if (!parsedTargetOrigin || !parsedTargetOrigin.hostname || !parsedRequesterUrl || !parsedRequesterUrl.hostname) {
|
|
var errorMessage = "Failed to execute 'postMessage' on 'DOMWindow': The target origin provided or the recipient window's origin are undefined.";
|
|
console.log(errorMessage);
|
|
;
|
|
return false;
|
|
}
|
|
else if (!Microsoft.Office.Common.XdmCommunicationManager.urlCompare(parsedTargetOrigin, parsedRequesterUrl)) {
|
|
var targetOriginToConsoleLog = parsedTargetOrigin ? (parsedTargetOrigin.protocol + "//" + parsedTargetOrigin.hostname + (parsedTargetOrigin.port ? (":" + parsedTargetOrigin.port) : "")) : 'undefined';
|
|
var requesterUrlToConsoleLog = parsedRequesterUrl ? (parsedRequesterUrl.protocol + "//" + parsedRequesterUrl.hostname + (parsedRequesterUrl.port ? (":" + parsedRequesterUrl.port) : "")) : 'undefined';
|
|
var errorMessage = "Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('" + targetOriginToConsoleLog + "') does not match the recipient window's origin ('" + requesterUrlToConsoleLog + "').";
|
|
console.log(errorMessage);
|
|
;
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
try {
|
|
if (me._actionName === "dialogMessageReceived" && result.targetOrigin !== "*") {
|
|
if (result.targetOrigin) {
|
|
if (!validateTargetMatchesRequester(result.targetOrigin, me._requesterUrl)) {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
else if (me._actionName === "dialogParentMessageReceived" && result.targetOrigin && result.targetOrigin !== "*") {
|
|
if (!validateTargetMatchesRequester(result.targetOrigin, me._requesterUrl)) {
|
|
return;
|
|
}
|
|
}
|
|
var response = new Microsoft.Office.Common.Response(me._actionName, me._conversationId, me._correlationId, me._invokeResultCode, me._responseType, result);
|
|
var envelopedResult = Microsoft.Office.Common.MessagePackager.envelope(response, serializerVersion);
|
|
me._requesterWindow.postMessage(envelopedResult, me._requesterUrl);
|
|
;
|
|
}
|
|
catch (ex) {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("ResponseSender._send error:" + ex.message);
|
|
}
|
|
};
|
|
};
|
|
Microsoft.Office.Common.ResponseSender.prototype = {
|
|
getRequesterWindow: function Microsoft_Office_Common_ResponseSender$getRequesterWindow() {
|
|
return this._requesterWindow;
|
|
},
|
|
getRequesterUrl: function Microsoft_Office_Common_ResponseSender$getRequesterUrl() {
|
|
return this._requesterUrl;
|
|
},
|
|
getActionName: function Microsoft_Office_Common_ResponseSender$getActionName() {
|
|
return this._actionName;
|
|
},
|
|
getConversationId: function Microsoft_Office_Common_ResponseSender$getConversationId() {
|
|
return this._conversationId;
|
|
},
|
|
getCorrelationId: function Microsoft_Office_Common_ResponseSender$getCorrelationId() {
|
|
return this._correlationId;
|
|
},
|
|
getSend: function Microsoft_Office_Common_ResponseSender$getSend() {
|
|
return this._send;
|
|
},
|
|
setResultCode: function Microsoft_Office_Common_ResponseSender$setResultCode(resultCode) {
|
|
this._invokeResultCode = resultCode;
|
|
}
|
|
};
|
|
Microsoft.Office.Common.InvokeCompleteCallback = function Microsoft_Office_Common_InvokeCompleteCallback(requesterWindow, requesterUrl, actionName, conversationId, correlationId, postCallbackHandler, serializerVersion) {
|
|
Microsoft.Office.Common.InvokeCompleteCallback.uber.constructor.call(this, requesterWindow, requesterUrl, actionName, conversationId, correlationId, Microsoft.Office.Common.ResponseType.forCalling, serializerVersion);
|
|
this._postCallbackHandler = postCallbackHandler;
|
|
var me = this;
|
|
this._send = function (result, responseCode) {
|
|
if (responseCode != undefined) {
|
|
me._invokeResultCode = responseCode;
|
|
}
|
|
try {
|
|
var response = new Microsoft.Office.Common.Response(me._actionName, me._conversationId, me._correlationId, me._invokeResultCode, me._responseType, result);
|
|
var envelopedResult = Microsoft.Office.Common.MessagePackager.envelope(response, serializerVersion);
|
|
me._requesterWindow.postMessage(envelopedResult, me._requesterUrl);
|
|
me._postCallbackHandler();
|
|
}
|
|
catch (ex) {
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("InvokeCompleteCallback._send error:" + ex.message);
|
|
}
|
|
};
|
|
};
|
|
OSF.OUtil.extend(Microsoft.Office.Common.InvokeCompleteCallback, Microsoft.Office.Common.ResponseSender);
|
|
Microsoft.Office.Common.Invoker = function Microsoft_Office_Common_Invoker(methodObject, paramValue, invokeCompleteCallback, eventHandlerProxyList, conversationId, eventName, serializerVersion) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "methodObject", mayBeNull: false },
|
|
{ name: "paramValue", mayBeNull: true },
|
|
{ name: "invokeCompleteCallback", mayBeNull: false },
|
|
{ name: "eventHandlerProxyList", mayBeNull: true },
|
|
{ name: "conversationId", type: String, mayBeNull: false },
|
|
{ name: "eventName", type: String, mayBeNull: false },
|
|
{ name: "serializerVersion", type: Number, mayBeNull: true, optional: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
this._methodObject = methodObject;
|
|
this._param = paramValue;
|
|
this._invokeCompleteCallback = invokeCompleteCallback;
|
|
this._eventHandlerProxyList = eventHandlerProxyList;
|
|
this._conversationId = conversationId;
|
|
this._eventName = eventName;
|
|
this._serializerVersion = serializerVersion;
|
|
};
|
|
Microsoft.Office.Common.Invoker.prototype = {
|
|
invoke: function Microsoft_Office_Common_Invoker$invoke() {
|
|
try {
|
|
var result;
|
|
switch (this._methodObject.getInvokeType()) {
|
|
case Microsoft.Office.Common.InvokeType.async:
|
|
this._methodObject.getMethod()(this._param, this._invokeCompleteCallback.getSend());
|
|
break;
|
|
case Microsoft.Office.Common.InvokeType.sync:
|
|
result = this._methodObject.getMethod()(this._param);
|
|
this._invokeCompleteCallback.getSend()(result);
|
|
break;
|
|
case Microsoft.Office.Common.InvokeType.syncRegisterEvent:
|
|
var eventHandlerProxy = this._createEventHandlerProxyObject(this._invokeCompleteCallback);
|
|
result = this._methodObject.getMethod()(eventHandlerProxy.getSend(), this._param);
|
|
this._eventHandlerProxyList[this._conversationId + this._eventName] = eventHandlerProxy.getSend();
|
|
this._invokeCompleteCallback.getSend()(result);
|
|
break;
|
|
case Microsoft.Office.Common.InvokeType.syncUnregisterEvent:
|
|
var eventHandler = this._eventHandlerProxyList[this._conversationId + this._eventName];
|
|
result = this._methodObject.getMethod()(eventHandler, this._param);
|
|
delete this._eventHandlerProxyList[this._conversationId + this._eventName];
|
|
this._invokeCompleteCallback.getSend()(result);
|
|
break;
|
|
case Microsoft.Office.Common.InvokeType.asyncRegisterEvent:
|
|
var eventHandlerProxyAsync = this._createEventHandlerProxyObject(this._invokeCompleteCallback);
|
|
this._methodObject.getMethod()(eventHandlerProxyAsync.getSend(), this._invokeCompleteCallback.getSend(), this._param);
|
|
this._eventHandlerProxyList[this._callerId + this._eventName] = eventHandlerProxyAsync.getSend();
|
|
break;
|
|
case Microsoft.Office.Common.InvokeType.asyncUnregisterEvent:
|
|
var eventHandlerAsync = this._eventHandlerProxyList[this._callerId + this._eventName];
|
|
this._methodObject.getMethod()(eventHandlerAsync, this._invokeCompleteCallback.getSend(), this._param);
|
|
delete this._eventHandlerProxyList[this._callerId + this._eventName];
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
catch (ex) {
|
|
this._invokeCompleteCallback.setResultCode(Microsoft.Office.Common.InvokeResultCode.errorInResponse);
|
|
this._invokeCompleteCallback.getSend()(ex);
|
|
}
|
|
},
|
|
getInvokeBlockingFlag: function Microsoft_Office_Common_Invoker$getInvokeBlockingFlag() {
|
|
return this._methodObject.getBlockingFlag();
|
|
},
|
|
_createEventHandlerProxyObject: function Microsoft_Office_Common_Invoker$_createEventHandlerProxyObject(invokeCompleteObject) {
|
|
return new Microsoft.Office.Common.ResponseSender(invokeCompleteObject.getRequesterWindow(), invokeCompleteObject.getRequesterUrl(), invokeCompleteObject.getActionName(), invokeCompleteObject.getConversationId(), invokeCompleteObject.getCorrelationId(), Microsoft.Office.Common.ResponseType.forEventing, this._serializerVersion);
|
|
}
|
|
};
|
|
OSF.OUtil.setNamespace("WAC", OSF.DDA);
|
|
OSF.DDA.WAC.UniqueArguments = {
|
|
Data: "Data",
|
|
Properties: "Properties",
|
|
BindingRequest: "DdaBindingsMethod",
|
|
BindingResponse: "Bindings",
|
|
SingleBindingResponse: "singleBindingResponse",
|
|
GetData: "DdaGetBindingData",
|
|
AddRowsColumns: "DdaAddRowsColumns",
|
|
SetData: "DdaSetBindingData",
|
|
ClearFormats: "DdaClearBindingFormats",
|
|
SetFormats: "DdaSetBindingFormats",
|
|
SettingsRequest: "DdaSettingsMethod",
|
|
BindingEventSource: "ddaBinding",
|
|
ArrayData: "ArrayData"
|
|
};
|
|
OSF.OUtil.setNamespace("Delegate", OSF.DDA.WAC);
|
|
OSF.DDA.WAC.Delegate.SpecialProcessor = function OSF_DDA_WAC_Delegate_SpecialProcessor() {
|
|
var complexTypes = [
|
|
OSF.DDA.WAC.UniqueArguments.SingleBindingResponse,
|
|
OSF.DDA.WAC.UniqueArguments.BindingRequest,
|
|
OSF.DDA.WAC.UniqueArguments.BindingResponse,
|
|
OSF.DDA.WAC.UniqueArguments.GetData,
|
|
OSF.DDA.WAC.UniqueArguments.AddRowsColumns,
|
|
OSF.DDA.WAC.UniqueArguments.SetData,
|
|
OSF.DDA.WAC.UniqueArguments.ClearFormats,
|
|
OSF.DDA.WAC.UniqueArguments.SetFormats,
|
|
OSF.DDA.WAC.UniqueArguments.SettingsRequest,
|
|
OSF.DDA.WAC.UniqueArguments.BindingEventSource
|
|
];
|
|
var dynamicTypes = {};
|
|
OSF.DDA.WAC.Delegate.SpecialProcessor.uber.constructor.call(this, complexTypes, dynamicTypes);
|
|
};
|
|
OSF.OUtil.extend(OSF.DDA.WAC.Delegate.SpecialProcessor, OSF.DDA.SpecialProcessor);
|
|
OSF.DDA.WAC.Delegate.ParameterMap = OSF.DDA.getDecoratedParameterMap(new OSF.DDA.WAC.Delegate.SpecialProcessor(), []);
|
|
OSF.OUtil.setNamespace("WAC", OSF.DDA);
|
|
OSF.OUtil.setNamespace("Delegate", OSF.DDA.WAC);
|
|
OSF.DDA.WAC.getDelegateMethods = function OSF_DDA_WAC_getDelegateMethods() {
|
|
var delegateMethods = {};
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.ExecuteAsync] = OSF.DDA.WAC.Delegate.executeAsync;
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.RegisterEventAsync] = OSF.DDA.WAC.Delegate.registerEventAsync;
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.UnregisterEventAsync] = OSF.DDA.WAC.Delegate.unregisterEventAsync;
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.OpenDialog] = OSF.DDA.WAC.Delegate.openDialog;
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.MessageParent] = OSF.DDA.WAC.Delegate.messageParent;
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.SendMessage] = OSF.DDA.WAC.Delegate.sendMessage;
|
|
delegateMethods[OSF.DDA.DispIdHost.Delegates.CloseDialog] = OSF.DDA.WAC.Delegate.closeDialog;
|
|
return delegateMethods;
|
|
};
|
|
OSF.DDA.WAC.Delegate.version = 1;
|
|
OSF.DDA.WAC.Delegate.executeAsync = function OSF_DDA_WAC_Delegate$executeAsync(args) {
|
|
if (!args.hostCallArgs) {
|
|
args.hostCallArgs = {};
|
|
}
|
|
args.hostCallArgs["DdaMethod"] = {
|
|
"ControlId": OSF._OfficeAppFactory.getId(),
|
|
"Version": OSF.DDA.WAC.Delegate.version,
|
|
"DispatchId": args.dispId
|
|
};
|
|
args.hostCallArgs["__timeout__"] = -1;
|
|
if (args.onCalling) {
|
|
args.onCalling();
|
|
}
|
|
if (!OSF.getClientEndPoint()) {
|
|
return;
|
|
}
|
|
OSF.getClientEndPoint().invoke("executeMethod", function OSF_DDA_WAC_Delegate$OMFacade$OnResponse(xdmStatus, payload) {
|
|
if (args.onReceiving) {
|
|
args.onReceiving();
|
|
}
|
|
var error;
|
|
if (xdmStatus == Microsoft.Office.Common.InvokeResultCode.noError) {
|
|
OSF.DDA.WAC.Delegate.version = payload["Version"];
|
|
error = payload["Error"];
|
|
}
|
|
else {
|
|
switch (xdmStatus) {
|
|
case Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied:
|
|
error = OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;
|
|
break;
|
|
default:
|
|
error = OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;
|
|
break;
|
|
}
|
|
}
|
|
if (args.onComplete) {
|
|
args.onComplete(error, payload);
|
|
}
|
|
}, args.hostCallArgs);
|
|
};
|
|
OSF.DDA.WAC.Delegate._getOnAfterRegisterEvent = function OSF_DDA_WAC_Delegate$GetOnAfterRegisterEvent(register, args) {
|
|
var startTime = (new Date()).getTime();
|
|
return function OSF_DDA_WAC_Delegate$OnAfterRegisterEvent(xdmStatus, payload) {
|
|
if (args.onReceiving) {
|
|
args.onReceiving();
|
|
}
|
|
var status;
|
|
if (xdmStatus != Microsoft.Office.Common.InvokeResultCode.noError) {
|
|
switch (xdmStatus) {
|
|
case Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied:
|
|
status = OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;
|
|
break;
|
|
default:
|
|
status = OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;
|
|
break;
|
|
}
|
|
}
|
|
else {
|
|
if (payload) {
|
|
if (payload["Error"]) {
|
|
status = payload["Error"];
|
|
}
|
|
else {
|
|
status = OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess;
|
|
}
|
|
}
|
|
else {
|
|
status = OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;
|
|
}
|
|
}
|
|
if (args.onComplete) {
|
|
args.onComplete(status);
|
|
}
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.onRegisterDone(register, args.dispId, Math.abs((new Date()).getTime() - startTime), status);
|
|
}
|
|
};
|
|
};
|
|
OSF.DDA.WAC.Delegate.registerEventAsync = function OSF_DDA_WAC_Delegate$RegisterEventAsync(args) {
|
|
if (args.onCalling) {
|
|
args.onCalling();
|
|
}
|
|
if (!OSF.getClientEndPoint()) {
|
|
return;
|
|
}
|
|
OSF.getClientEndPoint().registerForEvent(OSF.DDA.getXdmEventName(args.targetId, args.eventType), function OSF_DDA_WACOMFacade$OnEvent(payload) {
|
|
if (args.onEvent) {
|
|
args.onEvent(payload);
|
|
}
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.onEventDone(args.dispId);
|
|
}
|
|
}, OSF.DDA.WAC.Delegate._getOnAfterRegisterEvent(true, args), {
|
|
"controlId": OSF._OfficeAppFactory.getId(),
|
|
"eventDispId": args.dispId,
|
|
"targetId": args.targetId
|
|
});
|
|
};
|
|
OSF.DDA.WAC.Delegate.unregisterEventAsync = function OSF_DDA_WAC_Delegate$UnregisterEventAsync(args) {
|
|
if (args.onCalling) {
|
|
args.onCalling();
|
|
}
|
|
if (!OSF.getClientEndPoint()) {
|
|
return;
|
|
}
|
|
OSF.getClientEndPoint().unregisterForEvent(OSF.DDA.getXdmEventName(args.targetId, args.eventType), OSF.DDA.WAC.Delegate._getOnAfterRegisterEvent(false, args), {
|
|
"controlId": OSF._OfficeAppFactory.getId(),
|
|
"eventDispId": args.dispId,
|
|
"targetId": args.targetId
|
|
});
|
|
};
|
|
OSF.OUtil.setNamespace("WebApp", OSF);
|
|
OSF.OUtil.setNamespace("Messaging", OSF);
|
|
OSF.OUtil.setNamespace("ExtensionLifeCycle", OSF);
|
|
OSF.OUtil.setNamespace("TaskPaneAction", OSF);
|
|
OSF.OUtil.setNamespace("RibbonGallery", OSF);
|
|
OSF.WebApp.AddHostInfoAndXdmInfo = function OSF_WebApp$AddHostInfoAndXdmInfo(url) {
|
|
if (OSF._OfficeAppFactory.getWindowLocationSearch && OSF._OfficeAppFactory.getWindowLocationHash) {
|
|
return url + OSF._OfficeAppFactory.getWindowLocationSearch() + OSF._OfficeAppFactory.getWindowLocationHash();
|
|
}
|
|
else {
|
|
return url;
|
|
}
|
|
};
|
|
OSF.WebApp._UpdateLinksForHostAndXdmInfo = function OSF_WebApp$_UpdateLinksForHostAndXdmInfo() {
|
|
var links = document.querySelectorAll("a[data-officejs-navigate]");
|
|
for (var i = 0; i < links.length; i++) {
|
|
if (OSF.WebApp._isGoodUrl(links[i].href)) {
|
|
links[i].href = OSF.WebApp.AddHostInfoAndXdmInfo(links[i].href);
|
|
}
|
|
}
|
|
var forms = document.querySelectorAll("form[data-officejs-navigate]");
|
|
for (var i = 0; i < forms.length; i++) {
|
|
var form = forms[i];
|
|
if (OSF.WebApp._isGoodUrl(form.action)) {
|
|
form.action = OSF.WebApp.AddHostInfoAndXdmInfo(form.action);
|
|
}
|
|
}
|
|
};
|
|
OSF.WebApp._isGoodUrl = function OSF_WebApp$_isGoodUrl(url) {
|
|
if (typeof url == 'undefined')
|
|
return false;
|
|
url = url.trim();
|
|
var colonIndex = url.indexOf(':');
|
|
var protocol = colonIndex > 0 ? url.substr(0, colonIndex) : null;
|
|
var goodUrl = protocol !== null ? protocol.toLowerCase() === "http" || protocol.toLowerCase() === "https" : true;
|
|
goodUrl = goodUrl && url != "#" && url != "/" && url != "" && url != OSF._OfficeAppFactory.getWebAppState().webAppUrl;
|
|
return goodUrl;
|
|
};
|
|
OSF.InitializationHelper = function OSF_InitializationHelper(hostInfo, webAppState, context, settings, hostFacade) {
|
|
this._hostInfo = hostInfo;
|
|
this._webAppState = webAppState;
|
|
this._context = context;
|
|
this._settings = settings;
|
|
this._hostFacade = hostFacade;
|
|
this._appContext = {};
|
|
this._tabbableElements = "a[href]:not([tabindex='-1'])," + "area[href]:not([tabindex='-1'])," + "button:not([disabled]):not([tabindex='-1'])," + "input:not([disabled]):not([tabindex='-1'])," + "select:not([disabled]):not([tabindex='-1'])," + "textarea:not([disabled]):not([tabindex='-1'])," + "*[tabindex]:not([tabindex='-1'])," + "*[contenteditable]:not([disabled]):not([tabindex='-1'])";
|
|
this._initializeSettings = function OSF_InitializationHelper$initializeSettings(appContext, refreshSupported) {
|
|
var settings;
|
|
var serializedSettings = appContext.get_settings();
|
|
var osfSessionStorage = OSF.OUtil.getSessionStorage();
|
|
if (osfSessionStorage) {
|
|
var storageSettings = osfSessionStorage.getItem(OSF._OfficeAppFactory.getCachedSessionSettingsKey());
|
|
if (storageSettings) {
|
|
serializedSettings = JSON.parse(storageSettings);
|
|
}
|
|
else {
|
|
storageSettings = JSON.stringify(serializedSettings);
|
|
osfSessionStorage.setItem(OSF._OfficeAppFactory.getCachedSessionSettingsKey(), storageSettings);
|
|
}
|
|
}
|
|
var deserializedSettings = OSF.DDA.SettingsManager.deserializeSettings(serializedSettings);
|
|
if (refreshSupported) {
|
|
settings = new OSF.DDA.RefreshableSettings(deserializedSettings);
|
|
}
|
|
else {
|
|
settings = new OSF.DDA.Settings(deserializedSettings);
|
|
}
|
|
return settings;
|
|
};
|
|
var windowOpen = function OSF_InitializationHelper$windowOpen(windowObj) {
|
|
var proxy = window.open;
|
|
windowObj.open = function (strUrl, strWindowName, strWindowFeatures) {
|
|
var windowObject = null;
|
|
try {
|
|
windowObject = proxy(strUrl, strWindowName, strWindowFeatures);
|
|
}
|
|
catch (ex) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppCommonMessage("Exception happens at windowOpen." + ex);
|
|
}
|
|
}
|
|
if (!windowObject) {
|
|
var params = {
|
|
"strUrl": strUrl,
|
|
"strWindowName": strWindowName,
|
|
"strWindowFeatures": strWindowFeatures
|
|
};
|
|
if (OSF._OfficeAppFactory.getClientEndPoint()) {
|
|
OSF._OfficeAppFactory.getClientEndPoint().invoke("ContextActivationManager_openWindowInHost", null, params);
|
|
}
|
|
}
|
|
return windowObject;
|
|
};
|
|
};
|
|
windowOpen(window);
|
|
};
|
|
OSF.InitializationHelper.prototype.saveAndSetDialogInfo = function OSF_InitializationHelper$saveAndSetDialogInfo(hostInfoValue) {
|
|
var getAppIdFromWindowLocation = function OSF_InitializationHelper$getAppIdFromWindowLocation() {
|
|
var xdmInfoValue = OSF.OUtil.parseXdmInfo(true);
|
|
if (xdmInfoValue) {
|
|
var items = xdmInfoValue.split("|");
|
|
return items[1];
|
|
}
|
|
return null;
|
|
};
|
|
var osfSessionStorage = OSF.OUtil.getSessionStorage();
|
|
if (osfSessionStorage) {
|
|
if (!hostInfoValue) {
|
|
hostInfoValue = OSF.OUtil.parseHostInfoFromWindowName(true, OSF._OfficeAppFactory.getWindowName());
|
|
}
|
|
if (hostInfoValue && hostInfoValue.indexOf("isDialog") > -1) {
|
|
var appId = getAppIdFromWindowLocation();
|
|
if (appId != null) {
|
|
osfSessionStorage.setItem(appId + "IsDialog", "true");
|
|
}
|
|
this._hostInfo.isDialog = true;
|
|
return;
|
|
}
|
|
this._hostInfo.isDialog = osfSessionStorage.getItem(OSF.OUtil.getXdmFieldValue(OSF.XdmFieldName.AppId, false) + "IsDialog") != null ? true : false;
|
|
}
|
|
};
|
|
OSF.InitializationHelper.prototype.getAppContext = function OSF_InitializationHelper$getAppContext(wnd, gotAppContext) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppCommonMessage("OsfControl activation lifecycle: getAppContext got called.");
|
|
}
|
|
var me = this;
|
|
var getInvocationCallbackWebApp = function OSF_InitializationHelper_getAppContextAsync$getInvocationCallbackWebApp(errorCode, appContext) {
|
|
var settings;
|
|
if (appContext._appName === OSF.AppName.ExcelWebApp) {
|
|
var serializedSettings = appContext._settings;
|
|
settings = {};
|
|
for (var index in serializedSettings) {
|
|
var setting = serializedSettings[index];
|
|
settings[setting[0]] = setting[1];
|
|
}
|
|
}
|
|
else {
|
|
settings = appContext._settings;
|
|
}
|
|
if (appContext._appName === OSF.AppName.OutlookWebApp && !!appContext._requirementMatrix && appContext._requirementMatrix.indexOf("react") == -1) {
|
|
OSF.AgaveHostAction.SendTelemetryEvent = undefined;
|
|
}
|
|
if (!me._hostInfo.isDialog || window.opener == null) {
|
|
var pageUrl = window.location.origin;
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.UpdateTargetUrl, pageUrl]);
|
|
}
|
|
if (errorCode === 0 && appContext._id != undefined && appContext._appName != undefined && appContext._appVersion != undefined && appContext._appUILocale != undefined && appContext._dataLocale != undefined &&
|
|
appContext._docUrl != undefined && appContext._clientMode != undefined && appContext._settings != undefined && appContext._reason != undefined) {
|
|
me._appContext = appContext;
|
|
var appInstanceId = (appContext._appInstanceId ? appContext._appInstanceId : appContext._id);
|
|
var touchEnabled = false;
|
|
var commerceAllowed = true;
|
|
var minorVersion = 0;
|
|
if (appContext._appMinorVersion != undefined) {
|
|
minorVersion = appContext._appMinorVersion;
|
|
}
|
|
var requirementMatrix = undefined;
|
|
if (appContext._requirementMatrix != undefined) {
|
|
requirementMatrix = appContext._requirementMatrix;
|
|
}
|
|
appContext.eToken = appContext.eToken ? appContext.eToken : "";
|
|
var returnedContext = new OSF.OfficeAppContext(appContext._id, appContext._appName, appContext._appVersion, appContext._appUILocale, appContext._dataLocale, appContext._docUrl, appContext._clientMode, settings, appContext._reason, appContext._osfControlType, appContext._eToken, appContext._correlationId, appInstanceId, touchEnabled, commerceAllowed, minorVersion, requirementMatrix, appContext._hostCustomMessage, appContext._hostFullVersion, appContext._clientWindowHeight, appContext._clientWindowWidth, appContext._addinName, appContext._appDomains, appContext._dialogRequirementMatrix, appContext._featureGates, undefined, appContext._initialDisplayMode);
|
|
returnedContext._wacHostEnvironment = appContext._wacHostEnvironment || "0";
|
|
returnedContext._isFromWacAutomation = !!appContext._isFromWacAutomation;
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.initialize(returnedContext);
|
|
}
|
|
gotAppContext(returnedContext);
|
|
}
|
|
else {
|
|
var errorMsg = "Function ContextActivationManager_getAppContextAsync call failed. ErrorCode is " + errorCode + ", exception: " + appContext;
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException(errorMsg);
|
|
}
|
|
throw errorMsg;
|
|
}
|
|
};
|
|
try {
|
|
if (this._hostInfo.isDialog && window.opener != null) {
|
|
var appContext = OfficeExt.WACUtils.parseAppContextFromWindowName(false, OSF._OfficeAppFactory.getWindowName());
|
|
getInvocationCallbackWebApp(0, appContext);
|
|
}
|
|
else {
|
|
this._webAppState.clientEndPoint.invoke("ContextActivationManager_getAppContextAsync", getInvocationCallbackWebApp, this._webAppState.id);
|
|
}
|
|
}
|
|
catch (ex) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Exception thrown when trying to invoke getAppContextAsync. Exception:[" + ex + "]");
|
|
}
|
|
throw ex;
|
|
}
|
|
};
|
|
OSF.InitializationHelper.prototype.isHostOriginTrusted = function OSF_InitializationHelper$isHostOriginTrusted(hostOrigin) {
|
|
};
|
|
OSF.InitializationHelper.prototype.checkReceiverOriginAndRun = function OSF_InitializationHelper$checkReceiverOriginAndRun(funcToRun) {
|
|
var me = this;
|
|
var parsedHostname = OSF.OUtil.parseUrl(me._webAppState.clientEndPoint._targetUrl, false);
|
|
var isHttps = parsedHostname.protocol == "https:";
|
|
var notHttpsErrorMessage = "NotHttps";
|
|
if (me._webAppState.clientEndPoint._hostTrustCheckStatus === Microsoft.Office.Common.HostTrustStatus.unknown) {
|
|
if (!isHttps)
|
|
me._webAppState.clientEndPoint._hostTrustCheckStatus = Microsoft.Office.Common.HostTrustStatus.nothttps;
|
|
if (me._webAppState.clientEndPoint._hostTrustCheckStatus != Microsoft.Office.Common.HostTrustStatus.nothttps) {
|
|
var isOriginValid = Microsoft.Office.Common.XdmCommunicationManager.isHostNameValidWacDomain(parsedHostname.hostname);
|
|
if (me.isHostOriginTrusted) {
|
|
isOriginValid = isOriginValid || me.isHostOriginTrusted(parsedHostname.hostname);
|
|
}
|
|
if (isOriginValid)
|
|
me._webAppState.clientEndPoint._hostTrustCheckStatus = Microsoft.Office.Common.HostTrustStatus.trusted;
|
|
}
|
|
}
|
|
if (!me._webAppState.clientEndPoint._checkStatusLogged && me._hostInfo != null && me._hostInfo !== undefined) {
|
|
OSF.AppTelemetry.onCheckWACHost(me._webAppState.clientEndPoint._hostTrustCheckStatus, me._webAppState.id, me._hostInfo.hostType, me._hostInfo.hostPlatform, me._webAppState.clientEndPoint._targetUrl);
|
|
me._webAppState.clientEndPoint._checkStatusLogged = true;
|
|
}
|
|
if (me._webAppState.clientEndPoint._hostTrustCheckStatus != Microsoft.Office.Common.HostTrustStatus.trusted) {
|
|
var loadAgaveErrorUX = function () {
|
|
var officejsCDNHost = OSF._OfficeAppFactory.getLoadScriptHelper().getOfficeJsBasePath().match(/^https?:\/\/[^:/?#]*(?::([0-9]+))?/);
|
|
if (officejsCDNHost && officejsCDNHost[0]) {
|
|
var agaveErrorUXPath = OSF._OfficeAppFactory.getLoadScriptHelper().getOfficeJsBasePath() + 'AgaveErrorUX/index.html#';
|
|
var hashObj = {
|
|
error: "NotTrustedWAC",
|
|
locale: OSF.getSupportedLocale(me._hostInfo.hostLocale, OSF.ConstantNames.DefaultLocale),
|
|
hostname: parsedHostname.hostname,
|
|
noHttps: !isHttps,
|
|
validate: false
|
|
};
|
|
var hostUserTrustIframe = document.createElement("iframe");
|
|
hostUserTrustIframe.style.visibility = "hidden";
|
|
hostUserTrustIframe.style.height = "0";
|
|
hostUserTrustIframe.style.width = "0";
|
|
function hostUserTrustCallback(event) {
|
|
if ((event.source == hostUserTrustIframe.contentWindow) &&
|
|
(event.origin == officejsCDNHost[0])) {
|
|
try {
|
|
var receivedObj = JSON.parse(event.data);
|
|
var e = Function._validateParams(receivedObj, [{ name: "hostUserTrusted", type: Boolean, mayBeNull: false }
|
|
]);
|
|
if (receivedObj.hostUserTrusted === true) {
|
|
me._webAppState.clientEndPoint._hostTrustCheckStatus = Microsoft.Office.Common.HostTrustStatus.trusted;
|
|
OSF.OUtil.removeEventListener(window, "message", hostUserTrustCallback);
|
|
document.body.removeChild(hostUserTrustIframe);
|
|
}
|
|
else {
|
|
hashObj.validate = false;
|
|
window.location.replace(agaveErrorUXPath + encodeURIComponent(JSON.stringify(hashObj)));
|
|
}
|
|
funcToRun();
|
|
}
|
|
catch (e) {
|
|
document.body.innerHTML = Strings.OfficeOM.L_NotTrustedWAC;
|
|
}
|
|
}
|
|
}
|
|
;
|
|
OSF.OUtil.addEventListener(window, "message", hostUserTrustCallback);
|
|
hashObj.validate = true;
|
|
hostUserTrustIframe.setAttribute('src', agaveErrorUXPath + encodeURIComponent(JSON.stringify(hashObj)));
|
|
hostUserTrustIframe.onload = function () {
|
|
var postingObj = {
|
|
hostname: parsedHostname.hostname,
|
|
noHttps: !isHttps
|
|
};
|
|
hostUserTrustIframe.contentWindow.postMessage(JSON.stringify(postingObj), officejsCDNHost[0]);
|
|
};
|
|
document.body.appendChild(hostUserTrustIframe);
|
|
}
|
|
else {
|
|
document.body.innerHTML = Strings.OfficeOM.L_NotTrustedWAC;
|
|
}
|
|
if (OSF.OUtil.checkFlight(OSF.FlightNames.AddinEnforceHttps)) {
|
|
if (!isHttps)
|
|
throw new Error(notHttpsErrorMessage);
|
|
}
|
|
};
|
|
if (document.body) {
|
|
loadAgaveErrorUX();
|
|
}
|
|
else {
|
|
var checkDone = false;
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
if (!checkDone) {
|
|
checkDone = true;
|
|
loadAgaveErrorUX();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
else {
|
|
funcToRun();
|
|
}
|
|
};
|
|
OSF.InitializationHelper.prototype.setAgaveHostCommunication = function OSF_InitializationHelper$setAgaveHostCommunication() {
|
|
try {
|
|
var me = this;
|
|
var xdmInfoValue = OSF.OUtil.parseXdmInfoWithGivenFragment(false, OSF._OfficeAppFactory.getWindowLocationHash());
|
|
if (!xdmInfoValue && OSF._OfficeAppFactory.getWindowName) {
|
|
xdmInfoValue = OSF.OUtil.parseXdmInfoFromWindowName(false, OSF._OfficeAppFactory.getWindowName());
|
|
}
|
|
if (xdmInfoValue) {
|
|
var xdmItems = OSF.OUtil.getInfoItems(xdmInfoValue);
|
|
if (xdmItems != undefined && xdmItems.length >= 3) {
|
|
me._webAppState.conversationID = xdmItems[0];
|
|
me._webAppState.id = xdmItems[1];
|
|
me._webAppState.webAppUrl = xdmItems[2].indexOf(":") >= 0 ? xdmItems[2] : decodeURIComponent(xdmItems[2]);
|
|
}
|
|
}
|
|
me._webAppState.wnd = window.opener != null ? window.opener : window.parent;
|
|
var serializerVersion = OSF.OUtil.parseSerializerVersionWithGivenFragment(false, OSF._OfficeAppFactory.getWindowLocationHash());
|
|
if (isNaN(serializerVersion) && OSF._OfficeAppFactory.getWindowName) {
|
|
serializerVersion = OSF.OUtil.parseSerializerVersionFromWindowName(false, OSF._OfficeAppFactory.getWindowName());
|
|
}
|
|
me._webAppState.serializerVersion = serializerVersion;
|
|
if (this._hostInfo.isDialog && window.opener != null) {
|
|
return;
|
|
}
|
|
me._webAppState.clientEndPoint = Microsoft.Office.Common.XdmCommunicationManager.connect(me._webAppState.conversationID, me._webAppState.wnd, me._webAppState.webAppUrl, me._webAppState.serializerVersion);
|
|
me._webAppState.serviceEndPoint = Microsoft.Office.Common.XdmCommunicationManager.createServiceEndPoint(me._webAppState.id);
|
|
me._webAppState.clientEndPoint._checkReceiverOriginAndRun = function (funcToRun) {
|
|
me.checkReceiverOriginAndRun(funcToRun);
|
|
};
|
|
var notificationConversationId = me._webAppState.conversationID + OSF.SharedConstants.NotificationConversationIdSuffix;
|
|
me._webAppState.serviceEndPoint.registerConversation(notificationConversationId, me._webAppState.webAppUrl);
|
|
var notifyAgave = function OSF__OfficeAppFactory_initialize$notifyAgave(params) {
|
|
var actionId;
|
|
if (typeof params == "string") {
|
|
actionId = params;
|
|
}
|
|
else {
|
|
actionId = params[0];
|
|
}
|
|
switch (actionId) {
|
|
case OSF.AgaveHostAction.Select:
|
|
me._webAppState.focused = true;
|
|
break;
|
|
case OSF.AgaveHostAction.UnSelect:
|
|
me._webAppState.focused = false;
|
|
break;
|
|
case OSF.AgaveHostAction.TabIn:
|
|
case OSF.AgaveHostAction.CtrlF6In:
|
|
window.focus();
|
|
var list = document.querySelectorAll(me._tabbableElements);
|
|
var focused = OSF.OUtil.focusToFirstTabbable(list, false);
|
|
if (!focused) {
|
|
window.blur();
|
|
me._webAppState.focused = false;
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.ExitNoFocusable]);
|
|
}
|
|
break;
|
|
case OSF.AgaveHostAction.TabInShift:
|
|
window.focus();
|
|
var list = document.querySelectorAll(me._tabbableElements);
|
|
var focused = OSF.OUtil.focusToFirstTabbable(list, true);
|
|
if (!focused) {
|
|
window.blur();
|
|
me._webAppState.focused = false;
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.ExitNoFocusableShift]);
|
|
}
|
|
break;
|
|
case OSF.AgaveHostAction.SendMessage:
|
|
if (window.Office.context.messaging.onMessage) {
|
|
var message = params[1];
|
|
window.Office.context.messaging.onMessage(message);
|
|
}
|
|
break;
|
|
case OSF.AgaveHostAction.TaskPaneHeaderButtonClicked:
|
|
if (window.Office.context.ui.taskPaneAction.onHeaderButtonClick) {
|
|
window.Office.context.ui.taskPaneAction.onHeaderButtonClick();
|
|
}
|
|
break;
|
|
default:
|
|
OsfMsAjaxFactory.msAjaxDebug.trace("actionId " + actionId + " notifyAgave is wrong.");
|
|
break;
|
|
}
|
|
};
|
|
me._webAppState.serviceEndPoint.registerMethod("Office_notifyAgave", notifyAgave, Microsoft.Office.Common.InvokeType.async, false);
|
|
me.addOrRemoveEventListenersForWindow(true);
|
|
}
|
|
catch (ex) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Exception thrown in setAgaveHostCommunication. Exception:[" + ex + "]");
|
|
}
|
|
throw ex;
|
|
}
|
|
};
|
|
OSF.InitializationHelper.prototype.addOrRemoveEventListenersForWindow = function OSF_InitializationHelper$addOrRemoveEventListenersForWindow(isAdd) {
|
|
var me = this;
|
|
var onWindowFocus = function () {
|
|
if (!me._webAppState.focused) {
|
|
me._webAppState.focused = true;
|
|
}
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.Select]);
|
|
};
|
|
var onWindowBlur = function () {
|
|
if (!OSF) {
|
|
return;
|
|
}
|
|
if (me._webAppState.focused) {
|
|
me._webAppState.focused = false;
|
|
}
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.UnSelect]);
|
|
};
|
|
var onWindowKeydown = function (e) {
|
|
e.preventDefault = e.preventDefault || function () {
|
|
e.returnValue = false;
|
|
};
|
|
if (e.keyCode == 117 && (e.ctrlKey || e.metaKey)) {
|
|
e.preventDefault();
|
|
var actionId = OSF.AgaveHostAction.CtrlF6Exit;
|
|
if (e.shiftKey) {
|
|
actionId = OSF.AgaveHostAction.CtrlF6ExitShift;
|
|
}
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, actionId]);
|
|
}
|
|
else if (e.keyCode == 9) {
|
|
var isPowerPointModernSlideShow = me._appContext._appSettings &&
|
|
(me._appContext._appSettings['PowerPointModernSlideShowEnabled'] || false) &&
|
|
me._appContext._appName == OSF.AppName.PowerpointWebApp &&
|
|
me._appContext._clientMode == OSF.ClientMode.ReadOnly &&
|
|
me._appContext._osfControlType == OSF.OsfControlType.DocumentLevel;
|
|
if (!isPowerPointModernSlideShow) {
|
|
e.preventDefault();
|
|
}
|
|
var allTabbableElements = document.querySelectorAll(me._tabbableElements);
|
|
var focused = OSF.OUtil.focusToNextTabbable(allTabbableElements, e.target || e.srcElement, e.shiftKey);
|
|
if (focused) {
|
|
if (isPowerPointModernSlideShow) {
|
|
e.preventDefault();
|
|
}
|
|
}
|
|
else {
|
|
if (me._hostInfo.isDialog) {
|
|
OSF.OUtil.focusToFirstTabbable(allTabbableElements, e.shiftKey);
|
|
}
|
|
else {
|
|
if (e.shiftKey) {
|
|
if (!isPowerPointModernSlideShow) {
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.TabExitShift]);
|
|
}
|
|
}
|
|
else {
|
|
if (OSF.OUtil.checkFlight(OSF.FlightNames.SetFocusToTaskpaneIsEnabled) && e.target && e.target.tagName.toUpperCase() === "BODY") {
|
|
OSF.OUtil.focusToFirstTabbable(allTabbableElements, e.shiftKey);
|
|
}
|
|
else {
|
|
if (!isPowerPointModernSlideShow) {
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.TabExit]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (e.keyCode == 27) {
|
|
e.preventDefault();
|
|
me.dismissDialogNotification && me.dismissDialogNotification();
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.EscExit]);
|
|
}
|
|
else if (e.keyCode == 113) {
|
|
e.preventDefault();
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.F2Exit]);
|
|
}
|
|
else if ((e.ctrlKey || e.metaKey || e.shiftKey || e.altKey) && e.keyCode >= 1 && e.keyCode <= 255) {
|
|
var params = {
|
|
"keyCode": e.keyCode,
|
|
"shiftKey": e.shiftKey,
|
|
"altKey": e.altKey,
|
|
"ctrlKey": e.ctrlKey,
|
|
"metaKey": e.metaKey
|
|
};
|
|
me._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [me._webAppState.id, OSF.AgaveHostAction.KeyboardShortcuts, params]);
|
|
}
|
|
};
|
|
var onWindowKeypress = function (e) {
|
|
if (e.keyCode == 117 && e.ctrlKey) {
|
|
if (e.preventDefault) {
|
|
e.preventDefault();
|
|
}
|
|
else {
|
|
e.returnValue = false;
|
|
}
|
|
}
|
|
};
|
|
if (isAdd) {
|
|
OSF.OUtil.addEventListener(window, "focus", onWindowFocus);
|
|
OSF.OUtil.addEventListener(window, "blur", onWindowBlur);
|
|
OSF.OUtil.addEventListener(window, "keydown", onWindowKeydown);
|
|
OSF.OUtil.addEventListener(window, "keypress", onWindowKeypress);
|
|
}
|
|
else {
|
|
OSF.OUtil.removeEventListener(window, "focus", onWindowFocus);
|
|
OSF.OUtil.removeEventListener(window, "blur", onWindowBlur);
|
|
OSF.OUtil.removeEventListener(window, "keydown", onWindowKeydown);
|
|
OSF.OUtil.removeEventListener(window, "keypress", onWindowKeypress);
|
|
}
|
|
};
|
|
OSF.InitializationHelper.prototype.initWebDialog = function OSF_InitializationHelper$initWebDialog(appContext) {
|
|
if (appContext.get_isDialog()) {
|
|
if (OSF.DDA.UI.ChildUI) {
|
|
var isPopupWindow = (window.opener != null);
|
|
appContext.ui = new OSF.DDA.UI.ChildUI(isPopupWindow);
|
|
if (isPopupWindow) {
|
|
this.registerMessageReceivedEventForWindowDialog && this.registerMessageReceivedEventForWindowDialog();
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
if (OSF.DDA.UI.ParentUI) {
|
|
appContext.ui = new OSF.DDA.UI.ParentUI();
|
|
if (OfficeExt.Container) {
|
|
OSF.DDA.DispIdHost.addAsyncMethods(appContext.ui, [OSF.DDA.AsyncMethodNames.CloseContainerAsync]);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
OSF.InitializationHelper.prototype.initWebAuth = function OSF_InitializationHelper$initWebAuth(appContext) {
|
|
if (OSF.DDA.Auth) {
|
|
appContext.auth = new OSF.DDA.Auth();
|
|
OSF.DDA.DispIdHost.addAsyncMethods(appContext.auth, [OSF.DDA.AsyncMethodNames.GetAccessTokenAsync]);
|
|
}
|
|
};
|
|
OSF.InitializationHelper.prototype.initWebAuthImplicit = function OSF_InitializationHelper$initWebAuthImplicit(appContext) {
|
|
if (OSF.DDA.WebAuth) {
|
|
appContext.webAuth = new OSF.DDA.WebAuth();
|
|
OSF.DDA.DispIdHost.addAsyncMethods(appContext.webAuth, [OSF.DDA.AsyncMethodNames.GetAuthContextAsync]);
|
|
}
|
|
};
|
|
OSF.getClientEndPoint = function OSF$getClientEndPoint() {
|
|
var initializationHelper = OSF._OfficeAppFactory.getInitializationHelper();
|
|
return initializationHelper._webAppState.clientEndPoint;
|
|
};
|
|
OSF.InitializationHelper.prototype.prepareRightAfterWebExtensionInitialize = function OSF_InitializationHelper$prepareRightAfterWebExtensionInitialize() {
|
|
if (this._hostInfo.isDialog) {
|
|
window.focus();
|
|
var list = document.querySelectorAll(this._tabbableElements);
|
|
var focused = OSF.OUtil.focusToFirstTabbable(list, false);
|
|
if (!focused) {
|
|
window.blur();
|
|
this._webAppState.focused = false;
|
|
if (this._webAppState.clientEndPoint) {
|
|
this._webAppState.clientEndPoint.invoke("ContextActivationManager_notifyHost", null, [this._webAppState.id, OSF.AgaveHostAction.ExitNoFocusable]);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
OSF.Messaging.sendMessage = function OSF_Messaging$sendMessage(message) {
|
|
OSF.getClientEndPoint().invoke("ContextActivationManager_notifyHost", null, [OSF._OfficeAppFactory.getWebAppState().id, OSF.AgaveHostAction.SendMessage, message]);
|
|
};
|
|
OSF.ExtensionLifeCycle.launchExtensionComponent = function OSF_ExtensionLifeCycle$launchExtensionComponent(params) {
|
|
OSF.getClientEndPoint().invoke("ContextActivationManager_notifyHost", null, [OSF._OfficeAppFactory.getWebAppState().id, OSF.AgaveHostAction.LaunchExtensionComponent, params]);
|
|
};
|
|
OSF.ExtensionLifeCycle.stopExtensionComponent = function OSF_ExtensionLifeCycle$stopExtensionComponent(params) {
|
|
OSF.getClientEndPoint().invoke("ContextActivationManager_notifyHost", null, [OSF._OfficeAppFactory.getWebAppState().id, OSF.AgaveHostAction.StopExtensionComponent, params]);
|
|
};
|
|
OSF.ExtensionLifeCycle.restartExtensionComponent = function OSF_ExtensionLifeCycle$restartExtensionComponent(params) {
|
|
OSF.getClientEndPoint().invoke("ContextActivationManager_notifyHost", null, [OSF._OfficeAppFactory.getWebAppState().id, OSF.AgaveHostAction.RestartExtensionComponent, params]);
|
|
};
|
|
OSF.TaskPaneAction.enableHeaderButton = function OSF_TaskPaneAction$enableHeaderButton(params) {
|
|
OSF.getClientEndPoint().invoke("ContextActivationManager_notifyHost", null, [OSF._OfficeAppFactory.getWebAppState().id, OSF.AgaveHostAction.EnableTaskPaneHeaderButton, params]);
|
|
};
|
|
OSF.TaskPaneAction.disableHeaderButton = function OSF_TaskPaneAction$disableHeaderButton() {
|
|
OSF.getClientEndPoint().invoke("ContextActivationManager_notifyHost", null, [OSF._OfficeAppFactory.getWebAppState().id, OSF.AgaveHostAction.DisableTaskPaneHeaderButton]);
|
|
};
|
|
OSF.RibbonGallery.refreshRibbon = function OSF_RibbonGallery$refreshRibbon(params) {
|
|
OSF.getClientEndPoint().invoke("ContextActivationManager_notifyHost", null, [OSF._OfficeAppFactory.getWebAppState().id, OSF.AgaveHostAction.RefreshRibbonGallery, params]);
|
|
};
|
|
OSF.CommonUI = {
|
|
HostButtonBorderColor: "#f5ba9d",
|
|
HostButtonBackgroundColor: "#fcf0ed"
|
|
};
|
|
var OSFLog;
|
|
(function (OSFLog) {
|
|
var BaseUsageData = (function () {
|
|
function BaseUsageData(table) {
|
|
this._table = table;
|
|
this._fields = {};
|
|
}
|
|
Object.defineProperty(BaseUsageData.prototype, "Fields", {
|
|
get: function () {
|
|
return this._fields;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(BaseUsageData.prototype, "Table", {
|
|
get: function () {
|
|
return this._table;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
BaseUsageData.prototype.SerializeFields = function () {
|
|
};
|
|
BaseUsageData.prototype.SetSerializedField = function (key, value) {
|
|
if (typeof (value) !== "undefined" && value !== null) {
|
|
this._serializedFields[key] = value.toString();
|
|
}
|
|
};
|
|
BaseUsageData.prototype.SerializeRow = function () {
|
|
this._serializedFields = {};
|
|
this.SetSerializedField("Table", this._table);
|
|
this.SerializeFields();
|
|
return JSON.stringify(this._serializedFields);
|
|
};
|
|
return BaseUsageData;
|
|
}());
|
|
OSFLog.BaseUsageData = BaseUsageData;
|
|
var AppActivatedUsageData = (function (_super) {
|
|
__extends(AppActivatedUsageData, _super);
|
|
function AppActivatedUsageData() {
|
|
return _super.call(this, "AppActivated") || this;
|
|
}
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "CorrelationId", {
|
|
get: function () { return this.Fields["CorrelationId"]; },
|
|
set: function (value) { this.Fields["CorrelationId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "SessionId", {
|
|
get: function () { return this.Fields["SessionId"]; },
|
|
set: function (value) { this.Fields["SessionId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "AppId", {
|
|
get: function () { return this.Fields["AppId"]; },
|
|
set: function (value) { this.Fields["AppId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "AppInstanceId", {
|
|
get: function () { return this.Fields["AppInstanceId"]; },
|
|
set: function (value) { this.Fields["AppInstanceId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "AppURL", {
|
|
get: function () { return this.Fields["AppURL"]; },
|
|
set: function (value) { this.Fields["AppURL"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "AssetId", {
|
|
get: function () { return this.Fields["AssetId"]; },
|
|
set: function (value) { this.Fields["AssetId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "Browser", {
|
|
get: function () { return this.Fields["Browser"]; },
|
|
set: function (value) { this.Fields["Browser"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "UserId", {
|
|
get: function () { return this.Fields["UserId"]; },
|
|
set: function (value) { this.Fields["UserId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "Host", {
|
|
get: function () { return this.Fields["Host"]; },
|
|
set: function (value) { this.Fields["Host"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "HostVersion", {
|
|
get: function () { return this.Fields["HostVersion"]; },
|
|
set: function (value) { this.Fields["HostVersion"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "ClientId", {
|
|
get: function () { return this.Fields["ClientId"]; },
|
|
set: function (value) { this.Fields["ClientId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "AppSizeWidth", {
|
|
get: function () { return this.Fields["AppSizeWidth"]; },
|
|
set: function (value) { this.Fields["AppSizeWidth"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "AppSizeHeight", {
|
|
get: function () { return this.Fields["AppSizeHeight"]; },
|
|
set: function (value) { this.Fields["AppSizeHeight"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "Message", {
|
|
get: function () { return this.Fields["Message"]; },
|
|
set: function (value) { this.Fields["Message"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "DocUrl", {
|
|
get: function () { return this.Fields["DocUrl"]; },
|
|
set: function (value) { this.Fields["DocUrl"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "OfficeJSVersion", {
|
|
get: function () { return this.Fields["OfficeJSVersion"]; },
|
|
set: function (value) { this.Fields["OfficeJSVersion"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "HostJSVersion", {
|
|
get: function () { return this.Fields["HostJSVersion"]; },
|
|
set: function (value) { this.Fields["HostJSVersion"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "WacHostEnvironment", {
|
|
get: function () { return this.Fields["WacHostEnvironment"]; },
|
|
set: function (value) { this.Fields["WacHostEnvironment"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppActivatedUsageData.prototype, "IsFromWacAutomation", {
|
|
get: function () { return this.Fields["IsFromWacAutomation"]; },
|
|
set: function (value) { this.Fields["IsFromWacAutomation"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
AppActivatedUsageData.prototype.SerializeFields = function () {
|
|
this.SetSerializedField("CorrelationId", this.CorrelationId);
|
|
this.SetSerializedField("SessionId", this.SessionId);
|
|
this.SetSerializedField("AppId", this.AppId);
|
|
this.SetSerializedField("AppInstanceId", this.AppInstanceId);
|
|
this.SetSerializedField("AppURL", this.AppURL);
|
|
this.SetSerializedField("AssetId", this.AssetId);
|
|
this.SetSerializedField("Browser", this.Browser);
|
|
this.SetSerializedField("UserId", this.UserId);
|
|
this.SetSerializedField("Host", this.Host);
|
|
this.SetSerializedField("HostVersion", this.HostVersion);
|
|
this.SetSerializedField("ClientId", this.ClientId);
|
|
this.SetSerializedField("AppSizeWidth", this.AppSizeWidth);
|
|
this.SetSerializedField("AppSizeHeight", this.AppSizeHeight);
|
|
this.SetSerializedField("Message", this.Message);
|
|
this.SetSerializedField("DocUrl", this.DocUrl);
|
|
this.SetSerializedField("OfficeJSVersion", this.OfficeJSVersion);
|
|
this.SetSerializedField("HostJSVersion", this.HostJSVersion);
|
|
this.SetSerializedField("WacHostEnvironment", this.WacHostEnvironment);
|
|
this.SetSerializedField("IsFromWacAutomation", this.IsFromWacAutomation);
|
|
};
|
|
return AppActivatedUsageData;
|
|
}(BaseUsageData));
|
|
OSFLog.AppActivatedUsageData = AppActivatedUsageData;
|
|
var ScriptLoadUsageData = (function (_super) {
|
|
__extends(ScriptLoadUsageData, _super);
|
|
function ScriptLoadUsageData() {
|
|
return _super.call(this, "ScriptLoad") || this;
|
|
}
|
|
Object.defineProperty(ScriptLoadUsageData.prototype, "CorrelationId", {
|
|
get: function () { return this.Fields["CorrelationId"]; },
|
|
set: function (value) { this.Fields["CorrelationId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ScriptLoadUsageData.prototype, "SessionId", {
|
|
get: function () { return this.Fields["SessionId"]; },
|
|
set: function (value) { this.Fields["SessionId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ScriptLoadUsageData.prototype, "ScriptId", {
|
|
get: function () { return this.Fields["ScriptId"]; },
|
|
set: function (value) { this.Fields["ScriptId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ScriptLoadUsageData.prototype, "StartTime", {
|
|
get: function () { return this.Fields["StartTime"]; },
|
|
set: function (value) { this.Fields["StartTime"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ScriptLoadUsageData.prototype, "ResponseTime", {
|
|
get: function () { return this.Fields["ResponseTime"]; },
|
|
set: function (value) { this.Fields["ResponseTime"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ScriptLoadUsageData.prototype.SerializeFields = function () {
|
|
this.SetSerializedField("CorrelationId", this.CorrelationId);
|
|
this.SetSerializedField("SessionId", this.SessionId);
|
|
this.SetSerializedField("ScriptId", this.ScriptId);
|
|
this.SetSerializedField("StartTime", this.StartTime);
|
|
this.SetSerializedField("ResponseTime", this.ResponseTime);
|
|
};
|
|
return ScriptLoadUsageData;
|
|
}(BaseUsageData));
|
|
OSFLog.ScriptLoadUsageData = ScriptLoadUsageData;
|
|
var AppClosedUsageData = (function (_super) {
|
|
__extends(AppClosedUsageData, _super);
|
|
function AppClosedUsageData() {
|
|
return _super.call(this, "AppClosed") || this;
|
|
}
|
|
Object.defineProperty(AppClosedUsageData.prototype, "CorrelationId", {
|
|
get: function () { return this.Fields["CorrelationId"]; },
|
|
set: function (value) { this.Fields["CorrelationId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppClosedUsageData.prototype, "SessionId", {
|
|
get: function () { return this.Fields["SessionId"]; },
|
|
set: function (value) { this.Fields["SessionId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppClosedUsageData.prototype, "FocusTime", {
|
|
get: function () { return this.Fields["FocusTime"]; },
|
|
set: function (value) { this.Fields["FocusTime"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppClosedUsageData.prototype, "AppSizeFinalWidth", {
|
|
get: function () { return this.Fields["AppSizeFinalWidth"]; },
|
|
set: function (value) { this.Fields["AppSizeFinalWidth"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppClosedUsageData.prototype, "AppSizeFinalHeight", {
|
|
get: function () { return this.Fields["AppSizeFinalHeight"]; },
|
|
set: function (value) { this.Fields["AppSizeFinalHeight"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppClosedUsageData.prototype, "OpenTime", {
|
|
get: function () { return this.Fields["OpenTime"]; },
|
|
set: function (value) { this.Fields["OpenTime"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppClosedUsageData.prototype, "CloseMethod", {
|
|
get: function () { return this.Fields["CloseMethod"]; },
|
|
set: function (value) { this.Fields["CloseMethod"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
AppClosedUsageData.prototype.SerializeFields = function () {
|
|
this.SetSerializedField("CorrelationId", this.CorrelationId);
|
|
this.SetSerializedField("SessionId", this.SessionId);
|
|
this.SetSerializedField("FocusTime", this.FocusTime);
|
|
this.SetSerializedField("AppSizeFinalWidth", this.AppSizeFinalWidth);
|
|
this.SetSerializedField("AppSizeFinalHeight", this.AppSizeFinalHeight);
|
|
this.SetSerializedField("OpenTime", this.OpenTime);
|
|
this.SetSerializedField("CloseMethod", this.CloseMethod);
|
|
};
|
|
return AppClosedUsageData;
|
|
}(BaseUsageData));
|
|
OSFLog.AppClosedUsageData = AppClosedUsageData;
|
|
var APIUsageUsageData = (function (_super) {
|
|
__extends(APIUsageUsageData, _super);
|
|
function APIUsageUsageData() {
|
|
return _super.call(this, "APIUsage") || this;
|
|
}
|
|
Object.defineProperty(APIUsageUsageData.prototype, "CorrelationId", {
|
|
get: function () { return this.Fields["CorrelationId"]; },
|
|
set: function (value) { this.Fields["CorrelationId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(APIUsageUsageData.prototype, "SessionId", {
|
|
get: function () { return this.Fields["SessionId"]; },
|
|
set: function (value) { this.Fields["SessionId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(APIUsageUsageData.prototype, "APIType", {
|
|
get: function () { return this.Fields["APIType"]; },
|
|
set: function (value) { this.Fields["APIType"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(APIUsageUsageData.prototype, "APIID", {
|
|
get: function () { return this.Fields["APIID"]; },
|
|
set: function (value) { this.Fields["APIID"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(APIUsageUsageData.prototype, "Parameters", {
|
|
get: function () { return this.Fields["Parameters"]; },
|
|
set: function (value) { this.Fields["Parameters"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(APIUsageUsageData.prototype, "ResponseTime", {
|
|
get: function () { return this.Fields["ResponseTime"]; },
|
|
set: function (value) { this.Fields["ResponseTime"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(APIUsageUsageData.prototype, "ErrorType", {
|
|
get: function () { return this.Fields["ErrorType"]; },
|
|
set: function (value) { this.Fields["ErrorType"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
APIUsageUsageData.prototype.SerializeFields = function () {
|
|
this.SetSerializedField("CorrelationId", this.CorrelationId);
|
|
this.SetSerializedField("SessionId", this.SessionId);
|
|
this.SetSerializedField("APIType", this.APIType);
|
|
this.SetSerializedField("APIID", this.APIID);
|
|
this.SetSerializedField("Parameters", this.Parameters);
|
|
this.SetSerializedField("ResponseTime", this.ResponseTime);
|
|
this.SetSerializedField("ErrorType", this.ErrorType);
|
|
};
|
|
return APIUsageUsageData;
|
|
}(BaseUsageData));
|
|
OSFLog.APIUsageUsageData = APIUsageUsageData;
|
|
var AppInitializationUsageData = (function (_super) {
|
|
__extends(AppInitializationUsageData, _super);
|
|
function AppInitializationUsageData() {
|
|
return _super.call(this, "AppInitialization") || this;
|
|
}
|
|
Object.defineProperty(AppInitializationUsageData.prototype, "CorrelationId", {
|
|
get: function () { return this.Fields["CorrelationId"]; },
|
|
set: function (value) { this.Fields["CorrelationId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppInitializationUsageData.prototype, "SessionId", {
|
|
get: function () { return this.Fields["SessionId"]; },
|
|
set: function (value) { this.Fields["SessionId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppInitializationUsageData.prototype, "SuccessCode", {
|
|
get: function () { return this.Fields["SuccessCode"]; },
|
|
set: function (value) { this.Fields["SuccessCode"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AppInitializationUsageData.prototype, "Message", {
|
|
get: function () { return this.Fields["Message"]; },
|
|
set: function (value) { this.Fields["Message"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
AppInitializationUsageData.prototype.SerializeFields = function () {
|
|
this.SetSerializedField("CorrelationId", this.CorrelationId);
|
|
this.SetSerializedField("SessionId", this.SessionId);
|
|
this.SetSerializedField("SuccessCode", this.SuccessCode);
|
|
this.SetSerializedField("Message", this.Message);
|
|
};
|
|
return AppInitializationUsageData;
|
|
}(BaseUsageData));
|
|
OSFLog.AppInitializationUsageData = AppInitializationUsageData;
|
|
var CheckWACHostUsageData = (function (_super) {
|
|
__extends(CheckWACHostUsageData, _super);
|
|
function CheckWACHostUsageData() {
|
|
return _super.call(this, "CheckWACHost") || this;
|
|
}
|
|
Object.defineProperty(CheckWACHostUsageData.prototype, "isWacKnownHost", {
|
|
get: function () { return this.Fields["isWacKnownHost"]; },
|
|
set: function (value) { this.Fields["isWacKnownHost"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(CheckWACHostUsageData.prototype, "instanceId", {
|
|
get: function () { return this.Fields["instanceId"]; },
|
|
set: function (value) { this.Fields["instanceId"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(CheckWACHostUsageData.prototype, "hostType", {
|
|
get: function () { return this.Fields["hostType"]; },
|
|
set: function (value) { this.Fields["hostType"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(CheckWACHostUsageData.prototype, "hostPlatform", {
|
|
get: function () { return this.Fields["hostPlatform"]; },
|
|
set: function (value) { this.Fields["hostPlatform"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(CheckWACHostUsageData.prototype, "wacDomain", {
|
|
get: function () { return this.Fields["wacDomain"]; },
|
|
set: function (value) { this.Fields["wacDomain"] = value; },
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
CheckWACHostUsageData.prototype.SerializeFields = function () {
|
|
this.SetSerializedField("isWacKnownHost", this.isWacKnownHost);
|
|
this.SetSerializedField("instanceId", this.instanceId);
|
|
this.SetSerializedField("hostType", this.hostType);
|
|
this.SetSerializedField("hostPlatform", this.hostPlatform);
|
|
this.SetSerializedField("wacDomain", this.wacDomain);
|
|
};
|
|
return CheckWACHostUsageData;
|
|
}(BaseUsageData));
|
|
OSFLog.CheckWACHostUsageData = CheckWACHostUsageData;
|
|
})(OSFLog || (OSFLog = {}));
|
|
var Logger;
|
|
(function (Logger) {
|
|
"use strict";
|
|
var TraceLevel;
|
|
(function (TraceLevel) {
|
|
TraceLevel[TraceLevel["info"] = 0] = "info";
|
|
TraceLevel[TraceLevel["warning"] = 1] = "warning";
|
|
TraceLevel[TraceLevel["error"] = 2] = "error";
|
|
})(TraceLevel = Logger.TraceLevel || (Logger.TraceLevel = {}));
|
|
var SendFlag;
|
|
(function (SendFlag) {
|
|
SendFlag[SendFlag["none"] = 0] = "none";
|
|
SendFlag[SendFlag["flush"] = 1] = "flush";
|
|
})(SendFlag = Logger.SendFlag || (Logger.SendFlag = {}));
|
|
function allowUploadingData() {
|
|
}
|
|
Logger.allowUploadingData = allowUploadingData;
|
|
function sendLog(traceLevel, message, flag) {
|
|
}
|
|
Logger.sendLog = sendLog;
|
|
function creatULSEndpoint() {
|
|
try {
|
|
return new ULSEndpointProxy();
|
|
}
|
|
catch (e) {
|
|
return null;
|
|
}
|
|
}
|
|
var ULSEndpointProxy = (function () {
|
|
function ULSEndpointProxy() {
|
|
}
|
|
ULSEndpointProxy.prototype.writeLog = function (log) {
|
|
};
|
|
ULSEndpointProxy.prototype.loadProxyFrame = function () {
|
|
};
|
|
return ULSEndpointProxy;
|
|
}());
|
|
if (!OSF.Logger) {
|
|
OSF.Logger = Logger;
|
|
}
|
|
Logger.ulsEndpoint = creatULSEndpoint();
|
|
})(Logger || (Logger = {}));
|
|
var OSFAriaLogger;
|
|
(function (OSFAriaLogger) {
|
|
var TelemetryEventAppActivated = { name: "AppActivated", enabled: true, critical: true, points: [
|
|
{ name: "Browser", type: "string" },
|
|
{ name: "Message", type: "string" },
|
|
{ name: "Host", type: "string" },
|
|
{ name: "AppSizeWidth", type: "int64" },
|
|
{ name: "AppSizeHeight", type: "int64" },
|
|
{ name: "IsFromWacAutomation", type: "string" },
|
|
] };
|
|
var TelemetryEventScriptLoad = { name: "ScriptLoad", enabled: true, critical: false, points: [
|
|
{ name: "ScriptId", type: "string" },
|
|
{ name: "StartTime", type: "double" },
|
|
{ name: "ResponseTime", type: "double" },
|
|
] };
|
|
var enableAPIUsage = shouldAPIUsageBeEnabled();
|
|
var TelemetryEventApiUsage = { name: "APIUsage", enabled: enableAPIUsage, critical: false, points: [
|
|
{ name: "APIType", type: "string" },
|
|
{ name: "APIID", type: "int64" },
|
|
{ name: "Parameters", type: "string" },
|
|
{ name: "ResponseTime", type: "int64" },
|
|
{ name: "ErrorType", type: "int64" },
|
|
] };
|
|
var TelemetryEventAppInitialization = { name: "AppInitialization", enabled: true, critical: false, points: [
|
|
{ name: "SuccessCode", type: "int64" },
|
|
{ name: "Message", type: "string" },
|
|
] };
|
|
var TelemetryEventAppClosed = { name: "AppClosed", enabled: true, critical: false, points: [
|
|
{ name: "FocusTime", type: "int64" },
|
|
{ name: "AppSizeFinalWidth", type: "int64" },
|
|
{ name: "AppSizeFinalHeight", type: "int64" },
|
|
{ name: "OpenTime", type: "int64" },
|
|
] };
|
|
var TelemetryEventCheckWACHost = { name: "CheckWACHost", enabled: true, critical: false, points: [
|
|
{ name: "isWacKnownHost", type: "int64" },
|
|
{ name: "solutionId", type: "string" },
|
|
{ name: "hostType", type: "string" },
|
|
{ name: "hostPlatform", type: "string" },
|
|
{ name: "correlationId", type: "string" },
|
|
] };
|
|
var TelemetryEvents = [
|
|
TelemetryEventAppActivated,
|
|
TelemetryEventScriptLoad,
|
|
TelemetryEventApiUsage,
|
|
TelemetryEventAppInitialization,
|
|
TelemetryEventAppClosed,
|
|
TelemetryEventCheckWACHost,
|
|
];
|
|
function createDataField(value, point) {
|
|
var key = point.rename === undefined ? point.name : point.rename;
|
|
var type = point.type;
|
|
var field = undefined;
|
|
switch (type) {
|
|
case "string":
|
|
field = oteljs.makeStringDataField(key, value);
|
|
break;
|
|
case "double":
|
|
if (typeof value === "string") {
|
|
value = parseFloat(value);
|
|
}
|
|
field = oteljs.makeDoubleDataField(key, value);
|
|
break;
|
|
case "int64":
|
|
if (typeof value === "string") {
|
|
value = parseInt(value);
|
|
}
|
|
field = oteljs.makeInt64DataField(key, value);
|
|
break;
|
|
case "boolean":
|
|
if (typeof value === "string") {
|
|
value = value === "true";
|
|
}
|
|
field = oteljs.makeBooleanDataField(key, value);
|
|
break;
|
|
}
|
|
return field;
|
|
}
|
|
function getEventDefinition(eventName) {
|
|
for (var _i = 0, TelemetryEvents_1 = TelemetryEvents; _i < TelemetryEvents_1.length; _i++) {
|
|
var event_1 = TelemetryEvents_1[_i];
|
|
if (event_1.name === eventName) {
|
|
return event_1;
|
|
}
|
|
}
|
|
return undefined;
|
|
}
|
|
function eventEnabled(eventName) {
|
|
var eventDefinition = getEventDefinition(eventName);
|
|
if (eventDefinition === undefined) {
|
|
return false;
|
|
}
|
|
return eventDefinition.enabled;
|
|
}
|
|
function shouldAPIUsageBeEnabled() {
|
|
if (!OSF._OfficeAppFactory || !OSF._OfficeAppFactory.getHostInfo) {
|
|
return false;
|
|
}
|
|
var hostInfo = OSF._OfficeAppFactory.getHostInfo();
|
|
if (!hostInfo) {
|
|
return false;
|
|
}
|
|
switch (hostInfo["hostType"]) {
|
|
case "outlook":
|
|
switch (hostInfo["hostPlatform"]) {
|
|
case "mac":
|
|
case "web":
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
function generateTelemetryEvent(eventName, telemetryData) {
|
|
var eventDefinition = getEventDefinition(eventName);
|
|
if (eventDefinition === undefined) {
|
|
return undefined;
|
|
}
|
|
var dataFields = [];
|
|
for (var _i = 0, _a = eventDefinition.points; _i < _a.length; _i++) {
|
|
var point = _a[_i];
|
|
var key = point.name;
|
|
var value = telemetryData[key];
|
|
if (value === undefined) {
|
|
continue;
|
|
}
|
|
var field = createDataField(value, point);
|
|
if (field !== undefined) {
|
|
dataFields.push(field);
|
|
}
|
|
}
|
|
var flags = { dataCategories: oteljs.DataCategories.ProductServiceUsage };
|
|
if (eventDefinition.critical) {
|
|
flags.samplingPolicy = oteljs.SamplingPolicy.CriticalBusinessImpact;
|
|
}
|
|
flags.diagnosticLevel = oteljs.DiagnosticLevel.NecessaryServiceDataEvent;
|
|
var eventNameFull = "Office.Extensibility.OfficeJs." + eventName + "X";
|
|
var event = { eventName: eventNameFull, dataFields: dataFields, eventFlags: flags };
|
|
return event;
|
|
}
|
|
function sendOtelTelemetryEvent(eventName, telemetryData) {
|
|
if (eventEnabled(eventName)) {
|
|
if (typeof OTel !== "undefined") {
|
|
OTel.OTelLogger.onTelemetryLoaded(function () {
|
|
var event = generateTelemetryEvent(eventName, telemetryData);
|
|
if (event === undefined) {
|
|
return;
|
|
}
|
|
Microsoft.Office.WebExtension.sendTelemetryEvent(event);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
var AriaLogger = (function () {
|
|
function AriaLogger() {
|
|
}
|
|
AriaLogger.prototype.getAriaCDNLocation = function () {
|
|
return (OSF._OfficeAppFactory.getLoadScriptHelper().getOfficeJsBasePath() + "ariatelemetry/aria-web-telemetry.js");
|
|
};
|
|
AriaLogger.getInstance = function () {
|
|
if (AriaLogger.AriaLoggerObj === undefined) {
|
|
AriaLogger.AriaLoggerObj = new AriaLogger();
|
|
}
|
|
return AriaLogger.AriaLoggerObj;
|
|
};
|
|
AriaLogger.prototype.isIUsageData = function (arg) {
|
|
return arg["Fields"] !== undefined;
|
|
};
|
|
AriaLogger.prototype.shouldSendDirectToAria = function (flavor, version) {
|
|
var BASE10 = 10;
|
|
var MAX_VERSION_WIN32 = [16, 0, 11601];
|
|
var MAX_VERSION_MAC = [16, 28];
|
|
var max_version;
|
|
if (!flavor) {
|
|
return false;
|
|
}
|
|
else if (flavor.toLowerCase() === "win32") {
|
|
max_version = MAX_VERSION_WIN32;
|
|
}
|
|
else if (flavor.toLowerCase() === "mac") {
|
|
max_version = MAX_VERSION_MAC;
|
|
}
|
|
else {
|
|
return true;
|
|
}
|
|
if (!version) {
|
|
return false;
|
|
}
|
|
var versionTokens = version.split('.');
|
|
for (var i = 0; i < max_version.length && i < versionTokens.length; i++) {
|
|
var versionToken = parseInt(versionTokens[i], BASE10);
|
|
if (isNaN(versionToken)) {
|
|
return false;
|
|
}
|
|
if (versionToken < max_version[i]) {
|
|
return true;
|
|
}
|
|
if (versionToken > max_version[i]) {
|
|
return false;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
AriaLogger.prototype.isDirectToAriaEnabled = function () {
|
|
if (this.EnableDirectToAria === undefined || this.EnableDirectToAria === null) {
|
|
var flavor = void 0;
|
|
var version = void 0;
|
|
if (OSF._OfficeAppFactory && OSF._OfficeAppFactory.getHostInfo) {
|
|
flavor = OSF._OfficeAppFactory.getHostInfo()["hostPlatform"];
|
|
}
|
|
if (window.external && typeof window.external.GetContext !== "undefined" && typeof window.external.GetContext().GetHostFullVersion !== "undefined") {
|
|
version = window.external.GetContext().GetHostFullVersion();
|
|
}
|
|
this.EnableDirectToAria = this.shouldSendDirectToAria(flavor, version);
|
|
}
|
|
return this.EnableDirectToAria;
|
|
};
|
|
AriaLogger.prototype.sendTelemetry = function (tableName, telemetryData) {
|
|
var startAfterMs = 1000;
|
|
var sendAriaEnabled = AriaLogger.EnableSendingTelemetryWithLegacyAria && this.isDirectToAriaEnabled();
|
|
if (sendAriaEnabled) {
|
|
OSF.OUtil.loadScript(this.getAriaCDNLocation(), function () {
|
|
try {
|
|
if (!this.ALogger) {
|
|
var OfficeExtensibilityTenantID = "db334b301e7b474db5e0f02f07c51a47-a1b5bc36-1bbe-482f-a64a-c2d9cb606706-7439";
|
|
this.ALogger = AWTLogManager.initialize(OfficeExtensibilityTenantID);
|
|
}
|
|
var eventProperties = new AWTEventProperties();
|
|
eventProperties.setName("Office.Extensibility.OfficeJS." + tableName);
|
|
for (var key in telemetryData) {
|
|
if (key.toLowerCase() !== "table") {
|
|
eventProperties.setProperty(key, telemetryData[key]);
|
|
}
|
|
}
|
|
var today = new Date();
|
|
eventProperties.setProperty("Date", today.toISOString());
|
|
this.ALogger.logEvent(eventProperties);
|
|
}
|
|
catch (e) {
|
|
}
|
|
}, startAfterMs);
|
|
}
|
|
if (AriaLogger.EnableSendingTelemetryWithOTel) {
|
|
sendOtelTelemetryEvent(tableName, telemetryData);
|
|
}
|
|
};
|
|
AriaLogger.prototype.logData = function (data) {
|
|
if (this.isIUsageData(data)) {
|
|
this.sendTelemetry(data["Table"], data["Fields"]);
|
|
}
|
|
else {
|
|
this.sendTelemetry(data["Table"], data);
|
|
}
|
|
};
|
|
AriaLogger.EnableSendingTelemetryWithOTel = true;
|
|
AriaLogger.EnableSendingTelemetryWithLegacyAria = false;
|
|
return AriaLogger;
|
|
}());
|
|
OSFAriaLogger.AriaLogger = AriaLogger;
|
|
})(OSFAriaLogger || (OSFAriaLogger = {}));
|
|
var OSFAppTelemetry;
|
|
(function (OSFAppTelemetry) {
|
|
"use strict";
|
|
var appInfo;
|
|
var sessionId = OSF.OUtil.Guid.generateNewGuid();
|
|
var osfControlAppCorrelationId = "";
|
|
var omexDomainRegex = new RegExp("^https?://store\\.office(ppe|-int)?\\.com/", "i");
|
|
var privateAddinId = "PRIVATE";
|
|
OSFAppTelemetry.enableTelemetry = true;
|
|
;
|
|
var AppInfo = (function () {
|
|
function AppInfo() {
|
|
}
|
|
return AppInfo;
|
|
}());
|
|
OSFAppTelemetry.AppInfo = AppInfo;
|
|
var Event = (function () {
|
|
function Event(name, handler) {
|
|
this.name = name;
|
|
this.handler = handler;
|
|
}
|
|
return Event;
|
|
}());
|
|
var AppStorage = (function () {
|
|
function AppStorage() {
|
|
this.clientIDKey = "Office API client";
|
|
this.logIdSetKey = "Office App Log Id Set";
|
|
}
|
|
AppStorage.prototype.getClientId = function () {
|
|
var clientId = this.getValue(this.clientIDKey);
|
|
if (!clientId || clientId.length <= 0 || clientId.length > 40) {
|
|
clientId = OSF.OUtil.Guid.generateNewGuid();
|
|
this.setValue(this.clientIDKey, clientId);
|
|
}
|
|
return clientId;
|
|
};
|
|
AppStorage.prototype.saveLog = function (logId, log) {
|
|
var logIdSet = this.getValue(this.logIdSetKey);
|
|
logIdSet = ((logIdSet && logIdSet.length > 0) ? (logIdSet + ";") : "") + logId;
|
|
this.setValue(this.logIdSetKey, logIdSet);
|
|
this.setValue(logId, log);
|
|
};
|
|
AppStorage.prototype.enumerateLog = function (callback, clean) {
|
|
var logIdSet = this.getValue(this.logIdSetKey);
|
|
if (logIdSet) {
|
|
var ids = logIdSet.split(";");
|
|
for (var id in ids) {
|
|
var logId = ids[id];
|
|
var log = this.getValue(logId);
|
|
if (log) {
|
|
if (callback) {
|
|
callback(logId, log);
|
|
}
|
|
if (clean) {
|
|
this.remove(logId);
|
|
}
|
|
}
|
|
}
|
|
if (clean) {
|
|
this.remove(this.logIdSetKey);
|
|
}
|
|
}
|
|
};
|
|
AppStorage.prototype.getValue = function (key) {
|
|
var osfLocalStorage = OSF.OUtil.getLocalStorage();
|
|
var value = "";
|
|
if (osfLocalStorage) {
|
|
value = osfLocalStorage.getItem(key);
|
|
}
|
|
return value;
|
|
};
|
|
AppStorage.prototype.setValue = function (key, value) {
|
|
var osfLocalStorage = OSF.OUtil.getLocalStorage();
|
|
if (osfLocalStorage) {
|
|
osfLocalStorage.setItem(key, value);
|
|
}
|
|
};
|
|
AppStorage.prototype.remove = function (key) {
|
|
var osfLocalStorage = OSF.OUtil.getLocalStorage();
|
|
if (osfLocalStorage) {
|
|
try {
|
|
osfLocalStorage.removeItem(key);
|
|
}
|
|
catch (ex) {
|
|
}
|
|
}
|
|
};
|
|
return AppStorage;
|
|
}());
|
|
var AppLogger = (function () {
|
|
function AppLogger() {
|
|
}
|
|
AppLogger.prototype.LogData = function (data) {
|
|
if (!OSFAppTelemetry.enableTelemetry) {
|
|
return;
|
|
}
|
|
try {
|
|
OSFAriaLogger.AriaLogger.getInstance().logData(data);
|
|
}
|
|
catch (e) {
|
|
}
|
|
};
|
|
AppLogger.prototype.LogRawData = function (log) {
|
|
if (!OSFAppTelemetry.enableTelemetry) {
|
|
return;
|
|
}
|
|
try {
|
|
OSFAriaLogger.AriaLogger.getInstance().logData(JSON.parse(log));
|
|
}
|
|
catch (e) {
|
|
}
|
|
};
|
|
return AppLogger;
|
|
}());
|
|
function trimStringToLowerCase(input) {
|
|
if (input) {
|
|
input = input.replace(/[{}]/g, "").toLowerCase();
|
|
}
|
|
return (input || "");
|
|
}
|
|
function initialize(context) {
|
|
if (!OSFAppTelemetry.enableTelemetry) {
|
|
return;
|
|
}
|
|
if (appInfo) {
|
|
return;
|
|
}
|
|
appInfo = new AppInfo();
|
|
if (context.get_hostFullVersion()) {
|
|
appInfo.hostVersion = context.get_hostFullVersion();
|
|
}
|
|
else {
|
|
appInfo.hostVersion = context.get_appVersion();
|
|
}
|
|
appInfo.appId = canSendAddinId() ? context.get_id() : privateAddinId;
|
|
appInfo.browser = window.navigator.userAgent;
|
|
appInfo.correlationId = trimStringToLowerCase(context.get_correlationId());
|
|
appInfo.clientId = (new AppStorage()).getClientId();
|
|
appInfo.appInstanceId = context.get_appInstanceId();
|
|
if (appInfo.appInstanceId) {
|
|
appInfo.appInstanceId = trimStringToLowerCase(appInfo.appInstanceId);
|
|
appInfo.appInstanceId = getCompliantAppInstanceId(context.get_id(), appInfo.appInstanceId);
|
|
}
|
|
appInfo.message = context.get_hostCustomMessage();
|
|
appInfo.officeJSVersion = OSF.ConstantNames.FileVersion;
|
|
appInfo.hostJSVersion = "16.0.14703.10000";
|
|
if (context._wacHostEnvironment) {
|
|
appInfo.wacHostEnvironment = context._wacHostEnvironment;
|
|
}
|
|
if (context._isFromWacAutomation !== undefined && context._isFromWacAutomation !== null) {
|
|
appInfo.isFromWacAutomation = context._isFromWacAutomation.toString().toLowerCase();
|
|
}
|
|
var docUrl = context.get_docUrl();
|
|
appInfo.docUrl = omexDomainRegex.test(docUrl) ? docUrl : "";
|
|
var url = location.href;
|
|
if (url) {
|
|
url = url.split("?")[0].split("#")[0];
|
|
}
|
|
appInfo.appURL = "";
|
|
(function getUserIdAndAssetIdFromToken(token, appInfo) {
|
|
var xmlContent;
|
|
var parser;
|
|
var xmlDoc;
|
|
appInfo.assetId = "";
|
|
appInfo.userId = "";
|
|
try {
|
|
xmlContent = decodeURIComponent(token);
|
|
parser = new DOMParser();
|
|
xmlDoc = parser.parseFromString(xmlContent, "text/xml");
|
|
var cidNode = xmlDoc.getElementsByTagName("t")[0].attributes.getNamedItem("cid");
|
|
var oidNode = xmlDoc.getElementsByTagName("t")[0].attributes.getNamedItem("oid");
|
|
if (cidNode && cidNode.nodeValue) {
|
|
appInfo.userId = cidNode.nodeValue;
|
|
}
|
|
else if (oidNode && oidNode.nodeValue) {
|
|
appInfo.userId = oidNode.nodeValue;
|
|
}
|
|
appInfo.assetId = xmlDoc.getElementsByTagName("t")[0].attributes.getNamedItem("aid").nodeValue;
|
|
}
|
|
catch (e) {
|
|
}
|
|
finally {
|
|
xmlContent = null;
|
|
xmlDoc = null;
|
|
parser = null;
|
|
}
|
|
})(context.get_eToken(), appInfo);
|
|
appInfo.sessionId = sessionId;
|
|
if (typeof OTel !== "undefined") {
|
|
OTel.OTelLogger.initialize(appInfo);
|
|
}
|
|
(function handleLifecycle() {
|
|
var startTime = new Date();
|
|
var lastFocus = null;
|
|
var focusTime = 0;
|
|
var finished = false;
|
|
var adjustFocusTime = function () {
|
|
if (document.hasFocus()) {
|
|
if (lastFocus == null) {
|
|
lastFocus = new Date();
|
|
}
|
|
}
|
|
else if (lastFocus) {
|
|
focusTime += Math.abs((new Date()).getTime() - lastFocus.getTime());
|
|
lastFocus = null;
|
|
}
|
|
};
|
|
var eventList = [];
|
|
eventList.push(new Event("focus", adjustFocusTime));
|
|
eventList.push(new Event("blur", adjustFocusTime));
|
|
eventList.push(new Event("focusout", adjustFocusTime));
|
|
eventList.push(new Event("focusin", adjustFocusTime));
|
|
var exitFunction = function () {
|
|
for (var i = 0; i < eventList.length; i++) {
|
|
OSF.OUtil.removeEventListener(window, eventList[i].name, eventList[i].handler);
|
|
}
|
|
eventList.length = 0;
|
|
if (!finished) {
|
|
if (document.hasFocus() && lastFocus) {
|
|
focusTime += Math.abs((new Date()).getTime() - lastFocus.getTime());
|
|
lastFocus = null;
|
|
}
|
|
OSFAppTelemetry.onAppClosed(Math.abs((new Date()).getTime() - startTime.getTime()), focusTime);
|
|
finished = true;
|
|
}
|
|
};
|
|
eventList.push(new Event("beforeunload", exitFunction));
|
|
eventList.push(new Event("unload", exitFunction));
|
|
for (var i = 0; i < eventList.length; i++) {
|
|
OSF.OUtil.addEventListener(window, eventList[i].name, eventList[i].handler);
|
|
}
|
|
adjustFocusTime();
|
|
})();
|
|
OSFAppTelemetry.onAppActivated();
|
|
}
|
|
OSFAppTelemetry.initialize = initialize;
|
|
function onAppActivated() {
|
|
if (!appInfo) {
|
|
return;
|
|
}
|
|
(new AppStorage()).enumerateLog(function (id, log) { return (new AppLogger()).LogRawData(log); }, true);
|
|
var data = new OSFLog.AppActivatedUsageData();
|
|
data.SessionId = sessionId;
|
|
data.AppId = appInfo.appId;
|
|
data.AssetId = appInfo.assetId;
|
|
data.AppURL = "";
|
|
data.UserId = "";
|
|
data.ClientId = appInfo.clientId;
|
|
data.Browser = appInfo.browser;
|
|
data.HostVersion = appInfo.hostVersion;
|
|
data.CorrelationId = trimStringToLowerCase(appInfo.correlationId);
|
|
data.AppSizeWidth = window.innerWidth;
|
|
data.AppSizeHeight = window.innerHeight;
|
|
data.AppInstanceId = appInfo.appInstanceId;
|
|
data.Message = appInfo.message;
|
|
data.DocUrl = appInfo.docUrl;
|
|
data.OfficeJSVersion = appInfo.officeJSVersion;
|
|
data.HostJSVersion = appInfo.hostJSVersion;
|
|
if (appInfo.wacHostEnvironment) {
|
|
data.WacHostEnvironment = appInfo.wacHostEnvironment;
|
|
}
|
|
if (appInfo.isFromWacAutomation !== undefined && appInfo.isFromWacAutomation !== null) {
|
|
data.IsFromWacAutomation = appInfo.isFromWacAutomation;
|
|
}
|
|
(new AppLogger()).LogData(data);
|
|
}
|
|
OSFAppTelemetry.onAppActivated = onAppActivated;
|
|
function onScriptDone(scriptId, msStartTime, msResponseTime, appCorrelationId) {
|
|
var data = new OSFLog.ScriptLoadUsageData();
|
|
data.CorrelationId = trimStringToLowerCase(appCorrelationId);
|
|
data.SessionId = sessionId;
|
|
data.ScriptId = scriptId;
|
|
data.StartTime = msStartTime;
|
|
data.ResponseTime = msResponseTime;
|
|
(new AppLogger()).LogData(data);
|
|
}
|
|
OSFAppTelemetry.onScriptDone = onScriptDone;
|
|
function onCallDone(apiType, id, parameters, msResponseTime, errorType) {
|
|
if (!appInfo) {
|
|
return;
|
|
}
|
|
if (!isAllowedHost() || !isAPIUsageEnabledDispId(id, apiType)) {
|
|
return;
|
|
}
|
|
var data = new OSFLog.APIUsageUsageData();
|
|
data.CorrelationId = trimStringToLowerCase(osfControlAppCorrelationId);
|
|
data.SessionId = sessionId;
|
|
data.APIType = apiType;
|
|
data.APIID = id;
|
|
data.Parameters = parameters;
|
|
data.ResponseTime = msResponseTime;
|
|
data.ErrorType = errorType;
|
|
(new AppLogger()).LogData(data);
|
|
}
|
|
OSFAppTelemetry.onCallDone = onCallDone;
|
|
;
|
|
function onMethodDone(id, args, msResponseTime, errorType) {
|
|
var parameters = null;
|
|
if (args) {
|
|
if (typeof args == "number") {
|
|
parameters = String(args);
|
|
}
|
|
else if (typeof args === "object") {
|
|
for (var index in args) {
|
|
if (parameters !== null) {
|
|
parameters += ",";
|
|
}
|
|
else {
|
|
parameters = "";
|
|
}
|
|
if (typeof args[index] == "number") {
|
|
parameters += String(args[index]);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
parameters = "";
|
|
}
|
|
}
|
|
OSF.AppTelemetry.onCallDone("method", id, parameters, msResponseTime, errorType);
|
|
}
|
|
OSFAppTelemetry.onMethodDone = onMethodDone;
|
|
function onPropertyDone(propertyName, msResponseTime) {
|
|
OSF.AppTelemetry.onCallDone("property", -1, propertyName, msResponseTime);
|
|
}
|
|
OSFAppTelemetry.onPropertyDone = onPropertyDone;
|
|
function onCheckWACHost(isWacKnownHost, instanceId, hostType, hostPlatform, wacDomain) {
|
|
var data = new OSFLog.CheckWACHostUsageData();
|
|
data.isWacKnownHost = isWacKnownHost;
|
|
data.instanceId = instanceId;
|
|
data.hostType = hostType;
|
|
data.hostPlatform = hostPlatform;
|
|
data.wacDomain = "";
|
|
(new AppLogger()).LogData(data);
|
|
}
|
|
OSFAppTelemetry.onCheckWACHost = onCheckWACHost;
|
|
function onEventDone(id, errorType) {
|
|
OSF.AppTelemetry.onCallDone("event", id, null, 0, errorType);
|
|
}
|
|
OSFAppTelemetry.onEventDone = onEventDone;
|
|
function onRegisterDone(register, id, msResponseTime, errorType) {
|
|
OSF.AppTelemetry.onCallDone(register ? "registerevent" : "unregisterevent", id, null, msResponseTime, errorType);
|
|
}
|
|
OSFAppTelemetry.onRegisterDone = onRegisterDone;
|
|
function onAppClosed(openTime, focusTime) {
|
|
if (!appInfo) {
|
|
return;
|
|
}
|
|
var data = new OSFLog.AppClosedUsageData();
|
|
data.CorrelationId = trimStringToLowerCase(osfControlAppCorrelationId);
|
|
data.SessionId = sessionId;
|
|
data.FocusTime = focusTime;
|
|
data.OpenTime = openTime;
|
|
data.AppSizeFinalWidth = window.innerWidth;
|
|
data.AppSizeFinalHeight = window.innerHeight;
|
|
(new AppStorage()).saveLog(sessionId, data.SerializeRow());
|
|
}
|
|
OSFAppTelemetry.onAppClosed = onAppClosed;
|
|
function setOsfControlAppCorrelationId(correlationId) {
|
|
osfControlAppCorrelationId = trimStringToLowerCase(correlationId);
|
|
}
|
|
OSFAppTelemetry.setOsfControlAppCorrelationId = setOsfControlAppCorrelationId;
|
|
function doAppInitializationLogging(isException, message) {
|
|
var data = new OSFLog.AppInitializationUsageData();
|
|
data.CorrelationId = trimStringToLowerCase(osfControlAppCorrelationId);
|
|
data.SessionId = sessionId;
|
|
data.SuccessCode = isException ? 1 : 0;
|
|
data.Message = message;
|
|
(new AppLogger()).LogData(data);
|
|
}
|
|
OSFAppTelemetry.doAppInitializationLogging = doAppInitializationLogging;
|
|
function logAppCommonMessage(message) {
|
|
doAppInitializationLogging(false, message);
|
|
}
|
|
OSFAppTelemetry.logAppCommonMessage = logAppCommonMessage;
|
|
function logAppException(errorMessage) {
|
|
doAppInitializationLogging(true, errorMessage);
|
|
}
|
|
OSFAppTelemetry.logAppException = logAppException;
|
|
function isAllowedHost() {
|
|
if (!OSF._OfficeAppFactory || !OSF._OfficeAppFactory.getHostInfo) {
|
|
return false;
|
|
}
|
|
var hostInfo = OSF._OfficeAppFactory.getHostInfo();
|
|
if (!hostInfo) {
|
|
return false;
|
|
}
|
|
switch (hostInfo["hostType"]) {
|
|
case "outlook":
|
|
switch (hostInfo["hostPlatform"]) {
|
|
case "mac":
|
|
case "web":
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
function isAPIUsageEnabledDispId(dispId, apiType) {
|
|
if (apiType === "method") {
|
|
switch (dispId) {
|
|
case 3:
|
|
case 4:
|
|
case 38:
|
|
case 37:
|
|
case 10:
|
|
case 12:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
function canSendAddinId() {
|
|
var isPublic = (OSF._OfficeAppFactory.getHostInfo().flags & OSF.HostInfoFlags.PublicAddin) != 0;
|
|
if (isPublic) {
|
|
return isPublic;
|
|
}
|
|
if (!appInfo) {
|
|
return false;
|
|
}
|
|
var hostPlatform = OSF._OfficeAppFactory.getHostInfo().hostPlatform;
|
|
var hostVersion = appInfo.hostVersion;
|
|
return _isComplianceExceptedHost(hostPlatform, hostVersion);
|
|
}
|
|
OSFAppTelemetry.canSendAddinId = canSendAddinId;
|
|
function getCompliantAppInstanceId(addinId, appInstanceId) {
|
|
if (!canSendAddinId() && appInstanceId === addinId) {
|
|
return privateAddinId;
|
|
}
|
|
return appInstanceId;
|
|
}
|
|
OSFAppTelemetry.getCompliantAppInstanceId = getCompliantAppInstanceId;
|
|
function _isComplianceExceptedHost(hostPlatform, hostVersion) {
|
|
var excepted = false;
|
|
var versionExtractor = /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/;
|
|
var result = versionExtractor.exec(hostVersion);
|
|
if (result) {
|
|
var major = parseInt(result[1]);
|
|
var minor = parseInt(result[2]);
|
|
var build = parseInt(result[3]);
|
|
if (hostPlatform == "win32") {
|
|
if (major < 16 || major == 16 && build < 14225) {
|
|
excepted = true;
|
|
}
|
|
}
|
|
else if (hostPlatform == "mac") {
|
|
if (major < 16 || (major == 16 && (minor < 52 || minor == 52 && build < 808))) {
|
|
excepted = true;
|
|
}
|
|
}
|
|
}
|
|
return excepted;
|
|
}
|
|
OSFAppTelemetry._isComplianceExceptedHost = _isComplianceExceptedHost;
|
|
OSF.AppTelemetry = OSFAppTelemetry;
|
|
})(OSFAppTelemetry || (OSFAppTelemetry = {}));
|
|
var OfficeExtension;
|
|
(function (OfficeExtension) {
|
|
})(OfficeExtension || (OfficeExtension = {}));
|
|
var OSFWebAuth;
|
|
(function (OSFWebAuth) {
|
|
var AuthFlow;
|
|
(function (AuthFlow) {
|
|
AuthFlow["Implicit"] = "implicit";
|
|
AuthFlow["AuthCode"] = "authcode";
|
|
AuthFlow["Broker"] = "broker";
|
|
})(AuthFlow = OSFWebAuth.AuthFlow || (OSFWebAuth.AuthFlow = {}));
|
|
OSFWebAuth.loadAttempts = 0;
|
|
function load() {
|
|
if (OSFWebAuth.config && OSFWebAuth.config.authFlow === AuthFlow.AuthCode) {
|
|
return loadForAuthCode();
|
|
}
|
|
else {
|
|
return loadForImplicit();
|
|
}
|
|
}
|
|
OSFWebAuth.load = load;
|
|
function getToken(target, applicationId, correlationId, popup) {
|
|
var authLib;
|
|
if (OSFWebAuth.config && OSFWebAuth.config.authFlow === AuthFlow.AuthCode) {
|
|
authLib = BrowserAuth;
|
|
}
|
|
else {
|
|
authLib = Implicit;
|
|
}
|
|
return authLib.GetToken(target, applicationId, correlationId, !!popup);
|
|
}
|
|
OSFWebAuth.getToken = getToken;
|
|
function loadForImplicit() {
|
|
OSFWebAuth.loadAttempts++;
|
|
var IMPLICIT_DEBUG = 'webauth/webauth.implicit.debug.js';
|
|
var IMPLICIT_SHIP = 'webauth/webauth.implicit.js';
|
|
var Implicit_Cdn_Path = OSF._OfficeAppFactory.getLoadScriptHelper().getOfficeJsBasePath() + ((OSFWebAuth.config && OSFWebAuth.config.debugging) ? IMPLICIT_DEBUG : IMPLICIT_SHIP);
|
|
return new OfficeExtension.Promise(function (resolve, reject) {
|
|
OSF.OUtil.loadScript(Implicit_Cdn_Path, function (successOrEvent) {
|
|
if (typeof successOrEvent === 'boolean' && !successOrEvent) {
|
|
reject(successOrEvent);
|
|
}
|
|
if (typeof successOrEvent !== 'boolean' && successOrEvent) {
|
|
reject(successOrEvent);
|
|
}
|
|
if (!Implicit) {
|
|
reject(new Error("Missing Implicit namespace, Implicit is not loaded."));
|
|
}
|
|
if (OSFWebAuth.config) {
|
|
resolve(Implicit.Load(OSFWebAuth.config, OSF._OfficeAppFactory.getHostInfo().osfControlAppCorrelationId));
|
|
}
|
|
else {
|
|
Implicit.GetAuthConfig().then(function (configParent) {
|
|
OSFWebAuth.config = configParent;
|
|
resolve(Implicit.Load(OSFWebAuth.config, OSF._OfficeAppFactory.getHostInfo().osfControlAppCorrelationId));
|
|
}, function () { reject(null); });
|
|
}
|
|
});
|
|
});
|
|
}
|
|
function loadForAuthCode() {
|
|
OSFWebAuth.loadAttempts++;
|
|
var BROWSERAUTH_PATH = 'webauth/';
|
|
var BROWSERAUTH_JS_DEBUG = 'webauth.browserauth.debug.js';
|
|
var BROWSERAUTH_JS_SHIP = 'webauth.browserauth.js';
|
|
return new OfficeExtension.Promise(function (resolve, reject) {
|
|
var browserAuth_js = (OSFWebAuth.config && OSFWebAuth.config.debugging) ? BROWSERAUTH_JS_DEBUG : BROWSERAUTH_JS_SHIP;
|
|
var browserAuth_cdn_path = (OSFWebAuth.config && OSFWebAuth.config.authVersion)
|
|
? OSF._OfficeAppFactory.getLoadScriptHelper().getOfficeJsBasePath() + BROWSERAUTH_PATH + OSFWebAuth.config.authVersion + "/" + browserAuth_js
|
|
: OSF._OfficeAppFactory.getLoadScriptHelper().getOfficeJsBasePath() + BROWSERAUTH_PATH + browserAuth_js;
|
|
var validBrowserAuth = function () {
|
|
try {
|
|
return (BrowserAuth !== undefined && !!BrowserAuth);
|
|
}
|
|
catch (error) {
|
|
return false;
|
|
}
|
|
};
|
|
var runBrowserAuth = function (funcResolve, funcReject) {
|
|
if (!validBrowserAuth()) {
|
|
funcReject(new Error("Missing BrowserAuth namespace, BrowserAuth is not loaded."));
|
|
}
|
|
else {
|
|
if (OSFWebAuth.config) {
|
|
BrowserAuth.Load(OSFWebAuth.config, OSF._OfficeAppFactory.getHostInfo().osfControlAppCorrelationId).then(function (result) { funcResolve(result); }, function (result) { funcReject(result); });
|
|
}
|
|
else {
|
|
BrowserAuth.GetAuthConfig().then(function (configParent) {
|
|
OSFWebAuth.config = configParent;
|
|
BrowserAuth.Load(OSFWebAuth.config, OSF._OfficeAppFactory.getHostInfo().osfControlAppCorrelationId).then(function (result) { funcResolve(result); }, function (result) { funcReject(result); });
|
|
}, function () { funcReject(null); });
|
|
}
|
|
}
|
|
};
|
|
OSF.OUtil.loadScript(browserAuth_cdn_path, function (successOrEvent) {
|
|
var waited = 0;
|
|
var interval = 500;
|
|
if (typeof successOrEvent === 'boolean' && !successOrEvent) {
|
|
reject(successOrEvent);
|
|
}
|
|
if (typeof successOrEvent !== 'boolean' && successOrEvent) {
|
|
reject(successOrEvent);
|
|
}
|
|
if (OSFWebAuth.config.loadDelay && !validBrowserAuth()) {
|
|
var delay_1 = setInterval(function () {
|
|
waited += interval;
|
|
if (validBrowserAuth() || waited > OSFWebAuth.config.loadDelay) {
|
|
runBrowserAuth(resolve, reject);
|
|
clearInterval(delay_1);
|
|
}
|
|
}, interval);
|
|
}
|
|
else {
|
|
runBrowserAuth(resolve, reject);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
OSF.WebAuth = OSFWebAuth;
|
|
})(OSFWebAuth || (OSFWebAuth = {}));
|
|
Microsoft.Office.WebExtension.TableData = function Microsoft_Office_WebExtension_TableData(rows, headers) {
|
|
function fixData(data) {
|
|
if (data == null || data == undefined) {
|
|
return null;
|
|
}
|
|
try {
|
|
for (var dim = OSF.DDA.DataCoercion.findArrayDimensionality(data, 2); dim < 2; dim++) {
|
|
data = [data];
|
|
}
|
|
return data;
|
|
}
|
|
catch (ex) {
|
|
}
|
|
}
|
|
;
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"headers": {
|
|
get: function () { return headers; },
|
|
set: function (value) {
|
|
headers = fixData(value);
|
|
}
|
|
},
|
|
"rows": {
|
|
get: function () { return rows; },
|
|
set: function (value) {
|
|
rows = (value == null || (OSF.OUtil.isArray(value) && (value.length == 0))) ?
|
|
[] :
|
|
fixData(value);
|
|
}
|
|
}
|
|
});
|
|
this.headers = headers;
|
|
this.rows = rows;
|
|
};
|
|
OSF.DDA.OMFactory = OSF.DDA.OMFactory || {};
|
|
OSF.DDA.OMFactory.manufactureTableData = function OSF_DDA_OMFactory$manufactureTableData(tableDataProperties) {
|
|
return new Microsoft.Office.WebExtension.TableData(tableDataProperties[OSF.DDA.TableDataProperties.TableRows], tableDataProperties[OSF.DDA.TableDataProperties.TableHeaders]);
|
|
};
|
|
Microsoft.Office.WebExtension.CoercionType = {
|
|
Text: "text",
|
|
Matrix: "matrix",
|
|
Table: "table"
|
|
};
|
|
OSF.DDA.DataCoercion = (function OSF_DDA_DataCoercion() {
|
|
return {
|
|
findArrayDimensionality: function OSF_DDA_DataCoercion$findArrayDimensionality(obj) {
|
|
if (OSF.OUtil.isArray(obj)) {
|
|
var dim = 0;
|
|
for (var index = 0; index < obj.length; index++) {
|
|
dim = Math.max(dim, OSF.DDA.DataCoercion.findArrayDimensionality(obj[index]));
|
|
}
|
|
return dim + 1;
|
|
}
|
|
else {
|
|
return 0;
|
|
}
|
|
},
|
|
getCoercionDefaultForBinding: function OSF_DDA_DataCoercion$getCoercionDefaultForBinding(bindingType) {
|
|
switch (bindingType) {
|
|
case Microsoft.Office.WebExtension.BindingType.Matrix: return Microsoft.Office.WebExtension.CoercionType.Matrix;
|
|
case Microsoft.Office.WebExtension.BindingType.Table: return Microsoft.Office.WebExtension.CoercionType.Table;
|
|
case Microsoft.Office.WebExtension.BindingType.Text:
|
|
default:
|
|
return Microsoft.Office.WebExtension.CoercionType.Text;
|
|
}
|
|
},
|
|
getBindingDefaultForCoercion: function OSF_DDA_DataCoercion$getBindingDefaultForCoercion(coercionType) {
|
|
switch (coercionType) {
|
|
case Microsoft.Office.WebExtension.CoercionType.Matrix: return Microsoft.Office.WebExtension.BindingType.Matrix;
|
|
case Microsoft.Office.WebExtension.CoercionType.Table: return Microsoft.Office.WebExtension.BindingType.Table;
|
|
case Microsoft.Office.WebExtension.CoercionType.Text:
|
|
case Microsoft.Office.WebExtension.CoercionType.Html:
|
|
case Microsoft.Office.WebExtension.CoercionType.Ooxml:
|
|
default:
|
|
return Microsoft.Office.WebExtension.BindingType.Text;
|
|
}
|
|
},
|
|
determineCoercionType: function OSF_DDA_DataCoercion$determineCoercionType(data) {
|
|
if (data == null || data == undefined)
|
|
return null;
|
|
var sourceType = null;
|
|
var runtimeType = typeof data;
|
|
if (data.rows !== undefined) {
|
|
sourceType = Microsoft.Office.WebExtension.CoercionType.Table;
|
|
}
|
|
else if (OSF.OUtil.isArray(data)) {
|
|
sourceType = Microsoft.Office.WebExtension.CoercionType.Matrix;
|
|
}
|
|
else if (runtimeType == "string" || runtimeType == "number" || runtimeType == "boolean" || OSF.OUtil.isDate(data)) {
|
|
sourceType = Microsoft.Office.WebExtension.CoercionType.Text;
|
|
}
|
|
else {
|
|
throw OSF.DDA.ErrorCodeManager.errorCodes.ooeUnsupportedDataObject;
|
|
}
|
|
return sourceType;
|
|
},
|
|
coerceData: function OSF_DDA_DataCoercion$coerceData(data, destinationType, sourceType) {
|
|
sourceType = sourceType || OSF.DDA.DataCoercion.determineCoercionType(data);
|
|
if (sourceType && sourceType != destinationType) {
|
|
OSF.OUtil.writeProfilerMark(OSF.InternalPerfMarker.DataCoercionBegin);
|
|
data = OSF.DDA.DataCoercion._coerceDataFromTable(destinationType, OSF.DDA.DataCoercion._coerceDataToTable(data, sourceType));
|
|
OSF.OUtil.writeProfilerMark(OSF.InternalPerfMarker.DataCoercionEnd);
|
|
}
|
|
return data;
|
|
},
|
|
_matrixToText: function OSF_DDA_DataCoercion$_matrixToText(matrix) {
|
|
if (matrix.length == 1 && matrix[0].length == 1)
|
|
return "" + matrix[0][0];
|
|
var val = "";
|
|
for (var i = 0; i < matrix.length; i++) {
|
|
val += matrix[i].join("\t") + "\n";
|
|
}
|
|
return val.substring(0, val.length - 1);
|
|
},
|
|
_textToMatrix: function OSF_DDA_DataCoercion$_textToMatrix(text) {
|
|
var ret = text.split("\n");
|
|
for (var i = 0; i < ret.length; i++)
|
|
ret[i] = ret[i].split("\t");
|
|
return ret;
|
|
},
|
|
_tableToText: function OSF_DDA_DataCoercion$_tableToText(table) {
|
|
var headers = "";
|
|
if (table.headers != null) {
|
|
headers = OSF.DDA.DataCoercion._matrixToText([table.headers]) + "\n";
|
|
}
|
|
var rows = OSF.DDA.DataCoercion._matrixToText(table.rows);
|
|
if (rows == "") {
|
|
headers = headers.substring(0, headers.length - 1);
|
|
}
|
|
return headers + rows;
|
|
},
|
|
_tableToMatrix: function OSF_DDA_DataCoercion$_tableToMatrix(table) {
|
|
var matrix = table.rows;
|
|
if (table.headers != null) {
|
|
matrix.unshift(table.headers);
|
|
}
|
|
return matrix;
|
|
},
|
|
_coerceDataFromTable: function OSF_DDA_DataCoercion$_coerceDataFromTable(coercionType, table) {
|
|
var value;
|
|
switch (coercionType) {
|
|
case Microsoft.Office.WebExtension.CoercionType.Table:
|
|
value = table;
|
|
break;
|
|
case Microsoft.Office.WebExtension.CoercionType.Matrix:
|
|
value = OSF.DDA.DataCoercion._tableToMatrix(table);
|
|
break;
|
|
case Microsoft.Office.WebExtension.CoercionType.SlideRange:
|
|
value = null;
|
|
if (OSF.DDA.OMFactory.manufactureSlideRange) {
|
|
value = OSF.DDA.OMFactory.manufactureSlideRange(OSF.DDA.DataCoercion._tableToText(table));
|
|
}
|
|
if (value == null) {
|
|
value = OSF.DDA.DataCoercion._tableToText(table);
|
|
}
|
|
break;
|
|
case Microsoft.Office.WebExtension.CoercionType.Text:
|
|
case Microsoft.Office.WebExtension.CoercionType.Html:
|
|
case Microsoft.Office.WebExtension.CoercionType.Ooxml:
|
|
default:
|
|
value = OSF.DDA.DataCoercion._tableToText(table);
|
|
break;
|
|
}
|
|
return value;
|
|
},
|
|
_coerceDataToTable: function OSF_DDA_DataCoercion$_coerceDataToTable(data, sourceType) {
|
|
if (sourceType == undefined) {
|
|
sourceType = OSF.DDA.DataCoercion.determineCoercionType(data);
|
|
}
|
|
var value;
|
|
switch (sourceType) {
|
|
case Microsoft.Office.WebExtension.CoercionType.Table:
|
|
value = data;
|
|
break;
|
|
case Microsoft.Office.WebExtension.CoercionType.Matrix:
|
|
value = new Microsoft.Office.WebExtension.TableData(data);
|
|
break;
|
|
case Microsoft.Office.WebExtension.CoercionType.Text:
|
|
case Microsoft.Office.WebExtension.CoercionType.Html:
|
|
case Microsoft.Office.WebExtension.CoercionType.Ooxml:
|
|
default:
|
|
value = new Microsoft.Office.WebExtension.TableData(OSF.DDA.DataCoercion._textToMatrix(data));
|
|
break;
|
|
}
|
|
return value;
|
|
}
|
|
};
|
|
})();
|
|
(function (OfficeExt) {
|
|
var Messaging;
|
|
(function (Messaging) {
|
|
var ExtensionMessage = (function () {
|
|
function ExtensionMessage(id, payload, targetId) {
|
|
this.id = id;
|
|
this.payload = payload;
|
|
this.targetId = targetId;
|
|
}
|
|
return ExtensionMessage;
|
|
}());
|
|
Messaging.ExtensionMessage = ExtensionMessage;
|
|
var ExtensionCommunicationManager = (function () {
|
|
function ExtensionCommunicationManager() {
|
|
this.onMessage = null;
|
|
}
|
|
ExtensionCommunicationManager.prototype.sendMessage = function (message) {
|
|
if (OSF.Messaging && OSF.Messaging.sendMessage) {
|
|
OSF.Messaging.sendMessage(message);
|
|
}
|
|
};
|
|
return ExtensionCommunicationManager;
|
|
}());
|
|
Messaging.ExtensionCommunicationManager = ExtensionCommunicationManager;
|
|
})(Messaging = OfficeExt.Messaging || (OfficeExt.Messaging = {}));
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.CoercionType, { SlideRange: "slideRange" });
|
|
OSF.DDA.SlideProperties = {
|
|
Id: 0,
|
|
Title: 1,
|
|
Index: 2
|
|
};
|
|
OSF.DDA.Slide = function OSF_DDA_Slide(id, title, index) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"id": {
|
|
value: id
|
|
},
|
|
"title": {
|
|
value: title
|
|
},
|
|
"index": {
|
|
value: index
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.SlideRange = function OSF_DDA_SlideRange(slides) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"slides": {
|
|
value: slides
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.OMFactory = OSF.DDA.OMFactory || {};
|
|
OSF.DDA.OMFactory.manufactureSlideRange = function OSF_DDA_OMFactory$manufactureSlideRange(input) {
|
|
var items = null;
|
|
if (JSON) {
|
|
items = JSON.parse(input);
|
|
}
|
|
else {
|
|
items = Sys.Serialization.JavaScriptSerializer.deserialize(input);
|
|
}
|
|
if (items == null) {
|
|
return null;
|
|
}
|
|
var numField = 0;
|
|
for (var key in OSF.DDA.SlideProperties) {
|
|
if (OSF.DDA.SlideProperties.hasOwnProperty(key)) {
|
|
numField++;
|
|
}
|
|
}
|
|
var slides = [];
|
|
var dataValid = true;
|
|
for (var i = 0; i < items.length && dataValid; i++) {
|
|
dataValid = false;
|
|
if (items[i].length == numField) {
|
|
var id = parseInt(items[i][OSF.DDA.SlideProperties.Id]);
|
|
var title = items[i][OSF.DDA.SlideProperties.Title];
|
|
var index = parseInt(items[i][OSF.DDA.SlideProperties.Index]);
|
|
if (!isNaN(id) && !isNaN(index)) {
|
|
dataValid = true;
|
|
slides.push(new OSF.DDA.Slide(id, title, index));
|
|
}
|
|
}
|
|
}
|
|
if (!dataValid) {
|
|
return null;
|
|
}
|
|
return new OSF.DDA.SlideRange(slides);
|
|
};
|
|
Microsoft.Office.WebExtension.BindingType = {
|
|
Table: "table",
|
|
Text: "text",
|
|
Matrix: "matrix"
|
|
};
|
|
OSF.DDA.BindingProperties = {
|
|
Id: "BindingId",
|
|
Type: Microsoft.Office.WebExtension.Parameters.BindingType
|
|
};
|
|
OSF.OUtil.augmentList(OSF.DDA.ListDescriptors, { BindingList: "BindingList" });
|
|
OSF.OUtil.augmentList(OSF.DDA.PropertyDescriptors, {
|
|
Subset: "subset",
|
|
BindingProperties: "BindingProperties"
|
|
});
|
|
OSF.DDA.ListType.setListType(OSF.DDA.ListDescriptors.BindingList, OSF.DDA.PropertyDescriptors.BindingProperties);
|
|
OSF.DDA.BindingPromise = function OSF_DDA_BindingPromise(bindingId, errorCallback) {
|
|
this._id = bindingId;
|
|
OSF.OUtil.defineEnumerableProperty(this, "onFail", {
|
|
get: function () {
|
|
return errorCallback;
|
|
},
|
|
set: function (onError) {
|
|
var t = typeof onError;
|
|
if (t != "undefined" && t != "function") {
|
|
throw OSF.OUtil.formatString(Strings.OfficeOM.L_CallbackNotAFunction, t);
|
|
}
|
|
errorCallback = onError;
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.BindingPromise.prototype = {
|
|
_fetch: function OSF_DDA_BindingPromise$_fetch(onComplete) {
|
|
if (this.binding) {
|
|
if (onComplete)
|
|
onComplete(this.binding);
|
|
}
|
|
else {
|
|
if (!this._binding) {
|
|
var me = this;
|
|
Microsoft.Office.WebExtension.context.document.bindings.getByIdAsync(this._id, function (asyncResult) {
|
|
if (asyncResult.status == Microsoft.Office.WebExtension.AsyncResultStatus.Succeeded) {
|
|
OSF.OUtil.defineEnumerableProperty(me, "binding", {
|
|
value: asyncResult.value
|
|
});
|
|
if (onComplete)
|
|
onComplete(me.binding);
|
|
}
|
|
else {
|
|
if (me.onFail)
|
|
me.onFail(asyncResult);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
return this;
|
|
},
|
|
getDataAsync: function OSF_DDA_BindingPromise$getDataAsync() {
|
|
var args = arguments;
|
|
this._fetch(function onComplete(binding) { binding.getDataAsync.apply(binding, args); });
|
|
return this;
|
|
},
|
|
setDataAsync: function OSF_DDA_BindingPromise$setDataAsync() {
|
|
var args = arguments;
|
|
this._fetch(function onComplete(binding) { binding.setDataAsync.apply(binding, args); });
|
|
return this;
|
|
},
|
|
addHandlerAsync: function OSF_DDA_BindingPromise$addHandlerAsync() {
|
|
var args = arguments;
|
|
this._fetch(function onComplete(binding) { binding.addHandlerAsync.apply(binding, args); });
|
|
return this;
|
|
},
|
|
removeHandlerAsync: function OSF_DDA_BindingPromise$removeHandlerAsync() {
|
|
var args = arguments;
|
|
this._fetch(function onComplete(binding) { binding.removeHandlerAsync.apply(binding, args); });
|
|
return this;
|
|
}
|
|
};
|
|
OSF.DDA.BindingFacade = function OSF_DDA_BindingFacade(docInstance) {
|
|
this._eventDispatches = [];
|
|
OSF.OUtil.defineEnumerableProperty(this, "document", {
|
|
value: docInstance
|
|
});
|
|
var am = OSF.DDA.AsyncMethodNames;
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this, [
|
|
am.AddFromSelectionAsync,
|
|
am.AddFromNamedItemAsync,
|
|
am.GetAllAsync,
|
|
am.GetByIdAsync,
|
|
am.ReleaseByIdAsync
|
|
]);
|
|
};
|
|
OSF.DDA.UnknownBinding = function OSF_DDA_UknonwnBinding(id, docInstance) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"document": { value: docInstance },
|
|
"id": { value: id }
|
|
});
|
|
};
|
|
OSF.DDA.Binding = function OSF_DDA_Binding(id, docInstance) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"document": {
|
|
value: docInstance
|
|
},
|
|
"id": {
|
|
value: id
|
|
}
|
|
});
|
|
var am = OSF.DDA.AsyncMethodNames;
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this, [
|
|
am.GetDataAsync,
|
|
am.SetDataAsync
|
|
]);
|
|
var et = Microsoft.Office.WebExtension.EventType;
|
|
var bindingEventDispatches = docInstance.bindings._eventDispatches;
|
|
if (!bindingEventDispatches[id]) {
|
|
bindingEventDispatches[id] = new OSF.EventDispatch([
|
|
et.BindingSelectionChanged,
|
|
et.BindingDataChanged
|
|
]);
|
|
}
|
|
var eventDispatch = bindingEventDispatches[id];
|
|
OSF.DDA.DispIdHost.addEventSupport(this, eventDispatch);
|
|
};
|
|
OSF.DDA.generateBindingId = function OSF_DDA$GenerateBindingId() {
|
|
return "UnnamedBinding_" + OSF.OUtil.getUniqueId() + "_" + new Date().getTime();
|
|
};
|
|
OSF.DDA.OMFactory = OSF.DDA.OMFactory || {};
|
|
OSF.DDA.OMFactory.manufactureBinding = function OSF_DDA_OMFactory$manufactureBinding(bindingProperties, containingDocument) {
|
|
var id = bindingProperties[OSF.DDA.BindingProperties.Id];
|
|
var rows = bindingProperties[OSF.DDA.BindingProperties.RowCount];
|
|
var cols = bindingProperties[OSF.DDA.BindingProperties.ColumnCount];
|
|
var hasHeaders = bindingProperties[OSF.DDA.BindingProperties.HasHeaders];
|
|
var binding;
|
|
switch (bindingProperties[OSF.DDA.BindingProperties.Type]) {
|
|
case Microsoft.Office.WebExtension.BindingType.Text:
|
|
binding = new OSF.DDA.TextBinding(id, containingDocument);
|
|
break;
|
|
case Microsoft.Office.WebExtension.BindingType.Matrix:
|
|
binding = new OSF.DDA.MatrixBinding(id, containingDocument, rows, cols);
|
|
break;
|
|
case Microsoft.Office.WebExtension.BindingType.Table:
|
|
var isExcelApp = function () {
|
|
return (OSF.DDA.ExcelDocument)
|
|
&& (Microsoft.Office.WebExtension.context.document)
|
|
&& (Microsoft.Office.WebExtension.context.document instanceof OSF.DDA.ExcelDocument);
|
|
};
|
|
var tableBindingObject;
|
|
if (isExcelApp() && OSF.DDA.ExcelTableBinding) {
|
|
tableBindingObject = OSF.DDA.ExcelTableBinding;
|
|
}
|
|
else {
|
|
tableBindingObject = OSF.DDA.TableBinding;
|
|
}
|
|
binding = new tableBindingObject(id, containingDocument, rows, cols, hasHeaders);
|
|
break;
|
|
default:
|
|
binding = new OSF.DDA.UnknownBinding(id, containingDocument);
|
|
}
|
|
return binding;
|
|
};
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
AddFromSelectionAsync: "addFromSelectionAsync",
|
|
AddFromNamedItemAsync: "addFromNamedItemAsync",
|
|
GetAllAsync: "getAllAsync",
|
|
GetByIdAsync: "getByIdAsync",
|
|
ReleaseByIdAsync: "releaseByIdAsync",
|
|
GetDataAsync: "getDataAsync",
|
|
SetDataAsync: "setDataAsync"
|
|
});
|
|
(function () {
|
|
function processBinding(bindingDescriptor) {
|
|
return OSF.DDA.OMFactory.manufactureBinding(bindingDescriptor, Microsoft.Office.WebExtension.context.document);
|
|
}
|
|
function getObjectId(obj) { return obj.id; }
|
|
function processData(dataDescriptor, caller, callArgs) {
|
|
var data = dataDescriptor[Microsoft.Office.WebExtension.Parameters.Data];
|
|
if (OSF.DDA.TableDataProperties && data && (data[OSF.DDA.TableDataProperties.TableRows] != undefined || data[OSF.DDA.TableDataProperties.TableHeaders] != undefined)) {
|
|
data = OSF.DDA.OMFactory.manufactureTableData(data);
|
|
}
|
|
data = OSF.DDA.DataCoercion.coerceData(data, callArgs[Microsoft.Office.WebExtension.Parameters.CoercionType]);
|
|
return data == undefined ? null : data;
|
|
}
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.AddFromSelectionAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.BindingType,
|
|
"enum": Microsoft.Office.WebExtension.BindingType
|
|
}
|
|
],
|
|
supportedOptions: [{
|
|
name: Microsoft.Office.WebExtension.Parameters.Id,
|
|
value: {
|
|
"types": ["string"],
|
|
"calculate": OSF.DDA.generateBindingId
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Columns,
|
|
value: {
|
|
"types": ["object"],
|
|
"defaultValue": null
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: processBinding
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.AddFromNamedItemAsync,
|
|
requiredArguments: [{
|
|
"name": Microsoft.Office.WebExtension.Parameters.ItemName,
|
|
"types": ["string"]
|
|
},
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.BindingType,
|
|
"enum": Microsoft.Office.WebExtension.BindingType
|
|
}
|
|
],
|
|
supportedOptions: [{
|
|
name: Microsoft.Office.WebExtension.Parameters.Id,
|
|
value: {
|
|
"types": ["string"],
|
|
"calculate": OSF.DDA.generateBindingId
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Columns,
|
|
value: {
|
|
"types": ["object"],
|
|
"defaultValue": null
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.FailOnCollision,
|
|
value: function () { return true; }
|
|
}
|
|
],
|
|
onSucceeded: processBinding
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetAllAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: function (response) { return OSF.OUtil.mapList(response[OSF.DDA.ListDescriptors.BindingList], processBinding); }
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetByIdAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Id,
|
|
"types": ["string"]
|
|
}
|
|
],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: processBinding
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.ReleaseByIdAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Id,
|
|
"types": ["string"]
|
|
}
|
|
],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: function (response, caller, callArgs) {
|
|
var id = callArgs[Microsoft.Office.WebExtension.Parameters.Id];
|
|
delete caller._eventDispatches[id];
|
|
}
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetDataAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [{
|
|
name: Microsoft.Office.WebExtension.Parameters.CoercionType,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.CoercionType,
|
|
"calculate": function (requiredArgs, binding) { return OSF.DDA.DataCoercion.getCoercionDefaultForBinding(binding.type); }
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ValueFormat,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.ValueFormat,
|
|
"defaultValue": Microsoft.Office.WebExtension.ValueFormat.Unformatted
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.FilterType,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.FilterType,
|
|
"defaultValue": Microsoft.Office.WebExtension.FilterType.All
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Rows,
|
|
value: {
|
|
"types": ["object", "string"],
|
|
"defaultValue": null
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Columns,
|
|
value: {
|
|
"types": ["object"],
|
|
"defaultValue": null
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.StartRow,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 0
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.StartColumn,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 0
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.RowCount,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 0
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ColumnCount,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 0
|
|
}
|
|
}
|
|
],
|
|
checkCallArgs: function (callArgs, caller, stateInfo) {
|
|
if (callArgs[Microsoft.Office.WebExtension.Parameters.StartRow] == 0 &&
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.StartColumn] == 0 &&
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.RowCount] == 0 &&
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.ColumnCount] == 0) {
|
|
delete callArgs[Microsoft.Office.WebExtension.Parameters.StartRow];
|
|
delete callArgs[Microsoft.Office.WebExtension.Parameters.StartColumn];
|
|
delete callArgs[Microsoft.Office.WebExtension.Parameters.RowCount];
|
|
delete callArgs[Microsoft.Office.WebExtension.Parameters.ColumnCount];
|
|
}
|
|
if (callArgs[Microsoft.Office.WebExtension.Parameters.CoercionType] != OSF.DDA.DataCoercion.getCoercionDefaultForBinding(caller.type) &&
|
|
(callArgs[Microsoft.Office.WebExtension.Parameters.StartRow] ||
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.StartColumn] ||
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.RowCount] ||
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.ColumnCount])) {
|
|
throw OSF.DDA.ErrorCodeManager.errorCodes.ooeCoercionTypeNotMatchBinding;
|
|
}
|
|
return callArgs;
|
|
},
|
|
privateStateCallbacks: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Id,
|
|
value: getObjectId
|
|
}
|
|
],
|
|
onSucceeded: processData
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.SetDataAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Data,
|
|
"types": ["string", "object", "number", "boolean"]
|
|
}
|
|
],
|
|
supportedOptions: [{
|
|
name: Microsoft.Office.WebExtension.Parameters.CoercionType,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.CoercionType,
|
|
"calculate": function (requiredArgs) { return OSF.DDA.DataCoercion.determineCoercionType(requiredArgs[Microsoft.Office.WebExtension.Parameters.Data]); }
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Rows,
|
|
value: {
|
|
"types": ["object", "string"],
|
|
"defaultValue": null
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Columns,
|
|
value: {
|
|
"types": ["object"],
|
|
"defaultValue": null
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.StartRow,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 0
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.StartColumn,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 0
|
|
}
|
|
}
|
|
],
|
|
checkCallArgs: function (callArgs, caller, stateInfo) {
|
|
if (callArgs[Microsoft.Office.WebExtension.Parameters.StartRow] == 0 &&
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.StartColumn] == 0) {
|
|
delete callArgs[Microsoft.Office.WebExtension.Parameters.StartRow];
|
|
delete callArgs[Microsoft.Office.WebExtension.Parameters.StartColumn];
|
|
}
|
|
if (callArgs[Microsoft.Office.WebExtension.Parameters.CoercionType] != OSF.DDA.DataCoercion.getCoercionDefaultForBinding(caller.type) &&
|
|
(callArgs[Microsoft.Office.WebExtension.Parameters.StartRow] ||
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.StartColumn])) {
|
|
throw OSF.DDA.ErrorCodeManager.errorCodes.ooeCoercionTypeNotMatchBinding;
|
|
}
|
|
return callArgs;
|
|
},
|
|
privateStateCallbacks: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Id,
|
|
value: getObjectId
|
|
}
|
|
]
|
|
});
|
|
})();
|
|
OSF.OUtil.augmentList(OSF.DDA.PropertyDescriptors, { TableDataProperties: "TableDataProperties" });
|
|
OSF.OUtil.augmentList(OSF.DDA.BindingProperties, {
|
|
RowCount: "BindingRowCount",
|
|
ColumnCount: "BindingColumnCount",
|
|
HasHeaders: "HasHeaders"
|
|
});
|
|
OSF.DDA.TableDataProperties = {
|
|
TableRows: "TableRows",
|
|
TableHeaders: "TableHeaders"
|
|
};
|
|
OSF.DDA.TableBinding = function OSF_DDA_TableBinding(id, docInstance, rows, cols, hasHeaders) {
|
|
OSF.DDA.TableBinding.uber.constructor.call(this, id, docInstance);
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.BindingType.Table
|
|
},
|
|
"rowCount": {
|
|
value: rows ? rows : 0
|
|
},
|
|
"columnCount": {
|
|
value: cols ? cols : 0
|
|
},
|
|
"hasHeaders": {
|
|
value: hasHeaders ? hasHeaders : false
|
|
}
|
|
});
|
|
var am = OSF.DDA.AsyncMethodNames;
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this, [
|
|
am.AddRowsAsync,
|
|
am.AddColumnsAsync,
|
|
am.DeleteAllDataValuesAsync
|
|
]);
|
|
};
|
|
OSF.OUtil.extend(OSF.DDA.TableBinding, OSF.DDA.Binding);
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
AddRowsAsync: "addRowsAsync",
|
|
AddColumnsAsync: "addColumnsAsync",
|
|
DeleteAllDataValuesAsync: "deleteAllDataValuesAsync"
|
|
});
|
|
(function () {
|
|
function getObjectId(obj) { return obj.id; }
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.AddRowsAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Data,
|
|
"types": ["object"]
|
|
}
|
|
],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Id,
|
|
value: getObjectId
|
|
}
|
|
]
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.AddColumnsAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Data,
|
|
"types": ["object"]
|
|
}
|
|
],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Id,
|
|
value: getObjectId
|
|
}
|
|
]
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.DeleteAllDataValuesAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Id,
|
|
value: getObjectId
|
|
}
|
|
]
|
|
});
|
|
})();
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.WAC.UniqueArguments.GetData,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Id, value: "BindingId" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.CoercionType, value: "CoerceType" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ValueFormat, value: "ValueFormat" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.FilterType, value: "FilterType" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Rows, value: "Rows" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Columns, value: "Columns" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.StartRow, value: "StartRow" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.StartColumn, value: "StartCol" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.RowCount, value: "RowCount" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ColumnCount, value: "ColCount" }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.WAC.UniqueArguments.SetData,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Id, value: "BindingId" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.CoercionType, value: "CoerceType" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.WAC.UniqueArguments.Data },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Rows, value: "Rows" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Columns, value: "Columns" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.StartRow, value: "StartRow" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.StartColumn, value: "StartCol" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ImageLeft, value: "ImageLeft" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ImageTop, value: "ImageTop" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ImageWidth, value: "ImageWidth" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ImageHeight, value: "ImageHeight" }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.addComplexType(OSF.DDA.PropertyDescriptors.BindingProperties);
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.WAC.UniqueArguments.BindingRequest,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ItemName, value: "ItemName" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Id, value: "BindingId" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.BindingType, value: "BindingType" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.PromptText, value: "PromptText" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Columns, value: "Columns" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.SampleData, value: "SampleData" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.FailOnCollision, value: "FailOnCollision" }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: Microsoft.Office.WebExtension.Parameters.BindingType,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.BindingType.Text, value: 2 },
|
|
{ name: Microsoft.Office.WebExtension.BindingType.Matrix, value: 3 },
|
|
{ name: Microsoft.Office.WebExtension.BindingType.Table, value: 1 }
|
|
],
|
|
invertible: true
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.PropertyDescriptors.BindingProperties,
|
|
fromHost: [
|
|
{ name: OSF.DDA.BindingProperties.Id, value: "Name" },
|
|
{ name: OSF.DDA.BindingProperties.Type, value: "BindingType" },
|
|
{ name: OSF.DDA.BindingProperties.RowCount, value: "RowCount" },
|
|
{ name: OSF.DDA.BindingProperties.ColumnCount, value: "ColCount" },
|
|
{ name: OSF.DDA.BindingProperties.HasHeaders, value: "HasHeaders" }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.WAC.UniqueArguments.SingleBindingResponse,
|
|
fromHost: [
|
|
{ name: OSF.DDA.PropertyDescriptors.BindingProperties, value: 0 }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidAddBindingFromSelectionMethod,
|
|
fromHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.SingleBindingResponse, value: OSF.DDA.WAC.UniqueArguments.BindingResponse }
|
|
],
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.BindingRequest, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidAddBindingFromNamedItemMethod,
|
|
fromHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.SingleBindingResponse, value: OSF.DDA.WAC.UniqueArguments.BindingResponse }
|
|
],
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.BindingRequest, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidReleaseBindingMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.BindingRequest, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetBindingMethod,
|
|
fromHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.SingleBindingResponse, value: OSF.DDA.WAC.UniqueArguments.BindingResponse }
|
|
],
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.BindingRequest, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetAllBindingsMethod,
|
|
fromHost: [
|
|
{ name: OSF.DDA.ListDescriptors.BindingList, value: OSF.DDA.WAC.UniqueArguments.BindingResponse }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetBindingDataMethod,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.WAC.UniqueArguments.Data }
|
|
],
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.GetData, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidSetBindingDataMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.SetData, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidAddRowsMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.AddRowsColumns, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidAddColumnsMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.AddRowsColumns, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidClearAllRowsMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.BindingRequest, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.WAC.UniqueArguments.AddRowsColumns,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Id, value: "BindingId" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.WAC.UniqueArguments.Data }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.PropertyDescriptors.Subset,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.StartRow, value: "StartRow" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.StartColumn, value: "StartCol" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.RowCount, value: "RowCount" },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ColumnCount, value: "ColCount" }
|
|
]
|
|
});
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
GetSelectedDataAsync: "getSelectedDataAsync",
|
|
SetSelectedDataAsync: "setSelectedDataAsync"
|
|
});
|
|
(function () {
|
|
function processData(dataDescriptor, caller, callArgs) {
|
|
var data = dataDescriptor[Microsoft.Office.WebExtension.Parameters.Data];
|
|
if (OSF.DDA.TableDataProperties && data && (data[OSF.DDA.TableDataProperties.TableRows] != undefined || data[OSF.DDA.TableDataProperties.TableHeaders] != undefined)) {
|
|
data = OSF.DDA.OMFactory.manufactureTableData(data);
|
|
}
|
|
data = OSF.DDA.DataCoercion.coerceData(data, callArgs[Microsoft.Office.WebExtension.Parameters.CoercionType]);
|
|
return data == undefined ? null : data;
|
|
}
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetSelectedDataAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.CoercionType,
|
|
"enum": Microsoft.Office.WebExtension.CoercionType
|
|
}
|
|
],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ValueFormat,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.ValueFormat,
|
|
"defaultValue": Microsoft.Office.WebExtension.ValueFormat.Unformatted
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.FilterType,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.FilterType,
|
|
"defaultValue": Microsoft.Office.WebExtension.FilterType.All
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: processData
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.SetSelectedDataAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Data,
|
|
"types": ["string", "object", "number", "boolean"]
|
|
}
|
|
],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.CoercionType,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.CoercionType,
|
|
"calculate": function (requiredArgs) {
|
|
return OSF.DDA.DataCoercion.determineCoercionType(requiredArgs[Microsoft.Office.WebExtension.Parameters.Data]);
|
|
}
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ImageLeft,
|
|
value: {
|
|
"types": ["number", "boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ImageTop,
|
|
value: {
|
|
"types": ["number", "boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ImageWidth,
|
|
value: {
|
|
"types": ["number", "boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ImageHeight,
|
|
value: {
|
|
"types": ["number", "boolean"],
|
|
"defaultValue": false
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: []
|
|
});
|
|
})();
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetSelectedDataMethod,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.WAC.UniqueArguments.Data }
|
|
],
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.GetData, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidSetSelectedDataMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.SetData, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
Microsoft.Office.WebExtension.EventType = {};
|
|
OSF.EventDispatch = function OSF_EventDispatch(eventTypes) {
|
|
this._eventHandlers = {};
|
|
this._objectEventHandlers = {};
|
|
this._queuedEventsArgs = {};
|
|
if (eventTypes != null) {
|
|
for (var i = 0; i < eventTypes.length; i++) {
|
|
var eventType = eventTypes[i];
|
|
var isObjectEvent = (eventType == "objectDeleted" || eventType == "objectSelectionChanged" || eventType == "objectDataChanged" || eventType == "contentControlAdded");
|
|
if (!isObjectEvent)
|
|
this._eventHandlers[eventType] = [];
|
|
else
|
|
this._objectEventHandlers[eventType] = {};
|
|
this._queuedEventsArgs[eventType] = [];
|
|
}
|
|
}
|
|
};
|
|
OSF.EventDispatch.prototype = {
|
|
getSupportedEvents: function OSF_EventDispatch$getSupportedEvents() {
|
|
var events = [];
|
|
for (var eventName in this._eventHandlers)
|
|
events.push(eventName);
|
|
for (var eventName in this._objectEventHandlers)
|
|
events.push(eventName);
|
|
return events;
|
|
},
|
|
supportsEvent: function OSF_EventDispatch$supportsEvent(event) {
|
|
for (var eventName in this._eventHandlers) {
|
|
if (event == eventName)
|
|
return true;
|
|
}
|
|
for (var eventName in this._objectEventHandlers) {
|
|
if (event == eventName)
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
hasEventHandler: function OSF_EventDispatch$hasEventHandler(eventType, handler) {
|
|
var handlers = this._eventHandlers[eventType];
|
|
if (handlers && handlers.length > 0) {
|
|
for (var i = 0; i < handlers.length; i++) {
|
|
if (handlers[i] === handler)
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
hasObjectEventHandler: function OSF_EventDispatch$hasObjectEventHandler(eventType, objectId, handler) {
|
|
var handlers = this._objectEventHandlers[eventType];
|
|
if (handlers != null) {
|
|
var _handlers = handlers[objectId];
|
|
for (var i = 0; _handlers != null && i < _handlers.length; i++) {
|
|
if (_handlers[i] === handler)
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
addEventHandler: function OSF_EventDispatch$addEventHandler(eventType, handler) {
|
|
if (typeof handler != "function") {
|
|
return false;
|
|
}
|
|
var handlers = this._eventHandlers[eventType];
|
|
if (handlers && !this.hasEventHandler(eventType, handler)) {
|
|
handlers.push(handler);
|
|
return true;
|
|
}
|
|
else {
|
|
return false;
|
|
}
|
|
},
|
|
addObjectEventHandler: function OSF_EventDispatch$addObjectEventHandler(eventType, objectId, handler) {
|
|
if (typeof handler != "function") {
|
|
return false;
|
|
}
|
|
var handlers = this._objectEventHandlers[eventType];
|
|
if (handlers && !this.hasObjectEventHandler(eventType, objectId, handler)) {
|
|
if (handlers[objectId] == null)
|
|
handlers[objectId] = [];
|
|
handlers[objectId].push(handler);
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
addEventHandlerAndFireQueuedEvent: function OSF_EventDispatch$addEventHandlerAndFireQueuedEvent(eventType, handler) {
|
|
var handlers = this._eventHandlers[eventType];
|
|
var isFirstHandler = handlers.length == 0;
|
|
var succeed = this.addEventHandler(eventType, handler);
|
|
if (isFirstHandler && succeed) {
|
|
this.fireQueuedEvent(eventType);
|
|
}
|
|
return succeed;
|
|
},
|
|
removeEventHandler: function OSF_EventDispatch$removeEventHandler(eventType, handler) {
|
|
var handlers = this._eventHandlers[eventType];
|
|
if (handlers && handlers.length > 0) {
|
|
for (var index = 0; index < handlers.length; index++) {
|
|
if (handlers[index] === handler) {
|
|
handlers.splice(index, 1);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
removeObjectEventHandler: function OSF_EventDispatch$removeObjectEventHandler(eventType, objectId, handler) {
|
|
var handlers = this._objectEventHandlers[eventType];
|
|
if (handlers != null) {
|
|
var _handlers = handlers[objectId];
|
|
for (var i = 0; _handlers != null && i < _handlers.length; i++) {
|
|
if (_handlers[i] === handler) {
|
|
_handlers.splice(i, 1);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
clearEventHandlers: function OSF_EventDispatch$clearEventHandlers(eventType) {
|
|
if (typeof this._eventHandlers[eventType] != "undefined" && this._eventHandlers[eventType].length > 0) {
|
|
this._eventHandlers[eventType] = [];
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
clearObjectEventHandlers: function OSF_EventDispatch$clearObjectEventHandlers(eventType, objectId) {
|
|
if (this._objectEventHandlers[eventType] != null && this._objectEventHandlers[eventType][objectId] != null) {
|
|
this._objectEventHandlers[eventType][objectId] = [];
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
getEventHandlerCount: function OSF_EventDispatch$getEventHandlerCount(eventType) {
|
|
return this._eventHandlers[eventType] != undefined ? this._eventHandlers[eventType].length : -1;
|
|
},
|
|
getObjectEventHandlerCount: function OSF_EventDispatch$getObjectEventHandlerCount(eventType, objectId) {
|
|
if (this._objectEventHandlers[eventType] == null || this._objectEventHandlers[eventType][objectId] == null)
|
|
return 0;
|
|
return this._objectEventHandlers[eventType][objectId].length;
|
|
},
|
|
fireEvent: function OSF_EventDispatch$fireEvent(eventArgs) {
|
|
if (eventArgs.type == undefined)
|
|
return false;
|
|
var eventType = eventArgs.type;
|
|
if (eventType && this._eventHandlers[eventType]) {
|
|
var eventHandlers = this._eventHandlers[eventType];
|
|
for (var i = 0; i < eventHandlers.length; i++) {
|
|
eventHandlers[i](eventArgs);
|
|
}
|
|
return true;
|
|
}
|
|
else {
|
|
return false;
|
|
}
|
|
},
|
|
fireObjectEvent: function OSF_EventDispatch$fireObjectEvent(objectId, eventArgs) {
|
|
if (eventArgs.type == undefined)
|
|
return false;
|
|
var eventType = eventArgs.type;
|
|
if (eventType && this._objectEventHandlers[eventType]) {
|
|
var eventHandlers = this._objectEventHandlers[eventType];
|
|
var _handlers = eventHandlers[objectId];
|
|
if (_handlers != null) {
|
|
for (var i = 0; i < _handlers.length; i++)
|
|
_handlers[i](eventArgs);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
fireOrQueueEvent: function OSF_EventDispatch$fireOrQueueEvent(eventArgs) {
|
|
var eventType = eventArgs.type;
|
|
if (eventType && this._eventHandlers[eventType]) {
|
|
var eventHandlers = this._eventHandlers[eventType];
|
|
var queuedEvents = this._queuedEventsArgs[eventType];
|
|
if (eventHandlers.length == 0) {
|
|
queuedEvents.push(eventArgs);
|
|
}
|
|
else {
|
|
this.fireEvent(eventArgs);
|
|
}
|
|
return true;
|
|
}
|
|
else {
|
|
return false;
|
|
}
|
|
},
|
|
fireQueuedEvent: function OSF_EventDispatch$queueEvent(eventType) {
|
|
if (eventType && this._eventHandlers[eventType]) {
|
|
var eventHandlers = this._eventHandlers[eventType];
|
|
var queuedEvents = this._queuedEventsArgs[eventType];
|
|
if (eventHandlers.length > 0) {
|
|
var eventHandler = eventHandlers[0];
|
|
while (queuedEvents.length > 0) {
|
|
var eventArgs = queuedEvents.shift();
|
|
eventHandler(eventArgs);
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
clearQueuedEvent: function OSF_EventDispatch$clearQueuedEvent(eventType) {
|
|
if (eventType && this._eventHandlers[eventType]) {
|
|
var queuedEvents = this._queuedEventsArgs[eventType];
|
|
if (queuedEvents) {
|
|
this._queuedEventsArgs[eventType] = [];
|
|
}
|
|
}
|
|
}
|
|
};
|
|
OSF.DDA.OMFactory = OSF.DDA.OMFactory || {};
|
|
OSF.DDA.OMFactory.manufactureEventArgs = function OSF_DDA_OMFactory$manufactureEventArgs(eventType, target, eventProperties) {
|
|
var args;
|
|
switch (eventType) {
|
|
case Microsoft.Office.WebExtension.EventType.DocumentSelectionChanged:
|
|
args = new OSF.DDA.DocumentSelectionChangedEventArgs(target);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.BindingSelectionChanged:
|
|
args = new OSF.DDA.BindingSelectionChangedEventArgs(this.manufactureBinding(eventProperties, target.document), eventProperties[OSF.DDA.PropertyDescriptors.Subset]);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.BindingDataChanged:
|
|
args = new OSF.DDA.BindingDataChangedEventArgs(this.manufactureBinding(eventProperties, target.document));
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.SettingsChanged:
|
|
args = new OSF.DDA.SettingsChangedEventArgs(target);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.ActiveViewChanged:
|
|
args = new OSF.DDA.ActiveViewChangedEventArgs(eventProperties);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.OfficeThemeChanged:
|
|
args = new OSF.DDA.Theming.OfficeThemeChangedEventArgs(eventProperties);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.DocumentThemeChanged:
|
|
args = new OSF.DDA.Theming.DocumentThemeChangedEventArgs(eventProperties);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.AppCommandInvoked:
|
|
args = OSF.DDA.AppCommand.AppCommandInvokedEventArgs.create(eventProperties);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.ObjectDeleted:
|
|
case Microsoft.Office.WebExtension.EventType.ObjectSelectionChanged:
|
|
case Microsoft.Office.WebExtension.EventType.ObjectDataChanged:
|
|
case Microsoft.Office.WebExtension.EventType.ContentControlAdded:
|
|
args = new OSF.DDA.ObjectEventArgs(eventType, eventProperties[Microsoft.Office.WebExtension.Parameters.Id]);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.RichApiMessage:
|
|
args = new OSF.DDA.RichApiMessageEventArgs(eventType, eventProperties);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.DataNodeInserted:
|
|
args = new OSF.DDA.NodeInsertedEventArgs(this.manufactureDataNode(eventProperties[OSF.DDA.DataNodeEventProperties.NewNode]), eventProperties[OSF.DDA.DataNodeEventProperties.InUndoRedo]);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.DataNodeReplaced:
|
|
args = new OSF.DDA.NodeReplacedEventArgs(this.manufactureDataNode(eventProperties[OSF.DDA.DataNodeEventProperties.OldNode]), this.manufactureDataNode(eventProperties[OSF.DDA.DataNodeEventProperties.NewNode]), eventProperties[OSF.DDA.DataNodeEventProperties.InUndoRedo]);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.DataNodeDeleted:
|
|
args = new OSF.DDA.NodeDeletedEventArgs(this.manufactureDataNode(eventProperties[OSF.DDA.DataNodeEventProperties.OldNode]), this.manufactureDataNode(eventProperties[OSF.DDA.DataNodeEventProperties.NextSiblingNode]), eventProperties[OSF.DDA.DataNodeEventProperties.InUndoRedo]);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.TaskSelectionChanged:
|
|
args = new OSF.DDA.TaskSelectionChangedEventArgs(target);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.ResourceSelectionChanged:
|
|
args = new OSF.DDA.ResourceSelectionChangedEventArgs(target);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.ViewSelectionChanged:
|
|
args = new OSF.DDA.ViewSelectionChangedEventArgs(target);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.DialogMessageReceived:
|
|
args = new OSF.DDA.DialogEventArgs(eventProperties);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.DialogParentMessageReceived:
|
|
args = new OSF.DDA.DialogParentEventArgs(eventProperties);
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.ItemChanged:
|
|
if (OSF._OfficeAppFactory.getHostInfo()["hostType"] == "outlook") {
|
|
args = new OSF.DDA.OlkItemSelectedChangedEventArgs(eventProperties);
|
|
target.initialize(args["initialData"]);
|
|
if (OSF._OfficeAppFactory.getHostInfo()["hostPlatform"] == "win32" || OSF._OfficeAppFactory.getHostInfo()["hostPlatform"] == "mac") {
|
|
target.setCurrentItemNumber(args["itemNumber"].itemNumber);
|
|
}
|
|
}
|
|
else {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Microsoft.Office.WebExtension.Parameters.EventType, OSF.OUtil.formatString(Strings.OfficeOM.L_NotSupportedEventType, eventType));
|
|
}
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.RecipientsChanged:
|
|
if (OSF._OfficeAppFactory.getHostInfo()["hostType"] == "outlook") {
|
|
args = new OSF.DDA.OlkRecipientsChangedEventArgs(eventProperties);
|
|
}
|
|
else {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Microsoft.Office.WebExtension.Parameters.EventType, OSF.OUtil.formatString(Strings.OfficeOM.L_NotSupportedEventType, eventType));
|
|
}
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.AppointmentTimeChanged:
|
|
if (OSF._OfficeAppFactory.getHostInfo()["hostType"] == "outlook") {
|
|
args = new OSF.DDA.OlkAppointmentTimeChangedEventArgs(eventProperties);
|
|
}
|
|
else {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Microsoft.Office.WebExtension.Parameters.EventType, OSF.OUtil.formatString(Strings.OfficeOM.L_NotSupportedEventType, eventType));
|
|
}
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.RecurrenceChanged:
|
|
if (OSF._OfficeAppFactory.getHostInfo()["hostType"] == "outlook") {
|
|
args = new OSF.DDA.OlkRecurrenceChangedEventArgs(eventProperties);
|
|
}
|
|
else {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Microsoft.Office.WebExtension.Parameters.EventType, OSF.OUtil.formatString(Strings.OfficeOM.L_NotSupportedEventType, eventType));
|
|
}
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.AttachmentsChanged:
|
|
if (OSF._OfficeAppFactory.getHostInfo()["hostType"] == "outlook") {
|
|
args = new OSF.DDA.OlkAttachmentsChangedEventArgs(eventProperties);
|
|
}
|
|
else {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Microsoft.Office.WebExtension.Parameters.EventType, OSF.OUtil.formatString(Strings.OfficeOM.L_NotSupportedEventType, eventType));
|
|
}
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.EnhancedLocationsChanged:
|
|
if (OSF._OfficeAppFactory.getHostInfo()["hostType"] == "outlook") {
|
|
args = new OSF.DDA.OlkEnhancedLocationsChangedEventArgs(eventProperties);
|
|
}
|
|
else {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Microsoft.Office.WebExtension.Parameters.EventType, OSF.OUtil.formatString(Strings.OfficeOM.L_NotSupportedEventType, eventType));
|
|
}
|
|
break;
|
|
case Microsoft.Office.WebExtension.EventType.InfobarClicked:
|
|
if (OSF._OfficeAppFactory.getHostInfo()["hostType"] == "outlook") {
|
|
args = new OSF.DDA.OlkInfobarClickedEventArgs(eventProperties);
|
|
}
|
|
else {
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Microsoft.Office.WebExtension.Parameters.EventType, OSF.OUtil.formatString(Strings.OfficeOM.L_NotSupportedEventType, eventType));
|
|
}
|
|
break;
|
|
default:
|
|
throw OsfMsAjaxFactory.msAjaxError.argument(Microsoft.Office.WebExtension.Parameters.EventType, OSF.OUtil.formatString(Strings.OfficeOM.L_NotSupportedEventType, eventType));
|
|
}
|
|
return args;
|
|
};
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
AddHandlerAsync: "addHandlerAsync",
|
|
RemoveHandlerAsync: "removeHandlerAsync"
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.AddHandlerAsync,
|
|
requiredArguments: [{
|
|
"name": Microsoft.Office.WebExtension.Parameters.EventType,
|
|
"enum": Microsoft.Office.WebExtension.EventType,
|
|
"verify": function (eventType, caller, eventDispatch) { return eventDispatch.supportsEvent(eventType); }
|
|
},
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Handler,
|
|
"types": ["function"]
|
|
}
|
|
],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: []
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.RemoveHandlerAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.EventType,
|
|
"enum": Microsoft.Office.WebExtension.EventType,
|
|
"verify": function (eventType, caller, eventDispatch) { return eventDispatch.supportsEvent(eventType); }
|
|
}
|
|
],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Handler,
|
|
value: {
|
|
"types": ["function", "object"],
|
|
"defaultValue": null
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: []
|
|
});
|
|
OSF.OUtil.augmentList(OSF.DDA.EventDescriptors, { ActiveViewChangedEvent: "ActiveViewChangedEvent" });
|
|
Microsoft.Office.WebExtension.ActiveView = {
|
|
Read: "read",
|
|
Edit: "edit"
|
|
};
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, {
|
|
ActiveViewChanged: "activeViewChanged"
|
|
});
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
GetActiveViewAsync: "getActiveViewAsync"
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetActiveViewAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: function (response) {
|
|
var data = response[Microsoft.Office.WebExtension.Parameters.ActiveView];
|
|
return data == undefined ? null : data;
|
|
}
|
|
});
|
|
OSF.DDA.ActiveViewChangedEventArgs = function OSF_DDA_ActiveViewChangedEventArgs(activeView) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.EventType.ActiveViewChanged
|
|
},
|
|
"activeView": {
|
|
value: activeView.activeView
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetActiveViewMethod,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ActiveView, value: Microsoft.Office.WebExtension.Parameters.Data }
|
|
]
|
|
});
|
|
Microsoft.Office.WebExtension.GoToType = {
|
|
Binding: "binding",
|
|
NamedItem: "namedItem",
|
|
Slide: "slide",
|
|
Index: "index"
|
|
};
|
|
Microsoft.Office.WebExtension.SelectionMode = {
|
|
Default: "default",
|
|
Selected: "selected",
|
|
None: "none"
|
|
};
|
|
Microsoft.Office.WebExtension.Index = {
|
|
First: "first",
|
|
Last: "last",
|
|
Next: "next",
|
|
Previous: "previous"
|
|
};
|
|
OSF.DDA.AsyncMethodNames.addNames({ GoToByIdAsync: "goToByIdAsync" });
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GoToByIdAsync,
|
|
requiredArguments: [{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Id,
|
|
"types": ["string", "number"]
|
|
},
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.GoToType,
|
|
"enum": Microsoft.Office.WebExtension.GoToType
|
|
}
|
|
],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.SelectionMode,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.SelectionMode,
|
|
"defaultValue": Microsoft.Office.WebExtension.SelectionMode.Default
|
|
}
|
|
}
|
|
]
|
|
});
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
OSF.DDA.Marshaling.NavigationKeys = {
|
|
NavigationRequest: "DdaGoToByIdMethod",
|
|
Id: "Id",
|
|
GoToType: "GoToType",
|
|
SelectionMode: "SelectionMode"
|
|
};
|
|
var OSF_DDA_Marshaling_GoToType;
|
|
(function (OSF_DDA_Marshaling_GoToType) {
|
|
OSF_DDA_Marshaling_GoToType[OSF_DDA_Marshaling_GoToType["Binding"] = 0] = "Binding";
|
|
OSF_DDA_Marshaling_GoToType[OSF_DDA_Marshaling_GoToType["NamedItem"] = 1] = "NamedItem";
|
|
OSF_DDA_Marshaling_GoToType[OSF_DDA_Marshaling_GoToType["Slide"] = 2] = "Slide";
|
|
OSF_DDA_Marshaling_GoToType[OSF_DDA_Marshaling_GoToType["Index"] = 3] = "Index";
|
|
})(OSF_DDA_Marshaling_GoToType || (OSF_DDA_Marshaling_GoToType = {}));
|
|
;
|
|
OSF.DDA.Marshaling.GoToType = OSF_DDA_Marshaling_GoToType;
|
|
var OSF_DDA_Marshaling_SelectionMode;
|
|
(function (OSF_DDA_Marshaling_SelectionMode) {
|
|
OSF_DDA_Marshaling_SelectionMode[OSF_DDA_Marshaling_SelectionMode["Default"] = 0] = "Default";
|
|
OSF_DDA_Marshaling_SelectionMode[OSF_DDA_Marshaling_SelectionMode["Selected"] = 1] = "Selected";
|
|
OSF_DDA_Marshaling_SelectionMode[OSF_DDA_Marshaling_SelectionMode["None"] = 2] = "None";
|
|
})(OSF_DDA_Marshaling_SelectionMode || (OSF_DDA_Marshaling_SelectionMode = {}));
|
|
;
|
|
OSF.DDA.Marshaling.SelectionMode = OSF_DDA_Marshaling_SelectionMode;
|
|
OSF.DDA.WAC.Delegate.ParameterMap.addComplexType(OSF.DDA.Marshaling.NavigationKeys.NavigationRequest);
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.Marshaling.NavigationKeys.NavigationRequest,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Id, value: OSF.DDA.Marshaling.NavigationKeys.Id },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.GoToType, value: OSF.DDA.Marshaling.NavigationKeys.GoToType },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.SelectionMode, value: OSF.DDA.Marshaling.NavigationKeys.SelectionMode }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: Microsoft.Office.WebExtension.Parameters.GoToType,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.GoToType.Binding, value: OSF.DDA.Marshaling.GoToType.Binding },
|
|
{ name: Microsoft.Office.WebExtension.GoToType.NamedItem, value: OSF.DDA.Marshaling.GoToType.NamedItem },
|
|
{ name: Microsoft.Office.WebExtension.GoToType.Slide, value: OSF.DDA.Marshaling.GoToType.Slide },
|
|
{ name: Microsoft.Office.WebExtension.GoToType.Index, value: OSF.DDA.Marshaling.GoToType.Index }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: Microsoft.Office.WebExtension.Parameters.SelectionMode,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.SelectionMode.Default, value: OSF.DDA.Marshaling.SelectionMode.Default },
|
|
{ name: Microsoft.Office.WebExtension.SelectionMode.Selected, value: OSF.DDA.Marshaling.SelectionMode.Selected },
|
|
{ name: Microsoft.Office.WebExtension.SelectionMode.None, value: OSF.DDA.Marshaling.SelectionMode.None }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidNavigateToMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.Marshaling.NavigationKeys.NavigationRequest, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
Microsoft.Office.WebExtension.FileType = {
|
|
Text: "text",
|
|
Compressed: "compressed",
|
|
Pdf: "pdf"
|
|
};
|
|
OSF.OUtil.augmentList(OSF.DDA.PropertyDescriptors, {
|
|
FileProperties: "FileProperties",
|
|
FileSliceProperties: "FileSliceProperties"
|
|
});
|
|
OSF.DDA.FileProperties = {
|
|
Handle: "FileHandle",
|
|
FileSize: "FileSize",
|
|
SliceSize: Microsoft.Office.WebExtension.Parameters.SliceSize
|
|
};
|
|
OSF.DDA.File = function OSF_DDA_File(handle, fileSize, sliceSize) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"size": {
|
|
value: fileSize
|
|
},
|
|
"sliceCount": {
|
|
value: Math.ceil(fileSize / sliceSize)
|
|
}
|
|
});
|
|
var privateState = {};
|
|
privateState[OSF.DDA.FileProperties.Handle] = handle;
|
|
privateState[OSF.DDA.FileProperties.SliceSize] = sliceSize;
|
|
var am = OSF.DDA.AsyncMethodNames;
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this, [
|
|
am.GetDocumentCopyChunkAsync,
|
|
am.ReleaseDocumentCopyAsync
|
|
], privateState);
|
|
};
|
|
OSF.DDA.FileSliceOffset = "fileSliceoffset";
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
GetDocumentCopyAsync: "getFileAsync",
|
|
GetDocumentCopyChunkAsync: "getSliceAsync",
|
|
ReleaseDocumentCopyAsync: "closeAsync"
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetDocumentCopyAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.FileType,
|
|
"enum": Microsoft.Office.WebExtension.FileType
|
|
}
|
|
],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.SliceSize,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 4 * 1024 * 1024
|
|
}
|
|
}
|
|
],
|
|
checkCallArgs: function (callArgs, caller, stateInfo) {
|
|
var sliceSize = callArgs[Microsoft.Office.WebExtension.Parameters.SliceSize];
|
|
if (sliceSize <= 0 || sliceSize > (4 * 1024 * 1024)) {
|
|
throw OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidSliceSize;
|
|
}
|
|
return callArgs;
|
|
},
|
|
onSucceeded: function (fileDescriptor, caller, callArgs) {
|
|
return new OSF.DDA.File(fileDescriptor[OSF.DDA.FileProperties.Handle], fileDescriptor[OSF.DDA.FileProperties.FileSize], callArgs[Microsoft.Office.WebExtension.Parameters.SliceSize]);
|
|
}
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetDocumentCopyChunkAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.SliceIndex,
|
|
"types": ["number"]
|
|
}
|
|
],
|
|
privateStateCallbacks: [
|
|
{
|
|
name: OSF.DDA.FileProperties.Handle,
|
|
value: function (caller, stateInfo) { return stateInfo[OSF.DDA.FileProperties.Handle]; }
|
|
},
|
|
{
|
|
name: OSF.DDA.FileProperties.SliceSize,
|
|
value: function (caller, stateInfo) { return stateInfo[OSF.DDA.FileProperties.SliceSize]; }
|
|
}
|
|
],
|
|
checkCallArgs: function (callArgs, caller, stateInfo) {
|
|
var index = callArgs[Microsoft.Office.WebExtension.Parameters.SliceIndex];
|
|
if (index < 0 || index >= caller.sliceCount) {
|
|
throw OSF.DDA.ErrorCodeManager.errorCodes.ooeIndexOutOfRange;
|
|
}
|
|
callArgs[OSF.DDA.FileSliceOffset] = parseInt((index * stateInfo[OSF.DDA.FileProperties.SliceSize]).toString());
|
|
return callArgs;
|
|
},
|
|
onSucceeded: function (sliceDescriptor, caller, callArgs) {
|
|
var slice = {};
|
|
OSF.OUtil.defineEnumerableProperties(slice, {
|
|
"data": {
|
|
value: sliceDescriptor[Microsoft.Office.WebExtension.Parameters.Data]
|
|
},
|
|
"index": {
|
|
value: callArgs[Microsoft.Office.WebExtension.Parameters.SliceIndex]
|
|
},
|
|
"size": {
|
|
value: sliceDescriptor[OSF.DDA.FileProperties.SliceSize]
|
|
}
|
|
});
|
|
return slice;
|
|
}
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.ReleaseDocumentCopyAsync,
|
|
privateStateCallbacks: [
|
|
{
|
|
name: OSF.DDA.FileProperties.Handle,
|
|
value: function (caller, stateInfo) { return stateInfo[OSF.DDA.FileProperties.Handle]; }
|
|
}
|
|
]
|
|
});
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
OSF.OUtil.setNamespace("File", OSF.DDA.Marshaling);
|
|
var OSF_DDA_Marshaling_File_FilePropertiesKeys;
|
|
(function (OSF_DDA_Marshaling_File_FilePropertiesKeys) {
|
|
OSF_DDA_Marshaling_File_FilePropertiesKeys[OSF_DDA_Marshaling_File_FilePropertiesKeys["Handle"] = 0] = "Handle";
|
|
OSF_DDA_Marshaling_File_FilePropertiesKeys[OSF_DDA_Marshaling_File_FilePropertiesKeys["FileSize"] = 1] = "FileSize";
|
|
})(OSF_DDA_Marshaling_File_FilePropertiesKeys || (OSF_DDA_Marshaling_File_FilePropertiesKeys = {}));
|
|
;
|
|
OSF.DDA.Marshaling.File.FilePropertiesKeys = OSF_DDA_Marshaling_File_FilePropertiesKeys;
|
|
var OSF_DDA_Marshaling_File_SlicePropertiesKeys;
|
|
(function (OSF_DDA_Marshaling_File_SlicePropertiesKeys) {
|
|
OSF_DDA_Marshaling_File_SlicePropertiesKeys[OSF_DDA_Marshaling_File_SlicePropertiesKeys["Data"] = 0] = "Data";
|
|
OSF_DDA_Marshaling_File_SlicePropertiesKeys[OSF_DDA_Marshaling_File_SlicePropertiesKeys["SliceSize"] = 1] = "SliceSize";
|
|
})(OSF_DDA_Marshaling_File_SlicePropertiesKeys || (OSF_DDA_Marshaling_File_SlicePropertiesKeys = {}));
|
|
;
|
|
OSF.DDA.Marshaling.File.SlicePropertiesKeys = OSF_DDA_Marshaling_File_SlicePropertiesKeys;
|
|
var OSF_DDA_Marshaling_File_FileType;
|
|
(function (OSF_DDA_Marshaling_File_FileType) {
|
|
OSF_DDA_Marshaling_File_FileType[OSF_DDA_Marshaling_File_FileType["Text"] = 0] = "Text";
|
|
OSF_DDA_Marshaling_File_FileType[OSF_DDA_Marshaling_File_FileType["Compressed"] = 1] = "Compressed";
|
|
OSF_DDA_Marshaling_File_FileType[OSF_DDA_Marshaling_File_FileType["Pdf"] = 2] = "Pdf";
|
|
})(OSF_DDA_Marshaling_File_FileType || (OSF_DDA_Marshaling_File_FileType = {}));
|
|
;
|
|
OSF.DDA.Marshaling.File.FileType = OSF_DDA_Marshaling_File_FileType;
|
|
var OSF_DDA_Marshaling_File_ParameterKeys;
|
|
(function (OSF_DDA_Marshaling_File_ParameterKeys) {
|
|
OSF_DDA_Marshaling_File_ParameterKeys[OSF_DDA_Marshaling_File_ParameterKeys["FileType"] = 0] = "FileType";
|
|
OSF_DDA_Marshaling_File_ParameterKeys[OSF_DDA_Marshaling_File_ParameterKeys["SliceSize"] = 1] = "SliceSize";
|
|
OSF_DDA_Marshaling_File_ParameterKeys[OSF_DDA_Marshaling_File_ParameterKeys["Handle"] = 2] = "Handle";
|
|
OSF_DDA_Marshaling_File_ParameterKeys[OSF_DDA_Marshaling_File_ParameterKeys["SliceIndex"] = 3] = "SliceIndex";
|
|
})(OSF_DDA_Marshaling_File_ParameterKeys || (OSF_DDA_Marshaling_File_ParameterKeys = {}));
|
|
;
|
|
OSF.DDA.Marshaling.File.ParameterKeys = OSF_DDA_Marshaling_File_ParameterKeys;
|
|
OSF.DDA.WAC.Delegate.ParameterMap.addComplexType(OSF.DDA.PropertyDescriptors.FileProperties);
|
|
OSF.DDA.WAC.Delegate.ParameterMap.addComplexType(OSF.DDA.PropertyDescriptors.FileSliceProperties);
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.PropertyDescriptors.FileProperties,
|
|
fromHost: [
|
|
{ name: OSF.DDA.FileProperties.Handle, value: OSF.DDA.Marshaling.File.FilePropertiesKeys.Handle },
|
|
{ name: OSF.DDA.FileProperties.FileSize, value: OSF.DDA.Marshaling.File.FilePropertiesKeys.FileSize }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.PropertyDescriptors.FileSliceProperties,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.Marshaling.File.SlicePropertiesKeys.Data },
|
|
{ name: OSF.DDA.FileProperties.SliceSize, value: OSF.DDA.Marshaling.File.SlicePropertiesKeys.SliceSize }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: Microsoft.Office.WebExtension.Parameters.FileType,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.FileType.Text, value: OSF.DDA.Marshaling.File.FileType.Text },
|
|
{ name: Microsoft.Office.WebExtension.FileType.Compressed, value: OSF.DDA.Marshaling.File.FileType.Compressed },
|
|
{ name: Microsoft.Office.WebExtension.FileType.Pdf, value: OSF.DDA.Marshaling.File.FileType.Pdf }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetDocumentCopyMethod,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.FileType, value: OSF.DDA.Marshaling.File.ParameterKeys.FileType },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.SliceSize, value: OSF.DDA.Marshaling.File.ParameterKeys.SliceSize }
|
|
],
|
|
fromHost: [
|
|
{ name: OSF.DDA.PropertyDescriptors.FileProperties, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetDocumentCopyChunkMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.FileProperties.Handle, value: OSF.DDA.Marshaling.File.ParameterKeys.Handle },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.SliceIndex, value: OSF.DDA.Marshaling.File.ParameterKeys.SliceIndex }
|
|
],
|
|
fromHost: [
|
|
{ name: OSF.DDA.PropertyDescriptors.FileSliceProperties, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidReleaseDocumentCopyMethod,
|
|
toHost: [{ name: OSF.DDA.FileProperties.Handle, value: OSF.DDA.Marshaling.File.ParameterKeys.Handle }]
|
|
});
|
|
OSF.DDA.FilePropertiesDescriptor = {
|
|
Url: "Url"
|
|
};
|
|
OSF.OUtil.augmentList(OSF.DDA.PropertyDescriptors, {
|
|
FilePropertiesDescriptor: "FilePropertiesDescriptor"
|
|
});
|
|
Microsoft.Office.WebExtension.FileProperties = function Microsoft_Office_WebExtension_FileProperties(filePropertiesDescriptor) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"url": {
|
|
value: filePropertiesDescriptor[OSF.DDA.FilePropertiesDescriptor.Url]
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.AsyncMethodNames.addNames({ GetFilePropertiesAsync: "getFilePropertiesAsync" });
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetFilePropertiesAsync,
|
|
fromHost: [
|
|
{ name: OSF.DDA.PropertyDescriptors.FilePropertiesDescriptor, value: 0 }
|
|
],
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
onSucceeded: function (filePropertiesDescriptor, caller, callArgs) {
|
|
return new Microsoft.Office.WebExtension.FileProperties(filePropertiesDescriptor);
|
|
}
|
|
});
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
var OSF_DDA_Marshaling_FilePropertiesKeys;
|
|
(function (OSF_DDA_Marshaling_FilePropertiesKeys) {
|
|
OSF_DDA_Marshaling_FilePropertiesKeys[OSF_DDA_Marshaling_FilePropertiesKeys["Properties"] = 0] = "Properties";
|
|
OSF_DDA_Marshaling_FilePropertiesKeys[OSF_DDA_Marshaling_FilePropertiesKeys["Url"] = 1] = "Url";
|
|
})(OSF_DDA_Marshaling_FilePropertiesKeys || (OSF_DDA_Marshaling_FilePropertiesKeys = {}));
|
|
;
|
|
OSF.DDA.Marshaling.FilePropertiesKeys = OSF_DDA_Marshaling_FilePropertiesKeys;
|
|
OSF.DDA.WAC.Delegate.ParameterMap.addComplexType(OSF.DDA.PropertyDescriptors.FilePropertiesDescriptor);
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.PropertyDescriptors.FilePropertiesDescriptor,
|
|
fromHost: [
|
|
{ name: OSF.DDA.FilePropertiesDescriptor.Url, value: OSF.DDA.Marshaling.FilePropertiesKeys.Url }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetFilePropertiesMethod,
|
|
fromHost: [
|
|
{ name: OSF.DDA.PropertyDescriptors.FilePropertiesDescriptor, value: OSF.DDA.Marshaling.FilePropertiesKeys.Properties }
|
|
]
|
|
});
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
ExecuteRichApiRequestAsync: "executeRichApiRequestAsync"
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.ExecuteRichApiRequestAsync,
|
|
requiredArguments: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Data,
|
|
types: ["object"]
|
|
}
|
|
],
|
|
supportedOptions: []
|
|
});
|
|
OSF.OUtil.setNamespace("RichApi", OSF.DDA);
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidExecuteRichApiRequestMethod,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.WAC.UniqueArguments.ArrayData }
|
|
],
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.WAC.UniqueArguments.Data }
|
|
]
|
|
});
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, { RichApiMessage: "richApiMessage" });
|
|
OSF.DDA.RichApiMessageEventArgs = function OSF_DDA_RichApiMessageEventArgs(eventType, eventProperties) {
|
|
var entryArray = eventProperties[Microsoft.Office.WebExtension.Parameters.Data];
|
|
var entries = [];
|
|
if (entryArray) {
|
|
for (var i = 0; i < entryArray.length; i++) {
|
|
var elem = entryArray[i];
|
|
if (elem.toArray) {
|
|
elem = elem.toArray();
|
|
}
|
|
entries.push({
|
|
messageCategory: elem[0],
|
|
messageType: elem[1],
|
|
targetId: elem[2],
|
|
message: elem[3],
|
|
id: elem[4],
|
|
isRemoteOverride: elem[5]
|
|
});
|
|
}
|
|
}
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": { value: Microsoft.Office.WebExtension.EventType.RichApiMessage },
|
|
"entries": { value: entries }
|
|
});
|
|
};
|
|
(function (OfficeExt) {
|
|
var RichApiMessageManager = (function () {
|
|
function RichApiMessageManager() {
|
|
this._eventDispatch = null;
|
|
this._registerHandlers = [];
|
|
this._eventDispatch = new OSF.EventDispatch([
|
|
Microsoft.Office.WebExtension.EventType.RichApiMessage,
|
|
]);
|
|
OSF.DDA.DispIdHost.addEventSupport(this, this._eventDispatch);
|
|
}
|
|
RichApiMessageManager.prototype.register = function (handler) {
|
|
var _this = this;
|
|
if (!this._registerWithHostPromise) {
|
|
this._registerWithHostPromise = new Office.Promise(function (resolve, reject) {
|
|
_this.addHandlerAsync(Microsoft.Office.WebExtension.EventType.RichApiMessage, function (args) {
|
|
_this._registerHandlers.forEach(function (value) {
|
|
if (value) {
|
|
value(args);
|
|
}
|
|
});
|
|
}, function (asyncResult) {
|
|
if (asyncResult.status == 'failed') {
|
|
reject(asyncResult.error);
|
|
}
|
|
else {
|
|
resolve();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
return this._registerWithHostPromise.then(function () {
|
|
_this._registerHandlers.push(handler);
|
|
});
|
|
};
|
|
return RichApiMessageManager;
|
|
}());
|
|
OfficeExt.RichApiMessageManager = RichApiMessageManager;
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.EventDispId.dispidRichApiMessageEvent,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.WAC.UniqueArguments.ArrayData }
|
|
],
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.WAC.UniqueArguments.ArrayData }
|
|
]
|
|
});
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
GetOfficeThemeAsync: "getOfficeThemeAsync",
|
|
GetDocumentThemeAsync: "getDocumentThemeAsync"
|
|
});
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, {
|
|
OfficeThemeChanged: "officeThemeChanged",
|
|
DocumentThemeChanged: "documentThemeChanged"
|
|
});
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.Parameters, {
|
|
DocumentTheme: "documentTheme",
|
|
OfficeTheme: "officeTheme"
|
|
});
|
|
OSF.OUtil.augmentList(OSF.DDA.EventDescriptors, {
|
|
DocumentThemeChangedEvent: "DocumentThemeChangedEvent",
|
|
OfficeThemeChangedEvent: "OfficeThemeChangedEvent"
|
|
});
|
|
OSF.OUtil.setNamespace("Theming", OSF.DDA);
|
|
OSF.DDA.Theming.OfficeThemeEnum = {
|
|
PrimaryFontColor: "primaryFontColor",
|
|
PrimaryBackgroundColor: "primaryBackgroundColor",
|
|
SecondaryFontColor: "secondaryFontColor",
|
|
SecondaryBackgroundColor: "secondaryBackgroundColor"
|
|
};
|
|
OSF.DDA.Theming.DocumentThemeEnum = {
|
|
PrimaryFontColor: "primaryFontColor",
|
|
PrimaryBackgroundColor: "primaryBackgroundColor",
|
|
SecondaryFontColor: "secondaryFontColor",
|
|
SecondaryBackgroundColor: "secondaryBackgroundColor",
|
|
Accent1: "accent1",
|
|
Accent2: "accent2",
|
|
Accent3: "accent3",
|
|
Accent4: "accent4",
|
|
Accent5: "accent5",
|
|
Accent6: "accent6",
|
|
Hyperlink: "hyperlink",
|
|
FollowedHyperlink: "followedHyperlink",
|
|
HeaderLatinFont: "headerLatinFont",
|
|
HeaderEastAsianFont: "headerEastAsianFont",
|
|
HeaderScriptFont: "headerScriptFont",
|
|
HeaderLocalizedFont: "headerLocalizedFont",
|
|
BodyLatinFont: "bodyLatinFont",
|
|
BodyEastAsianFont: "bodyEastAsianFont",
|
|
BodyScriptFont: "bodyScriptFont",
|
|
BodyLocalizedFont: "bodyLocalizedFont"
|
|
};
|
|
OSF.DDA.Theming.ConvertToDocumentTheme = function OSF_DDA_Theming_ConvertToDocumentTheme(response) {
|
|
var mappingDocumentTheme = [
|
|
{ name: "primaryFontColor", needToConvertToHex: true },
|
|
{ name: "primaryBackgroundColor", needToConvertToHex: true },
|
|
{ name: "secondaryFontColor", needToConvertToHex: true },
|
|
{ name: "secondaryBackgroundColor", needToConvertToHex: true },
|
|
{ name: "accent1", needToConvertToHex: true },
|
|
{ name: "accent2", needToConvertToHex: true },
|
|
{ name: "accent3", needToConvertToHex: true },
|
|
{ name: "accent4", needToConvertToHex: true },
|
|
{ name: "accent5", needToConvertToHex: true },
|
|
{ name: "accent6", needToConvertToHex: true },
|
|
{ name: "hyperlink", needToConvertToHex: true },
|
|
{ name: "followedHyperlink", needToConvertToHex: true },
|
|
{ name: "headerLatinFont", needToConvertToHex: false },
|
|
{ name: "headerEastAsianFont", needToConvertToHex: false },
|
|
{ name: "headerScriptFont", needToConvertToHex: false },
|
|
{ name: "headerLocalizedFont", needToConvertToHex: false },
|
|
{ name: "bodyLatinFont", needToConvertToHex: false },
|
|
{ name: "bodyEastAsianFont", needToConvertToHex: false },
|
|
{ name: "bodyScriptFont", needToConvertToHex: false },
|
|
{ name: "bodyLocalizedFont", needToConvertToHex: false }
|
|
];
|
|
var result = {};
|
|
for (var i = 0; i < mappingDocumentTheme.length; i++) {
|
|
if (mappingDocumentTheme[i].needToConvertToHex) {
|
|
result[mappingDocumentTheme[i].name] = OSF.OUtil.convertIntToCssHexColor(response[mappingDocumentTheme[i].name]);
|
|
}
|
|
else {
|
|
result[mappingDocumentTheme[i].name] = response[mappingDocumentTheme[i].name];
|
|
}
|
|
}
|
|
return result;
|
|
};
|
|
OSF.DDA.Theming.ConvertToOfficeTheme = function OSF_DDA_Theming_ConvertToOfficeTheme(response) {
|
|
var result = {};
|
|
for (var key in response) {
|
|
result[key] = OSF.OUtil.convertIntToCssHexColor(response[key]);
|
|
}
|
|
return result;
|
|
};
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetDocumentThemeAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: OSF.DDA.Theming.ConvertToDocumentTheme
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetOfficeThemeAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: OSF.DDA.Theming.ConvertToOfficeTheme
|
|
});
|
|
OSF.DDA.Theming.OfficeThemeChangedEventArgs = function OSF_DDA_Theming_OfficeThemeChangedEventArgs(officeTheme) {
|
|
var ret = OSF.DDA.Theming.ConvertToOfficeTheme(officeTheme);
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.EventType.OfficeThemeChanged
|
|
},
|
|
"officeTheme": {
|
|
value: ret
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.Theming.DocumentThemeChangedEventArgs = function OSF_DDA_Theming_DocumentThemeChangedEventArgs(documentTheme) {
|
|
var ret = OSF.DDA.Theming.ConvertToDocumentTheme(documentTheme);
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.EventType.DocumentThemeChanged
|
|
},
|
|
"documentTheme": {
|
|
value: ret
|
|
}
|
|
});
|
|
};
|
|
var OSF_DDA_Theming_InternalThemeHandler = (function () {
|
|
function OSF_DDA_Theming_InternalThemeHandler() {
|
|
this._pseudoDocumentObject = null;
|
|
this._previousDocumentThemeData = null;
|
|
this._previousOfficeThemeData = null;
|
|
this._officeCss = null;
|
|
this._asyncCallsCompleted = null;
|
|
this._onAsyncCallsCompleted = null;
|
|
}
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype.InitializeAndChangeOnce = function (callback) {
|
|
this._officeCss = this._getOfficeThemesCss();
|
|
if (!this._officeCss) {
|
|
if (callback) {
|
|
callback();
|
|
}
|
|
return;
|
|
}
|
|
this._onAsyncCallsCompleted = callback;
|
|
this._pseudoDocumentObject = {};
|
|
var pseudoDoc = this._pseudoDocumentObject;
|
|
OSF.DDA.DispIdHost.addAsyncMethods(pseudoDoc, [
|
|
OSF.DDA.AsyncMethodNames.GetOfficeThemeAsync,
|
|
OSF.DDA.AsyncMethodNames.GetDocumentThemeAsync
|
|
]);
|
|
OSF.DDA.DispIdHost.addEventSupport(pseudoDoc, new OSF.EventDispatch([
|
|
Microsoft.Office.WebExtension.EventType.OfficeThemeChanged,
|
|
Microsoft.Office.WebExtension.EventType.DocumentThemeChanged
|
|
]));
|
|
this._asyncCallsCompleted = {};
|
|
this._asyncCallsCompleted[OSF.DDA.AsyncMethodNames.GetOfficeThemeAsync] = false;
|
|
this._asyncCallsCompleted[OSF.DDA.AsyncMethodNames.GetDocumentThemeAsync] = false;
|
|
this._getAndProcessThemeData(pseudoDoc.getDocumentThemeAsync, Function.createDelegate(this, this._processDocumentThemeData), OSF.DDA.AsyncMethodNames.GetDocumentThemeAsync);
|
|
this._getAndProcessThemeData(pseudoDoc.getOfficeThemeAsync, Function.createDelegate(this, this._processOfficeThemeData), OSF.DDA.AsyncMethodNames.GetOfficeThemeAsync);
|
|
};
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype._getOfficeThemesCss = function () {
|
|
function getOfficeThemesCssInternal() {
|
|
var cssFileName = "officethemes.css";
|
|
for (var i = 0; i < document.styleSheets.length; i++) {
|
|
var ss = document.styleSheets[i];
|
|
if (!ss.disabled
|
|
&& ss.href
|
|
&& cssFileName == ss.href.substring(ss.href.length - cssFileName.length, ss.href.length).toLowerCase()) {
|
|
if ((!ss.cssRules) && (!ss.rules)) {
|
|
return null;
|
|
}
|
|
else {
|
|
return ss;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
try {
|
|
return getOfficeThemesCssInternal();
|
|
}
|
|
catch (e) {
|
|
return null;
|
|
}
|
|
};
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype._changeCss = function (officeCss, selector, newRule) {
|
|
var length = officeCss.cssRules ? officeCss.cssRules.length : officeCss.rules.length;
|
|
for (var i = 0; i < length; i++) {
|
|
var rule;
|
|
if (officeCss.cssRules) {
|
|
rule = officeCss.cssRules[i];
|
|
}
|
|
else {
|
|
rule = officeCss.rules[i];
|
|
}
|
|
var ruleSelector = rule.selectorText;
|
|
if (ruleSelector && ruleSelector.toLowerCase() == selector.toLowerCase()) {
|
|
if (officeCss.cssRules) {
|
|
officeCss.deleteRule(i);
|
|
officeCss.insertRule(ruleSelector + newRule, i);
|
|
}
|
|
else {
|
|
officeCss.removeRule(i);
|
|
officeCss.addRule(ruleSelector, newRule, i);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype._changeDocumentThemeData = function (data) {
|
|
var documentThemeCssMapping = [
|
|
{ name: "primaryFontColor", cssSelector: ".office-docTheme-primary-fontColor", cssProperty: "color" },
|
|
{ name: "primaryBackgroundColor", cssSelector: ".office-docTheme-primary-bgColor", cssProperty: "background-color" },
|
|
{ name: "secondaryFontColor", cssSelector: ".office-docTheme-secondary-fontColor", cssProperty: "color" },
|
|
{ name: "secondaryBackgroundColor", cssSelector: ".office-docTheme-secondary-bgColor", cssProperty: "background-color" },
|
|
{ name: "accent1", cssSelector: ".office-contentAccent1-color", cssProperty: "color" },
|
|
{ name: "accent2", cssSelector: ".office-contentAccent2-color", cssProperty: "color" },
|
|
{ name: "accent3", cssSelector: ".office-contentAccent3-color", cssProperty: "color" },
|
|
{ name: "accent4", cssSelector: ".office-contentAccent4-color", cssProperty: "color" },
|
|
{ name: "accent5", cssSelector: ".office-contentAccent5-color", cssProperty: "color" },
|
|
{ name: "accent6", cssSelector: ".office-contentAccent6-color", cssProperty: "color" },
|
|
{ name: "accent1", cssSelector: ".office-contentAccent1-bgColor", cssProperty: "background-color" },
|
|
{ name: "accent2", cssSelector: ".office-contentAccent2-bgColor", cssProperty: "background-color" },
|
|
{ name: "accent3", cssSelector: ".office-contentAccent3-bgColor", cssProperty: "background-color" },
|
|
{ name: "accent4", cssSelector: ".office-contentAccent4-bgColor", cssProperty: "background-color" },
|
|
{ name: "accent5", cssSelector: ".office-contentAccent5-bgColor", cssProperty: "background-color" },
|
|
{ name: "accent6", cssSelector: ".office-contentAccent6-bgColor", cssProperty: "background-color" },
|
|
{ name: "accent1", cssSelector: ".office-contentAccent1-borderColor", cssProperty: "border-color" },
|
|
{ name: "accent2", cssSelector: ".office-contentAccent2-borderColor", cssProperty: "border-color" },
|
|
{ name: "accent3", cssSelector: ".office-contentAccent3-borderColor", cssProperty: "border-color" },
|
|
{ name: "accent4", cssSelector: ".office-contentAccent4-borderColor", cssProperty: "border-color" },
|
|
{ name: "accent5", cssSelector: ".office-contentAccent5-borderColor", cssProperty: "border-color" },
|
|
{ name: "accent6", cssSelector: ".office-contentAccent6-borderColor", cssProperty: "border-color" },
|
|
{ name: "hyperlink", cssSelector: ".office-a", cssProperty: "color" },
|
|
{ name: "followedHyperlink", cssSelector: ".office-a:visited", cssProperty: "color" },
|
|
{ name: "headerLatinFont", cssSelector: ".office-headerFont-latin", cssProperty: "font-family" },
|
|
{ name: "headerEastAsianFont", cssSelector: ".office-headerFont-eastAsian", cssProperty: "font-family" },
|
|
{ name: "headerScriptFont", cssSelector: ".office-headerFont-script", cssProperty: "font-family" },
|
|
{ name: "headerLocalizedFont", cssSelector: ".office-headerFont-localized", cssProperty: "font-family" },
|
|
{ name: "bodyLatinFont", cssSelector: ".office-bodyFont-latin", cssProperty: "font-family" },
|
|
{ name: "bodyEastAsianFont", cssSelector: ".office-bodyFont-eastAsian", cssProperty: "font-family" },
|
|
{ name: "bodyScriptFont", cssSelector: ".office-bodyFont-script", cssProperty: "font-family" },
|
|
{ name: "bodyLocalizedFont", cssSelector: ".office-bodyFont-localized", cssProperty: "font-family" }
|
|
];
|
|
var realData = data.type == "documentThemeChanged" ? data.documentTheme : data;
|
|
for (var i = 0; i < documentThemeCssMapping.length; i++) {
|
|
if (this._previousDocumentThemeData === null || this._previousDocumentThemeData[documentThemeCssMapping[i].name] != realData[documentThemeCssMapping[i].name]) {
|
|
if (realData[documentThemeCssMapping[i].name] != null && realData[documentThemeCssMapping[i].name] != "") {
|
|
var insertableText = realData[documentThemeCssMapping[i].name];
|
|
if (documentThemeCssMapping[i].cssProperty === "font-family") {
|
|
insertableText = '"' + insertableText.replace(/"/g, '\\"') + '"';
|
|
}
|
|
this._changeCss(this._officeCss, documentThemeCssMapping[i].cssSelector, "{" + documentThemeCssMapping[i].cssProperty + ":" + insertableText + ";}");
|
|
}
|
|
else {
|
|
this._changeCss(this._officeCss, documentThemeCssMapping[i].cssSelector, "{}");
|
|
}
|
|
}
|
|
}
|
|
this._previousDocumentThemeData = realData;
|
|
};
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype._changeOfficeThemeData = function (data) {
|
|
var officeThemeCssMapping = [
|
|
{ name: "primaryFontColor", cssSelector: ".office-officeTheme-primary-fontColor", cssProperty: "color" },
|
|
{ name: "primaryBackgroundColor", cssSelector: ".office-officeTheme-primary-bgColor", cssProperty: "background-color" },
|
|
{ name: "secondaryFontColor", cssSelector: ".office-officeTheme-secondary-fontColor", cssProperty: "color" },
|
|
{ name: "secondaryBackgroundColor", cssSelector: ".office-officeTheme-secondary-bgColor", cssProperty: "background-color" }
|
|
];
|
|
var realData = data.type == "officeThemeChanged" ? data.officeTheme : data;
|
|
for (var i = 0; i < officeThemeCssMapping.length; i++) {
|
|
if (this._previousOfficeThemeData === null || this._previousOfficeThemeData[officeThemeCssMapping[i].name] != realData[officeThemeCssMapping[i].name]) {
|
|
if (realData[officeThemeCssMapping[i].name] !== undefined) {
|
|
this._changeCss(this._officeCss, officeThemeCssMapping[i].cssSelector, "{" + officeThemeCssMapping[i].cssProperty + ":" + realData[officeThemeCssMapping[i].name] + ";}");
|
|
}
|
|
}
|
|
}
|
|
this._previousOfficeThemeData = realData;
|
|
};
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype._getAndProcessThemeData = function (getThemeMethod, processResultCallback, getThemeMethodIdentifier) {
|
|
getThemeMethod(Function.createDelegate(this, function (asyncResult) {
|
|
if (asyncResult.status == "succeeded") {
|
|
var data = asyncResult.value;
|
|
processResultCallback(data);
|
|
}
|
|
if (this._areAllCallsCompleted(getThemeMethodIdentifier) && this._onAsyncCallsCompleted) {
|
|
this._onAsyncCallsCompleted();
|
|
this._onAsyncCallsCompleted = null;
|
|
}
|
|
}));
|
|
};
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype._processOfficeThemeData = function (data) {
|
|
this._changeOfficeThemeData(data);
|
|
this._pseudoDocumentObject.addHandlerAsync(Microsoft.Office.WebExtension.EventType.OfficeThemeChanged, Function.createDelegate(this, this._changeOfficeThemeData), null);
|
|
};
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype._processDocumentThemeData = function (data) {
|
|
this._changeDocumentThemeData(data);
|
|
this._pseudoDocumentObject.addHandlerAsync(Microsoft.Office.WebExtension.EventType.DocumentThemeChanged, Function.createDelegate(this, this._changeDocumentThemeData), null);
|
|
};
|
|
OSF_DDA_Theming_InternalThemeHandler.prototype._areAllCallsCompleted = function (completedCall) {
|
|
var asyncCallsCompleted;
|
|
if (!(asyncCallsCompleted = this._asyncCallsCompleted)) {
|
|
return true;
|
|
}
|
|
if (completedCall && asyncCallsCompleted.hasOwnProperty(completedCall)) {
|
|
asyncCallsCompleted[completedCall] = true;
|
|
}
|
|
for (var call in asyncCallsCompleted) {
|
|
if (asyncCallsCompleted.hasOwnProperty(call) && asyncCallsCompleted[call]) {
|
|
continue;
|
|
}
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
return OSF_DDA_Theming_InternalThemeHandler;
|
|
}());
|
|
OSF.DDA.Theming.InternalThemeHandler = OSF_DDA_Theming_InternalThemeHandler;
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
var OSF_DDA_Marshaling_ThemingKeys;
|
|
(function (OSF_DDA_Marshaling_ThemingKeys) {
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["DocumentTheme"] = 0] = "DocumentTheme";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["OfficeTheme"] = 1] = "OfficeTheme";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Background1"] = 2] = "Background1";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Text1"] = 3] = "Text1";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Background2"] = 4] = "Background2";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Text2"] = 5] = "Text2";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Accent1"] = 6] = "Accent1";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Accent2"] = 7] = "Accent2";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Accent3"] = 8] = "Accent3";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Accent4"] = 9] = "Accent4";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Accent5"] = 10] = "Accent5";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Accent6"] = 11] = "Accent6";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["Hyperlink"] = 12] = "Hyperlink";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["FollowedHyperlink"] = 13] = "FollowedHyperlink";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["HdLatin"] = 14] = "HdLatin";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["HdEastAsian"] = 15] = "HdEastAsian";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["HdScript"] = 16] = "HdScript";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["HdLocalized"] = 17] = "HdLocalized";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["BdLatin"] = 18] = "BdLatin";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["BdEastAsian"] = 19] = "BdEastAsian";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["BdScript"] = 20] = "BdScript";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["BdLocalized"] = 21] = "BdLocalized";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["BackgroundColor"] = 22] = "BackgroundColor";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["PrimaryText"] = 23] = "PrimaryText";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["PrimaryBackground"] = 24] = "PrimaryBackground";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["SecondaryText"] = 25] = "SecondaryText";
|
|
OSF_DDA_Marshaling_ThemingKeys[OSF_DDA_Marshaling_ThemingKeys["SecondaryBackground"] = 26] = "SecondaryBackground";
|
|
})(OSF_DDA_Marshaling_ThemingKeys || (OSF_DDA_Marshaling_ThemingKeys = {}));
|
|
;
|
|
OSF.DDA.Marshaling.ThemingKeys = OSF_DDA_Marshaling_ThemingKeys;
|
|
var parameterMap = OSF.DDA.WAC.Delegate.ParameterMap;
|
|
var hostKeys = OSF.DDA.Marshaling.ThemingKeys;
|
|
parameterMap.addComplexType(Microsoft.Office.WebExtension.Parameters.DocumentTheme);
|
|
parameterMap.addComplexType(Microsoft.Office.WebExtension.Parameters.OfficeTheme);
|
|
parameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetDocumentThemeMethod,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.DocumentTheme, value: hostKeys.DocumentTheme }
|
|
]
|
|
});
|
|
parameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetOfficeThemeMethod,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.OfficeTheme, value: hostKeys.OfficeTheme }
|
|
]
|
|
});
|
|
parameterMap.define({
|
|
type: OSF.DDA.EventDispId.dispidDocumentThemeChangedEvent,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.DocumentTheme, value: hostKeys.DocumentTheme }
|
|
]
|
|
});
|
|
parameterMap.define({
|
|
type: OSF.DDA.EventDispId.dispidOfficeThemeChangedEvent,
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.OfficeTheme, value: hostKeys.OfficeTheme }
|
|
]
|
|
});
|
|
var destKeys = OSF.DDA.Theming.DocumentThemeEnum;
|
|
parameterMap.define({
|
|
type: Microsoft.Office.WebExtension.Parameters.DocumentTheme,
|
|
fromHost: [
|
|
{ name: destKeys.PrimaryBackgroundColor, value: hostKeys.Background1 },
|
|
{ name: destKeys.PrimaryFontColor, value: hostKeys.Text1 },
|
|
{ name: destKeys.SecondaryBackgroundColor, value: hostKeys.Background2 },
|
|
{ name: destKeys.SecondaryFontColor, value: hostKeys.Text2 },
|
|
{ name: destKeys.Accent1, value: hostKeys.Accent1 },
|
|
{ name: destKeys.Accent2, value: hostKeys.Accent2 },
|
|
{ name: destKeys.Accent3, value: hostKeys.Accent3 },
|
|
{ name: destKeys.Accent4, value: hostKeys.Accent4 },
|
|
{ name: destKeys.Accent5, value: hostKeys.Accent5 },
|
|
{ name: destKeys.Accent6, value: hostKeys.Accent6 },
|
|
{ name: destKeys.Hyperlink, value: hostKeys.Hyperlink },
|
|
{ name: destKeys.FollowedHyperlink, value: hostKeys.FollowedHyperlink },
|
|
{ name: destKeys.HeaderLatinFont, value: hostKeys.HdLatin },
|
|
{ name: destKeys.HeaderEastAsianFont, value: hostKeys.HdEastAsian },
|
|
{ name: destKeys.HeaderScriptFont, value: hostKeys.HdScript },
|
|
{ name: destKeys.HeaderLocalizedFont, value: hostKeys.HdLocalized },
|
|
{ name: destKeys.BodyLatinFont, value: hostKeys.BdLatin },
|
|
{ name: destKeys.BodyEastAsianFont, value: hostKeys.BdEastAsian },
|
|
{ name: destKeys.BodyScriptFont, value: hostKeys.BdScript },
|
|
{ name: destKeys.BodyLocalizedFont, value: hostKeys.BdLocalized }
|
|
]
|
|
});
|
|
destKeys = OSF.DDA.Theming.OfficeThemeEnum;
|
|
parameterMap.define({
|
|
type: Microsoft.Office.WebExtension.Parameters.OfficeTheme,
|
|
fromHost: [
|
|
{ name: destKeys.PrimaryFontColor, value: hostKeys.PrimaryText },
|
|
{ name: destKeys.PrimaryBackgroundColor, value: hostKeys.PrimaryBackground },
|
|
{ name: destKeys.SecondaryFontColor, value: hostKeys.SecondaryText },
|
|
{ name: destKeys.SecondaryBackgroundColor, value: hostKeys.SecondaryBackground }
|
|
]
|
|
});
|
|
OSF.DDA.SettingsManager = {
|
|
SerializedSettings: "serializedSettings",
|
|
RefreshingSettings: "refreshingSettings",
|
|
DateJSONPrefix: "Date(",
|
|
DataJSONSuffix: ")",
|
|
serializeSettings: function OSF_DDA_SettingsManager$serializeSettings(settingsCollection) {
|
|
return OSF.OUtil.serializeSettings(settingsCollection);
|
|
},
|
|
deserializeSettings: function OSF_DDA_SettingsManager$deserializeSettings(serializedSettings) {
|
|
return OSF.OUtil.deserializeSettings(serializedSettings);
|
|
}
|
|
};
|
|
OSF.DDA.Settings = function OSF_DDA_Settings(settings) {
|
|
settings = settings || {};
|
|
var cacheSessionSettings = function (settings) {
|
|
var osfSessionStorage = OSF.OUtil.getSessionStorage();
|
|
if (osfSessionStorage) {
|
|
var serializedSettings = OSF.DDA.SettingsManager.serializeSettings(settings);
|
|
var storageSettings = JSON ? JSON.stringify(serializedSettings) : Sys.Serialization.JavaScriptSerializer.serialize(serializedSettings);
|
|
osfSessionStorage.setItem(OSF._OfficeAppFactory.getCachedSessionSettingsKey(), storageSettings);
|
|
}
|
|
};
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"get": {
|
|
value: function OSF_DDA_Settings$get(name) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "name", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
var setting = settings[name];
|
|
return typeof (setting) === 'undefined' ? null : setting;
|
|
}
|
|
},
|
|
"set": {
|
|
value: function OSF_DDA_Settings$set(name, value) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "name", type: String, mayBeNull: false },
|
|
{ name: "value", mayBeNull: true }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
settings[name] = value;
|
|
cacheSessionSettings(settings);
|
|
}
|
|
},
|
|
"remove": {
|
|
value: function OSF_DDA_Settings$remove(name) {
|
|
var e = Function._validateParams(arguments, [
|
|
{ name: "name", type: String, mayBeNull: false }
|
|
]);
|
|
if (e)
|
|
throw e;
|
|
delete settings[name];
|
|
cacheSessionSettings(settings);
|
|
}
|
|
}
|
|
});
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this, [OSF.DDA.AsyncMethodNames.SaveAsync], settings);
|
|
};
|
|
OSF.DDA.RefreshableSettings = function OSF_DDA_RefreshableSettings(settings) {
|
|
OSF.DDA.RefreshableSettings.uber.constructor.call(this, settings);
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this, [OSF.DDA.AsyncMethodNames.RefreshAsync], settings);
|
|
OSF.DDA.DispIdHost.addEventSupport(this, new OSF.EventDispatch([Microsoft.Office.WebExtension.EventType.SettingsChanged]));
|
|
};
|
|
OSF.OUtil.extend(OSF.DDA.RefreshableSettings, OSF.DDA.Settings);
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, {
|
|
SettingsChanged: "settingsChanged"
|
|
});
|
|
OSF.DDA.SettingsChangedEventArgs = function OSF_DDA_SettingsChangedEventArgs(settingsInstance) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.EventType.SettingsChanged
|
|
},
|
|
"settings": {
|
|
value: settingsInstance
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
RefreshAsync: "refreshAsync",
|
|
SaveAsync: "saveAsync"
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.RefreshAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: [
|
|
{
|
|
name: OSF.DDA.SettingsManager.RefreshingSettings,
|
|
value: function getRefreshingSettings(settingsInstance, settingsCollection) {
|
|
return settingsCollection;
|
|
}
|
|
}
|
|
],
|
|
onSucceeded: function deserializeSettings(serializedSettingsDescriptor, refreshingSettings, refreshingSettingsArgs) {
|
|
var serializedSettings = serializedSettingsDescriptor[OSF.DDA.SettingsManager.SerializedSettings];
|
|
var newSettings = OSF.DDA.SettingsManager.deserializeSettings(serializedSettings);
|
|
var oldSettings = refreshingSettingsArgs[OSF.DDA.SettingsManager.RefreshingSettings];
|
|
for (var setting in oldSettings) {
|
|
refreshingSettings.remove(setting);
|
|
}
|
|
for (var setting in newSettings) {
|
|
refreshingSettings.set(setting, newSettings[setting]);
|
|
}
|
|
return refreshingSettings;
|
|
}
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.SaveAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.OverwriteIfStale,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": true
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: [
|
|
{
|
|
name: OSF.DDA.SettingsManager.SerializedSettings,
|
|
value: function serializeSettings(settingsInstance, settingsCollection) {
|
|
return OSF.DDA.SettingsManager.serializeSettings(settingsCollection);
|
|
}
|
|
}
|
|
]
|
|
});
|
|
OSF.DDA.WAC.SettingsTranslator = (function () {
|
|
var keyIndex = 0;
|
|
var valueIndex = 1;
|
|
return {
|
|
read: function OSF_DDA_WAC_SettingsTranslator$read(payload) {
|
|
var isExcelApp = OSF.DDA.ExcelDocument && Microsoft.Office.WebExtension.context.document
|
|
&& (Microsoft.Office.WebExtension.context.document instanceof OSF.DDA.ExcelDocument);
|
|
var serializedSettings = {};
|
|
var settingsPayload = payload.Settings;
|
|
for (var index in settingsPayload) {
|
|
var setting = settingsPayload[index];
|
|
if (isExcelApp) {
|
|
serializedSettings[setting.Name] = setting.Value;
|
|
}
|
|
else {
|
|
serializedSettings[setting[keyIndex]] = setting[valueIndex];
|
|
}
|
|
}
|
|
return serializedSettings;
|
|
},
|
|
write: function OSF_DDA_WAC_SettingsTranslator$write(serializedSettings) {
|
|
var settingsPayload = [];
|
|
for (var key in serializedSettings) {
|
|
var setting = [];
|
|
setting[keyIndex] = key;
|
|
setting[valueIndex] = serializedSettings[key];
|
|
settingsPayload.push(setting);
|
|
}
|
|
return settingsPayload;
|
|
}
|
|
};
|
|
})();
|
|
OSF.DDA.WAC.Delegate.ParameterMap.setDynamicType(OSF.DDA.SettingsManager.SerializedSettings, {
|
|
toHost: OSF.DDA.WAC.SettingsTranslator.write,
|
|
fromHost: OSF.DDA.WAC.SettingsTranslator.read
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.WAC.UniqueArguments.SettingsRequest,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.OverwriteIfStale, value: "OverwriteIfStale" },
|
|
{ name: OSF.DDA.SettingsManager.SerializedSettings, value: OSF.DDA.WAC.UniqueArguments.Properties }
|
|
],
|
|
invertible: true
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidLoadSettingsMethod,
|
|
fromHost: [
|
|
{ name: OSF.DDA.SettingsManager.SerializedSettings, value: OSF.DDA.WAC.UniqueArguments.Properties }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidSaveSettingsMethod,
|
|
toHost: [
|
|
{ name: OSF.DDA.WAC.UniqueArguments.SettingsRequest, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({ type: OSF.DDA.EventDispId.dispidSettingsChangedEvent });
|
|
(function (OfficeExt) {
|
|
var AppCommand;
|
|
(function (AppCommand) {
|
|
var AppCommandManager = (function () {
|
|
function AppCommandManager() {
|
|
var _this = this;
|
|
this._pseudoDocument = null;
|
|
this._eventDispatch = null;
|
|
this._processAppCommandInvocation = function (args) {
|
|
var verifyResult = _this._verifyManifestCallback(args.callbackName);
|
|
if (verifyResult.errorCode != OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
_this._invokeAppCommandCompletedMethod(args.appCommandId, verifyResult.errorCode, "");
|
|
return;
|
|
}
|
|
var eventObj = _this._constructEventObjectForCallback(args);
|
|
if (eventObj) {
|
|
window.setTimeout(function () { verifyResult.callback(eventObj); }, 0);
|
|
}
|
|
else {
|
|
_this._invokeAppCommandCompletedMethod(args.appCommandId, OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError, "");
|
|
}
|
|
};
|
|
}
|
|
AppCommandManager.initializeOsfDda = function () {
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
AppCommandInvocationCompletedAsync: "appCommandInvocationCompletedAsync"
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.AppCommandInvocationCompletedAsync,
|
|
requiredArguments: [{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Id,
|
|
"types": ["string"]
|
|
},
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Status,
|
|
"types": ["number"]
|
|
},
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.AppCommandInvocationCompletedData,
|
|
"types": ["string"]
|
|
}
|
|
]
|
|
});
|
|
OSF.OUtil.augmentList(OSF.DDA.EventDescriptors, {
|
|
AppCommandInvokedEvent: "AppCommandInvokedEvent"
|
|
});
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, {
|
|
AppCommandInvoked: "appCommandInvoked"
|
|
});
|
|
OSF.OUtil.setNamespace("AppCommand", OSF.DDA);
|
|
OSF.DDA.AppCommand.AppCommandInvokedEventArgs = OfficeExt.AppCommand.AppCommandInvokedEventArgs;
|
|
};
|
|
AppCommandManager.prototype.initializeAndChangeOnce = function (callback) {
|
|
AppCommand.registerDdaFacade();
|
|
this._pseudoDocument = {};
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this._pseudoDocument, [
|
|
OSF.DDA.AsyncMethodNames.AppCommandInvocationCompletedAsync,
|
|
]);
|
|
this._eventDispatch = new OSF.EventDispatch([
|
|
Microsoft.Office.WebExtension.EventType.AppCommandInvoked,
|
|
]);
|
|
var onRegisterCompleted = function (result) {
|
|
if (callback) {
|
|
if (result.status == "succeeded") {
|
|
callback(OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess);
|
|
}
|
|
else {
|
|
callback(OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError);
|
|
}
|
|
}
|
|
};
|
|
OSF.DDA.DispIdHost.addEventSupport(this._pseudoDocument, this._eventDispatch);
|
|
this._pseudoDocument.addHandlerAsync(Microsoft.Office.WebExtension.EventType.AppCommandInvoked, this._processAppCommandInvocation, onRegisterCompleted);
|
|
};
|
|
AppCommandManager.prototype._verifyManifestCallback = function (callbackName) {
|
|
var defaultResult = { callback: null, errorCode: OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidCallback };
|
|
callbackName = callbackName.trim();
|
|
try {
|
|
var callbackFunc = this._getCallbackFunc(callbackName);
|
|
if (typeof callbackFunc != "function") {
|
|
return defaultResult;
|
|
}
|
|
}
|
|
catch (e) {
|
|
return defaultResult;
|
|
}
|
|
return { callback: callbackFunc, errorCode: OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess };
|
|
};
|
|
AppCommandManager.prototype._getCallbackFuncFromWindow = function (callbackName) {
|
|
var callList = callbackName.split(".");
|
|
var parentObject = window;
|
|
for (var i = 0; i < callList.length - 1; i++) {
|
|
if (parentObject[callList[i]] && (typeof parentObject[callList[i]] == "object" || typeof parentObject[callList[i]] == "function")) {
|
|
parentObject = parentObject[callList[i]];
|
|
}
|
|
else {
|
|
return null;
|
|
}
|
|
}
|
|
var callbackFunc = parentObject[callList[callList.length - 1]];
|
|
return callbackFunc;
|
|
};
|
|
AppCommandManager.prototype._getCallbackFuncFromActionAssociateTable = function (callbackName) {
|
|
var nameUpperCase = callbackName.toUpperCase();
|
|
return Office.actions._association.mappings[nameUpperCase];
|
|
};
|
|
AppCommandManager.prototype._getCallbackFunc = function (callbackName) {
|
|
var callbackFunc = this._getCallbackFuncFromWindow(callbackName);
|
|
if (!callbackFunc) {
|
|
callbackFunc = this._getCallbackFuncFromActionAssociateTable(callbackName);
|
|
}
|
|
return callbackFunc;
|
|
};
|
|
AppCommandManager.prototype._invokeAppCommandCompletedMethod = function (appCommandId, resultCode, data) {
|
|
this._pseudoDocument.appCommandInvocationCompletedAsync(appCommandId, resultCode, data);
|
|
};
|
|
AppCommandManager.prototype._constructEventObjectForCallback = function (args) {
|
|
var _this = this;
|
|
var eventObj = new AppCommandCallbackEventArgs();
|
|
try {
|
|
var jsonData = JSON.parse(args.eventObjStr);
|
|
this._translateEventObjectInternal(jsonData, eventObj);
|
|
Object.defineProperty(eventObj, 'completed', {
|
|
value: function (completedContext) {
|
|
eventObj.completedContext = completedContext;
|
|
var jsonString = JSON.stringify(eventObj);
|
|
_this._invokeAppCommandCompletedMethod(args.appCommandId, OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess, jsonString);
|
|
},
|
|
enumerable: true
|
|
});
|
|
}
|
|
catch (e) {
|
|
eventObj = null;
|
|
}
|
|
return eventObj;
|
|
};
|
|
AppCommandManager.prototype._translateEventObjectInternal = function (input, output) {
|
|
for (var key in input) {
|
|
if (!input.hasOwnProperty(key))
|
|
continue;
|
|
var inputChild = input[key];
|
|
if (typeof inputChild == "object" && inputChild != null) {
|
|
OSF.OUtil.defineEnumerableProperty(output, key, {
|
|
value: {}
|
|
});
|
|
this._translateEventObjectInternal(inputChild, output[key]);
|
|
}
|
|
else {
|
|
Object.defineProperty(output, key, {
|
|
value: inputChild,
|
|
enumerable: true,
|
|
writable: true
|
|
});
|
|
}
|
|
}
|
|
};
|
|
AppCommandManager.prototype._constructObjectByTemplate = function (template, input) {
|
|
var output = {};
|
|
if (!template || !input)
|
|
return output;
|
|
for (var key in template) {
|
|
if (template.hasOwnProperty(key)) {
|
|
output[key] = null;
|
|
if (input[key] != null) {
|
|
var templateChild = template[key];
|
|
var inputChild = input[key];
|
|
var inputChildType = typeof inputChild;
|
|
if (typeof templateChild == "object" && templateChild != null) {
|
|
output[key] = this._constructObjectByTemplate(templateChild, inputChild);
|
|
}
|
|
else if (inputChildType == "number" || inputChildType == "string" || inputChildType == "boolean") {
|
|
output[key] = inputChild;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return output;
|
|
};
|
|
AppCommandManager.instance = function () {
|
|
if (AppCommandManager._instance == null) {
|
|
AppCommandManager._instance = new AppCommandManager();
|
|
}
|
|
return AppCommandManager._instance;
|
|
};
|
|
AppCommandManager._instance = null;
|
|
return AppCommandManager;
|
|
}());
|
|
AppCommand.AppCommandManager = AppCommandManager;
|
|
var AppCommandInvokedEventArgs = (function () {
|
|
function AppCommandInvokedEventArgs(appCommandId, callbackName, eventObjStr) {
|
|
this.type = Microsoft.Office.WebExtension.EventType.AppCommandInvoked;
|
|
this.appCommandId = appCommandId;
|
|
this.callbackName = callbackName;
|
|
this.eventObjStr = eventObjStr;
|
|
}
|
|
AppCommandInvokedEventArgs.create = function (eventProperties) {
|
|
return new AppCommandInvokedEventArgs(eventProperties[AppCommand.AppCommandInvokedEventEnums.AppCommandId], eventProperties[AppCommand.AppCommandInvokedEventEnums.CallbackName], eventProperties[AppCommand.AppCommandInvokedEventEnums.EventObjStr]);
|
|
};
|
|
return AppCommandInvokedEventArgs;
|
|
}());
|
|
AppCommand.AppCommandInvokedEventArgs = AppCommandInvokedEventArgs;
|
|
var AppCommandCallbackEventArgs = (function () {
|
|
function AppCommandCallbackEventArgs() {
|
|
}
|
|
return AppCommandCallbackEventArgs;
|
|
}());
|
|
AppCommand.AppCommandCallbackEventArgs = AppCommandCallbackEventArgs;
|
|
AppCommand.AppCommandInvokedEventEnums = {
|
|
AppCommandId: "appCommandId",
|
|
CallbackName: "callbackName",
|
|
EventObjStr: "eventObjStr"
|
|
};
|
|
})(AppCommand = OfficeExt.AppCommand || (OfficeExt.AppCommand = {}));
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
OfficeExt.AppCommand.AppCommandManager.initializeOsfDda();
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
OSF.OUtil.setNamespace("AppCommand", OSF.DDA.Marshaling);
|
|
var OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys;
|
|
(function (OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys) {
|
|
OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys[OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys["AppCommandId"] = 0] = "AppCommandId";
|
|
OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys[OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys["CallbackName"] = 1] = "CallbackName";
|
|
OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys[OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys["EventObjStr"] = 2] = "EventObjStr";
|
|
})(OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys || (OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys = {}));
|
|
;
|
|
OSF.DDA.Marshaling.AppCommand.AppCommandInvokedEventKeys = OSF_DDA_Marshaling_AppCommand_AppCommandInvokedEventKeys;
|
|
var OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys;
|
|
(function (OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys) {
|
|
OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys[OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys["Id"] = 0] = "Id";
|
|
OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys[OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys["Status"] = 1] = "Status";
|
|
OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys[OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys["Data"] = 2] = "Data";
|
|
})(OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys || (OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys = {}));
|
|
;
|
|
OSF.DDA.Marshaling.AppCommand.AppCommandCompletedMethodParameterKeys = OSF_DDA_Marshaling_AppCommand_AppCommandCompletedMethodParameterKeys;
|
|
(function (OfficeExt) {
|
|
var AppCommand;
|
|
(function (AppCommand) {
|
|
function registerDdaFacade() {
|
|
if (OSF.DDA.WAC) {
|
|
var parameterMap = OSF.DDA.WAC.Delegate.ParameterMap;
|
|
parameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidAppCommandInvocationCompletedMethod,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Id, value: OSF.DDA.Marshaling.AppCommand.AppCommandCompletedMethodParameterKeys.Id },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Status, value: OSF.DDA.Marshaling.AppCommand.AppCommandCompletedMethodParameterKeys.Status },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.AppCommandInvocationCompletedData, value: OSF.DDA.Marshaling.AppCommand.AppCommandCompletedMethodParameterKeys.Data }
|
|
]
|
|
});
|
|
parameterMap.define({
|
|
type: OSF.DDA.EventDispId.dispidAppCommandInvokedEvent,
|
|
fromHost: [
|
|
{ name: OSF.DDA.EventDescriptors.AppCommandInvokedEvent, value: parameterMap.self }
|
|
]
|
|
});
|
|
parameterMap.addComplexType(OSF.DDA.EventDescriptors.AppCommandInvokedEvent);
|
|
parameterMap.define({
|
|
type: OSF.DDA.EventDescriptors.AppCommandInvokedEvent,
|
|
fromHost: [
|
|
{ name: OfficeExt.AppCommand.AppCommandInvokedEventEnums.AppCommandId, value: OSF.DDA.Marshaling.AppCommand.AppCommandInvokedEventKeys.AppCommandId },
|
|
{ name: OfficeExt.AppCommand.AppCommandInvokedEventEnums.CallbackName, value: OSF.DDA.Marshaling.AppCommand.AppCommandInvokedEventKeys.CallbackName },
|
|
{ name: OfficeExt.AppCommand.AppCommandInvokedEventEnums.EventObjStr, value: OSF.DDA.Marshaling.AppCommand.AppCommandInvokedEventKeys.EventObjStr },
|
|
]
|
|
});
|
|
}
|
|
}
|
|
AppCommand.registerDdaFacade = registerDdaFacade;
|
|
})(AppCommand = OfficeExt.AppCommand || (OfficeExt.AppCommand = {}));
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.CoercionType, { Image: "image" });
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.CoercionType, { XmlSvg: "xmlSvg" });
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, { DocumentSelectionChanged: "documentSelectionChanged" });
|
|
OSF.DDA.DocumentSelectionChangedEventArgs = function OSF_DDA_DocumentSelectionChangedEventArgs(docInstance) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.EventType.DocumentSelectionChanged
|
|
},
|
|
"document": {
|
|
value: docInstance
|
|
}
|
|
});
|
|
};
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, { ObjectDeleted: "objectDeleted" });
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, { ObjectSelectionChanged: "objectSelectionChanged" });
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, { ObjectDataChanged: "objectDataChanged" });
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, { ContentControlAdded: "contentControlAdded" });
|
|
OSF.DDA.ObjectEventArgs = function OSF_DDA_ObjectEventArgs(eventType, object) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": { value: eventType },
|
|
"object": { value: object }
|
|
});
|
|
};
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({ type: OSF.DDA.EventDispId.dispidDocumentSelectionChangedEvent });
|
|
OSF.OUtil.augmentList(OSF.DDA.EventDescriptors, {
|
|
DialogParentMessageReceivedEvent: "DialogParentMessageReceivedEvent"
|
|
});
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, {
|
|
DialogParentMessageReceived: "dialogParentMessageReceived",
|
|
DialogParentEventReceived: "dialogParentEventReceived"
|
|
});
|
|
OSF.DialogParentMessageEventDispatch = new OSF.EventDispatch([
|
|
Microsoft.Office.WebExtension.EventType.DialogParentMessageReceived,
|
|
Microsoft.Office.WebExtension.EventType.DialogParentEventReceived
|
|
]);
|
|
OSF.DDA.UI.EnableMessageChildDialogAPI = true;
|
|
OSF.DialogShownStatus = { hasDialogShown: false, isWindowDialog: false };
|
|
OSF.OUtil.augmentList(OSF.DDA.EventDescriptors, {
|
|
DialogMessageReceivedEvent: "DialogMessageReceivedEvent"
|
|
});
|
|
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType, {
|
|
DialogMessageReceived: "dialogMessageReceived",
|
|
DialogEventReceived: "dialogEventReceived"
|
|
});
|
|
OSF.OUtil.augmentList(OSF.DDA.PropertyDescriptors, {
|
|
MessageType: "messageType",
|
|
MessageContent: "messageContent",
|
|
MessageOrigin: "messageOrigin"
|
|
});
|
|
OSF.DDA.DialogEventType = {};
|
|
OSF.OUtil.augmentList(OSF.DDA.DialogEventType, {
|
|
DialogClosed: "dialogClosed",
|
|
NavigationFailed: "naviationFailed"
|
|
});
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
DisplayDialogAsync: "displayDialogAsync",
|
|
CloseAsync: "close"
|
|
});
|
|
OSF.DDA.SyncMethodNames.addNames({
|
|
MessageParent: "messageParent",
|
|
MessageChild: "messageChild",
|
|
SendMessage: "sendMessage",
|
|
AddMessageHandler: "addEventHandler"
|
|
});
|
|
OSF.DDA.UI.ParentUI = function OSF_DDA_ParentUI() {
|
|
var eventDispatch;
|
|
if (Microsoft.Office.WebExtension.EventType.DialogParentMessageReceived != null) {
|
|
eventDispatch = new OSF.EventDispatch([
|
|
Microsoft.Office.WebExtension.EventType.DialogMessageReceived,
|
|
Microsoft.Office.WebExtension.EventType.DialogEventReceived,
|
|
Microsoft.Office.WebExtension.EventType.DialogParentMessageReceived
|
|
]);
|
|
}
|
|
else {
|
|
eventDispatch = new OSF.EventDispatch([
|
|
Microsoft.Office.WebExtension.EventType.DialogMessageReceived,
|
|
Microsoft.Office.WebExtension.EventType.DialogEventReceived
|
|
]);
|
|
}
|
|
var openDialogName = OSF.DDA.AsyncMethodNames.DisplayDialogAsync.displayName;
|
|
var target = this;
|
|
if (!target[openDialogName]) {
|
|
OSF.OUtil.defineEnumerableProperty(target, openDialogName, {
|
|
value: function () {
|
|
var openDialog = OSF._OfficeAppFactory.getHostFacade()[OSF.DDA.DispIdHost.Methods.OpenDialog];
|
|
openDialog(arguments, eventDispatch, target);
|
|
}
|
|
});
|
|
}
|
|
OSF.OUtil.finalizeProperties(this);
|
|
};
|
|
OSF.DDA.UI.ChildUI = function OSF_DDA_ChildUI(isPopupWindow) {
|
|
var messageParentName = OSF.DDA.SyncMethodNames.MessageParent.displayName;
|
|
var target = this;
|
|
if (!target[messageParentName]) {
|
|
OSF.OUtil.defineEnumerableProperty(target, messageParentName, {
|
|
value: function () {
|
|
var messageParent = OSF._OfficeAppFactory.getHostFacade()[OSF.DDA.DispIdHost.Methods.MessageParent];
|
|
return messageParent(arguments, target);
|
|
}
|
|
});
|
|
}
|
|
var addEventHandler = OSF.DDA.SyncMethodNames.AddMessageHandler.displayName;
|
|
if (!target[addEventHandler] && typeof OSF.DialogParentMessageEventDispatch != "undefined") {
|
|
OSF.DDA.DispIdHost.addEventSupport(target, OSF.DialogParentMessageEventDispatch, isPopupWindow);
|
|
}
|
|
OSF.OUtil.finalizeProperties(this);
|
|
};
|
|
OSF.DialogHandler = function OSF_DialogHandler() { };
|
|
OSF.DDA.DialogEventArgs = function OSF_DDA_DialogEventArgs(message) {
|
|
if (message[OSF.DDA.PropertyDescriptors.MessageType] == OSF.DialogMessageType.DialogMessageReceived) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.EventType.DialogMessageReceived
|
|
},
|
|
"message": {
|
|
value: message[OSF.DDA.PropertyDescriptors.MessageContent]
|
|
},
|
|
"origin": {
|
|
value: message[OSF.DDA.PropertyDescriptors.MessageOrigin]
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.EventType.DialogEventReceived
|
|
},
|
|
"error": {
|
|
value: message[OSF.DDA.PropertyDescriptors.MessageType]
|
|
}
|
|
});
|
|
}
|
|
};
|
|
OSF.DDA.DialogParentEventArgs = function OSF_DDA_DialogParentEventArgs(message) {
|
|
OSF.OUtil.defineEnumerableProperties(this, {
|
|
"type": {
|
|
value: Microsoft.Office.WebExtension.EventType.DialogParentMessageReceived
|
|
},
|
|
"message": {
|
|
value: message[OSF.DDA.PropertyDescriptors.MessageContent]
|
|
},
|
|
"origin": {
|
|
value: message[OSF.DDA.PropertyDescriptors.MessageOrigin]
|
|
}
|
|
});
|
|
};
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.DisplayDialogAsync,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Url,
|
|
"types": ["string"]
|
|
}
|
|
],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Width,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 99
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Height,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 99
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.RequireHTTPs,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": true
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.DisplayInIframe,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.HideTitle,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.UseDeviceIndependentPixels,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.PromptBeforeOpen,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": true
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.EnforceAppDomain,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": true
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.UrlNoHostInfo,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: [],
|
|
onSucceeded: function (args, caller, callArgs) {
|
|
var targetId = args[Microsoft.Office.WebExtension.Parameters.Id];
|
|
var eventDispatch = args[Microsoft.Office.WebExtension.Parameters.Data];
|
|
var dialog = new OSF.DialogHandler();
|
|
var closeDialog = OSF.DDA.AsyncMethodNames.CloseAsync.displayName;
|
|
OSF.OUtil.defineEnumerableProperty(dialog, closeDialog, {
|
|
value: function () {
|
|
var closeDialogfunction = OSF._OfficeAppFactory.getHostFacade()[OSF.DDA.DispIdHost.Methods.CloseDialog];
|
|
closeDialogfunction(arguments, targetId, eventDispatch, dialog);
|
|
}
|
|
});
|
|
var addHandler = OSF.DDA.SyncMethodNames.AddMessageHandler.displayName;
|
|
OSF.OUtil.defineEnumerableProperty(dialog, addHandler, {
|
|
value: function () {
|
|
var syncMethodCall = OSF.DDA.SyncMethodCalls[OSF.DDA.SyncMethodNames.AddMessageHandler.id];
|
|
var callArgs = syncMethodCall.verifyAndExtractCall(arguments, dialog, eventDispatch);
|
|
var eventType = callArgs[Microsoft.Office.WebExtension.Parameters.EventType];
|
|
var handler = callArgs[Microsoft.Office.WebExtension.Parameters.Handler];
|
|
return eventDispatch.addEventHandlerAndFireQueuedEvent(eventType, handler);
|
|
}
|
|
});
|
|
if (OSF.DDA.UI.EnableSendMessageDialogAPI === true) {
|
|
var sendMessage = OSF.DDA.SyncMethodNames.SendMessage.displayName;
|
|
OSF.OUtil.defineEnumerableProperty(dialog, sendMessage, {
|
|
value: function () {
|
|
var execute = OSF._OfficeAppFactory.getHostFacade()[OSF.DDA.DispIdHost.Methods.SendMessage];
|
|
return execute(arguments, eventDispatch, dialog);
|
|
}
|
|
});
|
|
}
|
|
if (OSF.DDA.UI.EnableMessageChildDialogAPI === true) {
|
|
var messageChild = OSF.DDA.SyncMethodNames.MessageChild.displayName;
|
|
OSF.OUtil.defineEnumerableProperty(dialog, messageChild, {
|
|
value: function () {
|
|
var execute = OSF._OfficeAppFactory.getHostFacade()[OSF.DDA.DispIdHost.Methods.SendMessage];
|
|
return execute(arguments, eventDispatch, dialog);
|
|
}
|
|
});
|
|
}
|
|
return dialog;
|
|
},
|
|
checkCallArgs: function (callArgs, caller, stateInfo) {
|
|
if (callArgs[Microsoft.Office.WebExtension.Parameters.Width] <= 0) {
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.Width] = 1;
|
|
}
|
|
if (!callArgs[Microsoft.Office.WebExtension.Parameters.UseDeviceIndependentPixels] && callArgs[Microsoft.Office.WebExtension.Parameters.Width] > 100) {
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.Width] = 99;
|
|
}
|
|
if (callArgs[Microsoft.Office.WebExtension.Parameters.Height] <= 0) {
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.Height] = 1;
|
|
}
|
|
if (!callArgs[Microsoft.Office.WebExtension.Parameters.UseDeviceIndependentPixels] && callArgs[Microsoft.Office.WebExtension.Parameters.Height] > 100) {
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.Height] = 99;
|
|
}
|
|
if (!callArgs[Microsoft.Office.WebExtension.Parameters.RequireHTTPs]) {
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.RequireHTTPs] = true;
|
|
}
|
|
return callArgs;
|
|
}
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.CloseAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
privateStateCallbacks: []
|
|
});
|
|
OSF.DDA.SyncMethodCalls.define({
|
|
method: OSF.DDA.SyncMethodNames.MessageParent,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.MessageToParent,
|
|
"types": ["string", "number", "boolean"]
|
|
}
|
|
],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.TargetOrigin,
|
|
value: {
|
|
"types": ["string"],
|
|
"defaultValue": ""
|
|
}
|
|
}
|
|
]
|
|
});
|
|
OSF.DDA.SyncMethodCalls.define({
|
|
method: OSF.DDA.SyncMethodNames.AddMessageHandler,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.EventType,
|
|
"enum": Microsoft.Office.WebExtension.EventType,
|
|
"verify": function (eventType, caller, eventDispatch) { return eventDispatch.supportsEvent(eventType); }
|
|
},
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.Handler,
|
|
"types": ["function"]
|
|
}
|
|
],
|
|
supportedOptions: []
|
|
});
|
|
OSF.DDA.SyncMethodCalls.define({
|
|
method: OSF.DDA.SyncMethodNames.SendMessage,
|
|
requiredArguments: [
|
|
{
|
|
"name": Microsoft.Office.WebExtension.Parameters.MessageContent,
|
|
"types": ["string"]
|
|
}
|
|
],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.TargetOrigin,
|
|
value: {
|
|
"types": ["string"],
|
|
"defaultValue": ""
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: []
|
|
});
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
OSF.OUtil.setNamespace("Dialog", OSF.DDA.Marshaling);
|
|
OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys = {
|
|
MessageType: "messageType",
|
|
MessageContent: "messageContent",
|
|
MessageOrigin: "messageOrigin",
|
|
TargetOrigin: "targetOrigin"
|
|
};
|
|
OSF.DDA.Marshaling.Dialog.DialogParentMessageReceivedEventKeys = {
|
|
MessageType: "messageType",
|
|
MessageContent: "messageContent",
|
|
MessageOrigin: "messageOrigin",
|
|
TargetOrigin: "targetOrigin"
|
|
};
|
|
OSF.DDA.Marshaling.MessageParentKeys = {
|
|
MessageToParent: "messageToParent",
|
|
TargetOrigin: "targetOrigin"
|
|
};
|
|
OSF.DDA.Marshaling.DialogNotificationShownEventType = {
|
|
DialogNotificationShown: "dialogNotificationShown"
|
|
};
|
|
OSF.DDA.Marshaling.SendMessageKeys = {
|
|
MessageContent: "messageContent",
|
|
TargetOrigin: "targetOrigin"
|
|
};
|
|
(function (OfficeExt) {
|
|
var WacCommonUICssManager;
|
|
(function (WacCommonUICssManager) {
|
|
var hostType = {
|
|
Excel: "excel",
|
|
Word: "word",
|
|
PowerPoint: "powerpoint",
|
|
Outlook: "outlook",
|
|
Visio: "visio"
|
|
};
|
|
function getDialogCssManager(applicationHostType) {
|
|
switch (applicationHostType) {
|
|
case hostType.Excel:
|
|
case hostType.Word:
|
|
case hostType.PowerPoint:
|
|
case hostType.Outlook:
|
|
case hostType.Visio:
|
|
return new DefaultDialogCSSManager();
|
|
default:
|
|
return new DefaultDialogCSSManager();
|
|
}
|
|
return null;
|
|
}
|
|
WacCommonUICssManager.getDialogCssManager = getDialogCssManager;
|
|
var DefaultDialogCSSManager = (function () {
|
|
function DefaultDialogCSSManager() {
|
|
this.overlayElementCSS = [
|
|
"position: absolute",
|
|
"top: 0",
|
|
"left: 0",
|
|
"width: 100%",
|
|
"height: 100%",
|
|
"background-color: rgba(198, 198, 198, 0.5)",
|
|
"z-index: 99998"
|
|
];
|
|
this.dialogNotificationPanelCSS = [
|
|
"width: 100%",
|
|
"height: 190px",
|
|
"position: absolute",
|
|
"z-index: 99999",
|
|
"background-color: rgba(255, 255, 255, 1)",
|
|
"left: 0px",
|
|
"top: 50%",
|
|
"margin-top: -95px"
|
|
];
|
|
this.newWindowNotificationTextPanelCSS = [
|
|
"margin: 20px 14px",
|
|
"font-family: Segoe UI,Arial,Verdana,sans-serif",
|
|
"font-size: 14px",
|
|
"height: 100px",
|
|
"line-height: 100px"
|
|
];
|
|
this.newWindowNotificationTextSpanCSS = [
|
|
"display: inline-block",
|
|
"line-height: normal",
|
|
"vertical-align: middle"
|
|
];
|
|
this.crossZoneNotificationTextPanelCSS = [
|
|
"margin: 20px 14px",
|
|
"font-family: Segoe UI,Arial,Verdana,sans-serif",
|
|
"font-size: 14px",
|
|
"height: 100px",
|
|
];
|
|
this.dialogNotificationButtonPanelCSS = "margin:0px 9px";
|
|
this.buttonStyleCSS = [
|
|
"text-align: center",
|
|
"width: 70px",
|
|
"height: 25px",
|
|
"font-size: 14px",
|
|
"font-family: Segoe UI,Arial,Verdana,sans-serif",
|
|
"margin: 0px 5px",
|
|
"border-width: 1px",
|
|
"border-style: solid"
|
|
];
|
|
}
|
|
DefaultDialogCSSManager.prototype.getOverlayElementCSS = function () {
|
|
return this.overlayElementCSS.join(";");
|
|
};
|
|
DefaultDialogCSSManager.prototype.getDialogNotificationPanelCSS = function () {
|
|
return this.dialogNotificationPanelCSS.join(";");
|
|
};
|
|
DefaultDialogCSSManager.prototype.getNewWindowNotificationTextPanelCSS = function () {
|
|
return this.newWindowNotificationTextPanelCSS.join(";");
|
|
};
|
|
DefaultDialogCSSManager.prototype.getNewWindowNotificationTextSpanCSS = function () {
|
|
return this.newWindowNotificationTextSpanCSS.join(";");
|
|
};
|
|
DefaultDialogCSSManager.prototype.getCrossZoneNotificationTextPanelCSS = function () {
|
|
return this.crossZoneNotificationTextPanelCSS.join(";");
|
|
};
|
|
DefaultDialogCSSManager.prototype.getDialogNotificationButtonPanelCSS = function () {
|
|
return this.dialogNotificationButtonPanelCSS;
|
|
};
|
|
DefaultDialogCSSManager.prototype.getDialogButtonCSS = function () {
|
|
return this.buttonStyleCSS.join(";");
|
|
};
|
|
return DefaultDialogCSSManager;
|
|
}());
|
|
WacCommonUICssManager.DefaultDialogCSSManager = DefaultDialogCSSManager;
|
|
})(WacCommonUICssManager = OfficeExt.WacCommonUICssManager || (OfficeExt.WacCommonUICssManager = {}));
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
(function (OfficeExt) {
|
|
var AddinNativeAction;
|
|
(function (AddinNativeAction) {
|
|
var Dialog;
|
|
(function (Dialog) {
|
|
var windowInstance = null;
|
|
var handler = null;
|
|
var overlayElement = null;
|
|
var dialogNotificationPanel = null;
|
|
var closeDialogKey = "osfDialogInternal:action=closeDialog";
|
|
var showDialogCallback = null;
|
|
var hasCrossZoneNotification = false;
|
|
var checkWindowDialogCloseInterval = -1;
|
|
var messageParentKey = "messageParentKey";
|
|
var hostThemeButtonStyle = null;
|
|
var commonButtonBorderColor = "#ababab";
|
|
var commonButtonBackgroundColor = "#ffffff";
|
|
var commonEventInButtonBackgroundColor = "#ccc";
|
|
var newWindowNotificationId = "newWindowNotificaiton";
|
|
var crossZoneNotificationId = "crossZoneNotification";
|
|
var configureBrowserLinkId = "configureBrowserLink";
|
|
var dialogNotificationTextPanelId = "dialogNotificationTextPanel";
|
|
var shouldUseLocalStorageToPassMessage = OfficeExt.WACUtils.shouldUseLocalStorageToPassMessage();
|
|
var registerDialogNotificationShownArgs = {
|
|
"dispId": OSF.DDA.EventDispId.dispidDialogNotificationShownInAddinEvent,
|
|
"eventType": OSF.DDA.Marshaling.DialogNotificationShownEventType.DialogNotificationShown,
|
|
"onComplete": null,
|
|
"onCalling": null
|
|
};
|
|
function setHostThemeButtonStyle(args) {
|
|
var hostThemeButtonStyleArgs = args.input;
|
|
if (hostThemeButtonStyleArgs != null) {
|
|
hostThemeButtonStyle = {
|
|
HostButtonBorderColor: hostThemeButtonStyleArgs[OSF.HostThemeButtonStyleKeys.ButtonBorderColor],
|
|
HostButtonBackgroundColor: hostThemeButtonStyleArgs[OSF.HostThemeButtonStyleKeys.ButtonBackgroundColor]
|
|
};
|
|
}
|
|
args.completed();
|
|
}
|
|
Dialog.setHostThemeButtonStyle = setHostThemeButtonStyle;
|
|
function removeEventListenersForDialog(args) {
|
|
OSF._OfficeAppFactory.getInitializationHelper().addOrRemoveEventListenersForWindow(false);
|
|
args.completed();
|
|
}
|
|
Dialog.removeEventListenersForDialog = removeEventListenersForDialog;
|
|
function handleNewWindowDialog(dialogInfo) {
|
|
try {
|
|
if (!checkAppDomain(dialogInfo)) {
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeAppDomains);
|
|
return;
|
|
}
|
|
if (!dialogInfo[OSF.ShowWindowDialogParameterKeys.PromptBeforeOpen]) {
|
|
showDialog(dialogInfo);
|
|
return;
|
|
}
|
|
hasCrossZoneNotification = false;
|
|
var ignoreButtonKeyDownClick = false;
|
|
var hostInfoObj = OSF._OfficeAppFactory.getInitializationHelper()._hostInfo;
|
|
var dialogCssManager = OfficeExt.WacCommonUICssManager.getDialogCssManager(hostInfoObj.hostType);
|
|
var notificationText = OSF.OUtil.formatString(Strings.OfficeOM.L_ShowWindowDialogNotification, OSF._OfficeAppFactory.getInitializationHelper()._appContext._addinName);
|
|
overlayElement = createOverlayElement(dialogCssManager);
|
|
var docBodyChildren = removeAndStoreAllChildrenFromNode(document.body);
|
|
document.body.appendChild(overlayElement);
|
|
dialogNotificationPanel = createNotificationPanel(dialogCssManager, notificationText);
|
|
dialogNotificationPanel.id = newWindowNotificationId;
|
|
var dialogNotificationButtonPanel = createButtonPanel(dialogCssManager);
|
|
var allowButton = createButtonControl(dialogCssManager, Strings.OfficeOM.L_ShowWindowDialogNotificationAllow);
|
|
var ignoreButton = createButtonControl(dialogCssManager, Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore);
|
|
dialogNotificationButtonPanel.appendChild(allowButton);
|
|
dialogNotificationButtonPanel.appendChild(ignoreButton);
|
|
dialogNotificationPanel.appendChild(dialogNotificationButtonPanel);
|
|
document.body.insertBefore(dialogNotificationPanel, document.body.firstChild);
|
|
allowButton.onclick = function (event) {
|
|
showDialog(dialogInfo);
|
|
if (!hasCrossZoneNotification) {
|
|
dismissDialogNotification();
|
|
}
|
|
restoreChildrenToNode(document.body, docBodyChildren);
|
|
docBodyChildren = [];
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
};
|
|
function removeAndStoreAllChildrenFromNode(node) {
|
|
var children = [];
|
|
try {
|
|
while (node.firstChild && node.firstChild != null) {
|
|
children.push(node.firstChild);
|
|
node.removeChild(node.firstChild);
|
|
}
|
|
}
|
|
catch (e) { }
|
|
return children;
|
|
}
|
|
function restoreChildrenToNode(node, children) {
|
|
try {
|
|
for (var i = 0; i < children.length; i++) {
|
|
node.appendChild(children[i]);
|
|
}
|
|
}
|
|
catch (e) { }
|
|
}
|
|
function ignoreButtonClickEventHandler(event) {
|
|
function unregisterDialogNotificationShownEventCallback(status) {
|
|
removeDialogNotificationElement();
|
|
setFocusOnFirstElement(status);
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeEndUserIgnore);
|
|
}
|
|
registerDialogNotificationShownArgs.onCalling = unregisterDialogNotificationShownEventCallback;
|
|
OSF.DDA.WAC.Delegate.unregisterEventAsync(registerDialogNotificationShownArgs);
|
|
restoreChildrenToNode(document.body, docBodyChildren);
|
|
docBodyChildren = [];
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
ignoreButton.onclick = ignoreButtonClickEventHandler;
|
|
allowButton.addEventListener("keydown", function (event) {
|
|
if (event.shiftKey && event.keyCode == 9) {
|
|
handleButtonControlEventOut(allowButton);
|
|
handleButtonControlEventIn(ignoreButton);
|
|
ignoreButton.focus();
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
}, false);
|
|
ignoreButton.addEventListener("keydown", function (event) {
|
|
if (!event.shiftKey && event.keyCode == 9) {
|
|
handleButtonControlEventOut(ignoreButton);
|
|
handleButtonControlEventIn(allowButton);
|
|
allowButton.focus();
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
else if (event.keyCode == 13) {
|
|
ignoreButtonKeyDownClick = true;
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
}, false);
|
|
ignoreButton.addEventListener("keyup", function (event) {
|
|
if (event.keyCode == 13 && ignoreButtonKeyDownClick) {
|
|
ignoreButtonKeyDownClick = false;
|
|
ignoreButtonClickEventHandler(event);
|
|
}
|
|
}, false);
|
|
window.focus();
|
|
function registerDialogNotificationShownEventCallback(status) {
|
|
allowButton.focus();
|
|
}
|
|
registerDialogNotificationShownArgs.onCalling = registerDialogNotificationShownEventCallback;
|
|
OSF.DDA.WAC.Delegate.registerEventAsync(registerDialogNotificationShownArgs);
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Exception happens at new window dialog." + e);
|
|
}
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError);
|
|
}
|
|
}
|
|
Dialog.handleNewWindowDialog = handleNewWindowDialog;
|
|
function closeDialog(callback) {
|
|
try {
|
|
if (windowInstance != null) {
|
|
var appDomains = OSF._OfficeAppFactory.getInitializationHelper()._appContext._appDomains;
|
|
if (appDomains) {
|
|
for (var i = 0; i < appDomains.length && appDomains[i].indexOf("://") !== -1; i++) {
|
|
windowInstance.postMessage(closeDialogKey, appDomains[i]);
|
|
}
|
|
}
|
|
if (windowInstance != null && !windowInstance.closed) {
|
|
windowInstance.close();
|
|
}
|
|
if (shouldUseLocalStorageToPassMessage) {
|
|
window.removeEventListener("storage", storageChangedHandler);
|
|
}
|
|
else {
|
|
window.removeEventListener("message", receiveMessage);
|
|
}
|
|
window.clearInterval(checkWindowDialogCloseInterval);
|
|
windowInstance = null;
|
|
callback(OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess);
|
|
}
|
|
else {
|
|
callback(OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError);
|
|
}
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Exception happens at close window dialog." + e);
|
|
}
|
|
callback(OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError);
|
|
}
|
|
}
|
|
Dialog.closeDialog = closeDialog;
|
|
function messageParent(params) {
|
|
var message = params.hostCallArgs[Microsoft.Office.WebExtension.Parameters.MessageToParent];
|
|
var targetOrigin = params.hostCallArgs[Microsoft.Office.WebExtension.Parameters.TargetOrigin] || null;
|
|
if (!targetOrigin) {
|
|
var currentOrigin = window.location.origin;
|
|
if (!currentOrigin) {
|
|
currentOrigin = window.location.protocol + "//"
|
|
+ window.location.hostname
|
|
+ (window.location.port ? ':' + window.location.port : '');
|
|
}
|
|
targetOrigin = currentOrigin;
|
|
}
|
|
if (shouldUseLocalStorageToPassMessage) {
|
|
try {
|
|
var messageKey = OSF._OfficeAppFactory.getInitializationHelper()._webAppState.id + messageParentKey;
|
|
window.localStorage.setItem(messageKey, message);
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Error happened during messageParent method:" + e);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
window.opener.postMessage(message, targetOrigin);
|
|
}
|
|
}
|
|
Dialog.messageParent = messageParent;
|
|
function sendMessage(params) {
|
|
if (windowInstance != null) {
|
|
var message = params.hostCallArgs;
|
|
var targetOrigin = message[Microsoft.Office.WebExtension.Parameters.TargetOrigin] || null;
|
|
delete message[Microsoft.Office.WebExtension.Parameters.TargetOrigin];
|
|
if (!targetOrigin) {
|
|
var currentOrigin = window.location.origin;
|
|
if (!currentOrigin) {
|
|
currentOrigin = window.location.protocol + "//"
|
|
+ window.location.hostname
|
|
+ (window.location.port ? ':' + window.location.port : '');
|
|
}
|
|
targetOrigin = currentOrigin;
|
|
}
|
|
if (typeof message != "string") {
|
|
message = JSON.stringify(message);
|
|
}
|
|
windowInstance.postMessage(message, targetOrigin);
|
|
}
|
|
}
|
|
Dialog.sendMessage = sendMessage;
|
|
function registerMessageReceivedEvent() {
|
|
function receiveCloseDialogMessage(event) {
|
|
if (event.source == window.opener) {
|
|
if (typeof event.data === "string" && event.data.indexOf(closeDialogKey) > -1) {
|
|
window.close();
|
|
}
|
|
else {
|
|
var rawMessage = event.data, type = typeof rawMessage;
|
|
if (rawMessage && (type == "object" || type == "string")) {
|
|
var parsedMessage = (type == "string") ? JSON.parse(rawMessage) : rawMessage;
|
|
var message = {};
|
|
message[OSF.DDA.PropertyDescriptors.MessageContent] = parsedMessage.messageContent;
|
|
message[OSF.DDA.PropertyDescriptors.MessageOrigin] = event.origin;
|
|
var eventArgs = OSF.DDA.OMFactory.manufactureEventArgs(Microsoft.Office.WebExtension.EventType.DialogParentMessageReceived, null, message);
|
|
OSF.DialogParentMessageEventDispatch.fireEvent(eventArgs);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
window.addEventListener("message", receiveCloseDialogMessage);
|
|
}
|
|
Dialog.registerMessageReceivedEvent = registerMessageReceivedEvent;
|
|
function setHandlerAndShowDialogCallback(onEventHandler, callback) {
|
|
handler = onEventHandler;
|
|
showDialogCallback = callback;
|
|
}
|
|
Dialog.setHandlerAndShowDialogCallback = setHandlerAndShowDialogCallback;
|
|
function escDismissDialogNotification() {
|
|
try {
|
|
if (dialogNotificationPanel && (dialogNotificationPanel.id == newWindowNotificationId) && showDialogCallback) {
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeEndUserIgnore);
|
|
}
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Error happened during executing displayDialogAsync callback." + e);
|
|
}
|
|
}
|
|
dismissDialogNotification();
|
|
}
|
|
Dialog.escDismissDialogNotification = escDismissDialogNotification;
|
|
function showCrossZoneNotification(windowUrl, hostType) {
|
|
var okButtonKeyDownClick = false;
|
|
var dialogCssManager = OfficeExt.WacCommonUICssManager.getDialogCssManager(hostType);
|
|
overlayElement = createOverlayElement(dialogCssManager);
|
|
document.body.insertBefore(overlayElement, document.body.firstChild);
|
|
dialogNotificationPanel = createNotificationPanelForCrossZoneIssue(dialogCssManager, windowUrl);
|
|
dialogNotificationPanel.id = crossZoneNotificationId;
|
|
var dialogNotificationButtonPanel = createButtonPanel(dialogCssManager);
|
|
var okButton = createButtonControl(dialogCssManager, Strings.OfficeOM.L_DialogOK ? Strings.OfficeOM.L_DialogOK : "OK");
|
|
dialogNotificationButtonPanel.appendChild(okButton);
|
|
dialogNotificationPanel.appendChild(dialogNotificationButtonPanel);
|
|
document.body.insertBefore(dialogNotificationPanel, document.body.firstChild);
|
|
hasCrossZoneNotification = true;
|
|
okButton.onclick = function () {
|
|
dismissDialogNotification();
|
|
};
|
|
okButton.addEventListener("keydown", function (event) {
|
|
if (event.keyCode == 9) {
|
|
document.getElementById(configureBrowserLinkId).focus();
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
else if (event.keyCode == 13) {
|
|
okButtonKeyDownClick = true;
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
}, false);
|
|
okButton.addEventListener("keyup", function (event) {
|
|
if (event.keyCode == 13 && okButtonKeyDownClick) {
|
|
okButtonKeyDownClick = false;
|
|
dismissDialogNotification();
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
}, false);
|
|
document.getElementById(configureBrowserLinkId).addEventListener("keydown", function (event) {
|
|
if (event.keyCode == 9) {
|
|
okButton.focus();
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
}, false);
|
|
window.focus();
|
|
okButton.focus();
|
|
}
|
|
Dialog.showCrossZoneNotification = showCrossZoneNotification;
|
|
function validateDialogDomain(dialogUrl, taskpaneUrl, allowSubdomains) {
|
|
if (allowSubdomains === void 0) {
|
|
allowSubdomains = true;
|
|
}
|
|
if (!dialogUrl || !taskpaneUrl) {
|
|
return false;
|
|
}
|
|
var httpsIdentifyString = "https:";
|
|
var parsedDialogUrl = OSF.OUtil.parseUrl(dialogUrl);
|
|
var parsedTaskpaneUrl = OSF.OUtil.parseUrl(taskpaneUrl);
|
|
var appDomains = OSF._OfficeAppFactory.getInitializationHelper()._appContext._appDomains;
|
|
var isHttps = parsedDialogUrl.protocol === httpsIdentifyString;
|
|
if (!isHttps) {
|
|
return false;
|
|
}
|
|
var isSameDomain = parsedDialogUrl.protocol === parsedTaskpaneUrl.protocol
|
|
&& parsedDialogUrl.hostname === parsedTaskpaneUrl.hostname
|
|
&& parsedDialogUrl.port === parsedTaskpaneUrl.port;
|
|
var isInAppDomains = Microsoft.Office.Common.XdmCommunicationManager.checkUrlWithAppDomains(appDomains, dialogUrl);
|
|
var isTrustedDomain = isSameDomain || isInAppDomains;
|
|
if (!isTrustedDomain && allowSubdomains) {
|
|
isTrustedDomain = Microsoft.Office.Common.XdmCommunicationManager.isTargetSubdomainOfSourceLocation(taskpaneUrl, dialogUrl);
|
|
}
|
|
return isTrustedDomain;
|
|
}
|
|
function receiveMessage(event) {
|
|
if (event.source == windowInstance) {
|
|
try {
|
|
var dialogOrigin = event.origin;
|
|
var taskpaneUrl = OSF._OfficeAppFactory.getInitializationHelper()._appContext._addInSourceUrl;
|
|
if (!taskpaneUrl) {
|
|
taskpaneUrl = window.location.origin;
|
|
if (!taskpaneUrl) {
|
|
taskpaneUrl = window.location.protocol + "//"
|
|
+ window.location.hostname
|
|
+ (window.location.port ? ':' + window.location.port : '');
|
|
}
|
|
}
|
|
var isTrustedDomain = validateDialogDomain(dialogOrigin, taskpaneUrl, true);
|
|
if (!isTrustedDomain) {
|
|
throw new Error("Received a message from a dialog with an untrusted domain.");
|
|
}
|
|
var dialogMessageReceivedArgs = {};
|
|
dialogMessageReceivedArgs[OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageType] = OSF.DialogMessageType.DialogMessageReceived;
|
|
dialogMessageReceivedArgs[OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageContent] = event.data;
|
|
dialogMessageReceivedArgs[OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageOrigin] = dialogOrigin;
|
|
handler(dialogMessageReceivedArgs);
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Error happened during receive message handler." + e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function storageChangedHandler(event) {
|
|
var messageKey = OSF._OfficeAppFactory.getInitializationHelper()._webAppState.id + messageParentKey;
|
|
if (event.key == messageKey) {
|
|
try {
|
|
var dialogMessageReceivedArgs = {};
|
|
dialogMessageReceivedArgs[OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageType] = OSF.DialogMessageType.DialogMessageReceived;
|
|
dialogMessageReceivedArgs[OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageContent] = event.newValue;
|
|
dialogMessageReceivedArgs[OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageOrigin] = event.origin;
|
|
handler(dialogMessageReceivedArgs);
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Error happened during storage changed handler." + e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function checkAppDomain(dialogInfo) {
|
|
var appDomains = OSF._OfficeAppFactory.getInitializationHelper()._appContext._appDomains;
|
|
var url = dialogInfo[OSF.ShowWindowDialogParameterKeys.Url];
|
|
var fInDomain = Microsoft.Office.Common.XdmCommunicationManager.checkUrlWithAppDomains(appDomains, url);
|
|
if (!fInDomain) {
|
|
var taskpaneUrl = OSF._OfficeAppFactory.getInitializationHelper()._appContext._addInSourceUrl;
|
|
if (!taskpaneUrl) {
|
|
taskpaneUrl = window.location.origin;
|
|
if (!taskpaneUrl) {
|
|
taskpaneUrl = window.location.protocol + "//"
|
|
+ window.location.hostname
|
|
+ (window.location.port ? ':' + window.location.port : '');
|
|
}
|
|
}
|
|
return taskpaneUrl && Microsoft.Office.Common.XdmCommunicationManager.isTargetSubdomainOfSourceLocation(taskpaneUrl, url);
|
|
}
|
|
return fInDomain;
|
|
}
|
|
function showDialog(dialogInfo) {
|
|
var hostInfoObj = OSF._OfficeAppFactory.getInitializationHelper()._hostInfo;
|
|
var hostInfoVals = [
|
|
hostInfoObj.hostType,
|
|
hostInfoObj.hostPlatform,
|
|
hostInfoObj.hostSpecificFileVersion,
|
|
hostInfoObj.hostLocale,
|
|
hostInfoObj.osfControlAppCorrelationId,
|
|
"isDialog",
|
|
hostInfoObj.disableLogging ? "disableLogging" : "",
|
|
(hostInfoObj.flags & OSF.HostInfoFlags.PublicAddin)
|
|
];
|
|
var hostInfo = hostInfoVals.join("$");
|
|
var appContext = OSF._OfficeAppFactory.getInitializationHelper()._appContext;
|
|
appContext._taskpaneUrl = window.location.origin;
|
|
if (!appContext._taskpaneUrl) {
|
|
appContext._taskpaneUrl = window.location.protocol + "//"
|
|
+ window.location.hostname
|
|
+ (window.location.port ? ':' + window.location.port : '');
|
|
}
|
|
var windowUrl = dialogInfo[OSF.ShowWindowDialogParameterKeys.Url];
|
|
if (!dialogInfo[OSF.ShowWindowDialogParameterKeys.UrlNoHostInfo]) {
|
|
windowUrl = OfficeExt.WACUtils.addHostInfoAsQueryParam(windowUrl, hostInfo);
|
|
}
|
|
var windowName = JSON.parse(window.name);
|
|
windowName[OSF.WindowNameItemKeys.HostInfo] = hostInfo;
|
|
windowName[OSF.WindowNameItemKeys.AppContext] = appContext;
|
|
var width = dialogInfo[OSF.ShowWindowDialogParameterKeys.Width] * screen.width / 100;
|
|
var height = dialogInfo[OSF.ShowWindowDialogParameterKeys.Height] * screen.height / 100;
|
|
var left = appContext._clientWindowWidth / 2 - width / 2;
|
|
var top = appContext._clientWindowHeight / 2 - height / 2;
|
|
var windowSpecs = "width=" + width + ", height=" + height + ", left=" + left + ", top=" + top + ",channelmode=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=yes,toolbar=no";
|
|
windowInstance = window.open(windowUrl, OfficeExt.WACUtils.serializeObjectToString(windowName), windowSpecs);
|
|
if (windowInstance == null) {
|
|
OSF.AppTelemetry.logAppCommonMessage("Encountered cross zone issue in displayDialogAsync api.");
|
|
removeDialogNotificationElement();
|
|
showCrossZoneNotification(windowUrl, hostInfoObj.hostType);
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeCrossZone);
|
|
return;
|
|
}
|
|
if (shouldUseLocalStorageToPassMessage) {
|
|
window.addEventListener("storage", storageChangedHandler);
|
|
}
|
|
else {
|
|
window.addEventListener("message", receiveMessage);
|
|
}
|
|
function checkWindowClose() {
|
|
try {
|
|
if (windowInstance == null || windowInstance.closed) {
|
|
window.clearInterval(checkWindowDialogCloseInterval);
|
|
if (shouldUseLocalStorageToPassMessage) {
|
|
window.removeEventListener("storage", storageChangedHandler);
|
|
}
|
|
else {
|
|
window.removeEventListener("message", receiveMessage);
|
|
}
|
|
var dialogClosedArgs = {};
|
|
dialogClosedArgs[OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageType] = OSF.DialogMessageType.DialogClosed;
|
|
handler(dialogClosedArgs);
|
|
}
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Error happened during check or handle window close." + e);
|
|
}
|
|
}
|
|
}
|
|
checkWindowDialogCloseInterval = window.setInterval(checkWindowClose, 1000);
|
|
if (showDialogCallback != null) {
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess);
|
|
}
|
|
else {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("showDialogCallback can not be null.");
|
|
}
|
|
}
|
|
}
|
|
function createButtonControl(dialogCssManager, buttonValue) {
|
|
var buttonControl = document.createElement("input");
|
|
buttonControl.setAttribute("type", "button");
|
|
buttonControl.style.cssText = dialogCssManager.getDialogButtonCSS();
|
|
buttonControl.style.borderColor = commonButtonBorderColor;
|
|
buttonControl.style.backgroundColor = commonButtonBackgroundColor;
|
|
buttonControl.setAttribute("value", buttonValue);
|
|
var buttonControlEventInHandler = function () {
|
|
handleButtonControlEventIn(buttonControl);
|
|
};
|
|
var buttonControlEventOutHandler = function () {
|
|
handleButtonControlEventOut(buttonControl);
|
|
};
|
|
buttonControl.addEventListener("mouseover", buttonControlEventInHandler);
|
|
buttonControl.addEventListener("focus", buttonControlEventInHandler);
|
|
buttonControl.addEventListener("mouseout", buttonControlEventOutHandler);
|
|
buttonControl.addEventListener("focusout", buttonControlEventOutHandler);
|
|
return buttonControl;
|
|
}
|
|
function handleButtonControlEventIn(buttonControl) {
|
|
if (hostThemeButtonStyle != null) {
|
|
buttonControl.style.borderColor = hostThemeButtonStyle.HostButtonBorderColor;
|
|
buttonControl.style.backgroundColor = hostThemeButtonStyle.HostButtonBackgroundColor;
|
|
}
|
|
else if (OSF.CommonUI && OSF.CommonUI.HostButtonBorderColor && OSF.CommonUI.HostButtonBackgroundColor) {
|
|
buttonControl.style.borderColor = OSF.CommonUI.HostButtonBorderColor;
|
|
buttonControl.style.backgroundColor = OSF.CommonUI.HostButtonBackgroundColor;
|
|
}
|
|
else {
|
|
buttonControl.style.backgroundColor = commonEventInButtonBackgroundColor;
|
|
}
|
|
}
|
|
function handleButtonControlEventOut(buttonControl) {
|
|
buttonControl.style.borderColor = commonButtonBorderColor;
|
|
buttonControl.style.backgroundColor = commonButtonBackgroundColor;
|
|
}
|
|
function dismissDialogNotification() {
|
|
function unregisterDialogNotificationShownEventCallback(status) {
|
|
removeDialogNotificationElement();
|
|
setFocusOnFirstElement(status);
|
|
}
|
|
registerDialogNotificationShownArgs.onCalling = unregisterDialogNotificationShownEventCallback;
|
|
OSF.DDA.WAC.Delegate.unregisterEventAsync(registerDialogNotificationShownArgs);
|
|
}
|
|
function removeDialogNotificationElement() {
|
|
if (dialogNotificationPanel != null) {
|
|
document.body.removeChild(dialogNotificationPanel);
|
|
dialogNotificationPanel = null;
|
|
}
|
|
if (overlayElement != null) {
|
|
document.body.removeChild(overlayElement);
|
|
overlayElement = null;
|
|
}
|
|
}
|
|
function createOverlayElement(dialogCssManager) {
|
|
var overlayElement = document.createElement("div");
|
|
overlayElement.style.cssText = dialogCssManager.getOverlayElementCSS();
|
|
return overlayElement;
|
|
}
|
|
function createNotificationPanel(dialogCssManager, notificationString) {
|
|
var dialogNotificationPanel = document.createElement("div");
|
|
dialogNotificationPanel.style.cssText = dialogCssManager.getDialogNotificationPanelCSS();
|
|
setAttributeForDialogNotificationPanel(dialogNotificationPanel);
|
|
var dialogNotificationTextPanel = document.createElement("div");
|
|
dialogNotificationTextPanel.style.cssText = dialogCssManager.getNewWindowNotificationTextPanelCSS();
|
|
dialogNotificationTextPanel.id = dialogNotificationTextPanelId;
|
|
if (document.documentElement.getAttribute("dir") == "rtl") {
|
|
dialogNotificationTextPanel.style.paddingRight = "30px";
|
|
}
|
|
else {
|
|
dialogNotificationTextPanel.style.paddingLeft = "30px";
|
|
}
|
|
var dialogNotificationTextSpan = document.createElement("span");
|
|
dialogNotificationTextSpan.style.cssText = dialogCssManager.getNewWindowNotificationTextSpanCSS();
|
|
dialogNotificationTextSpan.innerText = notificationString;
|
|
dialogNotificationTextPanel.appendChild(dialogNotificationTextSpan);
|
|
dialogNotificationPanel.appendChild(dialogNotificationTextPanel);
|
|
return dialogNotificationPanel;
|
|
}
|
|
function createButtonPanel(dialogCssManager) {
|
|
var dialogNotificationButtonPanel = document.createElement("div");
|
|
dialogNotificationButtonPanel.style.cssText = dialogCssManager.getDialogNotificationButtonPanelCSS();
|
|
if (document.documentElement.getAttribute("dir") == "rtl") {
|
|
dialogNotificationButtonPanel.style.cssFloat = "left";
|
|
}
|
|
else {
|
|
dialogNotificationButtonPanel.style.cssFloat = "right";
|
|
}
|
|
return dialogNotificationButtonPanel;
|
|
}
|
|
function setFocusOnFirstElement(status) {
|
|
if (status != OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess) {
|
|
var list = document.querySelectorAll(OSF._OfficeAppFactory.getInitializationHelper()._tabbableElements);
|
|
OSF.OUtil.focusToFirstTabbable(list, false);
|
|
}
|
|
}
|
|
function createNotificationPanelForCrossZoneIssue(dialogCssManager, windowUrl) {
|
|
var dialogNotificationPanel = document.createElement("div");
|
|
dialogNotificationPanel.style.cssText = dialogCssManager.getDialogNotificationPanelCSS();
|
|
setAttributeForDialogNotificationPanel(dialogNotificationPanel);
|
|
var dialogNotificationTextPanel = document.createElement("div");
|
|
dialogNotificationTextPanel.style.cssText = dialogCssManager.getCrossZoneNotificationTextPanelCSS();
|
|
dialogNotificationTextPanel.id = dialogNotificationTextPanelId;
|
|
var configureBrowserLink = document.createElement("a");
|
|
configureBrowserLink.id = configureBrowserLinkId;
|
|
configureBrowserLink.href = "#";
|
|
configureBrowserLink.innerText = Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink;
|
|
configureBrowserLink.setAttribute("onclick", "window.open('https://support.microsoft.com/en-us/help/17479/windows-internet-explorer-11-change-security-privacy-settings', '_blank', 'fullscreen=1')");
|
|
var dialogNotificationTextSpan = document.createElement("span");
|
|
if (Strings.OfficeOM.L_NewWindowCrossZone) {
|
|
dialogNotificationTextSpan.innerHTML = OSF.OUtil.formatString(Strings.OfficeOM.L_NewWindowCrossZone, configureBrowserLink.outerHTML, OfficeExt.WACUtils.getDomainForUrl(windowUrl));
|
|
}
|
|
dialogNotificationTextPanel.appendChild(dialogNotificationTextSpan);
|
|
dialogNotificationPanel.appendChild(dialogNotificationTextPanel);
|
|
return dialogNotificationPanel;
|
|
}
|
|
function setAttributeForDialogNotificationPanel(dialogNotificationDiv) {
|
|
dialogNotificationDiv.setAttribute("role", "dialog");
|
|
dialogNotificationDiv.setAttribute("aria-describedby", dialogNotificationTextPanelId);
|
|
}
|
|
})(Dialog = AddinNativeAction.Dialog || (AddinNativeAction.Dialog = {}));
|
|
})(AddinNativeAction = OfficeExt.AddinNativeAction || (OfficeExt.AddinNativeAction = {}));
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.EventDispId.dispidDialogMessageReceivedEvent,
|
|
fromHost: [
|
|
{ name: OSF.DDA.EventDescriptors.DialogMessageReceivedEvent, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.addComplexType(OSF.DDA.EventDescriptors.DialogMessageReceivedEvent);
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.EventDescriptors.DialogMessageReceivedEvent,
|
|
fromHost: [
|
|
{ name: OSF.DDA.PropertyDescriptors.MessageType, value: OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageType },
|
|
{ name: OSF.DDA.PropertyDescriptors.MessageContent, value: OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageContent },
|
|
{ name: OSF.DDA.PropertyDescriptors.MessageOrigin, value: OSF.DDA.Marshaling.Dialog.DialogMessageReceivedEventKeys.MessageOrigin }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.EventDispId.dispidDialogParentMessageReceivedEvent,
|
|
fromHost: [
|
|
{ name: OSF.DDA.EventDescriptors.DialogParentMessageReceivedEvent, value: OSF.DDA.WAC.Delegate.ParameterMap.self }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.addComplexType(OSF.DDA.EventDescriptors.DialogParentMessageReceivedEvent);
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.EventDescriptors.DialogParentMessageReceivedEvent,
|
|
fromHost: [
|
|
{ name: OSF.DDA.PropertyDescriptors.MessageType, value: OSF.DDA.Marshaling.Dialog.DialogParentMessageReceivedEventKeys.MessageType },
|
|
{ name: OSF.DDA.PropertyDescriptors.MessageContent, value: OSF.DDA.Marshaling.Dialog.DialogParentMessageReceivedEventKeys.MessageContent },
|
|
{ name: OSF.DDA.PropertyDescriptors.MessageOrigin, value: OSF.DDA.Marshaling.Dialog.DialogParentMessageReceivedEventKeys.MessageOrigin }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidMessageParentMethod,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.MessageToParent, value: OSF.DDA.Marshaling.MessageParentKeys.MessageToParent },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.TargetOrigin, value: OSF.DDA.Marshaling.MessageParentKeys.TargetOrigin }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidSendMessageMethod,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.MessageContent, value: OSF.DDA.Marshaling.SendMessageKeys.MessageContent },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.TargetOrigin, value: OSF.DDA.Marshaling.MessageParentKeys.TargetOrigin }
|
|
]
|
|
});
|
|
OSF.DDA.WAC.Delegate.openDialog = function OSF_DDA_WAC_Delegate$OpenDialog(args) {
|
|
var httpsIdentifyString = "https://";
|
|
var httpIdentifyString = "http://";
|
|
var dialogInfo = JSON.parse(args.targetId);
|
|
var callback = OSF.DDA.WAC.Delegate._getOnAfterRegisterEvent(true, args);
|
|
function showDialogCallback(status) {
|
|
var payload = { "Error": status };
|
|
try {
|
|
callback(Microsoft.Office.Common.InvokeResultCode.noError, payload);
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Exception happens at showDialogCallback." + e);
|
|
}
|
|
}
|
|
}
|
|
if (OSF.DialogShownStatus.hasDialogShown) {
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeDialogAlreadyOpened);
|
|
return;
|
|
}
|
|
var dialogUrl = dialogInfo[OSF.ShowWindowDialogParameterKeys.Url].toLowerCase();
|
|
var taskpaneUrl = (window.location.href).toLowerCase();
|
|
if (OSF.AppTelemetry) {
|
|
var isSameDomain = false;
|
|
var parentIsSubdomain = false;
|
|
var childIsSubdomain = false;
|
|
var isAppDomain = false;
|
|
var dialogUrlPortionAllowedToLog = "";
|
|
var taskpaneUrlPortionAllowedToLog = "";
|
|
if (OSF.OUtil) {
|
|
var parsedDialogUrl = OSF.OUtil.parseUrl(dialogUrl);
|
|
var parsedTaskpaneUrl = OSF.OUtil.parseUrl(taskpaneUrl);
|
|
isSameDomain = parsedDialogUrl.protocol === parsedTaskpaneUrl.protocol
|
|
&& parsedDialogUrl.hostname === parsedTaskpaneUrl.hostname
|
|
&& parsedDialogUrl.port === parsedTaskpaneUrl.port;
|
|
dialogUrlPortionAllowedToLog = OSF.OUtil.getHostnamePortionForLogging(parsedDialogUrl.hostname);
|
|
if (isSameDomain) {
|
|
taskpaneUrlPortionAllowedToLog = dialogUrlPortionAllowedToLog;
|
|
}
|
|
else {
|
|
taskpaneUrlPortionAllowedToLog = OSF.OUtil.getHostnamePortionForLogging(parsedTaskpaneUrl.hostname);
|
|
parentIsSubdomain = Microsoft.Office.Common.XdmCommunicationManager.isTargetSubdomainOfSourceLocation(dialogUrl, taskpaneUrl);
|
|
childIsSubdomain = Microsoft.Office.Common.XdmCommunicationManager.isTargetSubdomainOfSourceLocation(taskpaneUrl, dialogUrl);
|
|
}
|
|
var appDomains = OSF._OfficeAppFactory.getInitializationHelper()._appContext._appDomains;
|
|
isAppDomain = Microsoft.Office.Common.XdmCommunicationManager.checkUrlWithAppDomains(appDomains, dialogUrl);
|
|
}
|
|
var logJsonAsString = "openDialog isInline: " + dialogInfo[OSF.ShowWindowDialogParameterKeys.DisplayInIframe].toString() + ", " + "taskpaneHostname: " + taskpaneUrlPortionAllowedToLog + ", " + "dialogHostName: " + dialogUrlPortionAllowedToLog + ", " + "isSameDomain: " + isSameDomain.toString() + ", " + "parentIsSubdomain: " + parentIsSubdomain.toString() + ", " + "childIsSubdomain: " + childIsSubdomain.toString() + ", " + "isAppDomain: " + isAppDomain.toString();
|
|
OSF.AppTelemetry.logAppCommonMessage(logJsonAsString);
|
|
}
|
|
if (dialogUrl == null || !(dialogUrl.substr(0, httpsIdentifyString.length) === httpsIdentifyString)) {
|
|
if (dialogUrl.substr(0, httpIdentifyString.length) === httpIdentifyString) {
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeRequireHTTPS);
|
|
}
|
|
else {
|
|
showDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeInvalidScheme);
|
|
}
|
|
return;
|
|
}
|
|
if (!dialogInfo[OSF.ShowWindowDialogParameterKeys.DisplayInIframe]) {
|
|
OSF.DialogShownStatus.isWindowDialog = true;
|
|
OfficeExt.AddinNativeAction.Dialog.setHandlerAndShowDialogCallback(function OSF_DDA_WACDelegate$RegisterEventAsync_OnEvent(payload) {
|
|
if (args.onEvent) {
|
|
args.onEvent(payload);
|
|
}
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.onEventDone(args.dispId);
|
|
}
|
|
}, showDialogCallback);
|
|
OfficeExt.AddinNativeAction.Dialog.handleNewWindowDialog(dialogInfo);
|
|
}
|
|
else {
|
|
OSF.DialogShownStatus.isWindowDialog = false;
|
|
OSF.DDA.WAC.Delegate.registerEventAsync(args);
|
|
}
|
|
};
|
|
OSF.DDA.WAC.Delegate.messageParent = function OSF_DDA_WAC_Delegate$MessageParent(args) {
|
|
if (window.opener != null) {
|
|
OfficeExt.AddinNativeAction.Dialog.messageParent(args);
|
|
}
|
|
else {
|
|
OSF.DDA.WAC.Delegate.executeAsync(args);
|
|
}
|
|
};
|
|
OSF.DDA.WAC.Delegate.sendMessage = function OSF_DDA_WAC_Delegate$SendMessage(args) {
|
|
if (OSF.DialogShownStatus.hasDialogShown) {
|
|
if (OSF.DialogShownStatus.isWindowDialog) {
|
|
OfficeExt.AddinNativeAction.Dialog.sendMessage(args);
|
|
}
|
|
else {
|
|
OSF.DDA.WAC.Delegate.executeAsync(args);
|
|
}
|
|
}
|
|
};
|
|
OSF.DDA.WAC.Delegate.closeDialog = function OSF_DDA_WAC_Delegate$CloseDialog(args) {
|
|
var callback = OSF.DDA.WAC.Delegate._getOnAfterRegisterEvent(false, args);
|
|
function closeDialogCallback(status) {
|
|
var payload = { "Error": status };
|
|
try {
|
|
callback(Microsoft.Office.Common.InvokeResultCode.noError, payload);
|
|
}
|
|
catch (e) {
|
|
if (OSF.AppTelemetry) {
|
|
OSF.AppTelemetry.logAppException("Exception happens at closeDialogCallback." + e);
|
|
}
|
|
}
|
|
}
|
|
if (!OSF.DialogShownStatus.hasDialogShown) {
|
|
closeDialogCallback(OSF.DDA.ErrorCodeManager.errorCodes.ooeWebDialogClosed);
|
|
}
|
|
else {
|
|
if (OSF.DialogShownStatus.isWindowDialog) {
|
|
if (args.onCalling) {
|
|
args.onCalling();
|
|
}
|
|
OfficeExt.AddinNativeAction.Dialog.closeDialog(closeDialogCallback);
|
|
}
|
|
else {
|
|
OSF.DDA.WAC.Delegate.unregisterEventAsync(args);
|
|
}
|
|
}
|
|
};
|
|
OSF.InitializationHelper.prototype.dismissDialogNotification = function OSF_InitializationHelper$dismissDialogNotification() {
|
|
OfficeExt.AddinNativeAction.Dialog.escDismissDialogNotification();
|
|
};
|
|
OSF.InitializationHelper.prototype.registerMessageReceivedEventForWindowDialog = function OSF_InitializationHelper$registerMessageReceivedEventForWindowDialog() {
|
|
OfficeExt.AddinNativeAction.Dialog.registerMessageReceivedEvent();
|
|
};
|
|
(function (OfficeExt) {
|
|
var AddinNativeAction;
|
|
(function (AddinNativeAction) {
|
|
var Snapshot;
|
|
(function (Snapshot) {
|
|
var SnapshotActionArgs = (function () {
|
|
function SnapshotActionArgs() {
|
|
}
|
|
return SnapshotActionArgs;
|
|
}());
|
|
function loadHtml2CanvasWithOnCompleted(onAllCompleted, onError) {
|
|
var html2canvasLoaded = function () {
|
|
return typeof (Html2canvas) !== "undefined" && typeof (Html2canvas.html2canvas) !== "undefined";
|
|
};
|
|
var promiseLoaded = function () {
|
|
return typeof (window.Promise) !== "undefined" || (typeof (OfficeExtension) !== "undefined" && typeof (OfficeExtension.Promise) !== "undefined");
|
|
};
|
|
if (html2canvasLoaded() && promiseLoaded()) {
|
|
onAllCompleted();
|
|
return;
|
|
}
|
|
var loadScriptHelper = new ScriptLoading.LoadScriptHelper();
|
|
var basePath = loadScriptHelper.getOfficeJsBasePath();
|
|
var files = {
|
|
html2canvasJs: 'Html2canvas.debug.js',
|
|
promiseJs: 'es6-promise.debug.js'
|
|
};
|
|
var onScriptsLoad = function () {
|
|
if (html2canvasLoaded() && promiseLoaded()) {
|
|
onAllCompleted();
|
|
}
|
|
else {
|
|
onError();
|
|
}
|
|
};
|
|
if (!promiseLoaded()) {
|
|
loadScriptHelper.loadScript(basePath + files.promiseJs, null, function () {
|
|
loadScriptHelper.loadScript(basePath + files.html2canvasJs, null, onScriptsLoad);
|
|
});
|
|
}
|
|
else {
|
|
loadScriptHelper.loadScript(basePath + files.html2canvasJs, null, onScriptsLoad);
|
|
}
|
|
}
|
|
;
|
|
function generateLatestSnapshot(args) {
|
|
if (!OfficeExt.WACUtils.isHostTrusted || !OfficeExt.WACUtils.isHostTrusted()) {
|
|
args.completed();
|
|
}
|
|
else {
|
|
var onFailed = function () {
|
|
args.completed();
|
|
};
|
|
var onRendered = function (canvas) {
|
|
try {
|
|
args.result = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream");
|
|
}
|
|
catch (e) {
|
|
}
|
|
args.completed();
|
|
};
|
|
var onLoadCompleted = function () {
|
|
try {
|
|
Html2canvas.html2canvas(document.body, { onrendered: onRendered });
|
|
}
|
|
catch (e) {
|
|
onFailed();
|
|
}
|
|
};
|
|
loadHtml2CanvasWithOnCompleted(onLoadCompleted, onFailed);
|
|
}
|
|
}
|
|
Snapshot.generateLatestSnapshot = generateLatestSnapshot;
|
|
})(Snapshot = AddinNativeAction.Snapshot || (AddinNativeAction.Snapshot = {}));
|
|
})(AddinNativeAction = OfficeExt.AddinNativeAction || (OfficeExt.AddinNativeAction = {}));
|
|
})(OfficeExt || (OfficeExt = {}));
|
|
Microsoft.Office.WebExtension.AccountTypeFilter = {
|
|
NoFilter: "noFilter",
|
|
AAD: "aad",
|
|
MSA: "msa"
|
|
};
|
|
OSF.DDA.AsyncMethodNames.addNames({ GetAccessTokenAsync: "getAccessTokenAsync" });
|
|
OSF.DDA.Auth = function OSF_DDA_Auth() {
|
|
};
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetAccessTokenAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ForceConsent,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ForceAddAccount,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.AuthChallenge,
|
|
value: {
|
|
"types": ["string"],
|
|
"defaultValue": ""
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.AllowConsentPrompt,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.ForMSGraphAccess,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.AllowSignInPrompt,
|
|
value: {
|
|
"types": ["boolean"],
|
|
"defaultValue": false
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.EnableNewHosts,
|
|
value: {
|
|
"types": ["number"],
|
|
"defaultValue": 0
|
|
}
|
|
},
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.AccountTypeFilter,
|
|
value: {
|
|
"enum": Microsoft.Office.WebExtension.AccountTypeFilter,
|
|
"defaultValue": Microsoft.Office.WebExtension.AccountTypeFilter.NoFilter
|
|
}
|
|
}
|
|
],
|
|
checkCallArgs: function (callArgs, caller, stateInfo) {
|
|
var _a;
|
|
var appContext = OSF._OfficeAppFactory.getInitializationHelper()._appContext;
|
|
if (appContext && appContext._wopiHostOriginForSingleSignOn) {
|
|
var addinTrustId = OSF.OUtil.Guid.generateNewGuid();
|
|
window.parent.parent.postMessage("{\"MessageId\":\"AddinTrustedOrigin\",\"AddinTrustId\":\"" + addinTrustId + "\"}", appContext._wopiHostOriginForSingleSignOn);
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.AddinTrustId] = addinTrustId;
|
|
}
|
|
if (window.Office.context.requirements.isSetSupported("JsonPayloadSSO")) {
|
|
var jsonParameterMap = (_a = {},
|
|
_a[Microsoft.Office.WebExtension.Parameters.ForceConsent] = false,
|
|
_a[Microsoft.Office.WebExtension.Parameters.ForceAddAccount] = false,
|
|
_a[Microsoft.Office.WebExtension.Parameters.AuthChallenge] = true,
|
|
_a[Microsoft.Office.WebExtension.Parameters.AllowConsentPrompt] = true,
|
|
_a[Microsoft.Office.WebExtension.Parameters.ForMSGraphAccess] = true,
|
|
_a[Microsoft.Office.WebExtension.Parameters.AllowSignInPrompt] = true,
|
|
_a[Microsoft.Office.WebExtension.Parameters.EnableNewHosts] = true,
|
|
_a[Microsoft.Office.WebExtension.Parameters.AccountTypeFilter] = true,
|
|
_a);
|
|
var jsonPayload = {};
|
|
for (var _i = 0, _b = Object.keys(jsonParameterMap); _i < _b.length; _i++) {
|
|
var key = _b[_i];
|
|
if (jsonParameterMap[key]) {
|
|
jsonPayload[key] = callArgs[key];
|
|
}
|
|
delete callArgs[key];
|
|
}
|
|
callArgs[Microsoft.Office.WebExtension.Parameters.JsonPayload] = JSON.stringify(jsonPayload);
|
|
}
|
|
return callArgs;
|
|
},
|
|
onSucceeded: function (dataDescriptor, caller, callArgs) {
|
|
var data = dataDescriptor[Microsoft.Office.WebExtension.Parameters.Data];
|
|
return data;
|
|
}
|
|
});
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
OSF.OUtil.setNamespace("SingleSignOn", OSF.DDA.Marshaling);
|
|
OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys = {
|
|
ForceConsent: "forceConsent",
|
|
ForceAddAccount: "forceAddAccount",
|
|
AuthChallenge: "authChallenge",
|
|
AllowConsentPrompt: "allowConsentPrompt",
|
|
ForMSGraphAccess: "forMSGraphAccess",
|
|
AllowSignInPrompt: "allowSignInPrompt",
|
|
EnableNewHosts: "enableNewHosts",
|
|
AccountTypeFilter: "accountTypeFilter",
|
|
AddinTrustId: "addinTrustId"
|
|
};
|
|
OSF.DDA.Marshaling.SingleSignOn.AccessTokenResultKeys = {
|
|
AccessToken: "accessToken"
|
|
};
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetAccessTokenMethod,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ForceConsent, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.ForceConsent },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ForceAddAccount, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.ForceAddAccount },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.AuthChallenge, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.AuthChallenge },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.AllowConsentPrompt, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.AllowConsentPrompt },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.ForMSGraphAccess, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.ForMSGraphAccess },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.AllowSignInPrompt, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.AllowSignInPrompt },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.EnableNewHosts, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.EnableNewHosts },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.AccountTypeFilter, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.AccountTypeFilter },
|
|
{ name: Microsoft.Office.WebExtension.Parameters.AddinTrustId, value: OSF.DDA.Marshaling.SingleSignOn.GetAccessTokenKeys.AddinTrustId }
|
|
],
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.Marshaling.SingleSignOn.AccessTokenResultKeys.AccessToken }
|
|
]
|
|
});
|
|
OSF.DDA.AsyncMethodNames.addNames({ GetAuthContextAsync: "getAuthContextAsync" });
|
|
OSF.DDA.WebAuth = function OSF_DDA_WebAuth() {
|
|
};
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.GetAuthContextAsync,
|
|
requiredArguments: [],
|
|
supportedOptions: [],
|
|
onSucceeded: function (dataDescriptor, caller, callArgs) {
|
|
var data = dataDescriptor[Microsoft.Office.WebExtension.Parameters.Data];
|
|
return data;
|
|
}
|
|
});
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
OSF.OUtil.setNamespace("WebAuth", OSF.DDA.Marshaling);
|
|
OSF.DDA.Marshaling.WebAuth.GetAuthContextKeys = {};
|
|
OSF.DDA.Marshaling.WebAuth.GetAuthContextResultKeys = {
|
|
AuthContext: "authContext",
|
|
AppId: "appId",
|
|
MsaAppId: "msaAppId",
|
|
Upn: "upn",
|
|
UserId: "userId",
|
|
Authority: "authority",
|
|
AuthorityType: "authorityType",
|
|
IsAnonymous: "isAnonymous",
|
|
TenantId: "tenantId",
|
|
Error: "error",
|
|
SupportsAuthToken: "supportsAuthToken"
|
|
};
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidGetAuthContextMethod,
|
|
toHost: [],
|
|
fromHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Data, value: OSF.DDA.Marshaling.WebAuth.GetAuthContextResultKeys.AuthContext }
|
|
]
|
|
});
|
|
OSF.DDA.AsyncMethodNames.addNames({
|
|
CreateDocumentAsync: "createDocumentAsync"
|
|
});
|
|
OSF.DDA.AsyncMethodCalls.define({
|
|
method: OSF.DDA.AsyncMethodNames.CreateDocumentAsync,
|
|
supportedOptions: [
|
|
{
|
|
name: Microsoft.Office.WebExtension.Parameters.Base64,
|
|
value: {
|
|
"types": ["string"],
|
|
"defaultValue": ""
|
|
}
|
|
}
|
|
],
|
|
privateStateCallbacks: []
|
|
});
|
|
OSF.OUtil.setNamespace("Marshaling", OSF.DDA);
|
|
OSF.DDA.Marshaling.CreateDocument = {
|
|
Base64: "base64"
|
|
};
|
|
OSF.DDA.WAC.Delegate.ParameterMap.define({
|
|
type: OSF.DDA.MethodDispId.dispidCreateDocumentMethod,
|
|
toHost: [
|
|
{ name: Microsoft.Office.WebExtension.Parameters.Base64, value: OSF.DDA.Marshaling.CreateDocument.Base64 }
|
|
]
|
|
});
|
|
var OSFPPTWAC;
|
|
(function (OSFPPTWAC) {
|
|
var PowerPointDocument = (function () {
|
|
function PowerPointDocument(officeAppContext, settings) {
|
|
OSF.DDA.DispIdHost.addEventSupport(this, new OSF.EventDispatch([Microsoft.Office.WebExtension.EventType.ActiveViewChanged,
|
|
Microsoft.Office.WebExtension.EventType.DocumentSelectionChanged]));
|
|
OSF.DDA.PowerPointDocument.uber.constructor.call(this, officeAppContext, settings);
|
|
OSF.DDA.DispIdHost.addAsyncMethods(this, [
|
|
OSF.DDA.AsyncMethodNames.GetSelectedDataAsync,
|
|
OSF.DDA.AsyncMethodNames.SetSelectedDataAsync,
|
|
OSF.DDA.AsyncMethodNames.GoToByIdAsync,
|
|
OSF.DDA.AsyncMethodNames.GetActiveViewAsync,
|
|
OSF.DDA.AsyncMethodNames.GetDocumentCopyAsync,
|
|
OSF.DDA.AsyncMethodNames.GetFilePropertiesAsync
|
|
]);
|
|
OSF.OUtil.finalizeProperties(this);
|
|
}
|
|
return PowerPointDocument;
|
|
}());
|
|
OSFPPTWAC.PowerPointDocument = PowerPointDocument;
|
|
})(OSFPPTWAC || (OSFPPTWAC = {}));
|
|
OSF.DDA.PowerPointDocument = OSFPPTWAC.PowerPointDocument;
|
|
OSF.OUtil.extend(OSF.DDA.PowerPointDocument, OSF.DDA.Document);
|
|
OSF.OUtil.redefineList(Microsoft.Office.WebExtension.GoToType, {
|
|
Slide: "slide",
|
|
Index: "index"
|
|
});
|
|
OSF.InitializationHelper.prototype.loadAppSpecificScriptAndCreateOM = function OSF_InitializationHelper$loadAppSpecificScriptAndCreateOM(appContext, appReady, basePath) {
|
|
OSF.DDA.ErrorCodeManager.initializeErrorMessages(Strings.OfficeOM);
|
|
appContext.doc = new OSF.DDA.PowerPointDocument(appContext, this._initializeSettings(appContext, true));
|
|
OSF.DDA.DispIdHost.addAsyncMethods(OSF.DDA.RichApi, [OSF.DDA.AsyncMethodNames.ExecuteRichApiRequestAsync]);
|
|
OSF.DDA.RichApi.richApiMessageManager = new OfficeExt.RichApiMessageManager();
|
|
appReady();
|
|
};
|
|
OSF.InitializationHelper.prototype.prepareRightBeforeWebExtensionInitialize = function OSF_InitializationHelper$prepareRightBeforeWebExtensionInitialize(appContext) {
|
|
OSF.WebApp._UpdateLinksForHostAndXdmInfo();
|
|
var license = new OSF.DDA.License(appContext.get_eToken());
|
|
this.initWebDialog(appContext);
|
|
this.initWebAuth(appContext);
|
|
this.initWebAuthImplicit(appContext);
|
|
appContext.messaging = new OfficeExt.Messaging.ExtensionCommunicationManager();
|
|
if (OSF.DDA.Application) {
|
|
appContext.application = new OSF.DDA.Application(appContext);
|
|
OSF.DDA.DispIdHost.addAsyncMethods(appContext.application, [OSF.DDA.AsyncMethodNames.CreateDocumentAsync]);
|
|
OSF.OUtil.finalizeProperties(appContext.application);
|
|
}
|
|
OSF._OfficeAppFactory.setContext(new OSF.DDA.Context(appContext, appContext.doc, license));
|
|
var getActivationCompletedStatusCallback;
|
|
OSF._OfficeAppFactory.setHostFacade(new OSF.DDA.DispIdHost.Facade(OSF.DDA.WAC.getDelegateMethods, OSF.DDA.WAC.Delegate.ParameterMap));
|
|
getActivationCompletedStatusCallback = function (invokeResultCode, status) {
|
|
if (invokeResultCode == 0 && status != true && OSF.getClientEndPoint()) {
|
|
OSF.getClientEndPoint().registerForEvent("activationCompleted", function () {
|
|
var reason = appContext.get_reason();
|
|
Microsoft.Office.WebExtension.initialize(reason);
|
|
}, null, {
|
|
"controlId": OSF._OfficeAppFactory.getId(),
|
|
"eventDispId": OSF.DDA.EventDispId.dispidActivationStatusChangedEvent,
|
|
"targetId": ""
|
|
});
|
|
}
|
|
else {
|
|
var reason = appContext.get_reason();
|
|
Microsoft.Office.WebExtension.initialize(reason);
|
|
}
|
|
};
|
|
if (OSF.getClientEndPoint()) {
|
|
OSF.getClientEndPoint().invoke("getActivationCompletedStatus", getActivationCompletedStatusCallback, this._webAppState.id);
|
|
}
|
|
else {
|
|
if (appContext.get_isDialog()) {
|
|
var reason = appContext.get_reason();
|
|
Microsoft.Office.WebExtension.initialize(reason);
|
|
return;
|
|
}
|
|
}
|
|
var themeHandler = new OSF.DDA.Theming.InternalThemeHandler();
|
|
themeHandler.InitializeAndChangeOnce();
|
|
var appCommandHandler = OfficeExt.AppCommand.AppCommandManager.instance();
|
|
appCommandHandler.initializeAndChangeOnce();
|
|
};
|
|
var __extends = (this && this.__extends) || (function () {
|
|
var extendStatics = function (d, b) {
|
|
extendStatics = Object.setPrototypeOf ||
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
function (d, b) { for (var p in b)
|
|
if (b.hasOwnProperty(p))
|
|
d[p] = b[p]; };
|
|
return extendStatics(d, b);
|
|
};
|
|
return function (d, b) {
|
|
extendStatics(d, b);
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
})();
|
|
var OfficeExtension;
|
|
(function (OfficeExtension) {
|
|
var _Internal;
|
|
(function (_Internal) {
|
|
_Internal.OfficeRequire = function () {
|
|
return null;
|
|
}();
|
|
})(_Internal = OfficeExtension._Internal || (OfficeExtension._Internal = {}));
|
|
(function (_Internal) {
|
|
var PromiseImpl;
|
|
(function (PromiseImpl) {
|
|
function Init() {
|
|
return (function () {
|
|
"use strict";
|
|
function lib$es6$promise$utils$$objectOrFunction(x) {
|
|
return typeof x === 'function' || (typeof x === 'object' && x !== null);
|
|
}
|
|
function lib$es6$promise$utils$$isFunction(x) {
|
|
return typeof x === 'function';
|
|
}
|
|
function lib$es6$promise$utils$$isMaybeThenable(x) {
|
|
return typeof x === 'object' && x !== null;
|
|
}
|
|
var lib$es6$promise$utils$$_isArray;
|
|
if (!Array.isArray) {
|
|
lib$es6$promise$utils$$_isArray = function (x) {
|
|
return Object.prototype.toString.call(x) === '[object Array]';
|
|
};
|
|
}
|
|
else {
|
|
lib$es6$promise$utils$$_isArray = Array.isArray;
|
|
}
|
|
var lib$es6$promise$utils$$isArray = lib$es6$promise$utils$$_isArray;
|
|
var lib$es6$promise$asap$$len = 0;
|
|
var lib$es6$promise$asap$$toString = {}.toString;
|
|
var lib$es6$promise$asap$$vertxNext;
|
|
var lib$es6$promise$asap$$customSchedulerFn;
|
|
var lib$es6$promise$asap$$asap = function asap(callback, arg) {
|
|
lib$es6$promise$asap$$queue[lib$es6$promise$asap$$len] = callback;
|
|
lib$es6$promise$asap$$queue[lib$es6$promise$asap$$len + 1] = arg;
|
|
lib$es6$promise$asap$$len += 2;
|
|
if (lib$es6$promise$asap$$len === 2) {
|
|
if (lib$es6$promise$asap$$customSchedulerFn) {
|
|
lib$es6$promise$asap$$customSchedulerFn(lib$es6$promise$asap$$flush);
|
|
}
|
|
else {
|
|
lib$es6$promise$asap$$scheduleFlush();
|
|
}
|
|
}
|
|
};
|
|
function lib$es6$promise$asap$$setScheduler(scheduleFn) {
|
|
lib$es6$promise$asap$$customSchedulerFn = scheduleFn;
|
|
}
|
|
function lib$es6$promise$asap$$setAsap(asapFn) {
|
|
lib$es6$promise$asap$$asap = asapFn;
|
|
}
|
|
var lib$es6$promise$asap$$browserWindow = (typeof window !== 'undefined') ? window : undefined;
|
|
var lib$es6$promise$asap$$browserGlobal = lib$es6$promise$asap$$browserWindow || {};
|
|
var lib$es6$promise$asap$$BrowserMutationObserver = lib$es6$promise$asap$$browserGlobal.MutationObserver || lib$es6$promise$asap$$browserGlobal.WebKitMutationObserver;
|
|
var lib$es6$promise$asap$$isNode = typeof process !== 'undefined' && {}.toString.call(process) === '[object process]';
|
|
var lib$es6$promise$asap$$isWorker = typeof Uint8ClampedArray !== 'undefined' &&
|
|
typeof importScripts !== 'undefined' &&
|
|
typeof MessageChannel !== 'undefined';
|
|
function lib$es6$promise$asap$$useNextTick() {
|
|
var nextTick = process.nextTick;
|
|
var version = process.versions.node.match(/^(?:(\d+)\.)?(?:(\d+)\.)?(\*|\d+)$/);
|
|
if (Array.isArray(version) && version[1] === '0' && version[2] === '10') {
|
|
nextTick = window.setImmediate;
|
|
}
|
|
return function () {
|
|
nextTick(lib$es6$promise$asap$$flush);
|
|
};
|
|
}
|
|
function lib$es6$promise$asap$$useVertxTimer() {
|
|
return function () {
|
|
lib$es6$promise$asap$$vertxNext(lib$es6$promise$asap$$flush);
|
|
};
|
|
}
|
|
function lib$es6$promise$asap$$useMutationObserver() {
|
|
var iterations = 0;
|
|
var observer = new lib$es6$promise$asap$$BrowserMutationObserver(lib$es6$promise$asap$$flush);
|
|
var node = document.createTextNode('');
|
|
observer.observe(node, { characterData: true });
|
|
return function () {
|
|
node.data = (iterations = ++iterations % 2);
|
|
};
|
|
}
|
|
function lib$es6$promise$asap$$useMessageChannel() {
|
|
var channel = new MessageChannel();
|
|
channel.port1.onmessage = lib$es6$promise$asap$$flush;
|
|
return function () {
|
|
channel.port2.postMessage(0);
|
|
};
|
|
}
|
|
function lib$es6$promise$asap$$useSetTimeout() {
|
|
return function () {
|
|
setTimeout(lib$es6$promise$asap$$flush, 1);
|
|
};
|
|
}
|
|
var lib$es6$promise$asap$$queue = new Array(1000);
|
|
function lib$es6$promise$asap$$flush() {
|
|
for (var i = 0; i < lib$es6$promise$asap$$len; i += 2) {
|
|
var callback = lib$es6$promise$asap$$queue[i];
|
|
var arg = lib$es6$promise$asap$$queue[i + 1];
|
|
callback(arg);
|
|
lib$es6$promise$asap$$queue[i] = undefined;
|
|
lib$es6$promise$asap$$queue[i + 1] = undefined;
|
|
}
|
|
lib$es6$promise$asap$$len = 0;
|
|
}
|
|
var lib$es6$promise$asap$$scheduleFlush;
|
|
if (lib$es6$promise$asap$$isNode) {
|
|
lib$es6$promise$asap$$scheduleFlush = lib$es6$promise$asap$$useNextTick();
|
|
}
|
|
else if (lib$es6$promise$asap$$isWorker) {
|
|
lib$es6$promise$asap$$scheduleFlush = lib$es6$promise$asap$$useMessageChannel();
|
|
}
|
|
else {
|
|
lib$es6$promise$asap$$scheduleFlush = lib$es6$promise$asap$$useSetTimeout();
|
|
}
|
|
function lib$es6$promise$$internal$$noop() { }
|
|
var lib$es6$promise$$internal$$PENDING = void 0;
|
|
var lib$es6$promise$$internal$$FULFILLED = 1;
|
|
var lib$es6$promise$$internal$$REJECTED = 2;
|
|
var lib$es6$promise$$internal$$GET_THEN_ERROR = new lib$es6$promise$$internal$$ErrorObject();
|
|
function lib$es6$promise$$internal$$selfFullfillment() {
|
|
return new TypeError("You cannot resolve a promise with itself");
|
|
}
|
|
function lib$es6$promise$$internal$$cannotReturnOwn() {
|
|
return new TypeError('A promises callback cannot return that same promise.');
|
|
}
|
|
function lib$es6$promise$$internal$$getThen(promise) {
|
|
try {
|
|
return promise.then;
|
|
}
|
|
catch (error) {
|
|
lib$es6$promise$$internal$$GET_THEN_ERROR.error = error;
|
|
return lib$es6$promise$$internal$$GET_THEN_ERROR;
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$tryThen(then, value, fulfillmentHandler, rejectionHandler) {
|
|
try {
|
|
then.call(value, fulfillmentHandler, rejectionHandler);
|
|
}
|
|
catch (e) {
|
|
return e;
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$handleForeignThenable(promise, thenable, then) {
|
|
lib$es6$promise$asap$$asap(function (promise) {
|
|
var sealed = false;
|
|
var error = lib$es6$promise$$internal$$tryThen(then, thenable, function (value) {
|
|
if (sealed) {
|
|
return;
|
|
}
|
|
sealed = true;
|
|
if (thenable !== value) {
|
|
lib$es6$promise$$internal$$resolve(promise, value);
|
|
}
|
|
else {
|
|
lib$es6$promise$$internal$$fulfill(promise, value);
|
|
}
|
|
}, function (reason) {
|
|
if (sealed) {
|
|
return;
|
|
}
|
|
sealed = true;
|
|
lib$es6$promise$$internal$$reject(promise, reason);
|
|
}, 'Settle: ' + (promise._label || ' unknown promise'));
|
|
if (!sealed && error) {
|
|
sealed = true;
|
|
lib$es6$promise$$internal$$reject(promise, error);
|
|
}
|
|
}, promise);
|
|
}
|
|
function lib$es6$promise$$internal$$handleOwnThenable(promise, thenable) {
|
|
if (thenable._state === lib$es6$promise$$internal$$FULFILLED) {
|
|
lib$es6$promise$$internal$$fulfill(promise, thenable._result);
|
|
}
|
|
else if (thenable._state === lib$es6$promise$$internal$$REJECTED) {
|
|
lib$es6$promise$$internal$$reject(promise, thenable._result);
|
|
}
|
|
else {
|
|
lib$es6$promise$$internal$$subscribe(thenable, undefined, function (value) {
|
|
lib$es6$promise$$internal$$resolve(promise, value);
|
|
}, function (reason) {
|
|
lib$es6$promise$$internal$$reject(promise, reason);
|
|
});
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$handleMaybeThenable(promise, maybeThenable) {
|
|
if (maybeThenable.constructor === promise.constructor) {
|
|
lib$es6$promise$$internal$$handleOwnThenable(promise, maybeThenable);
|
|
}
|
|
else {
|
|
var then = lib$es6$promise$$internal$$getThen(maybeThenable);
|
|
if (then === lib$es6$promise$$internal$$GET_THEN_ERROR) {
|
|
lib$es6$promise$$internal$$reject(promise, lib$es6$promise$$internal$$GET_THEN_ERROR.error);
|
|
}
|
|
else if (then === undefined) {
|
|
lib$es6$promise$$internal$$fulfill(promise, maybeThenable);
|
|
}
|
|
else if (lib$es6$promise$utils$$isFunction(then)) {
|
|
lib$es6$promise$$internal$$handleForeignThenable(promise, maybeThenable, then);
|
|
}
|
|
else {
|
|
lib$es6$promise$$internal$$fulfill(promise, maybeThenable);
|
|
}
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$resolve(promise, value) {
|
|
if (promise === value) {
|
|
lib$es6$promise$$internal$$reject(promise, lib$es6$promise$$internal$$selfFullfillment());
|
|
}
|
|
else if (lib$es6$promise$utils$$objectOrFunction(value)) {
|
|
lib$es6$promise$$internal$$handleMaybeThenable(promise, value);
|
|
}
|
|
else {
|
|
lib$es6$promise$$internal$$fulfill(promise, value);
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$publishRejection(promise) {
|
|
if (promise._onerror) {
|
|
promise._onerror(promise._result);
|
|
}
|
|
lib$es6$promise$$internal$$publish(promise);
|
|
}
|
|
function lib$es6$promise$$internal$$fulfill(promise, value) {
|
|
if (promise._state !== lib$es6$promise$$internal$$PENDING) {
|
|
return;
|
|
}
|
|
promise._result = value;
|
|
promise._state = lib$es6$promise$$internal$$FULFILLED;
|
|
if (promise._subscribers.length !== 0) {
|
|
lib$es6$promise$asap$$asap(lib$es6$promise$$internal$$publish, promise);
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$reject(promise, reason) {
|
|
if (promise._state !== lib$es6$promise$$internal$$PENDING) {
|
|
return;
|
|
}
|
|
promise._state = lib$es6$promise$$internal$$REJECTED;
|
|
promise._result = reason;
|
|
lib$es6$promise$asap$$asap(lib$es6$promise$$internal$$publishRejection, promise);
|
|
}
|
|
function lib$es6$promise$$internal$$subscribe(parent, child, onFulfillment, onRejection) {
|
|
var subscribers = parent._subscribers;
|
|
var length = subscribers.length;
|
|
parent._onerror = null;
|
|
subscribers[length] = child;
|
|
subscribers[length + lib$es6$promise$$internal$$FULFILLED] = onFulfillment;
|
|
subscribers[length + lib$es6$promise$$internal$$REJECTED] = onRejection;
|
|
if (length === 0 && parent._state) {
|
|
lib$es6$promise$asap$$asap(lib$es6$promise$$internal$$publish, parent);
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$publish(promise) {
|
|
var subscribers = promise._subscribers;
|
|
var settled = promise._state;
|
|
if (subscribers.length === 0) {
|
|
return;
|
|
}
|
|
var child, callback, detail = promise._result;
|
|
for (var i = 0; i < subscribers.length; i += 3) {
|
|
child = subscribers[i];
|
|
callback = subscribers[i + settled];
|
|
if (child) {
|
|
lib$es6$promise$$internal$$invokeCallback(settled, child, callback, detail);
|
|
}
|
|
else {
|
|
callback(detail);
|
|
}
|
|
}
|
|
promise._subscribers.length = 0;
|
|
}
|
|
function lib$es6$promise$$internal$$ErrorObject() {
|
|
this.error = null;
|
|
}
|
|
var lib$es6$promise$$internal$$TRY_CATCH_ERROR = new lib$es6$promise$$internal$$ErrorObject();
|
|
function lib$es6$promise$$internal$$tryCatch(callback, detail) {
|
|
try {
|
|
return callback(detail);
|
|
}
|
|
catch (e) {
|
|
lib$es6$promise$$internal$$TRY_CATCH_ERROR.error = e;
|
|
return lib$es6$promise$$internal$$TRY_CATCH_ERROR;
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$invokeCallback(settled, promise, callback, detail) {
|
|
var hasCallback = lib$es6$promise$utils$$isFunction(callback), value, error, succeeded, failed;
|
|
if (hasCallback) {
|
|
value = lib$es6$promise$$internal$$tryCatch(callback, detail);
|
|
if (value === lib$es6$promise$$internal$$TRY_CATCH_ERROR) {
|
|
failed = true;
|
|
error = value.error;
|
|
value = null;
|
|
}
|
|
else {
|
|
succeeded = true;
|
|
}
|
|
if (promise === value) {
|
|
lib$es6$promise$$internal$$reject(promise, lib$es6$promise$$internal$$cannotReturnOwn());
|
|
return;
|
|
}
|
|
}
|
|
else {
|
|
value = detail;
|
|
succeeded = true;
|
|
}
|
|
if (promise._state !== lib$es6$promise$$internal$$PENDING) {
|
|
}
|
|
else if (hasCallback && succeeded) {
|
|
lib$es6$promise$$internal$$resolve(promise, value);
|
|
}
|
|
else if (failed) {
|
|
lib$es6$promise$$internal$$reject(promise, error);
|
|
}
|
|
else if (settled === lib$es6$promise$$internal$$FULFILLED) {
|
|
lib$es6$promise$$internal$$fulfill(promise, value);
|
|
}
|
|
else if (settled === lib$es6$promise$$internal$$REJECTED) {
|
|
lib$es6$promise$$internal$$reject(promise, value);
|
|
}
|
|
}
|
|
function lib$es6$promise$$internal$$initializePromise(promise, resolver) {
|
|
try {
|
|
resolver(function resolvePromise(value) {
|
|
lib$es6$promise$$internal$$resolve(promise, value);
|
|
}, function rejectPromise(reason) {
|
|
lib$es6$promise$$internal$$reject(promise, reason);
|
|
});
|
|
}
|
|
catch (e) {
|
|
lib$es6$promise$$internal$$reject(promise, e);
|
|
}
|
|
}
|
|
function lib$es6$promise$enumerator$$Enumerator(Constructor, input) {
|
|
var enumerator = this;
|
|
enumerator._instanceConstructor = Constructor;
|
|
enumerator.promise = new Constructor(lib$es6$promise$$internal$$noop);
|
|
if (enumerator._validateInput(input)) {
|
|
enumerator._input = input;
|
|
enumerator.length = input.length;
|
|
enumerator._remaining = input.length;
|
|
enumerator._init();
|
|
if (enumerator.length === 0) {
|
|
lib$es6$promise$$internal$$fulfill(enumerator.promise, enumerator._result);
|
|
}
|
|
else {
|
|
enumerator.length = enumerator.length || 0;
|
|
enumerator._enumerate();
|
|
if (enumerator._remaining === 0) {
|
|
lib$es6$promise$$internal$$fulfill(enumerator.promise, enumerator._result);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
lib$es6$promise$$internal$$reject(enumerator.promise, enumerator._validationError());
|
|
}
|
|
}
|
|
lib$es6$promise$enumerator$$Enumerator.prototype._validateInput = function (input) {
|
|
return lib$es6$promise$utils$$isArray(input);
|
|
};
|
|
lib$es6$promise$enumerator$$Enumerator.prototype._validationError = function () {
|
|
return new _Internal.Error('Array Methods must be provided an Array');
|
|
};
|
|
lib$es6$promise$enumerator$$Enumerator.prototype._init = function () {
|
|
this._result = new Array(this.length);
|
|
};
|
|
var lib$es6$promise$enumerator$$default = lib$es6$promise$enumerator$$Enumerator;
|
|
lib$es6$promise$enumerator$$Enumerator.prototype._enumerate = function () {
|
|
var enumerator = this;
|
|
var length = enumerator.length;
|
|
var promise = enumerator.promise;
|
|
var input = enumerator._input;
|
|
for (var i = 0; promise._state === lib$es6$promise$$internal$$PENDING && i < length; i++) {
|
|
enumerator._eachEntry(input[i], i);
|
|
}
|
|
};
|
|
lib$es6$promise$enumerator$$Enumerator.prototype._eachEntry = function (entry, i) {
|
|
var enumerator = this;
|
|
var c = enumerator._instanceConstructor;
|
|
if (lib$es6$promise$utils$$isMaybeThenable(entry)) {
|
|
if (entry.constructor === c && entry._state !== lib$es6$promise$$internal$$PENDING) {
|
|
entry._onerror = null;
|
|
enumerator._settledAt(entry._state, i, entry._result);
|
|
}
|
|
else {
|
|
enumerator._willSettleAt(c.resolve(entry), i);
|
|
}
|
|
}
|
|
else {
|
|
enumerator._remaining--;
|
|
enumerator._result[i] = entry;
|
|
}
|
|
};
|
|
lib$es6$promise$enumerator$$Enumerator.prototype._settledAt = function (state, i, value) {
|
|
var enumerator = this;
|
|
var promise = enumerator.promise;
|
|
if (promise._state === lib$es6$promise$$internal$$PENDING) {
|
|
enumerator._remaining--;
|
|
if (state === lib$es6$promise$$internal$$REJECTED) {
|
|
lib$es6$promise$$internal$$reject(promise, value);
|
|
}
|
|
else {
|
|
enumerator._result[i] = value;
|
|
}
|
|
}
|
|
if (enumerator._remaining === 0) {
|
|
lib$es6$promise$$internal$$fulfill(promise, enumerator._result);
|
|
}
|
|
};
|
|
lib$es6$promise$enumerator$$Enumerator.prototype._willSettleAt = function (promise, i) {
|
|
var enumerator = this;
|
|
lib$es6$promise$$internal$$subscribe(promise, undefined, function (value) {
|
|
enumerator._settledAt(lib$es6$promise$$internal$$FULFILLED, i, value);
|
|
}, function (reason) {
|
|
enumerator._settledAt(lib$es6$promise$$internal$$REJECTED, i, reason);
|
|
});
|
|
};
|
|
function lib$es6$promise$promise$all$$all(entries) {
|
|
return new lib$es6$promise$enumerator$$default(this, entries).promise;
|
|
}
|
|
var lib$es6$promise$promise$all$$default = lib$es6$promise$promise$all$$all;
|
|
function lib$es6$promise$promise$race$$race(entries) {
|
|
var Constructor = this;
|
|
var promise = new Constructor(lib$es6$promise$$internal$$noop);
|
|
if (!lib$es6$promise$utils$$isArray(entries)) {
|
|
lib$es6$promise$$internal$$reject(promise, new TypeError('You must pass an array to race.'));
|
|
return promise;
|
|
}
|
|
var length = entries.length;
|
|
function onFulfillment(value) {
|
|
lib$es6$promise$$internal$$resolve(promise, value);
|
|
}
|
|
function onRejection(reason) {
|
|
lib$es6$promise$$internal$$reject(promise, reason);
|
|
}
|
|
for (var i = 0; promise._state === lib$es6$promise$$internal$$PENDING && i < length; i++) {
|
|
lib$es6$promise$$internal$$subscribe(Constructor.resolve(entries[i]), undefined, onFulfillment, onRejection);
|
|
}
|
|
return promise;
|
|
}
|
|
var lib$es6$promise$promise$race$$default = lib$es6$promise$promise$race$$race;
|
|
function lib$es6$promise$promise$resolve$$resolve(object) {
|
|
var Constructor = this;
|
|
if (object && typeof object === 'object' && object.constructor === Constructor) {
|
|
return object;
|
|
}
|
|
var promise = new Constructor(lib$es6$promise$$internal$$noop);
|
|
lib$es6$promise$$internal$$resolve(promise, object);
|
|
return promise;
|
|
}
|
|
var lib$es6$promise$promise$resolve$$default = lib$es6$promise$promise$resolve$$resolve;
|
|
function lib$es6$promise$promise$reject$$reject(reason) {
|
|
var Constructor = this;
|
|
var promise = new Constructor(lib$es6$promise$$internal$$noop);
|
|
lib$es6$promise$$internal$$reject(promise, reason);
|
|
return promise;
|
|
}
|
|
var lib$es6$promise$promise$reject$$default = lib$es6$promise$promise$reject$$reject;
|
|
var lib$es6$promise$promise$$counter = 0;
|
|
function lib$es6$promise$promise$$needsResolver() {
|
|
throw new TypeError('You must pass a resolver function as the first argument to the promise constructor');
|
|
}
|
|
function lib$es6$promise$promise$$needsNew() {
|
|
throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.");
|
|
}
|
|
var lib$es6$promise$promise$$default = lib$es6$promise$promise$$Promise;
|
|
function lib$es6$promise$promise$$Promise(resolver) {
|
|
this._id = lib$es6$promise$promise$$counter++;
|
|
this._state = undefined;
|
|
this._result = undefined;
|
|
this._subscribers = [];
|
|
if (lib$es6$promise$$internal$$noop !== resolver) {
|
|
if (!lib$es6$promise$utils$$isFunction(resolver)) {
|
|
lib$es6$promise$promise$$needsResolver();
|
|
}
|
|
if (!(this instanceof lib$es6$promise$promise$$Promise)) {
|
|
lib$es6$promise$promise$$needsNew();
|
|
}
|
|
lib$es6$promise$$internal$$initializePromise(this, resolver);
|
|
}
|
|
}
|
|
lib$es6$promise$promise$$Promise.all = lib$es6$promise$promise$all$$default;
|
|
lib$es6$promise$promise$$Promise.race = lib$es6$promise$promise$race$$default;
|
|
lib$es6$promise$promise$$Promise.resolve = lib$es6$promise$promise$resolve$$default;
|
|
lib$es6$promise$promise$$Promise.reject = lib$es6$promise$promise$reject$$default;
|
|
lib$es6$promise$promise$$Promise._setScheduler = lib$es6$promise$asap$$setScheduler;
|
|
lib$es6$promise$promise$$Promise._setAsap = lib$es6$promise$asap$$setAsap;
|
|
lib$es6$promise$promise$$Promise._asap = lib$es6$promise$asap$$asap;
|
|
lib$es6$promise$promise$$Promise.prototype = {
|
|
constructor: lib$es6$promise$promise$$Promise,
|
|
then: function (onFulfillment, onRejection) {
|
|
var parent = this;
|
|
var state = parent._state;
|
|
if (state === lib$es6$promise$$internal$$FULFILLED && !onFulfillment || state === lib$es6$promise$$internal$$REJECTED && !onRejection) {
|
|
return this;
|
|
}
|
|
var child = new this.constructor(lib$es6$promise$$internal$$noop);
|
|
var result = parent._result;
|
|
if (state) {
|
|
var callback = arguments[state - 1];
|
|
lib$es6$promise$asap$$asap(function () {
|
|
lib$es6$promise$$internal$$invokeCallback(state, child, callback, result);
|
|
});
|
|
}
|
|
else {
|
|
lib$es6$promise$$internal$$subscribe(parent, child, onFulfillment, onRejection);
|
|
}
|
|
return child;
|
|
},
|
|
'catch': function (onRejection) {
|
|
return this.then(null, onRejection);
|
|
}
|
|
};
|
|
return lib$es6$promise$promise$$default;
|
|
}).call(this);
|
|
}
|
|
PromiseImpl.Init = Init;
|
|
})(PromiseImpl = _Internal.PromiseImpl || (_Internal.PromiseImpl = {}));
|
|
})(_Internal = OfficeExtension._Internal || (OfficeExtension._Internal = {}));
|
|
(function (_Internal) {
|
|
function isEdgeLessThan14() {
|
|
var userAgent = window.navigator.userAgent;
|
|
var versionIdx = userAgent.indexOf("Edge/");
|
|
if (versionIdx >= 0) {
|
|
userAgent = userAgent.substring(versionIdx + 5, userAgent.length);
|
|
if (userAgent < "14.14393")
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
return false;
|
|
}
|
|
function determinePromise() {
|
|
if (typeof (window) === "undefined" && typeof (Promise) === "function") {
|
|
return Promise;
|
|
}
|
|
if (typeof (window) !== "undefined" && window.Promise) {
|
|
if (isEdgeLessThan14()) {
|
|
return _Internal.PromiseImpl.Init();
|
|
}
|
|
else {
|
|
return window.Promise;
|
|
}
|
|
}
|
|
else {
|
|
return _Internal.PromiseImpl.Init();
|
|
}
|
|
}
|
|
_Internal.OfficePromise = determinePromise();
|
|
})(_Internal = OfficeExtension._Internal || (OfficeExtension._Internal = {}));
|
|
var OfficePromise = _Internal.OfficePromise;
|
|
OfficeExtension.Promise = OfficePromise;
|
|
})(OfficeExtension || (OfficeExtension = {}));
|
|
var OfficeExtension;
|
|
(function (OfficeExtension_1) {
|
|
var SessionBase = (function () {
|
|
function SessionBase() {
|
|
}
|
|
SessionBase.prototype._resolveRequestUrlAndHeaderInfo = function () {
|
|
return CoreUtility._createPromiseFromResult(null);
|
|
};
|
|
SessionBase.prototype._createRequestExecutorOrNull = function () {
|
|
return null;
|
|
};
|
|
Object.defineProperty(SessionBase.prototype, "eventRegistration", {
|
|
get: function () {
|
|
return null;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
return SessionBase;
|
|
}());
|
|
OfficeExtension_1.SessionBase = SessionBase;
|
|
var HttpUtility = (function () {
|
|
function HttpUtility() {
|
|
}
|
|
HttpUtility.setCustomSendRequestFunc = function (func) {
|
|
HttpUtility.s_customSendRequestFunc = func;
|
|
};
|
|
HttpUtility.xhrSendRequestFunc = function (request) {
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open(request.method, request.url);
|
|
xhr.onload = function () {
|
|
var resp = {
|
|
statusCode: xhr.status,
|
|
headers: CoreUtility._parseHttpResponseHeaders(xhr.getAllResponseHeaders()),
|
|
body: xhr.responseText
|
|
};
|
|
resolve(resp);
|
|
};
|
|
xhr.onerror = function () {
|
|
reject(new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.connectionFailure,
|
|
httpStatusCode: xhr.status,
|
|
message: CoreUtility._getResourceString(CoreResourceStrings.connectionFailureWithStatus, xhr.statusText)
|
|
}));
|
|
};
|
|
if (request.headers) {
|
|
for (var key in request.headers) {
|
|
xhr.setRequestHeader(key, request.headers[key]);
|
|
}
|
|
}
|
|
xhr.send(CoreUtility._getRequestBodyText(request));
|
|
});
|
|
};
|
|
HttpUtility.fetchSendRequestFunc = function (request) {
|
|
var requestBodyText = CoreUtility._getRequestBodyText(request);
|
|
if (requestBodyText === '') {
|
|
requestBodyText = undefined;
|
|
}
|
|
return fetch(request.url, {
|
|
method: request.method,
|
|
headers: request.headers,
|
|
body: requestBodyText
|
|
})
|
|
.then(function (resp) {
|
|
return resp.text()
|
|
.then(function (body) {
|
|
var statusCode = resp.status;
|
|
var headers = {};
|
|
resp.headers.forEach(function (value, name) {
|
|
headers[name] = value;
|
|
});
|
|
var ret = { statusCode: statusCode, headers: headers, body: body };
|
|
return ret;
|
|
});
|
|
});
|
|
};
|
|
HttpUtility.sendRequest = function (request) {
|
|
HttpUtility.validateAndNormalizeRequest(request);
|
|
var func = HttpUtility.s_customSendRequestFunc;
|
|
if (!func) {
|
|
if (typeof (fetch) !== 'undefined') {
|
|
func = HttpUtility.fetchSendRequestFunc;
|
|
}
|
|
else {
|
|
func = HttpUtility.xhrSendRequestFunc;
|
|
}
|
|
}
|
|
return func(request);
|
|
};
|
|
HttpUtility.setCustomSendLocalDocumentRequestFunc = function (func) {
|
|
HttpUtility.s_customSendLocalDocumentRequestFunc = func;
|
|
};
|
|
HttpUtility.sendLocalDocumentRequest = function (request) {
|
|
HttpUtility.validateAndNormalizeRequest(request);
|
|
var func;
|
|
func = HttpUtility.s_customSendLocalDocumentRequestFunc || HttpUtility.officeJsSendLocalDocumentRequestFunc;
|
|
return func(request);
|
|
};
|
|
HttpUtility.officeJsSendLocalDocumentRequestFunc = function (request) {
|
|
request = CoreUtility._validateLocalDocumentRequest(request);
|
|
var requestSafeArray = CoreUtility._buildRequestMessageSafeArray(request);
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
OSF.DDA.RichApi.executeRichApiRequestAsync(requestSafeArray, function (asyncResult) {
|
|
var response;
|
|
if (asyncResult.status == 'succeeded') {
|
|
response = {
|
|
statusCode: RichApiMessageUtility.getResponseStatusCode(asyncResult),
|
|
headers: RichApiMessageUtility.getResponseHeaders(asyncResult),
|
|
body: RichApiMessageUtility.getResponseBody(asyncResult)
|
|
};
|
|
}
|
|
else {
|
|
response = RichApiMessageUtility.buildHttpResponseFromOfficeJsError(asyncResult.error.code, asyncResult.error.message);
|
|
}
|
|
CoreUtility.log('Response:');
|
|
CoreUtility.log(JSON.stringify(response));
|
|
resolve(response);
|
|
});
|
|
});
|
|
};
|
|
HttpUtility.validateAndNormalizeRequest = function (request) {
|
|
if (CoreUtility.isNullOrUndefined(request)) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({
|
|
argumentName: 'request'
|
|
});
|
|
}
|
|
if (CoreUtility.isNullOrEmptyString(request.method)) {
|
|
request.method = 'GET';
|
|
}
|
|
request.method = request.method.toUpperCase();
|
|
};
|
|
HttpUtility.logRequest = function (request) {
|
|
if (CoreUtility._logEnabled) {
|
|
CoreUtility.log('---HTTP Request---');
|
|
CoreUtility.log(request.method + ' ' + request.url);
|
|
if (request.headers) {
|
|
for (var key in request.headers) {
|
|
CoreUtility.log(key + ': ' + request.headers[key]);
|
|
}
|
|
}
|
|
if (HttpUtility._logBodyEnabled) {
|
|
CoreUtility.log(CoreUtility._getRequestBodyText(request));
|
|
}
|
|
}
|
|
};
|
|
HttpUtility.logResponse = function (response) {
|
|
if (CoreUtility._logEnabled) {
|
|
CoreUtility.log('---HTTP Response---');
|
|
CoreUtility.log('' + response.statusCode);
|
|
if (response.headers) {
|
|
for (var key in response.headers) {
|
|
CoreUtility.log(key + ': ' + response.headers[key]);
|
|
}
|
|
}
|
|
if (HttpUtility._logBodyEnabled) {
|
|
CoreUtility.log(response.body);
|
|
}
|
|
}
|
|
};
|
|
HttpUtility._logBodyEnabled = false;
|
|
return HttpUtility;
|
|
}());
|
|
OfficeExtension_1.HttpUtility = HttpUtility;
|
|
var HostBridge = (function () {
|
|
function HostBridge(m_bridge) {
|
|
var _this = this;
|
|
this.m_bridge = m_bridge;
|
|
this.m_promiseResolver = {};
|
|
this.m_handlers = [];
|
|
this.m_bridge.onMessageFromHost = function (messageText) {
|
|
var message = JSON.parse(messageText);
|
|
if (message.type == 3) {
|
|
var genericMessageBody = message.message;
|
|
if (genericMessageBody && genericMessageBody.entries) {
|
|
for (var i = 0; i < genericMessageBody.entries.length; i++) {
|
|
var entryObjectOrArray = genericMessageBody.entries[i];
|
|
if (Array.isArray(entryObjectOrArray)) {
|
|
var entry = {
|
|
messageCategory: entryObjectOrArray[0],
|
|
messageType: entryObjectOrArray[1],
|
|
targetId: entryObjectOrArray[2],
|
|
message: entryObjectOrArray[3],
|
|
id: entryObjectOrArray[4]
|
|
};
|
|
genericMessageBody.entries[i] = entry;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
_this.dispatchMessage(message);
|
|
};
|
|
}
|
|
HostBridge.init = function (bridge) {
|
|
if (typeof bridge !== 'object' || !bridge) {
|
|
return;
|
|
}
|
|
var instance = new HostBridge(bridge);
|
|
HostBridge.s_instance = instance;
|
|
HttpUtility.setCustomSendLocalDocumentRequestFunc(function (request) {
|
|
request = CoreUtility._validateLocalDocumentRequest(request);
|
|
var requestFlags = 0;
|
|
if (!CoreUtility.isReadonlyRestRequest(request.method)) {
|
|
requestFlags = 1;
|
|
}
|
|
var index = request.url.indexOf('?');
|
|
if (index >= 0) {
|
|
var query = request.url.substr(index + 1);
|
|
var flagsAndCustomData = CoreUtility._parseRequestFlagsAndCustomDataFromQueryStringIfAny(query);
|
|
if (flagsAndCustomData.flags >= 0) {
|
|
requestFlags = flagsAndCustomData.flags;
|
|
}
|
|
}
|
|
if (typeof (request.body) === "string") {
|
|
request.body = JSON.parse(request.body);
|
|
}
|
|
var bridgeMessage = {
|
|
id: HostBridge.nextId(),
|
|
type: 1,
|
|
flags: requestFlags,
|
|
message: request
|
|
};
|
|
return instance.sendMessageToHostAndExpectResponse(bridgeMessage).then(function (bridgeResponse) {
|
|
var responseInfo = bridgeResponse.message;
|
|
return responseInfo;
|
|
});
|
|
});
|
|
for (var i = 0; i < HostBridge.s_onInitedHandlers.length; i++) {
|
|
HostBridge.s_onInitedHandlers[i](instance);
|
|
}
|
|
};
|
|
Object.defineProperty(HostBridge, "instance", {
|
|
get: function () {
|
|
return HostBridge.s_instance;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
HostBridge.prototype.sendMessageToHost = function (message) {
|
|
this.m_bridge.sendMessageToHost(JSON.stringify(message));
|
|
};
|
|
HostBridge.prototype.sendMessageToHostAndExpectResponse = function (message) {
|
|
var _this = this;
|
|
var ret = CoreUtility.createPromise(function (resolve, reject) {
|
|
_this.m_promiseResolver[message.id] = resolve;
|
|
});
|
|
this.m_bridge.sendMessageToHost(JSON.stringify(message));
|
|
return ret;
|
|
};
|
|
HostBridge.prototype.addHostMessageHandler = function (handler) {
|
|
this.m_handlers.push(handler);
|
|
};
|
|
HostBridge.prototype.removeHostMessageHandler = function (handler) {
|
|
var index = this.m_handlers.indexOf(handler);
|
|
if (index >= 0) {
|
|
this.m_handlers.splice(index, 1);
|
|
}
|
|
};
|
|
HostBridge.onInited = function (handler) {
|
|
HostBridge.s_onInitedHandlers.push(handler);
|
|
if (HostBridge.s_instance) {
|
|
handler(HostBridge.s_instance);
|
|
}
|
|
};
|
|
HostBridge.prototype.dispatchMessage = function (message) {
|
|
if (typeof message.id === 'number') {
|
|
var resolve = this.m_promiseResolver[message.id];
|
|
if (resolve) {
|
|
resolve(message);
|
|
delete this.m_promiseResolver[message.id];
|
|
return;
|
|
}
|
|
}
|
|
for (var i = 0; i < this.m_handlers.length; i++) {
|
|
this.m_handlers[i](message);
|
|
}
|
|
};
|
|
HostBridge.nextId = function () {
|
|
return HostBridge.s_nextId++;
|
|
};
|
|
HostBridge.s_onInitedHandlers = [];
|
|
HostBridge.s_nextId = 1;
|
|
return HostBridge;
|
|
}());
|
|
OfficeExtension_1.HostBridge = HostBridge;
|
|
if (typeof _richApiNativeBridge === 'object' && _richApiNativeBridge) {
|
|
HostBridge.init(_richApiNativeBridge);
|
|
}
|
|
var _Internal;
|
|
(function (_Internal) {
|
|
var RuntimeError = (function (_super) {
|
|
__extends(RuntimeError, _super);
|
|
function RuntimeError(error) {
|
|
var _this = _super.call(this, typeof error === 'string' ? error : error.message) || this;
|
|
Object.setPrototypeOf(_this, RuntimeError.prototype);
|
|
_this.name = 'RichApi.Error';
|
|
if (typeof error === 'string') {
|
|
_this.message = error;
|
|
}
|
|
else {
|
|
_this.code = error.code;
|
|
_this.message = error.message;
|
|
_this.traceMessages = error.traceMessages || [];
|
|
_this.innerError = error.innerError || null;
|
|
_this.debugInfo = _this._createDebugInfo(error.debugInfo || {});
|
|
_this.httpStatusCode = error.httpStatusCode;
|
|
_this.data = error.data;
|
|
}
|
|
if (CoreUtility.isNullOrUndefined(_this.httpStatusCode) || _this.httpStatusCode === 200) {
|
|
var mapping = {};
|
|
mapping[CoreErrorCodes.accessDenied] = 401;
|
|
mapping[CoreErrorCodes.connectionFailure] = 500;
|
|
mapping[CoreErrorCodes.generalException] = 500;
|
|
mapping[CoreErrorCodes.invalidArgument] = 400;
|
|
mapping[CoreErrorCodes.invalidObjectPath] = 400;
|
|
mapping[CoreErrorCodes.invalidOrTimedOutSession] = 408;
|
|
mapping[CoreErrorCodes.invalidRequestContext] = 400;
|
|
mapping[CoreErrorCodes.timeout] = 408;
|
|
mapping[CoreErrorCodes.valueNotLoaded] = 400;
|
|
_this.httpStatusCode = mapping[_this.code];
|
|
}
|
|
if (CoreUtility.isNullOrUndefined(_this.httpStatusCode)) {
|
|
_this.httpStatusCode = 500;
|
|
}
|
|
return _this;
|
|
}
|
|
RuntimeError.prototype.toString = function () {
|
|
return this.code + ': ' + this.message;
|
|
};
|
|
RuntimeError.prototype._createDebugInfo = function (partialDebugInfo) {
|
|
var debugInfo = {
|
|
code: this.code,
|
|
message: this.message
|
|
};
|
|
debugInfo.toString = function () {
|
|
return JSON.stringify(this);
|
|
};
|
|
for (var key in partialDebugInfo) {
|
|
debugInfo[key] = partialDebugInfo[key];
|
|
}
|
|
if (this.innerError) {
|
|
if (this.innerError instanceof _Internal.RuntimeError) {
|
|
debugInfo.innerError = this.innerError.debugInfo;
|
|
}
|
|
else {
|
|
debugInfo.innerError = this.innerError;
|
|
}
|
|
}
|
|
return debugInfo;
|
|
};
|
|
RuntimeError._createInvalidArgError = function (error) {
|
|
return new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidArgument,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility.isNullOrEmptyString(error.argumentName)
|
|
? CoreUtility._getResourceString(CoreResourceStrings.invalidArgumentGeneric)
|
|
: CoreUtility._getResourceString(CoreResourceStrings.invalidArgument, error.argumentName),
|
|
debugInfo: error.errorLocation ? { errorLocation: error.errorLocation } : {},
|
|
innerError: error.innerError
|
|
});
|
|
};
|
|
return RuntimeError;
|
|
}(Error));
|
|
_Internal.RuntimeError = RuntimeError;
|
|
})(_Internal = OfficeExtension_1._Internal || (OfficeExtension_1._Internal = {}));
|
|
OfficeExtension_1.Error = _Internal.RuntimeError;
|
|
var CoreErrorCodes = (function () {
|
|
function CoreErrorCodes() {
|
|
}
|
|
CoreErrorCodes.apiNotFound = 'ApiNotFound';
|
|
CoreErrorCodes.accessDenied = 'AccessDenied';
|
|
CoreErrorCodes.generalException = 'GeneralException';
|
|
CoreErrorCodes.activityLimitReached = 'ActivityLimitReached';
|
|
CoreErrorCodes.invalidArgument = 'InvalidArgument';
|
|
CoreErrorCodes.connectionFailure = 'ConnectionFailure';
|
|
CoreErrorCodes.timeout = 'Timeout';
|
|
CoreErrorCodes.invalidOrTimedOutSession = 'InvalidOrTimedOutSession';
|
|
CoreErrorCodes.invalidObjectPath = 'InvalidObjectPath';
|
|
CoreErrorCodes.invalidRequestContext = 'InvalidRequestContext';
|
|
CoreErrorCodes.valueNotLoaded = 'ValueNotLoaded';
|
|
CoreErrorCodes.requestPayloadSizeLimitExceeded = 'RequestPayloadSizeLimitExceeded';
|
|
CoreErrorCodes.responsePayloadSizeLimitExceeded = 'ResponsePayloadSizeLimitExceeded';
|
|
CoreErrorCodes.writeNotSupportedWhenModalDialogOpen = 'WriteNotSupportedWhenModalDialogOpen';
|
|
return CoreErrorCodes;
|
|
}());
|
|
OfficeExtension_1.CoreErrorCodes = CoreErrorCodes;
|
|
var CoreResourceStrings = (function () {
|
|
function CoreResourceStrings() {
|
|
}
|
|
CoreResourceStrings.apiNotFoundDetails = 'ApiNotFoundDetails';
|
|
CoreResourceStrings.connectionFailureWithStatus = 'ConnectionFailureWithStatus';
|
|
CoreResourceStrings.connectionFailureWithDetails = 'ConnectionFailureWithDetails';
|
|
CoreResourceStrings.invalidArgument = 'InvalidArgument';
|
|
CoreResourceStrings.invalidArgumentGeneric = 'InvalidArgumentGeneric';
|
|
CoreResourceStrings.timeout = 'Timeout';
|
|
CoreResourceStrings.invalidOrTimedOutSessionMessage = 'InvalidOrTimedOutSessionMessage';
|
|
CoreResourceStrings.invalidSheetName = 'InvalidSheetName';
|
|
CoreResourceStrings.invalidObjectPath = 'InvalidObjectPath';
|
|
CoreResourceStrings.invalidRequestContext = 'InvalidRequestContext';
|
|
CoreResourceStrings.valueNotLoaded = 'ValueNotLoaded';
|
|
return CoreResourceStrings;
|
|
}());
|
|
OfficeExtension_1.CoreResourceStrings = CoreResourceStrings;
|
|
var CoreConstants = (function () {
|
|
function CoreConstants() {
|
|
}
|
|
CoreConstants.flags = 'flags';
|
|
CoreConstants.sourceLibHeader = 'SdkVersion';
|
|
CoreConstants.processQuery = 'ProcessQuery';
|
|
CoreConstants.localDocument = 'http://document.localhost/';
|
|
CoreConstants.localDocumentApiPrefix = 'http://document.localhost/_api/';
|
|
CoreConstants.customData = 'customdata';
|
|
return CoreConstants;
|
|
}());
|
|
OfficeExtension_1.CoreConstants = CoreConstants;
|
|
var RichApiMessageUtility = (function () {
|
|
function RichApiMessageUtility() {
|
|
}
|
|
RichApiMessageUtility.buildMessageArrayForIRequestExecutor = function (customData, requestFlags, requestMessage, sourceLibHeaderValue) {
|
|
var requestMessageText = JSON.stringify(requestMessage.Body);
|
|
CoreUtility.log('Request:');
|
|
CoreUtility.log(requestMessageText);
|
|
var headers = {};
|
|
CoreUtility._copyHeaders(requestMessage.Headers, headers);
|
|
headers[CoreConstants.sourceLibHeader] = sourceLibHeaderValue;
|
|
var messageSafearray = RichApiMessageUtility.buildRequestMessageSafeArray(customData, requestFlags, 'POST', CoreConstants.processQuery, headers, requestMessageText);
|
|
return messageSafearray;
|
|
};
|
|
RichApiMessageUtility.buildResponseOnSuccess = function (responseBody, responseHeaders) {
|
|
var response = { HttpStatusCode: 200, ErrorCode: '', ErrorMessage: '', Headers: null, Body: null };
|
|
response.Body = JSON.parse(responseBody);
|
|
response.Headers = responseHeaders;
|
|
return response;
|
|
};
|
|
RichApiMessageUtility.buildResponseOnError = function (errorCode, message) {
|
|
var response = { HttpStatusCode: 500, ErrorCode: '', ErrorMessage: '', Headers: null, Body: null };
|
|
response.ErrorCode = CoreErrorCodes.generalException;
|
|
response.ErrorMessage = message;
|
|
if (errorCode == RichApiMessageUtility.OfficeJsErrorCode_ooeNoCapability) {
|
|
response.ErrorCode = CoreErrorCodes.accessDenied;
|
|
response.HttpStatusCode = 401;
|
|
}
|
|
else if (errorCode == RichApiMessageUtility.OfficeJsErrorCode_ooeActivityLimitReached) {
|
|
response.ErrorCode = CoreErrorCodes.activityLimitReached;
|
|
response.HttpStatusCode = 429;
|
|
}
|
|
else if (errorCode == RichApiMessageUtility.OfficeJsErrorCode_ooeInvalidOrTimedOutSession) {
|
|
response.ErrorCode = CoreErrorCodes.invalidOrTimedOutSession;
|
|
response.HttpStatusCode = 408;
|
|
response.ErrorMessage = CoreUtility._getResourceString(CoreResourceStrings.invalidOrTimedOutSessionMessage);
|
|
}
|
|
else if (errorCode == RichApiMessageUtility.OfficeJsErrorCode_ooeRequestPayloadSizeLimitExceeded) {
|
|
response.ErrorCode = CoreErrorCodes.requestPayloadSizeLimitExceeded;
|
|
response.HttpStatusCode = 400;
|
|
}
|
|
else if (errorCode == RichApiMessageUtility.OfficeJsErrorCode_ooeResponsePayloadSizeLimitExceeded) {
|
|
response.ErrorCode = CoreErrorCodes.responsePayloadSizeLimitExceeded;
|
|
response.HttpStatusCode = 400;
|
|
}
|
|
else if (errorCode == RichApiMessageUtility.OfficeJsErrorCode_ooeWriteNotSupportedWhenModalDialogOpen) {
|
|
response.ErrorCode = CoreErrorCodes.writeNotSupportedWhenModalDialogOpen;
|
|
response.HttpStatusCode = 400;
|
|
}
|
|
else if (errorCode == RichApiMessageUtility.OfficeJsErrorCode_ooeInvalidSheetName) {
|
|
response.ErrorCode = CoreErrorCodes.invalidRequestContext;
|
|
response.HttpStatusCode = 400;
|
|
response.ErrorMessage = CoreUtility._getResourceString(CoreResourceStrings.invalidSheetName);
|
|
}
|
|
return response;
|
|
};
|
|
RichApiMessageUtility.buildHttpResponseFromOfficeJsError = function (errorCode, message) {
|
|
var statusCode = 500;
|
|
var errorBody = {};
|
|
errorBody['error'] = {};
|
|
errorBody['error']['code'] = CoreErrorCodes.generalException;
|
|
errorBody['error']['message'] = message;
|
|
if (errorCode === RichApiMessageUtility.OfficeJsErrorCode_ooeNoCapability) {
|
|
statusCode = 403;
|
|
errorBody['error']['code'] = CoreErrorCodes.accessDenied;
|
|
}
|
|
else if (errorCode === RichApiMessageUtility.OfficeJsErrorCode_ooeActivityLimitReached) {
|
|
statusCode = 429;
|
|
errorBody['error']['code'] = CoreErrorCodes.activityLimitReached;
|
|
}
|
|
return { statusCode: statusCode, headers: {}, body: JSON.stringify(errorBody) };
|
|
};
|
|
RichApiMessageUtility.buildRequestMessageSafeArray = function (customData, requestFlags, method, path, headers, body) {
|
|
var headerArray = [];
|
|
if (headers) {
|
|
for (var headerName in headers) {
|
|
headerArray.push(headerName);
|
|
headerArray.push(headers[headerName]);
|
|
}
|
|
}
|
|
var appPermission = 0;
|
|
var solutionId = '';
|
|
var instanceId = '';
|
|
var marketplaceType = '';
|
|
var solutionVersion = '';
|
|
var storeLocation = '';
|
|
var compliantSolutionId = '';
|
|
return [
|
|
customData,
|
|
method,
|
|
path,
|
|
headerArray,
|
|
body,
|
|
appPermission,
|
|
requestFlags,
|
|
solutionId,
|
|
instanceId,
|
|
marketplaceType,
|
|
solutionVersion,
|
|
storeLocation,
|
|
compliantSolutionId
|
|
];
|
|
};
|
|
RichApiMessageUtility.getResponseBody = function (result) {
|
|
return RichApiMessageUtility.getResponseBodyFromSafeArray(result.value.data);
|
|
};
|
|
RichApiMessageUtility.getResponseHeaders = function (result) {
|
|
return RichApiMessageUtility.getResponseHeadersFromSafeArray(result.value.data);
|
|
};
|
|
RichApiMessageUtility.getResponseBodyFromSafeArray = function (data) {
|
|
var ret = data[2];
|
|
if (typeof ret === 'string') {
|
|
return ret;
|
|
}
|
|
var arr = ret;
|
|
return arr.join('');
|
|
};
|
|
RichApiMessageUtility.getResponseHeadersFromSafeArray = function (data) {
|
|
var arrayHeader = data[1];
|
|
if (!arrayHeader) {
|
|
return null;
|
|
}
|
|
var headers = {};
|
|
for (var i = 0; i < arrayHeader.length - 1; i += 2) {
|
|
headers[arrayHeader[i]] = arrayHeader[i + 1];
|
|
}
|
|
return headers;
|
|
};
|
|
RichApiMessageUtility.getResponseStatusCode = function (result) {
|
|
return RichApiMessageUtility.getResponseStatusCodeFromSafeArray(result.value.data);
|
|
};
|
|
RichApiMessageUtility.getResponseStatusCodeFromSafeArray = function (data) {
|
|
return data[0];
|
|
};
|
|
RichApiMessageUtility.OfficeJsErrorCode_ooeInvalidOrTimedOutSession = 5012;
|
|
RichApiMessageUtility.OfficeJsErrorCode_ooeActivityLimitReached = 5102;
|
|
RichApiMessageUtility.OfficeJsErrorCode_ooeNoCapability = 7000;
|
|
RichApiMessageUtility.OfficeJsErrorCode_ooeRequestPayloadSizeLimitExceeded = 5103;
|
|
RichApiMessageUtility.OfficeJsErrorCode_ooeResponsePayloadSizeLimitExceeded = 5104;
|
|
RichApiMessageUtility.OfficeJsErrorCode_ooeWriteNotSupportedWhenModalDialogOpen = 5016;
|
|
RichApiMessageUtility.OfficeJsErrorCode_ooeInvalidSheetName = 1014;
|
|
return RichApiMessageUtility;
|
|
}());
|
|
OfficeExtension_1.RichApiMessageUtility = RichApiMessageUtility;
|
|
(function (_Internal) {
|
|
function getPromiseType() {
|
|
if (typeof Promise !== 'undefined') {
|
|
return Promise;
|
|
}
|
|
if (typeof Office !== 'undefined') {
|
|
if (Office.Promise) {
|
|
return Office.Promise;
|
|
}
|
|
}
|
|
if (typeof OfficeExtension !== 'undefined') {
|
|
if (OfficeExtension.Promise) {
|
|
return OfficeExtension.Promise;
|
|
}
|
|
}
|
|
throw new _Internal.Error('No Promise implementation found');
|
|
}
|
|
_Internal.getPromiseType = getPromiseType;
|
|
})(_Internal = OfficeExtension_1._Internal || (OfficeExtension_1._Internal = {}));
|
|
var CoreUtility = (function () {
|
|
function CoreUtility() {
|
|
}
|
|
CoreUtility.log = function (message) {
|
|
if (CoreUtility._logEnabled && typeof console !== 'undefined' && console.log) {
|
|
console.log(message);
|
|
}
|
|
};
|
|
CoreUtility.checkArgumentNull = function (value, name) {
|
|
if (CoreUtility.isNullOrUndefined(value)) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: name });
|
|
}
|
|
};
|
|
CoreUtility.isNullOrUndefined = function (value) {
|
|
if (value === null) {
|
|
return true;
|
|
}
|
|
if (typeof value === 'undefined') {
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
CoreUtility.isUndefined = function (value) {
|
|
if (typeof value === 'undefined') {
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
CoreUtility.isNullOrEmptyString = function (value) {
|
|
if (value === null) {
|
|
return true;
|
|
}
|
|
if (typeof value === 'undefined') {
|
|
return true;
|
|
}
|
|
if (value.length == 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
CoreUtility.isPlainJsonObject = function (value) {
|
|
if (CoreUtility.isNullOrUndefined(value)) {
|
|
return false;
|
|
}
|
|
if (typeof value !== 'object') {
|
|
return false;
|
|
}
|
|
if (Object.prototype.toString.apply(value) !== '[object Object]') {
|
|
return false;
|
|
}
|
|
if (value.constructor &&
|
|
!Object.prototype.hasOwnProperty.call(value, 'constructor') &&
|
|
!Object.prototype.hasOwnProperty.call(value.constructor.prototype, 'hasOwnProperty')) {
|
|
return false;
|
|
}
|
|
for (var key in value) {
|
|
if (!Object.prototype.hasOwnProperty.call(value, key)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
};
|
|
CoreUtility.trim = function (str) {
|
|
return str.replace(new RegExp('^\\s+|\\s+$', 'g'), '');
|
|
};
|
|
CoreUtility.caseInsensitiveCompareString = function (str1, str2) {
|
|
if (CoreUtility.isNullOrUndefined(str1)) {
|
|
return CoreUtility.isNullOrUndefined(str2);
|
|
}
|
|
else {
|
|
if (CoreUtility.isNullOrUndefined(str2)) {
|
|
return false;
|
|
}
|
|
else {
|
|
return str1.toUpperCase() == str2.toUpperCase();
|
|
}
|
|
}
|
|
};
|
|
CoreUtility.isReadonlyRestRequest = function (method) {
|
|
return CoreUtility.caseInsensitiveCompareString(method, 'GET');
|
|
};
|
|
CoreUtility._getResourceString = function (resourceId, arg) {
|
|
var ret;
|
|
if (typeof window !== 'undefined' && window.Strings && window.Strings.OfficeOM) {
|
|
var stringName = 'L_' + resourceId;
|
|
var stringValue = window.Strings.OfficeOM[stringName];
|
|
if (stringValue) {
|
|
ret = stringValue;
|
|
}
|
|
}
|
|
if (!ret) {
|
|
ret = CoreUtility.s_resourceStringValues[resourceId];
|
|
}
|
|
if (!ret) {
|
|
ret = resourceId;
|
|
}
|
|
if (!CoreUtility.isNullOrUndefined(arg)) {
|
|
if (Array.isArray(arg)) {
|
|
var arrArg = arg;
|
|
ret = CoreUtility._formatString(ret, arrArg);
|
|
}
|
|
else {
|
|
ret = ret.replace('{0}', arg);
|
|
}
|
|
}
|
|
return ret;
|
|
};
|
|
CoreUtility._formatString = function (format, arrArg) {
|
|
return format.replace(/\{\d\}/g, function (v) {
|
|
var position = parseInt(v.substr(1, v.length - 2));
|
|
if (position < arrArg.length) {
|
|
return arrArg[position];
|
|
}
|
|
else {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'format' });
|
|
}
|
|
});
|
|
};
|
|
Object.defineProperty(CoreUtility, "Promise", {
|
|
get: function () {
|
|
return _Internal.getPromiseType();
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
CoreUtility.createPromise = function (executor) {
|
|
var ret = new CoreUtility.Promise(executor);
|
|
return ret;
|
|
};
|
|
CoreUtility._createPromiseFromResult = function (value) {
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
resolve(value);
|
|
});
|
|
};
|
|
CoreUtility._createPromiseFromException = function (reason) {
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
reject(reason);
|
|
});
|
|
};
|
|
CoreUtility._createTimeoutPromise = function (timeout) {
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
setTimeout(function () {
|
|
resolve(null);
|
|
}, timeout);
|
|
});
|
|
};
|
|
CoreUtility._createInvalidArgError = function (error) {
|
|
return _Internal.RuntimeError._createInvalidArgError(error);
|
|
};
|
|
CoreUtility._isLocalDocumentUrl = function (url) {
|
|
return CoreUtility._getLocalDocumentUrlPrefixLength(url) > 0;
|
|
};
|
|
CoreUtility._getLocalDocumentUrlPrefixLength = function (url) {
|
|
var localDocumentPrefixes = [
|
|
'http://document.localhost',
|
|
'https://document.localhost',
|
|
'//document.localhost'
|
|
];
|
|
var urlLower = url.toLowerCase().trim();
|
|
for (var i = 0; i < localDocumentPrefixes.length; i++) {
|
|
if (urlLower === localDocumentPrefixes[i]) {
|
|
return localDocumentPrefixes[i].length;
|
|
}
|
|
else if (urlLower.substr(0, localDocumentPrefixes[i].length + 1) === localDocumentPrefixes[i] + '/') {
|
|
return localDocumentPrefixes[i].length + 1;
|
|
}
|
|
}
|
|
return 0;
|
|
};
|
|
CoreUtility._validateLocalDocumentRequest = function (request) {
|
|
var index = CoreUtility._getLocalDocumentUrlPrefixLength(request.url);
|
|
if (index <= 0) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({
|
|
argumentName: 'request'
|
|
});
|
|
}
|
|
var path = request.url.substr(index);
|
|
var pathLower = path.toLowerCase();
|
|
if (pathLower === '_api') {
|
|
path = '';
|
|
}
|
|
else if (pathLower.substr(0, '_api/'.length) === '_api/') {
|
|
path = path.substr('_api/'.length);
|
|
}
|
|
return {
|
|
method: request.method,
|
|
url: path,
|
|
headers: request.headers,
|
|
body: request.body
|
|
};
|
|
};
|
|
CoreUtility._parseRequestFlagsAndCustomDataFromQueryStringIfAny = function (queryString) {
|
|
var ret = { flags: -1, customData: '' };
|
|
var parts = queryString.split('&');
|
|
for (var i = 0; i < parts.length; i++) {
|
|
var keyvalue = parts[i].split('=');
|
|
if (keyvalue[0].toLowerCase() === CoreConstants.flags) {
|
|
var flags = parseInt(keyvalue[1]);
|
|
flags = flags & 8191;
|
|
ret.flags = flags;
|
|
}
|
|
else if (keyvalue[0].toLowerCase() === CoreConstants.customData) {
|
|
ret.customData = decodeURIComponent(keyvalue[1]);
|
|
}
|
|
}
|
|
return ret;
|
|
};
|
|
CoreUtility._getRequestBodyText = function (request) {
|
|
var body = '';
|
|
if (typeof request.body === 'string') {
|
|
body = request.body;
|
|
}
|
|
else if (request.body && typeof request.body === 'object') {
|
|
body = JSON.stringify(request.body);
|
|
}
|
|
return body;
|
|
};
|
|
CoreUtility._parseResponseBody = function (response) {
|
|
if (typeof response.body === 'string') {
|
|
var bodyText = CoreUtility.trim(response.body);
|
|
return JSON.parse(bodyText);
|
|
}
|
|
else {
|
|
return response.body;
|
|
}
|
|
};
|
|
CoreUtility._buildRequestMessageSafeArray = function (request) {
|
|
var requestFlags = 0;
|
|
if (!CoreUtility.isReadonlyRestRequest(request.method)) {
|
|
requestFlags = 1;
|
|
}
|
|
var customData = '';
|
|
if (request.url.substr(0, CoreConstants.processQuery.length).toLowerCase() ===
|
|
CoreConstants.processQuery.toLowerCase()) {
|
|
var index = request.url.indexOf('?');
|
|
if (index > 0) {
|
|
var queryString = request.url.substr(index + 1);
|
|
var flagsAndCustomData = CoreUtility._parseRequestFlagsAndCustomDataFromQueryStringIfAny(queryString);
|
|
if (flagsAndCustomData.flags >= 0) {
|
|
requestFlags = flagsAndCustomData.flags;
|
|
}
|
|
customData = flagsAndCustomData.customData;
|
|
}
|
|
}
|
|
return RichApiMessageUtility.buildRequestMessageSafeArray(customData, requestFlags, request.method, request.url, request.headers, CoreUtility._getRequestBodyText(request));
|
|
};
|
|
CoreUtility._parseHttpResponseHeaders = function (allResponseHeaders) {
|
|
var responseHeaders = {};
|
|
if (!CoreUtility.isNullOrEmptyString(allResponseHeaders)) {
|
|
var regex = new RegExp('\r?\n');
|
|
var entries = allResponseHeaders.split(regex);
|
|
for (var i = 0; i < entries.length; i++) {
|
|
var entry = entries[i];
|
|
if (entry != null) {
|
|
var index = entry.indexOf(':');
|
|
if (index > 0) {
|
|
var key = entry.substr(0, index);
|
|
var value = entry.substr(index + 1);
|
|
key = CoreUtility.trim(key);
|
|
value = CoreUtility.trim(value);
|
|
responseHeaders[key.toUpperCase()] = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return responseHeaders;
|
|
};
|
|
CoreUtility._parseErrorResponse = function (responseInfo) {
|
|
var errorObj = CoreUtility._parseErrorResponseBody(responseInfo);
|
|
var statusCode = responseInfo.statusCode.toString();
|
|
if (CoreUtility.isNullOrUndefined(errorObj) || typeof errorObj !== 'object' || !errorObj.error) {
|
|
return CoreUtility._createDefaultErrorResponse(statusCode);
|
|
}
|
|
var error = errorObj.error;
|
|
var innerError = error.innerError;
|
|
if (innerError && innerError.code) {
|
|
return CoreUtility._createErrorResponse(innerError.code, statusCode, innerError.message);
|
|
}
|
|
if (error.code) {
|
|
return CoreUtility._createErrorResponse(error.code, statusCode, error.message);
|
|
}
|
|
return CoreUtility._createDefaultErrorResponse(statusCode);
|
|
};
|
|
CoreUtility._parseErrorResponseBody = function (responseInfo) {
|
|
if (CoreUtility.isPlainJsonObject(responseInfo.body)) {
|
|
return responseInfo.body;
|
|
}
|
|
else if (!CoreUtility.isNullOrEmptyString(responseInfo.body)) {
|
|
var errorResponseBody = CoreUtility.trim(responseInfo.body);
|
|
try {
|
|
return JSON.parse(errorResponseBody);
|
|
}
|
|
catch (e) {
|
|
CoreUtility.log('Error when parse ' + errorResponseBody);
|
|
}
|
|
}
|
|
};
|
|
CoreUtility._createDefaultErrorResponse = function (statusCode) {
|
|
return {
|
|
errorCode: CoreErrorCodes.connectionFailure,
|
|
errorMessage: CoreUtility._getResourceString(CoreResourceStrings.connectionFailureWithStatus, statusCode)
|
|
};
|
|
};
|
|
CoreUtility._createErrorResponse = function (code, statusCode, message) {
|
|
return {
|
|
errorCode: code,
|
|
errorMessage: CoreUtility._getResourceString(CoreResourceStrings.connectionFailureWithDetails, [
|
|
statusCode,
|
|
code,
|
|
message
|
|
])
|
|
};
|
|
};
|
|
CoreUtility._copyHeaders = function (src, dest) {
|
|
if (src && dest) {
|
|
for (var key in src) {
|
|
dest[key] = src[key];
|
|
}
|
|
}
|
|
};
|
|
CoreUtility.addResourceStringValues = function (values) {
|
|
for (var key in values) {
|
|
CoreUtility.s_resourceStringValues[key] = values[key];
|
|
}
|
|
};
|
|
CoreUtility._logEnabled = false;
|
|
CoreUtility.s_resourceStringValues = {
|
|
ApiNotFoundDetails: 'The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.',
|
|
ConnectionFailureWithStatus: 'The request failed with status code of {0}.',
|
|
ConnectionFailureWithDetails: 'The request failed with status code of {0}, error code {1} and the following error message: {2}',
|
|
InvalidArgument: "The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.",
|
|
InvalidObjectPath: 'The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.',
|
|
InvalidRequestContext: 'Cannot use the object across different request contexts.',
|
|
Timeout: 'The operation has timed out.',
|
|
ValueNotLoaded: 'The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.'
|
|
};
|
|
return CoreUtility;
|
|
}());
|
|
OfficeExtension_1.CoreUtility = CoreUtility;
|
|
var TestUtility = (function () {
|
|
function TestUtility() {
|
|
}
|
|
TestUtility.setMock = function (value) {
|
|
TestUtility.s_isMock = value;
|
|
};
|
|
TestUtility.isMock = function () {
|
|
return TestUtility.s_isMock;
|
|
};
|
|
return TestUtility;
|
|
}());
|
|
OfficeExtension_1.TestUtility = TestUtility;
|
|
OfficeExtension_1._internalConfig = {
|
|
showDisposeInfoInDebugInfo: false,
|
|
showInternalApiInDebugInfo: false,
|
|
enableEarlyDispose: true,
|
|
alwaysPolyfillClientObjectUpdateMethod: false,
|
|
alwaysPolyfillClientObjectRetrieveMethod: false,
|
|
enableConcurrentFlag: true,
|
|
enableUndoableFlag: true,
|
|
appendTypeNameToObjectPathInfo: false,
|
|
enablePreviewExecution: false
|
|
};
|
|
OfficeExtension_1.config = {
|
|
extendedErrorLogging: false
|
|
};
|
|
var CommonActionFactory = (function () {
|
|
function CommonActionFactory() {
|
|
}
|
|
CommonActionFactory.createSetPropertyAction = function (context, parent, propertyName, value, flags) {
|
|
CommonUtility.validateObjectPath(parent);
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 4,
|
|
Name: propertyName,
|
|
ObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
var args = [value];
|
|
var referencedArgumentObjectPaths = CommonUtility.setMethodArguments(context, actionInfo.ArgumentInfo, args);
|
|
CommonUtility.validateReferencedObjectPaths(referencedArgumentObjectPaths);
|
|
var action = new Action(actionInfo, 0, flags);
|
|
action.referencedObjectPath = parent._objectPath;
|
|
action.referencedArgumentObjectPaths = referencedArgumentObjectPaths;
|
|
if (OfficeExtension_1._internalConfig.enablePreviewExecution && (flags & 16) !== 0) {
|
|
var previewExecutionAction = {
|
|
Id: context._nextId(),
|
|
ActionType: 4,
|
|
Name: propertyName,
|
|
ObjectId: '',
|
|
ObjectType: '',
|
|
Arguments: [value]
|
|
};
|
|
parent._addPreviewExecutionAction(previewExecutionAction);
|
|
}
|
|
return parent._addAction(action);
|
|
};
|
|
CommonActionFactory.createQueryAction = function (context, parent, queryOption, resultHandler) {
|
|
CommonUtility.validateObjectPath(parent);
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 2,
|
|
Name: '',
|
|
ObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
QueryInfo: queryOption
|
|
};
|
|
var action = new Action(actionInfo, 1, 4);
|
|
action.referencedObjectPath = parent._objectPath;
|
|
return parent._addAction(action, resultHandler);
|
|
};
|
|
CommonActionFactory.createQueryAsJsonAction = function (context, parent, queryOption, resultHandler) {
|
|
CommonUtility.validateObjectPath(parent);
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 7,
|
|
Name: '',
|
|
ObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
QueryInfo: queryOption
|
|
};
|
|
var action = new Action(actionInfo, 1, 4);
|
|
action.referencedObjectPath = parent._objectPath;
|
|
return parent._addAction(action, resultHandler);
|
|
};
|
|
CommonActionFactory.createUpdateAction = function (context, parent, objectState) {
|
|
CommonUtility.validateObjectPath(parent);
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 9,
|
|
Name: '',
|
|
ObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ObjectState: objectState
|
|
};
|
|
var action = new Action(actionInfo, 0, 0);
|
|
action.referencedObjectPath = parent._objectPath;
|
|
return parent._addAction(action);
|
|
};
|
|
return CommonActionFactory;
|
|
}());
|
|
OfficeExtension_1.CommonActionFactory = CommonActionFactory;
|
|
var ClientObjectBase = (function () {
|
|
function ClientObjectBase(contextBase, objectPath) {
|
|
this.m_contextBase = contextBase;
|
|
this.m_objectPath = objectPath;
|
|
}
|
|
Object.defineProperty(ClientObjectBase.prototype, "_objectPath", {
|
|
get: function () {
|
|
return this.m_objectPath;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientObjectBase.prototype, "_context", {
|
|
get: function () {
|
|
return this.m_contextBase;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ClientObjectBase.prototype._addAction = function (action, resultHandler) {
|
|
var _this = this;
|
|
if (resultHandler === void 0) {
|
|
resultHandler = null;
|
|
}
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
_this._context._addServiceApiAction(action, resultHandler, resolve, reject);
|
|
});
|
|
};
|
|
ClientObjectBase.prototype._addPreviewExecutionAction = function (action) {
|
|
};
|
|
ClientObjectBase.prototype._retrieve = function (option, resultHandler) {
|
|
var shouldPolyfill = OfficeExtension_1._internalConfig.alwaysPolyfillClientObjectRetrieveMethod;
|
|
if (!shouldPolyfill) {
|
|
shouldPolyfill = !CommonUtility.isSetSupported('RichApiRuntime', '1.1');
|
|
}
|
|
var queryOption = ClientRequestContextBase._parseQueryOption(option);
|
|
if (shouldPolyfill) {
|
|
return CommonActionFactory.createQueryAction(this._context, this, queryOption, resultHandler);
|
|
}
|
|
return CommonActionFactory.createQueryAsJsonAction(this._context, this, queryOption, resultHandler);
|
|
};
|
|
ClientObjectBase.prototype._recursivelyUpdate = function (properties) {
|
|
var shouldPolyfill = OfficeExtension_1._internalConfig.alwaysPolyfillClientObjectUpdateMethod;
|
|
if (!shouldPolyfill) {
|
|
shouldPolyfill = !CommonUtility.isSetSupported('RichApiRuntime', '1.2');
|
|
}
|
|
try {
|
|
var scalarPropNames = this[CommonConstants.scalarPropertyNames];
|
|
if (!scalarPropNames) {
|
|
scalarPropNames = [];
|
|
}
|
|
var scalarPropUpdatable = this[CommonConstants.scalarPropertyUpdateable];
|
|
if (!scalarPropUpdatable) {
|
|
scalarPropUpdatable = [];
|
|
for (var i = 0; i < scalarPropNames.length; i++) {
|
|
scalarPropUpdatable.push(false);
|
|
}
|
|
}
|
|
var navigationPropNames = this[CommonConstants.navigationPropertyNames];
|
|
if (!navigationPropNames) {
|
|
navigationPropNames = [];
|
|
}
|
|
var scalarProps = {};
|
|
var navigationProps = {};
|
|
var scalarPropCount = 0;
|
|
for (var propName in properties) {
|
|
var index = scalarPropNames.indexOf(propName);
|
|
if (index >= 0) {
|
|
if (!scalarPropUpdatable[index]) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidArgument,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CommonResourceStrings.attemptingToSetReadOnlyProperty, propName),
|
|
debugInfo: {
|
|
errorLocation: propName
|
|
}
|
|
});
|
|
}
|
|
scalarProps[propName] = properties[propName];
|
|
++scalarPropCount;
|
|
}
|
|
else if (navigationPropNames.indexOf(propName) >= 0) {
|
|
navigationProps[propName] = properties[propName];
|
|
}
|
|
else {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidArgument,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CommonResourceStrings.propertyDoesNotExist, propName),
|
|
debugInfo: {
|
|
errorLocation: propName
|
|
}
|
|
});
|
|
}
|
|
}
|
|
if (scalarPropCount > 0) {
|
|
if (shouldPolyfill) {
|
|
for (var i = 0; i < scalarPropNames.length; i++) {
|
|
var propName = scalarPropNames[i];
|
|
var propValue = scalarProps[propName];
|
|
if (!CommonUtility.isUndefined(propValue)) {
|
|
CommonActionFactory.createSetPropertyAction(this._context, this, propName, propValue);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
CommonActionFactory.createUpdateAction(this._context, this, scalarProps);
|
|
}
|
|
}
|
|
for (var propName in navigationProps) {
|
|
var navigationPropProxy = this[propName];
|
|
var navigationPropValue = navigationProps[propName];
|
|
navigationPropProxy._recursivelyUpdate(navigationPropValue);
|
|
}
|
|
}
|
|
catch (innerError) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidArgument,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CoreResourceStrings.invalidArgument, 'properties'),
|
|
debugInfo: {
|
|
errorLocation: this._className + '.update'
|
|
},
|
|
innerError: innerError
|
|
});
|
|
}
|
|
};
|
|
return ClientObjectBase;
|
|
}());
|
|
OfficeExtension_1.ClientObjectBase = ClientObjectBase;
|
|
var Action = (function () {
|
|
function Action(actionInfo, operationType, flags) {
|
|
this.m_actionInfo = actionInfo;
|
|
this.m_operationType = operationType;
|
|
this.m_flags = flags;
|
|
}
|
|
Object.defineProperty(Action.prototype, "actionInfo", {
|
|
get: function () {
|
|
return this.m_actionInfo;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Action.prototype, "operationType", {
|
|
get: function () {
|
|
return this.m_operationType;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Action.prototype, "flags", {
|
|
get: function () {
|
|
return this.m_flags;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
return Action;
|
|
}());
|
|
OfficeExtension_1.Action = Action;
|
|
var ObjectPath = (function () {
|
|
function ObjectPath(objectPathInfo, parentObjectPath, isCollection, isInvalidAfterRequest, operationType, flags) {
|
|
this.m_objectPathInfo = objectPathInfo;
|
|
this.m_parentObjectPath = parentObjectPath;
|
|
this.m_isCollection = isCollection;
|
|
this.m_isInvalidAfterRequest = isInvalidAfterRequest;
|
|
this.m_isValid = true;
|
|
this.m_operationType = operationType;
|
|
this.m_flags = flags;
|
|
}
|
|
Object.defineProperty(ObjectPath.prototype, "id", {
|
|
get: function () {
|
|
var argumentInfo = this.m_objectPathInfo.ArgumentInfo;
|
|
if (!argumentInfo) {
|
|
return undefined;
|
|
}
|
|
var argument = argumentInfo.Arguments;
|
|
if (!argument) {
|
|
return undefined;
|
|
}
|
|
return argument[0];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "parent", {
|
|
get: function () {
|
|
var parent = this.m_parentObjectPath;
|
|
if (!parent) {
|
|
return undefined;
|
|
}
|
|
return parent;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "parentId", {
|
|
get: function () {
|
|
return this.parent ? this.parent.id : undefined;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "objectPathInfo", {
|
|
get: function () {
|
|
return this.m_objectPathInfo;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "operationType", {
|
|
get: function () {
|
|
return this.m_operationType;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "flags", {
|
|
get: function () {
|
|
return this.m_flags;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "isCollection", {
|
|
get: function () {
|
|
return this.m_isCollection;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "isInvalidAfterRequest", {
|
|
get: function () {
|
|
return this.m_isInvalidAfterRequest;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "parentObjectPath", {
|
|
get: function () {
|
|
return this.m_parentObjectPath;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "argumentObjectPaths", {
|
|
get: function () {
|
|
return this.m_argumentObjectPaths;
|
|
},
|
|
set: function (value) {
|
|
this.m_argumentObjectPaths = value;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "isValid", {
|
|
get: function () {
|
|
return this.m_isValid;
|
|
},
|
|
set: function (value) {
|
|
this.m_isValid = value;
|
|
if (!value &&
|
|
this.m_objectPathInfo.ObjectPathType === 6 &&
|
|
this.m_savedObjectPathInfo) {
|
|
ObjectPath.copyObjectPathInfo(this.m_savedObjectPathInfo.pathInfo, this.m_objectPathInfo);
|
|
this.m_parentObjectPath = this.m_savedObjectPathInfo.parent;
|
|
this.m_isValid = true;
|
|
this.m_savedObjectPathInfo = null;
|
|
}
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "originalObjectPathInfo", {
|
|
get: function () {
|
|
return this.m_originalObjectPathInfo;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ObjectPath.prototype, "getByIdMethodName", {
|
|
get: function () {
|
|
return this.m_getByIdMethodName;
|
|
},
|
|
set: function (value) {
|
|
this.m_getByIdMethodName = value;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ObjectPath.prototype._updateAsNullObject = function () {
|
|
this.resetForUpdateUsingObjectData();
|
|
this.m_objectPathInfo.ObjectPathType = 7;
|
|
this.m_objectPathInfo.Name = '';
|
|
this.m_parentObjectPath = null;
|
|
};
|
|
ObjectPath.prototype.saveOriginalObjectPathInfo = function () {
|
|
if (OfficeExtension_1.config.extendedErrorLogging && !this.m_originalObjectPathInfo) {
|
|
this.m_originalObjectPathInfo = {};
|
|
ObjectPath.copyObjectPathInfo(this.m_objectPathInfo, this.m_originalObjectPathInfo);
|
|
}
|
|
};
|
|
ObjectPath.prototype.updateUsingObjectData = function (value, clientObject) {
|
|
var referenceId = value[CommonConstants.referenceId];
|
|
if (!CoreUtility.isNullOrEmptyString(referenceId)) {
|
|
if (!this.m_savedObjectPathInfo &&
|
|
!this.isInvalidAfterRequest &&
|
|
ObjectPath.isRestorableObjectPath(this.m_objectPathInfo.ObjectPathType)) {
|
|
var pathInfo = {};
|
|
ObjectPath.copyObjectPathInfo(this.m_objectPathInfo, pathInfo);
|
|
this.m_savedObjectPathInfo = {
|
|
pathInfo: pathInfo,
|
|
parent: this.m_parentObjectPath
|
|
};
|
|
}
|
|
this.saveOriginalObjectPathInfo();
|
|
this.resetForUpdateUsingObjectData();
|
|
this.m_objectPathInfo.ObjectPathType = 6;
|
|
this.m_objectPathInfo.Name = referenceId;
|
|
delete this.m_objectPathInfo.ParentObjectPathId;
|
|
this.m_parentObjectPath = null;
|
|
return;
|
|
}
|
|
if (clientObject) {
|
|
var collectionPropertyPath = clientObject[CommonConstants.collectionPropertyPath];
|
|
if (!CoreUtility.isNullOrEmptyString(collectionPropertyPath) && clientObject.context) {
|
|
var id = CommonUtility.tryGetObjectIdFromLoadOrRetrieveResult(value);
|
|
if (!CoreUtility.isNullOrUndefined(id)) {
|
|
var propNames = collectionPropertyPath.split('.');
|
|
var parent_1 = clientObject.context[propNames[0]];
|
|
for (var i = 1; i < propNames.length; i++) {
|
|
parent_1 = parent_1[propNames[i]];
|
|
}
|
|
this.saveOriginalObjectPathInfo();
|
|
this.resetForUpdateUsingObjectData();
|
|
this.m_parentObjectPath = parent_1._objectPath;
|
|
this.m_objectPathInfo.ParentObjectPathId = this.m_parentObjectPath.objectPathInfo.Id;
|
|
this.m_objectPathInfo.ObjectPathType = 5;
|
|
this.m_objectPathInfo.Name = '';
|
|
this.m_objectPathInfo.ArgumentInfo.Arguments = [id];
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
var parentIsCollection = this.parentObjectPath && this.parentObjectPath.isCollection;
|
|
var getByIdMethodName = this.getByIdMethodName;
|
|
if (parentIsCollection || !CoreUtility.isNullOrEmptyString(getByIdMethodName)) {
|
|
var id = CommonUtility.tryGetObjectIdFromLoadOrRetrieveResult(value);
|
|
if (!CoreUtility.isNullOrUndefined(id)) {
|
|
this.saveOriginalObjectPathInfo();
|
|
this.resetForUpdateUsingObjectData();
|
|
if (!CoreUtility.isNullOrEmptyString(getByIdMethodName)) {
|
|
this.m_objectPathInfo.ObjectPathType = 3;
|
|
this.m_objectPathInfo.Name = getByIdMethodName;
|
|
}
|
|
else {
|
|
this.m_objectPathInfo.ObjectPathType = 5;
|
|
this.m_objectPathInfo.Name = '';
|
|
}
|
|
this.m_objectPathInfo.ArgumentInfo.Arguments = [id];
|
|
return;
|
|
}
|
|
}
|
|
};
|
|
ObjectPath.prototype.resetForUpdateUsingObjectData = function () {
|
|
this.m_isInvalidAfterRequest = false;
|
|
this.m_isValid = true;
|
|
this.m_operationType = 1;
|
|
this.m_flags = 4;
|
|
this.m_objectPathInfo.ArgumentInfo = {};
|
|
this.m_argumentObjectPaths = null;
|
|
this.m_getByIdMethodName = null;
|
|
};
|
|
ObjectPath.isRestorableObjectPath = function (objectPathType) {
|
|
return (objectPathType === 1 ||
|
|
objectPathType === 5 ||
|
|
objectPathType === 3 ||
|
|
objectPathType === 4);
|
|
};
|
|
ObjectPath.copyObjectPathInfo = function (src, dest) {
|
|
dest.Id = src.Id;
|
|
dest.ArgumentInfo = src.ArgumentInfo;
|
|
dest.Name = src.Name;
|
|
dest.ObjectPathType = src.ObjectPathType;
|
|
dest.ParentObjectPathId = src.ParentObjectPathId;
|
|
};
|
|
return ObjectPath;
|
|
}());
|
|
OfficeExtension_1.ObjectPath = ObjectPath;
|
|
var ClientRequestContextBase = (function () {
|
|
function ClientRequestContextBase() {
|
|
this.m_nextId = 0;
|
|
}
|
|
ClientRequestContextBase.prototype._nextId = function () {
|
|
return ++this.m_nextId;
|
|
};
|
|
ClientRequestContextBase.prototype._addServiceApiAction = function (action, resultHandler, resolve, reject) {
|
|
if (!this.m_serviceApiQueue) {
|
|
this.m_serviceApiQueue = new ServiceApiQueue(this);
|
|
}
|
|
this.m_serviceApiQueue.add(action, resultHandler, resolve, reject);
|
|
};
|
|
ClientRequestContextBase._parseQueryOption = function (option) {
|
|
var queryOption = {};
|
|
if (typeof option === 'string') {
|
|
var select = option;
|
|
queryOption.Select = CommonUtility._parseSelectExpand(select);
|
|
}
|
|
else if (Array.isArray(option)) {
|
|
queryOption.Select = option;
|
|
}
|
|
else if (typeof option === 'object') {
|
|
var loadOption = option;
|
|
if (ClientRequestContextBase.isLoadOption(loadOption)) {
|
|
if (typeof loadOption.select === 'string') {
|
|
queryOption.Select = CommonUtility._parseSelectExpand(loadOption.select);
|
|
}
|
|
else if (Array.isArray(loadOption.select)) {
|
|
queryOption.Select = loadOption.select;
|
|
}
|
|
else if (!CommonUtility.isNullOrUndefined(loadOption.select)) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'option.select' });
|
|
}
|
|
if (typeof loadOption.expand === 'string') {
|
|
queryOption.Expand = CommonUtility._parseSelectExpand(loadOption.expand);
|
|
}
|
|
else if (Array.isArray(loadOption.expand)) {
|
|
queryOption.Expand = loadOption.expand;
|
|
}
|
|
else if (!CommonUtility.isNullOrUndefined(loadOption.expand)) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'option.expand' });
|
|
}
|
|
if (typeof loadOption.top === 'number') {
|
|
queryOption.Top = loadOption.top;
|
|
}
|
|
else if (!CommonUtility.isNullOrUndefined(loadOption.top)) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'option.top' });
|
|
}
|
|
if (typeof loadOption.skip === 'number') {
|
|
queryOption.Skip = loadOption.skip;
|
|
}
|
|
else if (!CommonUtility.isNullOrUndefined(loadOption.skip)) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'option.skip' });
|
|
}
|
|
}
|
|
else {
|
|
queryOption = ClientRequestContextBase.parseStrictLoadOption(option);
|
|
}
|
|
}
|
|
else if (!CommonUtility.isNullOrUndefined(option)) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'option' });
|
|
}
|
|
return queryOption;
|
|
};
|
|
ClientRequestContextBase.isLoadOption = function (loadOption) {
|
|
if (!CommonUtility.isUndefined(loadOption.select) &&
|
|
(typeof loadOption.select === 'string' || Array.isArray(loadOption.select)))
|
|
return true;
|
|
if (!CommonUtility.isUndefined(loadOption.expand) &&
|
|
(typeof loadOption.expand === 'string' || Array.isArray(loadOption.expand)))
|
|
return true;
|
|
if (!CommonUtility.isUndefined(loadOption.top) && typeof loadOption.top === 'number')
|
|
return true;
|
|
if (!CommonUtility.isUndefined(loadOption.skip) && typeof loadOption.skip === 'number')
|
|
return true;
|
|
for (var i in loadOption) {
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
ClientRequestContextBase.parseStrictLoadOption = function (option) {
|
|
var ret = { Select: [] };
|
|
ClientRequestContextBase.parseStrictLoadOptionHelper(ret, '', 'option', option);
|
|
return ret;
|
|
};
|
|
ClientRequestContextBase.combineQueryPath = function (pathPrefix, key, separator) {
|
|
if (pathPrefix.length === 0) {
|
|
return key;
|
|
}
|
|
else {
|
|
return pathPrefix + separator + key;
|
|
}
|
|
};
|
|
ClientRequestContextBase.parseStrictLoadOptionHelper = function (queryInfo, pathPrefix, argPrefix, option) {
|
|
for (var key in option) {
|
|
var value = option[key];
|
|
if (key === '$all') {
|
|
if (typeof value !== 'boolean') {
|
|
throw _Internal.RuntimeError._createInvalidArgError({
|
|
argumentName: ClientRequestContextBase.combineQueryPath(argPrefix, key, '.')
|
|
});
|
|
}
|
|
if (value) {
|
|
queryInfo.Select.push(ClientRequestContextBase.combineQueryPath(pathPrefix, '*', '/'));
|
|
}
|
|
}
|
|
else if (key === '$top') {
|
|
if (typeof value !== 'number' || pathPrefix.length > 0) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({
|
|
argumentName: ClientRequestContextBase.combineQueryPath(argPrefix, key, '.')
|
|
});
|
|
}
|
|
queryInfo.Top = value;
|
|
}
|
|
else if (key === '$skip') {
|
|
if (typeof value !== 'number' || pathPrefix.length > 0) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({
|
|
argumentName: ClientRequestContextBase.combineQueryPath(argPrefix, key, '.')
|
|
});
|
|
}
|
|
queryInfo.Skip = value;
|
|
}
|
|
else {
|
|
if (typeof value === 'boolean') {
|
|
if (value) {
|
|
queryInfo.Select.push(ClientRequestContextBase.combineQueryPath(pathPrefix, key, '/'));
|
|
}
|
|
}
|
|
else if (typeof value === 'object') {
|
|
ClientRequestContextBase.parseStrictLoadOptionHelper(queryInfo, ClientRequestContextBase.combineQueryPath(pathPrefix, key, '/'), ClientRequestContextBase.combineQueryPath(argPrefix, key, '.'), value);
|
|
}
|
|
else {
|
|
throw _Internal.RuntimeError._createInvalidArgError({
|
|
argumentName: ClientRequestContextBase.combineQueryPath(argPrefix, key, '.')
|
|
});
|
|
}
|
|
}
|
|
}
|
|
};
|
|
return ClientRequestContextBase;
|
|
}());
|
|
OfficeExtension_1.ClientRequestContextBase = ClientRequestContextBase;
|
|
var InstantiateActionUpdateObjectPathHandler = (function () {
|
|
function InstantiateActionUpdateObjectPathHandler(m_objectPath) {
|
|
this.m_objectPath = m_objectPath;
|
|
}
|
|
InstantiateActionUpdateObjectPathHandler.prototype._handleResult = function (value) {
|
|
if (CoreUtility.isNullOrUndefined(value)) {
|
|
this.m_objectPath._updateAsNullObject();
|
|
}
|
|
else {
|
|
this.m_objectPath.updateUsingObjectData(value, null);
|
|
}
|
|
};
|
|
return InstantiateActionUpdateObjectPathHandler;
|
|
}());
|
|
var ClientRequestBase = (function () {
|
|
function ClientRequestBase(context) {
|
|
this.m_contextBase = context;
|
|
this.m_actions = [];
|
|
this.m_actionResultHandler = {};
|
|
this.m_referencedObjectPaths = {};
|
|
this.m_instantiatedObjectPaths = {};
|
|
this.m_preSyncPromises = [];
|
|
this.m_previewExecutionActions = [];
|
|
}
|
|
ClientRequestBase.prototype.addAction = function (action) {
|
|
this.m_actions.push(action);
|
|
if (action.actionInfo.ActionType == 1) {
|
|
this.m_instantiatedObjectPaths[action.actionInfo.ObjectPathId] = action;
|
|
}
|
|
};
|
|
ClientRequestBase.prototype.addPreviewExecutionAction = function (action) {
|
|
this.m_previewExecutionActions.push(action);
|
|
};
|
|
Object.defineProperty(ClientRequestBase.prototype, "hasActions", {
|
|
get: function () {
|
|
return this.m_actions.length > 0;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ClientRequestBase.prototype._getLastAction = function () {
|
|
return this.m_actions[this.m_actions.length - 1];
|
|
};
|
|
ClientRequestBase.prototype.ensureInstantiateObjectPath = function (objectPath) {
|
|
if (objectPath) {
|
|
if (this.m_instantiatedObjectPaths[objectPath.objectPathInfo.Id]) {
|
|
return;
|
|
}
|
|
this.ensureInstantiateObjectPath(objectPath.parentObjectPath);
|
|
this.ensureInstantiateObjectPaths(objectPath.argumentObjectPaths);
|
|
if (!this.m_instantiatedObjectPaths[objectPath.objectPathInfo.Id]) {
|
|
var actionInfo = {
|
|
Id: this.m_contextBase._nextId(),
|
|
ActionType: 1,
|
|
Name: '',
|
|
ObjectPathId: objectPath.objectPathInfo.Id
|
|
};
|
|
var instantiateAction = new Action(actionInfo, 1, 4);
|
|
instantiateAction.referencedObjectPath = objectPath;
|
|
this.addReferencedObjectPath(objectPath);
|
|
this.addAction(instantiateAction);
|
|
var resultHandler = new InstantiateActionUpdateObjectPathHandler(objectPath);
|
|
this.addActionResultHandler(instantiateAction, resultHandler);
|
|
}
|
|
}
|
|
};
|
|
ClientRequestBase.prototype.ensureInstantiateObjectPaths = function (objectPaths) {
|
|
if (objectPaths) {
|
|
for (var i = 0; i < objectPaths.length; i++) {
|
|
this.ensureInstantiateObjectPath(objectPaths[i]);
|
|
}
|
|
}
|
|
};
|
|
ClientRequestBase.prototype.addReferencedObjectPath = function (objectPath) {
|
|
if (!objectPath || this.m_referencedObjectPaths[objectPath.objectPathInfo.Id]) {
|
|
return;
|
|
}
|
|
if (!objectPath.isValid) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidObjectPath,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CoreResourceStrings.invalidObjectPath, CommonUtility.getObjectPathExpression(objectPath)),
|
|
debugInfo: {
|
|
errorLocation: CommonUtility.getObjectPathExpression(objectPath)
|
|
}
|
|
});
|
|
}
|
|
while (objectPath) {
|
|
this.m_referencedObjectPaths[objectPath.objectPathInfo.Id] = objectPath;
|
|
if (objectPath.objectPathInfo.ObjectPathType == 3) {
|
|
this.addReferencedObjectPaths(objectPath.argumentObjectPaths);
|
|
}
|
|
objectPath = objectPath.parentObjectPath;
|
|
}
|
|
};
|
|
ClientRequestBase.prototype.addReferencedObjectPaths = function (objectPaths) {
|
|
if (objectPaths) {
|
|
for (var i = 0; i < objectPaths.length; i++) {
|
|
this.addReferencedObjectPath(objectPaths[i]);
|
|
}
|
|
}
|
|
};
|
|
ClientRequestBase.prototype.addActionResultHandler = function (action, resultHandler) {
|
|
this.m_actionResultHandler[action.actionInfo.Id] = resultHandler;
|
|
};
|
|
ClientRequestBase.prototype.aggregrateRequestFlags = function (requestFlags, operationType, flags) {
|
|
if (operationType === 0) {
|
|
requestFlags = requestFlags | 1;
|
|
if ((flags & 2) === 0) {
|
|
requestFlags = requestFlags & ~16;
|
|
}
|
|
if ((flags & 8) === 0) {
|
|
requestFlags = requestFlags & ~256;
|
|
}
|
|
requestFlags = requestFlags & ~4;
|
|
}
|
|
if (flags & 1) {
|
|
requestFlags = requestFlags | 2;
|
|
}
|
|
if ((flags & 4) === 0) {
|
|
requestFlags = requestFlags & ~4;
|
|
}
|
|
return requestFlags;
|
|
};
|
|
ClientRequestBase.prototype.finallyNormalizeFlags = function (requestFlags) {
|
|
if ((requestFlags & 1) === 0) {
|
|
requestFlags = requestFlags & ~16;
|
|
requestFlags = requestFlags & ~256;
|
|
}
|
|
if (!OfficeExtension_1._internalConfig.enableConcurrentFlag) {
|
|
requestFlags = requestFlags & ~4;
|
|
}
|
|
if (!OfficeExtension_1._internalConfig.enableUndoableFlag) {
|
|
requestFlags = requestFlags & ~16;
|
|
}
|
|
if (!CommonUtility.isSetSupported('RichApiRuntimeFlag', '1.1')) {
|
|
requestFlags = requestFlags & ~4;
|
|
requestFlags = requestFlags & ~16;
|
|
}
|
|
if (!CommonUtility.isSetSupported('RichApiRuntimeFlag', '1.2')) {
|
|
requestFlags = requestFlags & ~256;
|
|
}
|
|
if (typeof this.m_flagsForTesting === 'number') {
|
|
requestFlags = this.m_flagsForTesting;
|
|
}
|
|
return requestFlags;
|
|
};
|
|
ClientRequestBase.prototype.buildRequestMessageBodyAndRequestFlags = function () {
|
|
if (OfficeExtension_1._internalConfig.enableEarlyDispose) {
|
|
ClientRequestBase._calculateLastUsedObjectPathIds(this.m_actions);
|
|
}
|
|
var requestFlags = 4 |
|
|
16 |
|
|
256;
|
|
var objectPaths = {};
|
|
for (var i in this.m_referencedObjectPaths) {
|
|
requestFlags = this.aggregrateRequestFlags(requestFlags, this.m_referencedObjectPaths[i].operationType, this.m_referencedObjectPaths[i].flags);
|
|
objectPaths[i] = this.m_referencedObjectPaths[i].objectPathInfo;
|
|
}
|
|
var actions = [];
|
|
var hasKeepReference = false;
|
|
for (var index = 0; index < this.m_actions.length; index++) {
|
|
var action = this.m_actions[index];
|
|
if (action.actionInfo.ActionType === 3 &&
|
|
action.actionInfo.Name === CommonConstants.keepReference) {
|
|
hasKeepReference = true;
|
|
}
|
|
requestFlags = this.aggregrateRequestFlags(requestFlags, action.operationType, action.flags);
|
|
actions.push(action.actionInfo);
|
|
}
|
|
requestFlags = this.finallyNormalizeFlags(requestFlags);
|
|
var body = {
|
|
AutoKeepReference: this.m_contextBase._autoCleanup && hasKeepReference,
|
|
Actions: actions,
|
|
ObjectPaths: objectPaths
|
|
};
|
|
if (this.m_previewExecutionActions.length > 0) {
|
|
body.PreviewExecutionActions = this.m_previewExecutionActions;
|
|
requestFlags = requestFlags | 4096;
|
|
}
|
|
return {
|
|
body: body,
|
|
flags: requestFlags
|
|
};
|
|
};
|
|
ClientRequestBase.prototype.processResponse = function (actionResults) {
|
|
if (actionResults) {
|
|
for (var i = 0; i < actionResults.length; i++) {
|
|
var actionResult = actionResults[i];
|
|
var handler = this.m_actionResultHandler[actionResult.ActionId];
|
|
if (handler) {
|
|
handler._handleResult(actionResult.Value);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
ClientRequestBase.prototype.invalidatePendingInvalidObjectPaths = function () {
|
|
for (var i in this.m_referencedObjectPaths) {
|
|
if (this.m_referencedObjectPaths[i].isInvalidAfterRequest) {
|
|
this.m_referencedObjectPaths[i].isValid = false;
|
|
}
|
|
}
|
|
};
|
|
ClientRequestBase.prototype._addPreSyncPromise = function (value) {
|
|
this.m_preSyncPromises.push(value);
|
|
};
|
|
Object.defineProperty(ClientRequestBase.prototype, "_preSyncPromises", {
|
|
get: function () {
|
|
return this.m_preSyncPromises;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestBase.prototype, "_actions", {
|
|
get: function () {
|
|
return this.m_actions;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestBase.prototype, "_objectPaths", {
|
|
get: function () {
|
|
return this.m_referencedObjectPaths;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ClientRequestBase.prototype._removeKeepReferenceAction = function (objectPathId) {
|
|
for (var i = this.m_actions.length - 1; i >= 0; i--) {
|
|
var actionInfo = this.m_actions[i].actionInfo;
|
|
if (actionInfo.ObjectPathId === objectPathId &&
|
|
actionInfo.ActionType === 3 &&
|
|
actionInfo.Name === CommonConstants.keepReference) {
|
|
this.m_actions.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
ClientRequestBase._updateLastUsedActionIdOfObjectPathId = function (lastUsedActionIdOfObjectPathId, objectPath, actionId) {
|
|
while (objectPath) {
|
|
if (lastUsedActionIdOfObjectPathId[objectPath.objectPathInfo.Id]) {
|
|
return;
|
|
}
|
|
lastUsedActionIdOfObjectPathId[objectPath.objectPathInfo.Id] = actionId;
|
|
var argumentObjectPaths = objectPath.argumentObjectPaths;
|
|
if (argumentObjectPaths) {
|
|
var argumentObjectPathsLength = argumentObjectPaths.length;
|
|
for (var i = 0; i < argumentObjectPathsLength; i++) {
|
|
ClientRequestBase._updateLastUsedActionIdOfObjectPathId(lastUsedActionIdOfObjectPathId, argumentObjectPaths[i], actionId);
|
|
}
|
|
}
|
|
objectPath = objectPath.parentObjectPath;
|
|
}
|
|
};
|
|
ClientRequestBase._calculateLastUsedObjectPathIds = function (actions) {
|
|
var lastUsedActionIdOfObjectPathId = {};
|
|
var actionsLength = actions.length;
|
|
for (var index = actionsLength - 1; index >= 0; --index) {
|
|
var action = actions[index];
|
|
var actionId = action.actionInfo.Id;
|
|
if (action.referencedObjectPath) {
|
|
ClientRequestBase._updateLastUsedActionIdOfObjectPathId(lastUsedActionIdOfObjectPathId, action.referencedObjectPath, actionId);
|
|
}
|
|
var referencedObjectPaths = action.referencedArgumentObjectPaths;
|
|
if (referencedObjectPaths) {
|
|
var referencedObjectPathsLength = referencedObjectPaths.length;
|
|
for (var refIndex = 0; refIndex < referencedObjectPathsLength; refIndex++) {
|
|
ClientRequestBase._updateLastUsedActionIdOfObjectPathId(lastUsedActionIdOfObjectPathId, referencedObjectPaths[refIndex], actionId);
|
|
}
|
|
}
|
|
}
|
|
var lastUsedObjectPathIdsOfAction = {};
|
|
for (var key in lastUsedActionIdOfObjectPathId) {
|
|
var actionId = lastUsedActionIdOfObjectPathId[key];
|
|
var objectPathIds = lastUsedObjectPathIdsOfAction[actionId];
|
|
if (!objectPathIds) {
|
|
objectPathIds = [];
|
|
lastUsedObjectPathIdsOfAction[actionId] = objectPathIds;
|
|
}
|
|
objectPathIds.push(parseInt(key));
|
|
}
|
|
for (var index = 0; index < actionsLength; index++) {
|
|
var action = actions[index];
|
|
var lastUsedObjectPathIds = lastUsedObjectPathIdsOfAction[action.actionInfo.Id];
|
|
if (lastUsedObjectPathIds && lastUsedObjectPathIds.length > 0) {
|
|
action.actionInfo.L = lastUsedObjectPathIds;
|
|
}
|
|
else if (action.actionInfo.L) {
|
|
delete action.actionInfo.L;
|
|
}
|
|
}
|
|
};
|
|
return ClientRequestBase;
|
|
}());
|
|
OfficeExtension_1.ClientRequestBase = ClientRequestBase;
|
|
var ClientResult = (function () {
|
|
function ClientResult(m_type) {
|
|
this.m_type = m_type;
|
|
}
|
|
Object.defineProperty(ClientResult.prototype, "value", {
|
|
get: function () {
|
|
if (!this.m_isLoaded) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.valueNotLoaded,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CoreResourceStrings.valueNotLoaded),
|
|
debugInfo: {
|
|
errorLocation: 'clientResult.value'
|
|
}
|
|
});
|
|
}
|
|
return this.m_value;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ClientResult.prototype._handleResult = function (value) {
|
|
this.m_isLoaded = true;
|
|
if (typeof value === 'object' && value && value._IsNull) {
|
|
return;
|
|
}
|
|
if (this.m_type === 1) {
|
|
this.m_value = CommonUtility.adjustToDateTime(value);
|
|
}
|
|
else {
|
|
this.m_value = value;
|
|
}
|
|
};
|
|
return ClientResult;
|
|
}());
|
|
OfficeExtension_1.ClientResult = ClientResult;
|
|
var ServiceApiQueue = (function () {
|
|
function ServiceApiQueue(m_context) {
|
|
this.m_context = m_context;
|
|
this.m_actions = [];
|
|
}
|
|
ServiceApiQueue.prototype.add = function (action, resultHandler, resolve, reject) {
|
|
var _this = this;
|
|
this.m_actions.push({ action: action, resultHandler: resultHandler, resolve: resolve, reject: reject });
|
|
if (this.m_actions.length === 1) {
|
|
setTimeout(function () { return _this.processActions(); }, 0);
|
|
}
|
|
};
|
|
ServiceApiQueue.prototype.processActions = function () {
|
|
var _this = this;
|
|
if (this.m_actions.length === 0) {
|
|
return;
|
|
}
|
|
var actions = this.m_actions;
|
|
this.m_actions = [];
|
|
var request = new ClientRequestBase(this.m_context);
|
|
for (var i = 0; i < actions.length; i++) {
|
|
var action = actions[i];
|
|
request.ensureInstantiateObjectPath(action.action.referencedObjectPath);
|
|
request.ensureInstantiateObjectPaths(action.action.referencedArgumentObjectPaths);
|
|
request.addAction(action.action);
|
|
request.addReferencedObjectPath(action.action.referencedObjectPath);
|
|
request.addReferencedObjectPaths(action.action.referencedArgumentObjectPaths);
|
|
}
|
|
var _a = request.buildRequestMessageBodyAndRequestFlags(), body = _a.body, flags = _a.flags;
|
|
var requestMessage = {
|
|
Url: CoreConstants.localDocumentApiPrefix,
|
|
Headers: null,
|
|
Body: body
|
|
};
|
|
CoreUtility.log('Request:');
|
|
CoreUtility.log(JSON.stringify(body));
|
|
var executor = new HttpRequestExecutor();
|
|
executor
|
|
.executeAsync(this.m_context._customData, flags, requestMessage)
|
|
.then(function (response) {
|
|
_this.processResponse(request, actions, response);
|
|
})["catch"](function (ex) {
|
|
for (var i = 0; i < actions.length; i++) {
|
|
var action = actions[i];
|
|
action.reject(ex);
|
|
}
|
|
});
|
|
};
|
|
ServiceApiQueue.prototype.processResponse = function (request, actions, response) {
|
|
var error = this.getErrorFromResponse(response);
|
|
var actionResults = null;
|
|
if (response.Body.Results) {
|
|
actionResults = response.Body.Results;
|
|
}
|
|
else if (response.Body.ProcessedResults && response.Body.ProcessedResults.Results) {
|
|
actionResults = response.Body.ProcessedResults.Results;
|
|
}
|
|
if (!actionResults) {
|
|
actionResults = [];
|
|
}
|
|
this.processActionResults(request, actions, actionResults, error);
|
|
};
|
|
ServiceApiQueue.prototype.getErrorFromResponse = function (response) {
|
|
if (!CoreUtility.isNullOrEmptyString(response.ErrorCode)) {
|
|
return new _Internal.RuntimeError({
|
|
code: response.ErrorCode,
|
|
httpStatusCode: response.HttpStatusCode,
|
|
message: response.ErrorMessage
|
|
});
|
|
}
|
|
if (response.Body && response.Body.Error) {
|
|
return new _Internal.RuntimeError({
|
|
code: response.Body.Error.Code,
|
|
httpStatusCode: response.Body.Error.HttpStatusCode,
|
|
message: response.Body.Error.Message
|
|
});
|
|
}
|
|
return null;
|
|
};
|
|
ServiceApiQueue.prototype.processActionResults = function (request, actions, actionResults, err) {
|
|
request.processResponse(actionResults);
|
|
for (var i = 0; i < actions.length; i++) {
|
|
var action = actions[i];
|
|
var actionId = action.action.actionInfo.Id;
|
|
var hasResult = false;
|
|
for (var j = 0; j < actionResults.length; j++) {
|
|
if (actionId == actionResults[j].ActionId) {
|
|
var resultValue = actionResults[j].Value;
|
|
if (action.resultHandler) {
|
|
action.resultHandler._handleResult(resultValue);
|
|
resultValue = action.resultHandler.value;
|
|
}
|
|
if (action.resolve) {
|
|
action.resolve(resultValue);
|
|
}
|
|
hasResult = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!hasResult && action.reject) {
|
|
if (err) {
|
|
action.reject(err);
|
|
}
|
|
else {
|
|
action.reject('No response for the action.');
|
|
}
|
|
}
|
|
}
|
|
};
|
|
return ServiceApiQueue;
|
|
}());
|
|
var HttpRequestExecutor = (function () {
|
|
function HttpRequestExecutor() {
|
|
}
|
|
HttpRequestExecutor.prototype.getRequestUrl = function (baseUrl, requestFlags) {
|
|
if (baseUrl.charAt(baseUrl.length - 1) != '/') {
|
|
baseUrl = baseUrl + '/';
|
|
}
|
|
baseUrl = baseUrl + CoreConstants.processQuery;
|
|
baseUrl = baseUrl + '?' + CoreConstants.flags + '=' + requestFlags.toString();
|
|
return baseUrl;
|
|
};
|
|
HttpRequestExecutor.prototype.executeAsync = function (customData, requestFlags, requestMessage) {
|
|
var url = this.getRequestUrl(requestMessage.Url, requestFlags);
|
|
var requestInfo = {
|
|
method: 'POST',
|
|
url: url,
|
|
headers: {},
|
|
body: requestMessage.Body
|
|
};
|
|
requestInfo.headers[CoreConstants.sourceLibHeader] = HttpRequestExecutor.SourceLibHeaderValue;
|
|
requestInfo.headers['CONTENT-TYPE'] = 'application/json';
|
|
if (requestMessage.Headers) {
|
|
for (var key in requestMessage.Headers) {
|
|
requestInfo.headers[key] = requestMessage.Headers[key];
|
|
}
|
|
}
|
|
var sendRequestFunc = CoreUtility._isLocalDocumentUrl(requestInfo.url)
|
|
? HttpUtility.sendLocalDocumentRequest
|
|
: HttpUtility.sendRequest;
|
|
return sendRequestFunc(requestInfo).then(function (responseInfo) {
|
|
var response;
|
|
if (responseInfo.statusCode === 200) {
|
|
response = {
|
|
HttpStatusCode: responseInfo.statusCode,
|
|
ErrorCode: null,
|
|
ErrorMessage: null,
|
|
Headers: responseInfo.headers,
|
|
Body: CoreUtility._parseResponseBody(responseInfo)
|
|
};
|
|
}
|
|
else {
|
|
CoreUtility.log('Error Response:' + responseInfo.body);
|
|
var error = CoreUtility._parseErrorResponse(responseInfo);
|
|
response = {
|
|
HttpStatusCode: responseInfo.statusCode,
|
|
ErrorCode: error.errorCode,
|
|
ErrorMessage: error.errorMessage,
|
|
Headers: responseInfo.headers,
|
|
Body: null
|
|
};
|
|
}
|
|
return response;
|
|
});
|
|
};
|
|
HttpRequestExecutor.SourceLibHeaderValue = 'officejs-rest';
|
|
return HttpRequestExecutor;
|
|
}());
|
|
OfficeExtension_1.HttpRequestExecutor = HttpRequestExecutor;
|
|
var CommonConstants = (function (_super) {
|
|
__extends(CommonConstants, _super);
|
|
function CommonConstants() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
CommonConstants.collectionPropertyPath = '_collectionPropertyPath';
|
|
CommonConstants.id = 'Id';
|
|
CommonConstants.idLowerCase = 'id';
|
|
CommonConstants.idPrivate = '_Id';
|
|
CommonConstants.keepReference = '_KeepReference';
|
|
CommonConstants.objectPathIdPrivate = '_ObjectPathId';
|
|
CommonConstants.referenceId = '_ReferenceId';
|
|
CommonConstants.items = '_Items';
|
|
CommonConstants.itemsLowerCase = 'items';
|
|
CommonConstants.scalarPropertyNames = '_scalarPropertyNames';
|
|
CommonConstants.scalarPropertyOriginalNames = '_scalarPropertyOriginalNames';
|
|
CommonConstants.navigationPropertyNames = '_navigationPropertyNames';
|
|
CommonConstants.scalarPropertyUpdateable = '_scalarPropertyUpdateable';
|
|
CommonConstants.previewExecutionObjectId = '_previewExecutionObjectId';
|
|
return CommonConstants;
|
|
}(CoreConstants));
|
|
OfficeExtension_1.CommonConstants = CommonConstants;
|
|
var CommonUtility = (function (_super) {
|
|
__extends(CommonUtility, _super);
|
|
function CommonUtility() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
CommonUtility.validateObjectPath = function (clientObject) {
|
|
var objectPath = clientObject._objectPath;
|
|
while (objectPath) {
|
|
if (!objectPath.isValid) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidObjectPath,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CoreResourceStrings.invalidObjectPath, CommonUtility.getObjectPathExpression(objectPath)),
|
|
debugInfo: {
|
|
errorLocation: CommonUtility.getObjectPathExpression(objectPath)
|
|
}
|
|
});
|
|
}
|
|
objectPath = objectPath.parentObjectPath;
|
|
}
|
|
};
|
|
CommonUtility.validateReferencedObjectPaths = function (objectPaths) {
|
|
if (objectPaths) {
|
|
for (var i = 0; i < objectPaths.length; i++) {
|
|
var objectPath = objectPaths[i];
|
|
while (objectPath) {
|
|
if (!objectPath.isValid) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidObjectPath,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CoreResourceStrings.invalidObjectPath, CommonUtility.getObjectPathExpression(objectPath))
|
|
});
|
|
}
|
|
objectPath = objectPath.parentObjectPath;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
CommonUtility._toCamelLowerCase = function (name) {
|
|
if (CoreUtility.isNullOrEmptyString(name)) {
|
|
return name;
|
|
}
|
|
var index = 0;
|
|
while (index < name.length && name.charCodeAt(index) >= 65 && name.charCodeAt(index) <= 90) {
|
|
index++;
|
|
}
|
|
if (index < name.length) {
|
|
return name.substr(0, index).toLowerCase() + name.substr(index);
|
|
}
|
|
else {
|
|
return name.toLowerCase();
|
|
}
|
|
};
|
|
CommonUtility.adjustToDateTime = function (value) {
|
|
if (CoreUtility.isNullOrUndefined(value)) {
|
|
return null;
|
|
}
|
|
if (typeof value === 'string') {
|
|
return new Date(value);
|
|
}
|
|
if (Array.isArray(value)) {
|
|
var arr = value;
|
|
for (var i = 0; i < arr.length; i++) {
|
|
arr[i] = CommonUtility.adjustToDateTime(arr[i]);
|
|
}
|
|
return arr;
|
|
}
|
|
throw CoreUtility._createInvalidArgError({ argumentName: 'date' });
|
|
};
|
|
CommonUtility.tryGetObjectIdFromLoadOrRetrieveResult = function (value) {
|
|
var id = value[CommonConstants.id];
|
|
if (CoreUtility.isNullOrUndefined(id)) {
|
|
id = value[CommonConstants.idLowerCase];
|
|
}
|
|
if (CoreUtility.isNullOrUndefined(id)) {
|
|
id = value[CommonConstants.idPrivate];
|
|
}
|
|
return id;
|
|
};
|
|
CommonUtility.getObjectPathExpression = function (objectPath) {
|
|
var ret = '';
|
|
while (objectPath) {
|
|
switch (objectPath.objectPathInfo.ObjectPathType) {
|
|
case 1:
|
|
ret = ret;
|
|
break;
|
|
case 2:
|
|
ret = 'new()' + (ret.length > 0 ? '.' : '') + ret;
|
|
break;
|
|
case 3:
|
|
ret = CommonUtility.normalizeName(objectPath.objectPathInfo.Name) + '()' + (ret.length > 0 ? '.' : '') + ret;
|
|
break;
|
|
case 4:
|
|
ret = CommonUtility.normalizeName(objectPath.objectPathInfo.Name) + (ret.length > 0 ? '.' : '') + ret;
|
|
break;
|
|
case 5:
|
|
ret = 'getItem()' + (ret.length > 0 ? '.' : '') + ret;
|
|
break;
|
|
case 6:
|
|
ret = '_reference()' + (ret.length > 0 ? '.' : '') + ret;
|
|
break;
|
|
}
|
|
objectPath = objectPath.parentObjectPath;
|
|
}
|
|
return ret;
|
|
};
|
|
CommonUtility.setMethodArguments = function (context, argumentInfo, args) {
|
|
if (CoreUtility.isNullOrUndefined(args)) {
|
|
return null;
|
|
}
|
|
var referencedObjectPaths = new Array();
|
|
var referencedObjectPathIds = new Array();
|
|
var hasOne = CommonUtility.collectObjectPathInfos(context, args, referencedObjectPaths, referencedObjectPathIds);
|
|
argumentInfo.Arguments = args;
|
|
if (hasOne) {
|
|
argumentInfo.ReferencedObjectPathIds = referencedObjectPathIds;
|
|
}
|
|
return referencedObjectPaths;
|
|
};
|
|
CommonUtility.validateContext = function (context, obj) {
|
|
if (context && obj && obj._context !== context) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidRequestContext,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CoreResourceStrings.invalidRequestContext)
|
|
});
|
|
}
|
|
};
|
|
CommonUtility.isSetSupported = function (apiSetName, apiSetVersion) {
|
|
if (typeof window !== 'undefined' &&
|
|
window.Office &&
|
|
window.Office.context &&
|
|
window.Office.context.requirements) {
|
|
return window.Office.context.requirements.isSetSupported(apiSetName, apiSetVersion);
|
|
}
|
|
return true;
|
|
};
|
|
CommonUtility.throwIfApiNotSupported = function (apiFullName, apiSetName, apiSetVersion, hostName) {
|
|
if (!CommonUtility._doApiNotSupportedCheck) {
|
|
return;
|
|
}
|
|
if (!CommonUtility.isSetSupported(apiSetName, apiSetVersion)) {
|
|
var message = CoreUtility._getResourceString(CoreResourceStrings.apiNotFoundDetails, [
|
|
apiFullName,
|
|
apiSetName + ' ' + apiSetVersion,
|
|
hostName
|
|
]);
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.apiNotFound,
|
|
httpStatusCode: 404,
|
|
message: message,
|
|
debugInfo: { errorLocation: apiFullName }
|
|
});
|
|
}
|
|
};
|
|
CommonUtility.calculateApiFlags = function (apiFlags, undoableApiSetName, undoableApiSetVersion) {
|
|
if (!CommonUtility.isSetSupported(undoableApiSetName, undoableApiSetVersion)) {
|
|
apiFlags = apiFlags & (~2);
|
|
}
|
|
return apiFlags;
|
|
};
|
|
CommonUtility._parseSelectExpand = function (select) {
|
|
var args = [];
|
|
if (!CoreUtility.isNullOrEmptyString(select)) {
|
|
var propertyNames = select.split(',');
|
|
for (var i = 0; i < propertyNames.length; i++) {
|
|
var propertyName = propertyNames[i];
|
|
propertyName = sanitizeForAnyItemsSlash(propertyName.trim());
|
|
if (propertyName.length > 0) {
|
|
args.push(propertyName);
|
|
}
|
|
}
|
|
}
|
|
return args;
|
|
function sanitizeForAnyItemsSlash(propertyName) {
|
|
var propertyNameLower = propertyName.toLowerCase();
|
|
if (propertyNameLower === 'items' || propertyNameLower === 'items/') {
|
|
return '*';
|
|
}
|
|
var itemsSlashLength = 6;
|
|
var isItemsSlashOrItemsDot = propertyNameLower.substr(0, itemsSlashLength) === 'items/' ||
|
|
propertyNameLower.substr(0, itemsSlashLength) === 'items.';
|
|
if (isItemsSlashOrItemsDot) {
|
|
propertyName = propertyName.substr(itemsSlashLength);
|
|
}
|
|
return propertyName.replace(new RegExp('[/.]items[/.]', 'gi'), '/');
|
|
}
|
|
};
|
|
CommonUtility.changePropertyNameToCamelLowerCase = function (value) {
|
|
var charCodeUnderscore = 95;
|
|
if (Array.isArray(value)) {
|
|
var ret = [];
|
|
for (var i = 0; i < value.length; i++) {
|
|
ret.push(this.changePropertyNameToCamelLowerCase(value[i]));
|
|
}
|
|
return ret;
|
|
}
|
|
else if (typeof value === 'object' && value !== null) {
|
|
var ret = {};
|
|
for (var key in value) {
|
|
var propValue = value[key];
|
|
if (key === CommonConstants.items) {
|
|
ret = {};
|
|
ret[CommonConstants.itemsLowerCase] = this.changePropertyNameToCamelLowerCase(propValue);
|
|
break;
|
|
}
|
|
else {
|
|
var propName = CommonUtility._toCamelLowerCase(key);
|
|
ret[propName] = this.changePropertyNameToCamelLowerCase(propValue);
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
else {
|
|
return value;
|
|
}
|
|
};
|
|
CommonUtility.purifyJson = function (value) {
|
|
var charCodeUnderscore = 95;
|
|
if (Array.isArray(value)) {
|
|
var ret = [];
|
|
for (var i = 0; i < value.length; i++) {
|
|
ret.push(this.purifyJson(value[i]));
|
|
}
|
|
return ret;
|
|
}
|
|
else if (typeof value === 'object' && value !== null) {
|
|
var ret = {};
|
|
for (var key in value) {
|
|
if (key.charCodeAt(0) !== charCodeUnderscore) {
|
|
var propValue = value[key];
|
|
if (typeof propValue === 'object' && propValue !== null && Array.isArray(propValue['items'])) {
|
|
propValue = propValue['items'];
|
|
}
|
|
ret[key] = this.purifyJson(propValue);
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
else {
|
|
return value;
|
|
}
|
|
};
|
|
CommonUtility.collectObjectPathInfos = function (context, args, referencedObjectPaths, referencedObjectPathIds) {
|
|
var hasOne = false;
|
|
for (var i = 0; i < args.length; i++) {
|
|
if (args[i] instanceof ClientObjectBase) {
|
|
var clientObject = args[i];
|
|
CommonUtility.validateContext(context, clientObject);
|
|
args[i] = clientObject._objectPath.objectPathInfo.Id;
|
|
referencedObjectPathIds.push(clientObject._objectPath.objectPathInfo.Id);
|
|
referencedObjectPaths.push(clientObject._objectPath);
|
|
hasOne = true;
|
|
}
|
|
else if (Array.isArray(args[i])) {
|
|
var childArrayObjectPathIds = new Array();
|
|
var childArrayHasOne = CommonUtility.collectObjectPathInfos(context, args[i], referencedObjectPaths, childArrayObjectPathIds);
|
|
if (childArrayHasOne) {
|
|
referencedObjectPathIds.push(childArrayObjectPathIds);
|
|
hasOne = true;
|
|
}
|
|
else {
|
|
referencedObjectPathIds.push(0);
|
|
}
|
|
}
|
|
else if (CoreUtility.isPlainJsonObject(args[i])) {
|
|
referencedObjectPathIds.push(0);
|
|
CommonUtility.replaceClientObjectPropertiesWithObjectPathIds(args[i], referencedObjectPaths);
|
|
}
|
|
else {
|
|
referencedObjectPathIds.push(0);
|
|
}
|
|
}
|
|
return hasOne;
|
|
};
|
|
CommonUtility.replaceClientObjectPropertiesWithObjectPathIds = function (value, referencedObjectPaths) {
|
|
var _a, _b;
|
|
for (var key in value) {
|
|
var propValue = value[key];
|
|
if (propValue instanceof ClientObjectBase) {
|
|
referencedObjectPaths.push(propValue._objectPath);
|
|
value[key] = (_a = {}, _a[CommonConstants.objectPathIdPrivate] = propValue._objectPath.objectPathInfo.Id, _a);
|
|
}
|
|
else if (Array.isArray(propValue)) {
|
|
for (var i = 0; i < propValue.length; i++) {
|
|
if (propValue[i] instanceof ClientObjectBase) {
|
|
var elem = propValue[i];
|
|
referencedObjectPaths.push(elem._objectPath);
|
|
propValue[i] = (_b = {}, _b[CommonConstants.objectPathIdPrivate] = elem._objectPath.objectPathInfo.Id, _b);
|
|
}
|
|
else if (CoreUtility.isPlainJsonObject(propValue[i])) {
|
|
CommonUtility.replaceClientObjectPropertiesWithObjectPathIds(propValue[i], referencedObjectPaths);
|
|
}
|
|
}
|
|
}
|
|
else if (CoreUtility.isPlainJsonObject(propValue)) {
|
|
CommonUtility.replaceClientObjectPropertiesWithObjectPathIds(propValue, referencedObjectPaths);
|
|
}
|
|
else {
|
|
}
|
|
}
|
|
};
|
|
CommonUtility.normalizeName = function (name) {
|
|
return name.substr(0, 1).toLowerCase() + name.substr(1);
|
|
};
|
|
CommonUtility._doApiNotSupportedCheck = false;
|
|
return CommonUtility;
|
|
}(CoreUtility));
|
|
OfficeExtension_1.CommonUtility = CommonUtility;
|
|
var CommonResourceStrings = (function (_super) {
|
|
__extends(CommonResourceStrings, _super);
|
|
function CommonResourceStrings() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
CommonResourceStrings.propertyDoesNotExist = 'PropertyDoesNotExist';
|
|
CommonResourceStrings.attemptingToSetReadOnlyProperty = 'AttemptingToSetReadOnlyProperty';
|
|
return CommonResourceStrings;
|
|
}(CoreResourceStrings));
|
|
OfficeExtension_1.CommonResourceStrings = CommonResourceStrings;
|
|
var ClientRetrieveResult = (function (_super) {
|
|
__extends(ClientRetrieveResult, _super);
|
|
function ClientRetrieveResult(m_shouldPolyfill) {
|
|
var _this = _super.call(this) || this;
|
|
_this.m_shouldPolyfill = m_shouldPolyfill;
|
|
return _this;
|
|
}
|
|
ClientRetrieveResult.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (this.m_shouldPolyfill) {
|
|
this.m_value = CommonUtility.changePropertyNameToCamelLowerCase(this.m_value);
|
|
}
|
|
this.m_value = this.removeItemNodes(this.m_value);
|
|
};
|
|
ClientRetrieveResult.prototype.removeItemNodes = function (value) {
|
|
if (typeof value === 'object' && value !== null && value[CommonConstants.itemsLowerCase]) {
|
|
value = value[CommonConstants.itemsLowerCase];
|
|
}
|
|
return CommonUtility.purifyJson(value);
|
|
};
|
|
return ClientRetrieveResult;
|
|
}(ClientResult));
|
|
OfficeExtension_1.ClientRetrieveResult = ClientRetrieveResult;
|
|
var TraceActionResultHandler = (function () {
|
|
function TraceActionResultHandler(callback) {
|
|
this.callback = callback;
|
|
}
|
|
TraceActionResultHandler.prototype._handleResult = function (value) {
|
|
if (this.callback) {
|
|
this.callback();
|
|
}
|
|
};
|
|
return TraceActionResultHandler;
|
|
}());
|
|
var ClientResultCallback = (function (_super) {
|
|
__extends(ClientResultCallback, _super);
|
|
function ClientResultCallback(callback) {
|
|
var _this = _super.call(this) || this;
|
|
_this.callback = callback;
|
|
return _this;
|
|
}
|
|
ClientResultCallback.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
this.callback();
|
|
};
|
|
return ClientResultCallback;
|
|
}(ClientResult));
|
|
OfficeExtension_1.ClientResultCallback = ClientResultCallback;
|
|
var OperationalApiHelper = (function () {
|
|
function OperationalApiHelper() {
|
|
}
|
|
OperationalApiHelper.invokeMethod = function (obj, methodName, operationType, args, flags, resultProcessType) {
|
|
if (operationType === void 0) {
|
|
operationType = 0;
|
|
}
|
|
if (args === void 0) {
|
|
args = [];
|
|
}
|
|
if (flags === void 0) {
|
|
flags = 0;
|
|
}
|
|
if (resultProcessType === void 0) {
|
|
resultProcessType = 0;
|
|
}
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
var result = new ClientResult();
|
|
var actionInfo = {
|
|
Id: obj._context._nextId(),
|
|
ActionType: 3,
|
|
Name: methodName,
|
|
ObjectPathId: obj._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
var referencedArgumentObjectPaths = CommonUtility.setMethodArguments(obj._context, actionInfo.ArgumentInfo, args);
|
|
var action = new Action(actionInfo, operationType, flags);
|
|
action.referencedObjectPath = obj._objectPath;
|
|
action.referencedArgumentObjectPaths = referencedArgumentObjectPaths;
|
|
obj._context._addServiceApiAction(action, result, resolve, reject);
|
|
});
|
|
};
|
|
OperationalApiHelper.invokeMethodWithClientResultCallback = function (callback, obj, methodName) {
|
|
var operationType = 0;
|
|
var args = [];
|
|
var flags = 0;
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
var result = new ClientResultCallback(callback);
|
|
var actionInfo = {
|
|
Id: obj._context._nextId(),
|
|
ActionType: 3,
|
|
Name: methodName,
|
|
ObjectPathId: obj._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
var referencedArgumentObjectPaths = CommonUtility.setMethodArguments(obj._context, actionInfo.ArgumentInfo, args);
|
|
var action = new Action(actionInfo, operationType, flags);
|
|
action.referencedObjectPath = obj._objectPath;
|
|
action.referencedArgumentObjectPaths = referencedArgumentObjectPaths;
|
|
obj._context._addServiceApiAction(action, result, resolve, reject);
|
|
});
|
|
};
|
|
OperationalApiHelper.invokeRetrieve = function (obj, select) {
|
|
var shouldPolyfill = OfficeExtension_1._internalConfig.alwaysPolyfillClientObjectRetrieveMethod;
|
|
if (!shouldPolyfill) {
|
|
shouldPolyfill = !CommonUtility.isSetSupported('RichApiRuntime', '1.1');
|
|
}
|
|
var option;
|
|
if (typeof select[0] === 'object' && select[0].hasOwnProperty('$all')) {
|
|
if (!select[0]['$all']) {
|
|
throw OfficeExtension_1.Error._createInvalidArgError({});
|
|
}
|
|
option = select[0];
|
|
}
|
|
else {
|
|
option = OperationalApiHelper._parseSelectOption(select);
|
|
}
|
|
return obj._retrieve(option, new ClientRetrieveResult(shouldPolyfill));
|
|
};
|
|
OperationalApiHelper._parseSelectOption = function (select) {
|
|
if (!select || !select[0]) {
|
|
throw OfficeExtension_1.Error._createInvalidArgError({});
|
|
}
|
|
var parsedSelect = select[0] && typeof select[0] !== 'string' ? select[0] : select;
|
|
return Array.isArray(parsedSelect) ? parsedSelect : OperationalApiHelper.parseRecursiveSelect(parsedSelect);
|
|
};
|
|
OperationalApiHelper.parseRecursiveSelect = function (select) {
|
|
var deconstruct = function (selectObj) {
|
|
return Object.keys(selectObj).reduce(function (scalars, name) {
|
|
var value = selectObj[name];
|
|
if (typeof value === 'object') {
|
|
return scalars.concat(deconstruct(value).map(function (postfix) { return name + "/" + postfix; }));
|
|
}
|
|
if (value) {
|
|
return scalars.concat(name);
|
|
}
|
|
return scalars;
|
|
}, []);
|
|
};
|
|
return deconstruct(select);
|
|
};
|
|
OperationalApiHelper.invokeRecursiveUpdate = function (obj, properties) {
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
obj._recursivelyUpdate(properties);
|
|
var actionInfo = {
|
|
Id: obj._context._nextId(),
|
|
ActionType: 5,
|
|
Name: 'Trace',
|
|
ObjectPathId: 0
|
|
};
|
|
var action = new Action(actionInfo, 1, 4);
|
|
obj._context._addServiceApiAction(action, null, resolve, reject);
|
|
});
|
|
};
|
|
OperationalApiHelper.createRootServiceObject = function (type, context) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 1,
|
|
Name: ''
|
|
};
|
|
var objectPath = new ObjectPath(objectPathInfo, null, false, false, 1, 4);
|
|
return new type(context, objectPath);
|
|
};
|
|
OperationalApiHelper.createTopLevelServiceObject = function (type, context, typeName, isCollection, flags) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 2,
|
|
Name: typeName
|
|
};
|
|
var objectPath = new ObjectPath(objectPathInfo, null, isCollection, false, 1, flags | 4);
|
|
return new type(context, objectPath);
|
|
};
|
|
OperationalApiHelper.createPropertyObject = function (type, parent, propertyName, isCollection, flags) {
|
|
var objectPathInfo = {
|
|
Id: parent._context._nextId(),
|
|
ObjectPathType: 4,
|
|
Name: propertyName,
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id
|
|
};
|
|
var objectPath = new ObjectPath(objectPathInfo, parent._objectPath, isCollection, false, 1, flags | 4);
|
|
return new type(parent._context, objectPath);
|
|
};
|
|
OperationalApiHelper.createIndexerObject = function (type, parent, args) {
|
|
var objectPathInfo = {
|
|
Id: parent._context._nextId(),
|
|
ObjectPathType: 5,
|
|
Name: '',
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
objectPathInfo.ArgumentInfo.Arguments = args;
|
|
var objectPath = new ObjectPath(objectPathInfo, parent._objectPath, false, false, 1, 4);
|
|
return new type(parent._context, objectPath);
|
|
};
|
|
OperationalApiHelper.createMethodObject = function (type, parent, methodName, operationType, args, isCollection, isInvalidAfterRequest, getByIdMethodName, flags) {
|
|
var id = parent._context._nextId();
|
|
var objectPathInfo = {
|
|
Id: id,
|
|
ObjectPathType: 3,
|
|
Name: methodName,
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
var argumentObjectPaths = CommonUtility.setMethodArguments(parent._context, objectPathInfo.ArgumentInfo, args);
|
|
var objectPath = new ObjectPath(objectPathInfo, parent._objectPath, isCollection, isInvalidAfterRequest, operationType, flags);
|
|
objectPath.argumentObjectPaths = argumentObjectPaths;
|
|
objectPath.getByIdMethodName = getByIdMethodName;
|
|
var o = new type(parent._context, objectPath);
|
|
return o;
|
|
};
|
|
OperationalApiHelper.createAndInstantiateMethodObject = function (type, parent, methodName, operationType, args, isCollection, isInvalidAfterRequest, getByIdMethodName, flags) {
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
var objectPathInfo = {
|
|
Id: parent._context._nextId(),
|
|
ObjectPathType: 3,
|
|
Name: methodName,
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
var argumentObjectPaths = CommonUtility.setMethodArguments(parent._context, objectPathInfo.ArgumentInfo, args);
|
|
var objectPath = new ObjectPath(objectPathInfo, parent._objectPath, isCollection, isInvalidAfterRequest, operationType, flags);
|
|
objectPath.argumentObjectPaths = argumentObjectPaths;
|
|
objectPath.getByIdMethodName = getByIdMethodName;
|
|
var result = new ClientResult();
|
|
var actionInfo = {
|
|
Id: parent._context._nextId(),
|
|
ActionType: 1,
|
|
Name: '',
|
|
ObjectPathId: objectPath.objectPathInfo.Id,
|
|
QueryInfo: {}
|
|
};
|
|
var action = new Action(actionInfo, 1, 4);
|
|
action.referencedObjectPath = objectPath;
|
|
parent._context._addServiceApiAction(action, result, function () { return resolve(new type(parent._context, objectPath)); }, reject);
|
|
});
|
|
};
|
|
OperationalApiHelper.createTraceAction = function (context, callback) {
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 5,
|
|
Name: 'Trace',
|
|
ObjectPathId: 0
|
|
};
|
|
var action = new Action(actionInfo, 1, 4);
|
|
var result = new TraceActionResultHandler(callback);
|
|
context._addServiceApiAction(action, result, resolve, reject);
|
|
});
|
|
};
|
|
OperationalApiHelper.localDocumentContext = new ClientRequestContextBase();
|
|
return OperationalApiHelper;
|
|
}());
|
|
OfficeExtension_1.OperationalApiHelper = OperationalApiHelper;
|
|
var GenericEventRegistryOperational = (function () {
|
|
function GenericEventRegistryOperational(eventId, targetId, eventArgumentTransform) {
|
|
this.eventId = eventId;
|
|
this.targetId = targetId;
|
|
this.eventArgumentTransform = eventArgumentTransform;
|
|
this.registeredCallbacks = [];
|
|
}
|
|
GenericEventRegistryOperational.prototype.add = function (callback) {
|
|
if (this.hasZero()) {
|
|
GenericEventRegistration.getGenericEventRegistration().register(this.eventId, this.targetId, this.registerCallback);
|
|
}
|
|
this.registeredCallbacks.push(callback);
|
|
};
|
|
GenericEventRegistryOperational.prototype.remove = function (callback) {
|
|
var index = this.registeredCallbacks.lastIndexOf(callback);
|
|
if (index !== -1) {
|
|
this.registeredCallbacks.splice(index, 1);
|
|
}
|
|
};
|
|
GenericEventRegistryOperational.prototype.removeAll = function () {
|
|
this.registeredCallbacks = [];
|
|
GenericEventRegistration.getGenericEventRegistration().unregister(this.eventId, this.targetId, this.registerCallback);
|
|
};
|
|
GenericEventRegistryOperational.prototype.hasZero = function () {
|
|
return this.registeredCallbacks.length === 0;
|
|
};
|
|
Object.defineProperty(GenericEventRegistryOperational.prototype, "registerCallback", {
|
|
get: function () {
|
|
var i = this;
|
|
if (!this.outsideCallback) {
|
|
this.outsideCallback = function (argument) {
|
|
i.call(argument);
|
|
};
|
|
}
|
|
return this.outsideCallback;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
GenericEventRegistryOperational.prototype.call = function (rawEventArguments) {
|
|
var _this = this;
|
|
this.eventArgumentTransform(rawEventArguments).then(function (eventArguments) {
|
|
var promises = _this.registeredCallbacks.map(function (callback) { return GenericEventRegistryOperational.callCallback(callback, eventArguments); });
|
|
CoreUtility.Promise.all(promises);
|
|
});
|
|
};
|
|
GenericEventRegistryOperational.callCallback = function (callback, eventArguments) {
|
|
return CoreUtility._createPromiseFromResult(null)
|
|
.then(GenericEventRegistryOperational.wrapCallbackInFunction(callback, eventArguments))["catch"](function (e) {
|
|
CoreUtility.log('Error when invoke handler: ' + JSON.stringify(e));
|
|
});
|
|
};
|
|
GenericEventRegistryOperational.wrapCallbackInFunction = function (callback, args) {
|
|
return function () { return callback(args); };
|
|
};
|
|
return GenericEventRegistryOperational;
|
|
}());
|
|
OfficeExtension_1.GenericEventRegistryOperational = GenericEventRegistryOperational;
|
|
var GlobalEventRegistryOperational = (function () {
|
|
function GlobalEventRegistryOperational() {
|
|
this.eventToTargetToHandlerMap = {};
|
|
}
|
|
Object.defineProperty(GlobalEventRegistryOperational, "globalEventRegistry", {
|
|
get: function () {
|
|
if (!GlobalEventRegistryOperational.singleton) {
|
|
GlobalEventRegistryOperational.singleton = new GlobalEventRegistryOperational();
|
|
}
|
|
return GlobalEventRegistryOperational.singleton;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
GlobalEventRegistryOperational.getGlobalEventRegistry = function (eventId, targetId, eventArgumentTransform) {
|
|
var global = GlobalEventRegistryOperational.globalEventRegistry;
|
|
var mapGlobal = global.eventToTargetToHandlerMap;
|
|
if (!mapGlobal.hasOwnProperty(eventId)) {
|
|
mapGlobal[eventId] = {};
|
|
}
|
|
var mapEvent = mapGlobal[eventId];
|
|
if (!mapEvent.hasOwnProperty(targetId)) {
|
|
mapEvent[targetId] = new GenericEventRegistryOperational(eventId, targetId, eventArgumentTransform);
|
|
}
|
|
var target = mapEvent[targetId];
|
|
return target;
|
|
};
|
|
GlobalEventRegistryOperational.singleton = undefined;
|
|
return GlobalEventRegistryOperational;
|
|
}());
|
|
OfficeExtension_1.GlobalEventRegistryOperational = GlobalEventRegistryOperational;
|
|
var GenericEventHandlerOperational = (function () {
|
|
function GenericEventHandlerOperational(genericEventInfo) {
|
|
this.genericEventInfo = genericEventInfo;
|
|
}
|
|
GenericEventHandlerOperational.prototype.add = function (callback) {
|
|
var _this = this;
|
|
var eventRegistered = undefined;
|
|
var promise = CoreUtility.createPromise(function (resolve) {
|
|
eventRegistered = resolve;
|
|
});
|
|
var addCallback = function () {
|
|
var eventId = _this.genericEventInfo.eventType;
|
|
var targetId = _this.genericEventInfo.getTargetIdFunc();
|
|
var event = GlobalEventRegistryOperational.getGlobalEventRegistry(eventId, targetId, _this.genericEventInfo.eventArgsTransformFunc);
|
|
event.add(callback);
|
|
eventRegistered();
|
|
};
|
|
this.register();
|
|
this.createTrace(addCallback);
|
|
return promise;
|
|
};
|
|
GenericEventHandlerOperational.prototype.remove = function (callback) {
|
|
var _this = this;
|
|
var removeCallback = function () {
|
|
var eventId = _this.genericEventInfo.eventType;
|
|
var targetId = _this.genericEventInfo.getTargetIdFunc();
|
|
var event = GlobalEventRegistryOperational.getGlobalEventRegistry(eventId, targetId, _this.genericEventInfo.eventArgsTransformFunc);
|
|
event.remove(callback);
|
|
};
|
|
this.register();
|
|
this.createTrace(removeCallback);
|
|
};
|
|
GenericEventHandlerOperational.prototype.removeAll = function () {
|
|
var _this = this;
|
|
var removeAllCallback = function () {
|
|
var eventId = _this.genericEventInfo.eventType;
|
|
var targetId = _this.genericEventInfo.getTargetIdFunc();
|
|
var event = GlobalEventRegistryOperational.getGlobalEventRegistry(eventId, targetId, _this.genericEventInfo.eventArgsTransformFunc);
|
|
event.removeAll();
|
|
};
|
|
this.unregister();
|
|
this.createTrace(removeAllCallback);
|
|
};
|
|
GenericEventHandlerOperational.prototype.createTrace = function (callback) {
|
|
OperationalApiHelper.createTraceAction(this.genericEventInfo.object._context, callback);
|
|
};
|
|
GenericEventHandlerOperational.prototype.register = function () {
|
|
var operationType = 0;
|
|
var args = [];
|
|
var flags = 0;
|
|
OperationalApiHelper.invokeMethod(this.genericEventInfo.object, this.genericEventInfo.register, operationType, args, flags);
|
|
if (!GenericEventRegistration.getGenericEventRegistration().isReady) {
|
|
GenericEventRegistration.getGenericEventRegistration().ready();
|
|
}
|
|
};
|
|
GenericEventHandlerOperational.prototype.unregister = function () {
|
|
OperationalApiHelper.invokeMethod(this.genericEventInfo.object, this.genericEventInfo.unregister);
|
|
};
|
|
return GenericEventHandlerOperational;
|
|
}());
|
|
OfficeExtension_1.GenericEventHandlerOperational = GenericEventHandlerOperational;
|
|
var EventHelper = (function () {
|
|
function EventHelper() {
|
|
}
|
|
EventHelper.invokeOn = function (eventHandler, callback, options) {
|
|
var promiseResolve = undefined;
|
|
var promise = CoreUtility.createPromise(function (resolve, reject) {
|
|
promiseResolve = resolve;
|
|
});
|
|
eventHandler.add(callback).then(function () {
|
|
promiseResolve({});
|
|
});
|
|
return promise;
|
|
};
|
|
EventHelper.invokeOff = function (genericEventHandlersOpObj, eventHandler, eventName, callback) {
|
|
if (!eventName && !callback) {
|
|
var allGenericEventHandlersOp = Object.keys(genericEventHandlersOpObj).map(function (eventName) { return genericEventHandlersOpObj[eventName]; });
|
|
return EventHelper.invokeAllOff(allGenericEventHandlersOp);
|
|
}
|
|
if (!eventName) {
|
|
return CoreUtility._createPromiseFromException(eventName + " must be supplied if handler is supplied.");
|
|
}
|
|
if (callback) {
|
|
eventHandler.remove(callback);
|
|
}
|
|
else {
|
|
eventHandler.removeAll();
|
|
}
|
|
return CoreUtility.createPromise(function (resolve, reject) { return resolve(); });
|
|
};
|
|
EventHelper.invokeAllOff = function (allGenericEventHandlersOperational) {
|
|
allGenericEventHandlersOperational.forEach(function (genericEventHandlerOperational) {
|
|
genericEventHandlerOperational.removeAll();
|
|
});
|
|
return CoreUtility.createPromise(function (resolve, reject) { return resolve(); });
|
|
};
|
|
return EventHelper;
|
|
}());
|
|
OfficeExtension_1.EventHelper = EventHelper;
|
|
var ErrorCodes = (function (_super) {
|
|
__extends(ErrorCodes, _super);
|
|
function ErrorCodes() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
ErrorCodes.propertyNotLoaded = 'PropertyNotLoaded';
|
|
ErrorCodes.runMustReturnPromise = 'RunMustReturnPromise';
|
|
ErrorCodes.cannotRegisterEvent = 'CannotRegisterEvent';
|
|
ErrorCodes.invalidOrTimedOutSession = 'InvalidOrTimedOutSession';
|
|
ErrorCodes.cannotUpdateReadOnlyProperty = 'CannotUpdateReadOnlyProperty';
|
|
return ErrorCodes;
|
|
}(CoreErrorCodes));
|
|
OfficeExtension_1.ErrorCodes = ErrorCodes;
|
|
var TraceMarkerActionResultHandler = (function () {
|
|
function TraceMarkerActionResultHandler(callback) {
|
|
this.m_callback = callback;
|
|
}
|
|
TraceMarkerActionResultHandler.prototype._handleResult = function (value) {
|
|
if (this.m_callback) {
|
|
this.m_callback();
|
|
}
|
|
};
|
|
return TraceMarkerActionResultHandler;
|
|
}());
|
|
var ActionFactory = (function (_super) {
|
|
__extends(ActionFactory, _super);
|
|
function ActionFactory() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
ActionFactory.createMethodAction = function (context, parent, methodName, operationType, args, flags) {
|
|
Utility.validateObjectPath(parent);
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 3,
|
|
Name: methodName,
|
|
ObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
var referencedArgumentObjectPaths = Utility.setMethodArguments(context, actionInfo.ArgumentInfo, args);
|
|
Utility.validateReferencedObjectPaths(referencedArgumentObjectPaths);
|
|
var fixedFlags = Utility._fixupApiFlags(flags);
|
|
var action = new Action(actionInfo, operationType, fixedFlags);
|
|
action.referencedObjectPath = parent._objectPath;
|
|
action.referencedArgumentObjectPaths = referencedArgumentObjectPaths;
|
|
parent._addAction(action);
|
|
if (OfficeExtension_1._internalConfig.enablePreviewExecution && (fixedFlags & 16) !== 0) {
|
|
var previewExecutionAction = {
|
|
Id: context._nextId(),
|
|
ActionType: 3,
|
|
Name: methodName,
|
|
Arguments: args,
|
|
ObjectId: '',
|
|
ObjectType: ''
|
|
};
|
|
parent._addPreviewExecutionAction(previewExecutionAction);
|
|
}
|
|
return action;
|
|
};
|
|
ActionFactory.createRecursiveQueryAction = function (context, parent, query) {
|
|
Utility.validateObjectPath(parent);
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 6,
|
|
Name: '',
|
|
ObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
RecursiveQueryInfo: query
|
|
};
|
|
var action = new Action(actionInfo, 1, 4);
|
|
action.referencedObjectPath = parent._objectPath;
|
|
parent._addAction(action);
|
|
return action;
|
|
};
|
|
ActionFactory.createEnsureUnchangedAction = function (context, parent, objectState) {
|
|
Utility.validateObjectPath(parent);
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 8,
|
|
Name: '',
|
|
ObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ObjectState: objectState
|
|
};
|
|
var action = new Action(actionInfo, 1, 4);
|
|
action.referencedObjectPath = parent._objectPath;
|
|
parent._addAction(action);
|
|
return action;
|
|
};
|
|
ActionFactory.createInstantiateAction = function (context, obj) {
|
|
Utility.validateObjectPath(obj);
|
|
context._pendingRequest.ensureInstantiateObjectPath(obj._objectPath.parentObjectPath);
|
|
context._pendingRequest.ensureInstantiateObjectPaths(obj._objectPath.argumentObjectPaths);
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 1,
|
|
Name: '',
|
|
ObjectPathId: obj._objectPath.objectPathInfo.Id
|
|
};
|
|
var action = new Action(actionInfo, 1, 4);
|
|
action.referencedObjectPath = obj._objectPath;
|
|
obj._addAction(action, new InstantiateActionResultHandler(obj), true);
|
|
return action;
|
|
};
|
|
ActionFactory.createTraceAction = function (context, message, addTraceMessage) {
|
|
var actionInfo = {
|
|
Id: context._nextId(),
|
|
ActionType: 5,
|
|
Name: 'Trace',
|
|
ObjectPathId: 0
|
|
};
|
|
var ret = new Action(actionInfo, 1, 4);
|
|
context._pendingRequest.addAction(ret);
|
|
if (addTraceMessage) {
|
|
context._pendingRequest.addTrace(actionInfo.Id, message);
|
|
}
|
|
return ret;
|
|
};
|
|
ActionFactory.createTraceMarkerForCallback = function (context, callback) {
|
|
var action = ActionFactory.createTraceAction(context, null, false);
|
|
context._pendingRequest.addActionResultHandler(action, new TraceMarkerActionResultHandler(callback));
|
|
};
|
|
return ActionFactory;
|
|
}(CommonActionFactory));
|
|
OfficeExtension_1.ActionFactory = ActionFactory;
|
|
var ClientObject = (function (_super) {
|
|
__extends(ClientObject, _super);
|
|
function ClientObject(context, objectPath) {
|
|
var _this = _super.call(this, context, objectPath) || this;
|
|
Utility.checkArgumentNull(context, 'context');
|
|
_this.m_context = context;
|
|
if (_this._objectPath) {
|
|
if (!context._processingResult && context._pendingRequest) {
|
|
ActionFactory.createInstantiateAction(context, _this);
|
|
if (context._autoCleanup && _this._KeepReference) {
|
|
context.trackedObjects._autoAdd(_this);
|
|
}
|
|
}
|
|
if (OfficeExtension_1._internalConfig.appendTypeNameToObjectPathInfo && _this._objectPath.objectPathInfo && _this._className) {
|
|
_this._objectPath.objectPathInfo.T = _this._className;
|
|
}
|
|
}
|
|
return _this;
|
|
}
|
|
Object.defineProperty(ClientObject.prototype, "context", {
|
|
get: function () {
|
|
return this.m_context;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientObject.prototype, "isNull", {
|
|
get: function () {
|
|
if (typeof (this.m_isNull) === 'undefined' && TestUtility.isMock()) {
|
|
return false;
|
|
}
|
|
Utility.throwIfNotLoaded('isNull', this._isNull, null, this._isNull);
|
|
return this._isNull;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientObject.prototype, "isNullObject", {
|
|
get: function () {
|
|
if (typeof (this.m_isNull) === 'undefined' && TestUtility.isMock()) {
|
|
return false;
|
|
}
|
|
Utility.throwIfNotLoaded('isNullObject', this._isNull, null, this._isNull);
|
|
return this._isNull;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientObject.prototype, "_isNull", {
|
|
get: function () {
|
|
return this.m_isNull;
|
|
},
|
|
set: function (value) {
|
|
this.m_isNull = value;
|
|
if (value && this._objectPath) {
|
|
this._objectPath._updateAsNullObject();
|
|
}
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ClientObject.prototype._addAction = function (action, resultHandler, isInstantiationEnsured) {
|
|
if (resultHandler === void 0) {
|
|
resultHandler = null;
|
|
}
|
|
if (!isInstantiationEnsured) {
|
|
this.context._pendingRequest.ensureInstantiateObjectPath(this._objectPath);
|
|
this.context._pendingRequest.ensureInstantiateObjectPaths(action.referencedArgumentObjectPaths);
|
|
}
|
|
this.context._pendingRequest.addAction(action);
|
|
this.context._pendingRequest.addReferencedObjectPath(this._objectPath);
|
|
this.context._pendingRequest.addReferencedObjectPaths(action.referencedArgumentObjectPaths);
|
|
this.context._pendingRequest.addActionResultHandler(action, resultHandler);
|
|
return CoreUtility._createPromiseFromResult(null);
|
|
};
|
|
ClientObject.prototype._addPreviewExecutionAction = function (action) {
|
|
if (!Utility.isUndefined(this._className)) {
|
|
action.ObjectType = this._className;
|
|
var objectId = Utility._getPropertyValueWithoutCheckLoaded(this, Constants.idLowerCase);
|
|
if (Utility.isUndefined(objectId)) {
|
|
objectId = Utility._getPropertyValueWithoutCheckLoaded(this, Constants.idPrivate);
|
|
}
|
|
if (Utility.isUndefined(objectId)) {
|
|
objectId = Utility._getPropertyValueWithoutCheckLoaded(this, Constants.previewExecutionObjectId);
|
|
}
|
|
action.ObjectId = objectId;
|
|
this.context._pendingRequest.addPreviewExecutionAction(action);
|
|
}
|
|
};
|
|
ClientObject.prototype._handleResult = function (value) {
|
|
this._isNull = Utility.isNullOrUndefined(value);
|
|
this.context.trackedObjects._autoTrackIfNecessaryWhenHandleObjectResultValue(this, value);
|
|
};
|
|
ClientObject.prototype._handleIdResult = function (value) {
|
|
this._isNull = Utility.isNullOrUndefined(value);
|
|
Utility.fixObjectPathIfNecessary(this, value);
|
|
this.context.trackedObjects._autoTrackIfNecessaryWhenHandleObjectResultValue(this, value);
|
|
};
|
|
ClientObject.prototype._handleRetrieveResult = function (value, result) {
|
|
this._handleIdResult(value);
|
|
};
|
|
ClientObject.prototype._recursivelySet = function (input, options, scalarWriteablePropertyNames, objectPropertyNames, notAllowedToBeSetPropertyNames) {
|
|
var isClientObject = input instanceof ClientObject;
|
|
var originalInput = input;
|
|
if (isClientObject) {
|
|
if (Object.getPrototypeOf(this) === Object.getPrototypeOf(input)) {
|
|
input = JSON.parse(JSON.stringify(input));
|
|
}
|
|
else {
|
|
throw _Internal.RuntimeError._createInvalidArgError({
|
|
argumentName: 'properties',
|
|
errorLocation: this._className + '.set'
|
|
});
|
|
}
|
|
}
|
|
try {
|
|
var prop;
|
|
for (var i = 0; i < scalarWriteablePropertyNames.length; i++) {
|
|
prop = scalarWriteablePropertyNames[i];
|
|
if (input.hasOwnProperty(prop)) {
|
|
if (typeof input[prop] !== 'undefined') {
|
|
this[prop] = input[prop];
|
|
}
|
|
}
|
|
}
|
|
for (var i = 0; i < objectPropertyNames.length; i++) {
|
|
prop = objectPropertyNames[i];
|
|
if (input.hasOwnProperty(prop)) {
|
|
if (typeof input[prop] !== 'undefined') {
|
|
var dataToPassToSet = isClientObject ? originalInput[prop] : input[prop];
|
|
this[prop].set(dataToPassToSet, options);
|
|
}
|
|
}
|
|
}
|
|
var throwOnReadOnly = !isClientObject;
|
|
if (options && !Utility.isNullOrUndefined(throwOnReadOnly)) {
|
|
throwOnReadOnly = options.throwOnReadOnly;
|
|
}
|
|
for (var i = 0; i < notAllowedToBeSetPropertyNames.length; i++) {
|
|
prop = notAllowedToBeSetPropertyNames[i];
|
|
if (input.hasOwnProperty(prop)) {
|
|
if (typeof input[prop] !== 'undefined' && throwOnReadOnly) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidArgument,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(ResourceStrings.cannotApplyPropertyThroughSetMethod, prop),
|
|
debugInfo: {
|
|
errorLocation: prop
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
for (prop in input) {
|
|
if (scalarWriteablePropertyNames.indexOf(prop) < 0 && objectPropertyNames.indexOf(prop) < 0) {
|
|
var propertyDescriptor = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(this), prop);
|
|
if (!propertyDescriptor) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidArgument,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CommonResourceStrings.propertyDoesNotExist, prop),
|
|
debugInfo: {
|
|
errorLocation: prop
|
|
}
|
|
});
|
|
}
|
|
if (throwOnReadOnly && !propertyDescriptor.set) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidArgument,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CommonResourceStrings.attemptingToSetReadOnlyProperty, prop),
|
|
debugInfo: {
|
|
errorLocation: prop
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (innerError) {
|
|
throw new _Internal.RuntimeError({
|
|
code: CoreErrorCodes.invalidArgument,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(CoreResourceStrings.invalidArgument, 'properties'),
|
|
debugInfo: {
|
|
errorLocation: this._className + '.set'
|
|
},
|
|
innerError: innerError
|
|
});
|
|
}
|
|
};
|
|
return ClientObject;
|
|
}(ClientObjectBase));
|
|
OfficeExtension_1.ClientObject = ClientObject;
|
|
var HostBridgeRequestExecutor = (function () {
|
|
function HostBridgeRequestExecutor(session) {
|
|
this.m_session = session;
|
|
}
|
|
HostBridgeRequestExecutor.prototype.executeAsync = function (customData, requestFlags, requestMessage) {
|
|
var httpRequestInfo = {
|
|
url: CoreConstants.processQuery,
|
|
method: 'POST',
|
|
headers: requestMessage.Headers,
|
|
body: requestMessage.Body
|
|
};
|
|
var message = {
|
|
id: HostBridge.nextId(),
|
|
type: 1,
|
|
flags: requestFlags,
|
|
message: httpRequestInfo
|
|
};
|
|
CoreUtility.log(JSON.stringify(message));
|
|
return this.m_session.sendMessageToHost(message).then(function (nativeBridgeResponse) {
|
|
CoreUtility.log('Received response: ' + JSON.stringify(nativeBridgeResponse));
|
|
var responseInfo = nativeBridgeResponse.message;
|
|
var response;
|
|
if (responseInfo.statusCode === 200) {
|
|
response = {
|
|
HttpStatusCode: responseInfo.statusCode,
|
|
ErrorCode: null,
|
|
ErrorMessage: null,
|
|
Headers: responseInfo.headers,
|
|
Body: CoreUtility._parseResponseBody(responseInfo)
|
|
};
|
|
}
|
|
else {
|
|
CoreUtility.log('Error Response:' + responseInfo.body);
|
|
var error = CoreUtility._parseErrorResponse(responseInfo);
|
|
response = {
|
|
HttpStatusCode: responseInfo.statusCode,
|
|
ErrorCode: error.errorCode,
|
|
ErrorMessage: error.errorMessage,
|
|
Headers: responseInfo.headers,
|
|
Body: null
|
|
};
|
|
}
|
|
return response;
|
|
});
|
|
};
|
|
return HostBridgeRequestExecutor;
|
|
}());
|
|
var HostBridgeSession = (function (_super) {
|
|
__extends(HostBridgeSession, _super);
|
|
function HostBridgeSession(m_bridge) {
|
|
var _this = _super.call(this) || this;
|
|
_this.m_bridge = m_bridge;
|
|
_this.m_bridge.addHostMessageHandler(function (message) {
|
|
if (message.type === 3) {
|
|
GenericEventRegistration.getGenericEventRegistration()._handleRichApiMessage(message.message);
|
|
}
|
|
});
|
|
return _this;
|
|
}
|
|
HostBridgeSession.getInstanceIfHostBridgeInited = function () {
|
|
if (HostBridge.instance) {
|
|
if (CoreUtility.isNullOrUndefined(HostBridgeSession.s_instance) ||
|
|
HostBridgeSession.s_instance.m_bridge !== HostBridge.instance) {
|
|
HostBridgeSession.s_instance = new HostBridgeSession(HostBridge.instance);
|
|
}
|
|
return HostBridgeSession.s_instance;
|
|
}
|
|
return null;
|
|
};
|
|
HostBridgeSession.prototype._resolveRequestUrlAndHeaderInfo = function () {
|
|
return CoreUtility._createPromiseFromResult(null);
|
|
};
|
|
HostBridgeSession.prototype._createRequestExecutorOrNull = function () {
|
|
CoreUtility.log('NativeBridgeSession::CreateRequestExecutor');
|
|
return new HostBridgeRequestExecutor(this);
|
|
};
|
|
Object.defineProperty(HostBridgeSession.prototype, "eventRegistration", {
|
|
get: function () {
|
|
return GenericEventRegistration.getGenericEventRegistration();
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
HostBridgeSession.prototype.sendMessageToHost = function (message) {
|
|
return this.m_bridge.sendMessageToHostAndExpectResponse(message);
|
|
};
|
|
return HostBridgeSession;
|
|
}(SessionBase));
|
|
OfficeExtension_1.HostBridgeSession = HostBridgeSession;
|
|
var ClientRequestContext = (function (_super) {
|
|
__extends(ClientRequestContext, _super);
|
|
function ClientRequestContext(url) {
|
|
var _this = _super.call(this) || this;
|
|
_this.m_customRequestHeaders = {};
|
|
_this.m_batchMode = 0;
|
|
_this._onRunFinishedNotifiers = [];
|
|
if (SessionBase._overrideSession) {
|
|
_this.m_requestUrlAndHeaderInfoResolver = SessionBase._overrideSession;
|
|
}
|
|
else {
|
|
if (Utility.isNullOrUndefined(url) || (typeof url === 'string' && url.length === 0)) {
|
|
url = ClientRequestContext.defaultRequestUrlAndHeaders;
|
|
if (!url) {
|
|
url = { url: CoreConstants.localDocument, headers: {} };
|
|
}
|
|
}
|
|
if (typeof url === 'string') {
|
|
_this.m_requestUrlAndHeaderInfo = { url: url, headers: {} };
|
|
}
|
|
else if (ClientRequestContext.isRequestUrlAndHeaderInfoResolver(url)) {
|
|
_this.m_requestUrlAndHeaderInfoResolver = url;
|
|
}
|
|
else if (ClientRequestContext.isRequestUrlAndHeaderInfo(url)) {
|
|
var requestInfo = url;
|
|
_this.m_requestUrlAndHeaderInfo = { url: requestInfo.url, headers: {} };
|
|
CoreUtility._copyHeaders(requestInfo.headers, _this.m_requestUrlAndHeaderInfo.headers);
|
|
}
|
|
else {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'url' });
|
|
}
|
|
}
|
|
if (!_this.m_requestUrlAndHeaderInfoResolver &&
|
|
_this.m_requestUrlAndHeaderInfo &&
|
|
CoreUtility._isLocalDocumentUrl(_this.m_requestUrlAndHeaderInfo.url) &&
|
|
HostBridgeSession.getInstanceIfHostBridgeInited()) {
|
|
_this.m_requestUrlAndHeaderInfo = null;
|
|
_this.m_requestUrlAndHeaderInfoResolver = HostBridgeSession.getInstanceIfHostBridgeInited();
|
|
}
|
|
if (_this.m_requestUrlAndHeaderInfoResolver instanceof SessionBase) {
|
|
_this.m_session = _this.m_requestUrlAndHeaderInfoResolver;
|
|
}
|
|
_this._processingResult = false;
|
|
_this._customData = Constants.iterativeExecutor;
|
|
_this.sync = _this.sync.bind(_this);
|
|
return _this;
|
|
}
|
|
Object.defineProperty(ClientRequestContext.prototype, "session", {
|
|
get: function () {
|
|
return this.m_session;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestContext.prototype, "eventRegistration", {
|
|
get: function () {
|
|
if (this.m_session) {
|
|
return this.m_session.eventRegistration;
|
|
}
|
|
return _Internal.officeJsEventRegistration;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestContext.prototype, "_url", {
|
|
get: function () {
|
|
if (this.m_requestUrlAndHeaderInfo) {
|
|
return this.m_requestUrlAndHeaderInfo.url;
|
|
}
|
|
return null;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestContext.prototype, "_pendingRequest", {
|
|
get: function () {
|
|
if (this.m_pendingRequest == null) {
|
|
this.m_pendingRequest = new ClientRequest(this);
|
|
}
|
|
return this.m_pendingRequest;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestContext.prototype, "debugInfo", {
|
|
get: function () {
|
|
var prettyPrinter = new RequestPrettyPrinter(this._rootObjectPropertyName, this._pendingRequest._objectPaths, this._pendingRequest._actions, OfficeExtension_1._internalConfig.showDisposeInfoInDebugInfo);
|
|
var statements = prettyPrinter.process();
|
|
return { pendingStatements: statements };
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestContext.prototype, "trackedObjects", {
|
|
get: function () {
|
|
if (!this.m_trackedObjects) {
|
|
this.m_trackedObjects = new TrackedObjects(this);
|
|
}
|
|
return this.m_trackedObjects;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestContext.prototype, "requestHeaders", {
|
|
get: function () {
|
|
return this.m_customRequestHeaders;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequestContext.prototype, "batchMode", {
|
|
get: function () {
|
|
return this.m_batchMode;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ClientRequestContext.prototype.ensureInProgressBatchIfBatchMode = function () {
|
|
if (this.m_batchMode === 1 && !this.m_explicitBatchInProgress) {
|
|
throw Utility.createRuntimeError(CoreErrorCodes.generalException, CoreUtility._getResourceString(ResourceStrings.notInsideBatch), null);
|
|
}
|
|
};
|
|
ClientRequestContext.prototype.load = function (clientObj, option) {
|
|
Utility.validateContext(this, clientObj);
|
|
var queryOption = ClientRequestContext._parseQueryOption(option);
|
|
CommonActionFactory.createQueryAction(this, clientObj, queryOption, clientObj);
|
|
};
|
|
ClientRequestContext.prototype.loadRecursive = function (clientObj, options, maxDepth) {
|
|
if (!Utility.isPlainJsonObject(options)) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'options' });
|
|
}
|
|
var quries = {};
|
|
for (var key in options) {
|
|
quries[key] = ClientRequestContext._parseQueryOption(options[key]);
|
|
}
|
|
var action = ActionFactory.createRecursiveQueryAction(this, clientObj, { Queries: quries, MaxDepth: maxDepth });
|
|
this._pendingRequest.addActionResultHandler(action, clientObj);
|
|
};
|
|
ClientRequestContext.prototype.trace = function (message) {
|
|
ActionFactory.createTraceAction(this, message, true);
|
|
};
|
|
ClientRequestContext.prototype._processOfficeJsErrorResponse = function (officeJsErrorCode, response) { };
|
|
ClientRequestContext.prototype.ensureRequestUrlAndHeaderInfo = function () {
|
|
var _this = this;
|
|
return Utility._createPromiseFromResult(null).then(function () {
|
|
if (!_this.m_requestUrlAndHeaderInfo) {
|
|
return _this.m_requestUrlAndHeaderInfoResolver._resolveRequestUrlAndHeaderInfo().then(function (value) {
|
|
_this.m_requestUrlAndHeaderInfo = value;
|
|
if (!_this.m_requestUrlAndHeaderInfo) {
|
|
_this.m_requestUrlAndHeaderInfo = { url: CoreConstants.localDocument, headers: {} };
|
|
}
|
|
if (Utility.isNullOrEmptyString(_this.m_requestUrlAndHeaderInfo.url)) {
|
|
_this.m_requestUrlAndHeaderInfo.url = CoreConstants.localDocument;
|
|
}
|
|
if (!_this.m_requestUrlAndHeaderInfo.headers) {
|
|
_this.m_requestUrlAndHeaderInfo.headers = {};
|
|
}
|
|
if (typeof _this.m_requestUrlAndHeaderInfoResolver._createRequestExecutorOrNull === 'function') {
|
|
var executor = _this.m_requestUrlAndHeaderInfoResolver._createRequestExecutorOrNull();
|
|
if (executor) {
|
|
_this._requestExecutor = executor;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
});
|
|
};
|
|
ClientRequestContext.prototype.syncPrivateMain = function () {
|
|
var _this = this;
|
|
return this.ensureRequestUrlAndHeaderInfo().then(function () {
|
|
var req = _this._pendingRequest;
|
|
_this.m_pendingRequest = null;
|
|
return _this.processPreSyncPromises(req).then(function () { return _this.syncPrivate(req); });
|
|
});
|
|
};
|
|
ClientRequestContext.prototype.syncPrivate = function (req) {
|
|
var _this = this;
|
|
if (TestUtility.isMock()) {
|
|
return CoreUtility._createPromiseFromResult(null);
|
|
}
|
|
if (!req.hasActions) {
|
|
return this.processPendingEventHandlers(req);
|
|
}
|
|
var _a = req.buildRequestMessageBodyAndRequestFlags(), msgBody = _a.body, requestFlags = _a.flags;
|
|
if (this._requestFlagModifier) {
|
|
requestFlags |= this._requestFlagModifier;
|
|
}
|
|
if (!this._requestExecutor) {
|
|
if (CoreUtility._isLocalDocumentUrl(this.m_requestUrlAndHeaderInfo.url)) {
|
|
this._requestExecutor = new OfficeJsRequestExecutor(this);
|
|
}
|
|
else {
|
|
this._requestExecutor = new HttpRequestExecutor();
|
|
}
|
|
}
|
|
var requestExecutor = this._requestExecutor;
|
|
var headers = {};
|
|
CoreUtility._copyHeaders(this.m_requestUrlAndHeaderInfo.headers, headers);
|
|
CoreUtility._copyHeaders(this.m_customRequestHeaders, headers);
|
|
delete this.m_customRequestHeaders[Constants.officeScriptEventId];
|
|
var requestExecutorRequestMessage = {
|
|
Url: this.m_requestUrlAndHeaderInfo.url,
|
|
Headers: headers,
|
|
Body: msgBody
|
|
};
|
|
req.invalidatePendingInvalidObjectPaths();
|
|
var errorFromResponse = null;
|
|
var errorFromProcessEventHandlers = null;
|
|
this._lastSyncStart = typeof performance === 'undefined' ? 0 : performance.now();
|
|
this._lastRequestFlags = requestFlags;
|
|
return requestExecutor
|
|
.executeAsync(this._customData, requestFlags, requestExecutorRequestMessage)
|
|
.then(function (response) {
|
|
_this._lastSyncEnd = typeof performance === 'undefined' ? 0 : performance.now();
|
|
errorFromResponse = _this.processRequestExecutorResponseMessage(req, response);
|
|
return _this.processPendingEventHandlers(req)["catch"](function (ex) {
|
|
CoreUtility.log('Error in processPendingEventHandlers');
|
|
CoreUtility.log(JSON.stringify(ex));
|
|
errorFromProcessEventHandlers = ex;
|
|
});
|
|
})
|
|
.then(function () {
|
|
if (errorFromResponse) {
|
|
CoreUtility.log('Throw error from response: ' + JSON.stringify(errorFromResponse));
|
|
throw errorFromResponse;
|
|
}
|
|
if (errorFromProcessEventHandlers) {
|
|
CoreUtility.log('Throw error from ProcessEventHandler: ' + JSON.stringify(errorFromProcessEventHandlers));
|
|
var transformedError = null;
|
|
if (errorFromProcessEventHandlers instanceof _Internal.RuntimeError) {
|
|
transformedError = errorFromProcessEventHandlers;
|
|
transformedError.traceMessages = req._responseTraceMessages;
|
|
}
|
|
else {
|
|
var message = null;
|
|
if (typeof errorFromProcessEventHandlers === 'string') {
|
|
message = errorFromProcessEventHandlers;
|
|
}
|
|
else {
|
|
message = errorFromProcessEventHandlers.message;
|
|
}
|
|
if (Utility.isNullOrEmptyString(message)) {
|
|
message = CoreUtility._getResourceString(ResourceStrings.cannotRegisterEvent);
|
|
}
|
|
transformedError = new _Internal.RuntimeError({
|
|
code: ErrorCodes.cannotRegisterEvent,
|
|
httpStatusCode: 400,
|
|
message: message,
|
|
traceMessages: req._responseTraceMessages
|
|
});
|
|
}
|
|
throw transformedError;
|
|
}
|
|
});
|
|
};
|
|
ClientRequestContext.prototype.processRequestExecutorResponseMessage = function (req, response) {
|
|
if (response.Body && response.Body.TraceIds) {
|
|
req._setResponseTraceIds(response.Body.TraceIds);
|
|
}
|
|
var traceMessages = req._responseTraceMessages;
|
|
var errorStatementInfo = null;
|
|
if (response.Body) {
|
|
if (response.Body.Error && response.Body.Error.ActionIndex >= 0) {
|
|
var prettyPrinter = new RequestPrettyPrinter(this._rootObjectPropertyName, req._objectPaths, req._actions, false, true);
|
|
var debugInfoStatementInfo = prettyPrinter.processForDebugStatementInfo(response.Body.Error.ActionIndex);
|
|
errorStatementInfo = {
|
|
statement: debugInfoStatementInfo.statement,
|
|
surroundingStatements: debugInfoStatementInfo.surroundingStatements,
|
|
fullStatements: ['Please enable config.extendedErrorLogging to see full statements.']
|
|
};
|
|
if (OfficeExtension_1.config.extendedErrorLogging) {
|
|
prettyPrinter = new RequestPrettyPrinter(this._rootObjectPropertyName, req._objectPaths, req._actions, false, false);
|
|
errorStatementInfo.fullStatements = prettyPrinter.process();
|
|
}
|
|
}
|
|
var actionResults = null;
|
|
if (response.Body.Results) {
|
|
actionResults = response.Body.Results;
|
|
}
|
|
else if (response.Body.ProcessedResults && response.Body.ProcessedResults.Results) {
|
|
actionResults = response.Body.ProcessedResults.Results;
|
|
}
|
|
if (actionResults) {
|
|
this._processingResult = true;
|
|
try {
|
|
req.processResponse(actionResults);
|
|
}
|
|
finally {
|
|
this._processingResult = false;
|
|
}
|
|
}
|
|
}
|
|
if (!Utility.isNullOrEmptyString(response.ErrorCode)) {
|
|
return new _Internal.RuntimeError({
|
|
code: response.ErrorCode,
|
|
httpStatusCode: response.HttpStatusCode,
|
|
message: response.ErrorMessage,
|
|
traceMessages: traceMessages
|
|
});
|
|
}
|
|
else if (response.Body && response.Body.Error) {
|
|
var debugInfo = {
|
|
errorLocation: response.Body.Error.Location
|
|
};
|
|
if (errorStatementInfo) {
|
|
debugInfo.statement = errorStatementInfo.statement;
|
|
debugInfo.surroundingStatements = errorStatementInfo.surroundingStatements;
|
|
debugInfo.fullStatements = errorStatementInfo.fullStatements;
|
|
}
|
|
return new _Internal.RuntimeError({
|
|
code: response.Body.Error.Code,
|
|
httpStatusCode: response.Body.Error.HttpStatusCode,
|
|
message: response.Body.Error.Message,
|
|
traceMessages: traceMessages,
|
|
debugInfo: debugInfo
|
|
});
|
|
}
|
|
return null;
|
|
};
|
|
ClientRequestContext.prototype.processPendingEventHandlers = function (req) {
|
|
var ret = Utility._createPromiseFromResult(null);
|
|
for (var i = 0; i < req._pendingProcessEventHandlers.length; i++) {
|
|
var eventHandlers = req._pendingProcessEventHandlers[i];
|
|
ret = ret.then(this.createProcessOneEventHandlersFunc(eventHandlers, req));
|
|
}
|
|
return ret;
|
|
};
|
|
ClientRequestContext.prototype.createProcessOneEventHandlersFunc = function (eventHandlers, req) {
|
|
return function () { return eventHandlers._processRegistration(req); };
|
|
};
|
|
ClientRequestContext.prototype.processPreSyncPromises = function (req) {
|
|
var ret = Utility._createPromiseFromResult(null);
|
|
for (var i = 0; i < req._preSyncPromises.length; i++) {
|
|
var p = req._preSyncPromises[i];
|
|
ret = ret.then(this.createProcessOneProSyncFunc(p));
|
|
}
|
|
return ret;
|
|
};
|
|
ClientRequestContext.prototype.createProcessOneProSyncFunc = function (p) {
|
|
return function () { return p; };
|
|
};
|
|
ClientRequestContext.prototype.sync = function (passThroughValue) {
|
|
if (TestUtility.isMock()) {
|
|
return CoreUtility._createPromiseFromResult(passThroughValue);
|
|
}
|
|
return this.syncPrivateMain().then(function () { return passThroughValue; });
|
|
};
|
|
ClientRequestContext.prototype.batch = function (batchBody) {
|
|
var _this = this;
|
|
if (this.m_batchMode !== 1) {
|
|
return CoreUtility._createPromiseFromException(Utility.createRuntimeError(CoreErrorCodes.generalException, null, null));
|
|
}
|
|
if (this.m_explicitBatchInProgress) {
|
|
return CoreUtility._createPromiseFromException(Utility.createRuntimeError(CoreErrorCodes.generalException, CoreUtility._getResourceString(ResourceStrings.pendingBatchInProgress), null));
|
|
}
|
|
if (Utility.isNullOrUndefined(batchBody)) {
|
|
return Utility._createPromiseFromResult(null);
|
|
}
|
|
this.m_explicitBatchInProgress = true;
|
|
var previousRequest = this.m_pendingRequest;
|
|
this.m_pendingRequest = new ClientRequest(this);
|
|
var batchBodyResult;
|
|
try {
|
|
batchBodyResult = batchBody(this._rootObject, this);
|
|
}
|
|
catch (ex) {
|
|
this.m_explicitBatchInProgress = false;
|
|
this.m_pendingRequest = previousRequest;
|
|
return CoreUtility._createPromiseFromException(ex);
|
|
}
|
|
var request;
|
|
var batchBodyResultPromise;
|
|
if (typeof batchBodyResult === 'object' && batchBodyResult && typeof batchBodyResult.then === 'function') {
|
|
batchBodyResultPromise = Utility._createPromiseFromResult(null)
|
|
.then(function () {
|
|
return batchBodyResult;
|
|
})
|
|
.then(function (result) {
|
|
_this.m_explicitBatchInProgress = false;
|
|
request = _this.m_pendingRequest;
|
|
_this.m_pendingRequest = previousRequest;
|
|
return result;
|
|
})["catch"](function (ex) {
|
|
_this.m_explicitBatchInProgress = false;
|
|
request = _this.m_pendingRequest;
|
|
_this.m_pendingRequest = previousRequest;
|
|
return CoreUtility._createPromiseFromException(ex);
|
|
});
|
|
}
|
|
else {
|
|
this.m_explicitBatchInProgress = false;
|
|
request = this.m_pendingRequest;
|
|
this.m_pendingRequest = previousRequest;
|
|
batchBodyResultPromise = Utility._createPromiseFromResult(batchBodyResult);
|
|
}
|
|
return batchBodyResultPromise.then(function (result) {
|
|
return _this.ensureRequestUrlAndHeaderInfo()
|
|
.then(function () {
|
|
return _this.syncPrivate(request);
|
|
})
|
|
.then(function () {
|
|
return result;
|
|
});
|
|
});
|
|
};
|
|
ClientRequestContext._run = function (ctxInitializer, runBody, numCleanupAttempts, retryDelay, onCleanupSuccess, onCleanupFailure) {
|
|
if (numCleanupAttempts === void 0) {
|
|
numCleanupAttempts = 3;
|
|
}
|
|
if (retryDelay === void 0) {
|
|
retryDelay = 5000;
|
|
}
|
|
return ClientRequestContext._runCommon('run', null, ctxInitializer, 0, runBody, numCleanupAttempts, retryDelay, null, onCleanupSuccess, onCleanupFailure);
|
|
};
|
|
ClientRequestContext.isValidRequestInfo = function (value) {
|
|
return (typeof value === 'string' ||
|
|
ClientRequestContext.isRequestUrlAndHeaderInfo(value) ||
|
|
ClientRequestContext.isRequestUrlAndHeaderInfoResolver(value));
|
|
};
|
|
ClientRequestContext.isRequestUrlAndHeaderInfo = function (value) {
|
|
return (typeof value === 'object' &&
|
|
value !== null &&
|
|
Object.getPrototypeOf(value) === Object.getPrototypeOf({}) &&
|
|
!Utility.isNullOrUndefined(value.url));
|
|
};
|
|
ClientRequestContext.isRequestUrlAndHeaderInfoResolver = function (value) {
|
|
return typeof value === 'object' && value !== null && typeof value._resolveRequestUrlAndHeaderInfo === 'function';
|
|
};
|
|
ClientRequestContext._runBatch = function (functionName, receivedRunArgs, ctxInitializer, onBeforeRun, numCleanupAttempts, retryDelay, onCleanupSuccess, onCleanupFailure) {
|
|
if (numCleanupAttempts === void 0) {
|
|
numCleanupAttempts = 3;
|
|
}
|
|
if (retryDelay === void 0) {
|
|
retryDelay = 5000;
|
|
}
|
|
return ClientRequestContext._runBatchCommon(0, functionName, receivedRunArgs, ctxInitializer, numCleanupAttempts, retryDelay, onBeforeRun, onCleanupSuccess, onCleanupFailure);
|
|
};
|
|
ClientRequestContext._runExplicitBatch = function (functionName, receivedRunArgs, ctxInitializer, onBeforeRun, numCleanupAttempts, retryDelay, onCleanupSuccess, onCleanupFailure) {
|
|
if (numCleanupAttempts === void 0) {
|
|
numCleanupAttempts = 3;
|
|
}
|
|
if (retryDelay === void 0) {
|
|
retryDelay = 5000;
|
|
}
|
|
return ClientRequestContext._runBatchCommon(1, functionName, receivedRunArgs, ctxInitializer, numCleanupAttempts, retryDelay, onBeforeRun, onCleanupSuccess, onCleanupFailure);
|
|
};
|
|
ClientRequestContext._runBatchCommon = function (batchMode, functionName, receivedRunArgs, ctxInitializer, numCleanupAttempts, retryDelay, onBeforeRun, onCleanupSuccess, onCleanupFailure) {
|
|
if (numCleanupAttempts === void 0) {
|
|
numCleanupAttempts = 3;
|
|
}
|
|
if (retryDelay === void 0) {
|
|
retryDelay = 5000;
|
|
}
|
|
var ctxRetriever;
|
|
var batch;
|
|
var requestInfo = null;
|
|
var previousObjects = null;
|
|
var argOffset = 0;
|
|
var options = null;
|
|
if (receivedRunArgs.length > 0) {
|
|
if (ClientRequestContext.isValidRequestInfo(receivedRunArgs[0])) {
|
|
requestInfo = receivedRunArgs[0];
|
|
argOffset = 1;
|
|
}
|
|
else if (Utility.isPlainJsonObject(receivedRunArgs[0])) {
|
|
options = receivedRunArgs[0];
|
|
requestInfo = options.session;
|
|
if (requestInfo != null && !ClientRequestContext.isValidRequestInfo(requestInfo)) {
|
|
return ClientRequestContext.createErrorPromise(functionName);
|
|
}
|
|
previousObjects = options.previousObjects;
|
|
argOffset = 1;
|
|
}
|
|
}
|
|
if (receivedRunArgs.length == argOffset + 1) {
|
|
batch = receivedRunArgs[argOffset + 0];
|
|
}
|
|
else if (options == null && receivedRunArgs.length == argOffset + 2) {
|
|
previousObjects = receivedRunArgs[argOffset + 0];
|
|
batch = receivedRunArgs[argOffset + 1];
|
|
}
|
|
else {
|
|
return ClientRequestContext.createErrorPromise(functionName);
|
|
}
|
|
if (previousObjects != null) {
|
|
if (previousObjects instanceof ClientObject) {
|
|
ctxRetriever = function () { return previousObjects.context; };
|
|
}
|
|
else if (previousObjects instanceof ClientRequestContext) {
|
|
ctxRetriever = function () { return previousObjects; };
|
|
}
|
|
else if (Array.isArray(previousObjects)) {
|
|
var array = previousObjects;
|
|
if (array.length == 0) {
|
|
return ClientRequestContext.createErrorPromise(functionName);
|
|
}
|
|
for (var i = 0; i < array.length; i++) {
|
|
if (!(array[i] instanceof ClientObject)) {
|
|
return ClientRequestContext.createErrorPromise(functionName);
|
|
}
|
|
if (array[i].context != array[0].context) {
|
|
return ClientRequestContext.createErrorPromise(functionName, ResourceStrings.invalidRequestContext);
|
|
}
|
|
}
|
|
ctxRetriever = function () { return array[0].context; };
|
|
}
|
|
else {
|
|
return ClientRequestContext.createErrorPromise(functionName);
|
|
}
|
|
}
|
|
else {
|
|
ctxRetriever = ctxInitializer;
|
|
}
|
|
var onBeforeRunWithOptions = null;
|
|
if (onBeforeRun) {
|
|
onBeforeRunWithOptions = function (context) { return onBeforeRun(options || {}, context); };
|
|
}
|
|
return ClientRequestContext._runCommon(functionName, requestInfo, ctxRetriever, batchMode, batch, numCleanupAttempts, retryDelay, onBeforeRunWithOptions, onCleanupSuccess, onCleanupFailure);
|
|
};
|
|
ClientRequestContext.createErrorPromise = function (functionName, code) {
|
|
if (code === void 0) {
|
|
code = CoreResourceStrings.invalidArgument;
|
|
}
|
|
return CoreUtility._createPromiseFromException(Utility.createRuntimeError(code, CoreUtility._getResourceString(code), functionName));
|
|
};
|
|
ClientRequestContext._runCommon = function (functionName, requestInfo, ctxRetriever, batchMode, runBody, numCleanupAttempts, retryDelay, onBeforeRun, onCleanupSuccess, onCleanupFailure) {
|
|
if (SessionBase._overrideSession) {
|
|
requestInfo = SessionBase._overrideSession;
|
|
}
|
|
var starterPromise = CoreUtility.createPromise(function (resolve, reject) {
|
|
resolve();
|
|
});
|
|
var ctx;
|
|
var succeeded = false;
|
|
var resultOrError;
|
|
var previousBatchMode;
|
|
return starterPromise
|
|
.then(function () {
|
|
ctx = ctxRetriever(requestInfo);
|
|
if (ctx._autoCleanup) {
|
|
return new OfficeExtension_1.Promise(function (resolve, reject) {
|
|
ctx._onRunFinishedNotifiers.push(function () {
|
|
ctx._autoCleanup = true;
|
|
resolve();
|
|
});
|
|
});
|
|
}
|
|
else {
|
|
ctx._autoCleanup = true;
|
|
}
|
|
})
|
|
.then(function () {
|
|
if (typeof runBody !== 'function') {
|
|
return ClientRequestContext.createErrorPromise(functionName);
|
|
}
|
|
previousBatchMode = ctx.m_batchMode;
|
|
ctx.m_batchMode = batchMode;
|
|
if (onBeforeRun) {
|
|
onBeforeRun(ctx);
|
|
}
|
|
var runBodyResult;
|
|
if (batchMode == 1) {
|
|
runBodyResult = runBody(ctx.batch.bind(ctx));
|
|
}
|
|
else {
|
|
runBodyResult = runBody(ctx);
|
|
}
|
|
if (Utility.isNullOrUndefined(runBodyResult) || typeof runBodyResult.then !== 'function') {
|
|
Utility.throwError(ResourceStrings.runMustReturnPromise);
|
|
}
|
|
return runBodyResult;
|
|
})
|
|
.then(function (runBodyResult) {
|
|
if (batchMode === 1) {
|
|
return runBodyResult;
|
|
}
|
|
else {
|
|
return ctx.sync(runBodyResult);
|
|
}
|
|
})
|
|
.then(function (result) {
|
|
succeeded = true;
|
|
resultOrError = result;
|
|
})["catch"](function (error) {
|
|
resultOrError = error;
|
|
})
|
|
.then(function () {
|
|
var itemsToRemove = ctx.trackedObjects._retrieveAndClearAutoCleanupList();
|
|
ctx._autoCleanup = false;
|
|
ctx.m_batchMode = previousBatchMode;
|
|
for (var key in itemsToRemove) {
|
|
itemsToRemove[key]._objectPath.isValid = false;
|
|
}
|
|
var cleanupCounter = 0;
|
|
if (Utility._synchronousCleanup || ClientRequestContext.isRequestUrlAndHeaderInfoResolver(requestInfo)) {
|
|
return attemptCleanup();
|
|
}
|
|
else {
|
|
attemptCleanup();
|
|
}
|
|
function attemptCleanup() {
|
|
cleanupCounter++;
|
|
var savedPendingRequest = ctx.m_pendingRequest;
|
|
var savedBatchMode = ctx.m_batchMode;
|
|
var request = new ClientRequest(ctx);
|
|
ctx.m_pendingRequest = request;
|
|
ctx.m_batchMode = 0;
|
|
try {
|
|
for (var key in itemsToRemove) {
|
|
ctx.trackedObjects.remove(itemsToRemove[key]);
|
|
}
|
|
}
|
|
finally {
|
|
ctx.m_batchMode = savedBatchMode;
|
|
ctx.m_pendingRequest = savedPendingRequest;
|
|
}
|
|
return ctx
|
|
.syncPrivate(request)
|
|
.then(function () {
|
|
if (onCleanupSuccess) {
|
|
onCleanupSuccess(cleanupCounter);
|
|
}
|
|
})["catch"](function () {
|
|
if (onCleanupFailure) {
|
|
onCleanupFailure(cleanupCounter);
|
|
}
|
|
if (cleanupCounter < numCleanupAttempts) {
|
|
setTimeout(function () {
|
|
attemptCleanup();
|
|
}, retryDelay);
|
|
}
|
|
});
|
|
}
|
|
})
|
|
.then(function () {
|
|
if (ctx._onRunFinishedNotifiers && ctx._onRunFinishedNotifiers.length > 0) {
|
|
var func = ctx._onRunFinishedNotifiers.shift();
|
|
func();
|
|
}
|
|
if (succeeded) {
|
|
return resultOrError;
|
|
}
|
|
else {
|
|
throw resultOrError;
|
|
}
|
|
});
|
|
};
|
|
return ClientRequestContext;
|
|
}(ClientRequestContextBase));
|
|
OfficeExtension_1.ClientRequestContext = ClientRequestContext;
|
|
var RetrieveResultImpl = (function () {
|
|
function RetrieveResultImpl(m_proxy, m_shouldPolyfill) {
|
|
this.m_proxy = m_proxy;
|
|
this.m_shouldPolyfill = m_shouldPolyfill;
|
|
var scalarPropertyNames = m_proxy[Constants.scalarPropertyNames];
|
|
var navigationPropertyNames = m_proxy[Constants.navigationPropertyNames];
|
|
var typeName = m_proxy[Constants.className];
|
|
var isCollection = m_proxy[Constants.isCollection];
|
|
if (scalarPropertyNames) {
|
|
for (var i = 0; i < scalarPropertyNames.length; i++) {
|
|
Utility.definePropertyThrowUnloadedException(this, typeName, scalarPropertyNames[i]);
|
|
}
|
|
}
|
|
if (navigationPropertyNames) {
|
|
for (var i = 0; i < navigationPropertyNames.length; i++) {
|
|
Utility.definePropertyThrowUnloadedException(this, typeName, navigationPropertyNames[i]);
|
|
}
|
|
}
|
|
if (isCollection) {
|
|
Utility.definePropertyThrowUnloadedException(this, typeName, Constants.itemsLowerCase);
|
|
}
|
|
}
|
|
Object.defineProperty(RetrieveResultImpl.prototype, "$proxy", {
|
|
get: function () {
|
|
return this.m_proxy;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RetrieveResultImpl.prototype, "$isNullObject", {
|
|
get: function () {
|
|
if (!this.m_isLoaded) {
|
|
throw new _Internal.RuntimeError({
|
|
code: ErrorCodes.valueNotLoaded,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(ResourceStrings.valueNotLoaded),
|
|
debugInfo: {
|
|
errorLocation: 'retrieveResult.$isNullObject'
|
|
}
|
|
});
|
|
}
|
|
return this.m_isNullObject;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
RetrieveResultImpl.prototype.toJSON = function () {
|
|
if (!this.m_isLoaded) {
|
|
return undefined;
|
|
}
|
|
if (this.m_isNullObject) {
|
|
return null;
|
|
}
|
|
if (Utility.isUndefined(this.m_json)) {
|
|
this.m_json = Utility.purifyJson(this.m_value);
|
|
}
|
|
return this.m_json;
|
|
};
|
|
RetrieveResultImpl.prototype.toString = function () {
|
|
return JSON.stringify(this.toJSON());
|
|
};
|
|
RetrieveResultImpl.prototype._handleResult = function (value) {
|
|
this.m_isLoaded = true;
|
|
if (value === null || (typeof value === 'object' && value && value._IsNull)) {
|
|
this.m_isNullObject = true;
|
|
value = null;
|
|
}
|
|
else {
|
|
this.m_isNullObject = false;
|
|
}
|
|
if (this.m_shouldPolyfill) {
|
|
value = Utility.changePropertyNameToCamelLowerCase(value);
|
|
}
|
|
this.m_value = value;
|
|
this.m_proxy._handleRetrieveResult(value, this);
|
|
};
|
|
return RetrieveResultImpl;
|
|
}());
|
|
var Constants = (function (_super) {
|
|
__extends(Constants, _super);
|
|
function Constants() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Constants.getItemAt = 'GetItemAt';
|
|
Constants.index = '_Index';
|
|
Constants.iterativeExecutor = 'IterativeExecutor';
|
|
Constants.isTracked = '_IsTracked';
|
|
Constants.eventMessageCategory = 65536;
|
|
Constants.eventWorkbookId = 'Workbook';
|
|
Constants.eventSourceRemote = 'Remote';
|
|
Constants.proxy = '$proxy';
|
|
Constants.className = '_className';
|
|
Constants.isCollection = '_isCollection';
|
|
Constants.collectionPropertyPath = '_collectionPropertyPath';
|
|
Constants.objectPathInfoDoNotKeepReferenceFieldName = 'D';
|
|
Constants.officeScriptEventId = 'X-OfficeScriptEventId';
|
|
Constants.officeScriptFireRecordingEvent = 'X-OfficeScriptFireRecordingEvent';
|
|
return Constants;
|
|
}(CommonConstants));
|
|
OfficeExtension_1.Constants = Constants;
|
|
var ClientRequest = (function (_super) {
|
|
__extends(ClientRequest, _super);
|
|
function ClientRequest(context) {
|
|
var _this = _super.call(this, context) || this;
|
|
_this.m_context = context;
|
|
_this.m_pendingProcessEventHandlers = [];
|
|
_this.m_pendingEventHandlerActions = {};
|
|
_this.m_traceInfos = {};
|
|
_this.m_responseTraceIds = {};
|
|
_this.m_responseTraceMessages = [];
|
|
return _this;
|
|
}
|
|
Object.defineProperty(ClientRequest.prototype, "traceInfos", {
|
|
get: function () {
|
|
return this.m_traceInfos;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequest.prototype, "_responseTraceMessages", {
|
|
get: function () {
|
|
return this.m_responseTraceMessages;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ClientRequest.prototype, "_responseTraceIds", {
|
|
get: function () {
|
|
return this.m_responseTraceIds;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ClientRequest.prototype._setResponseTraceIds = function (value) {
|
|
if (value) {
|
|
for (var i = 0; i < value.length; i++) {
|
|
var traceId = value[i];
|
|
this.m_responseTraceIds[traceId] = traceId;
|
|
var message = this.m_traceInfos[traceId];
|
|
if (!CoreUtility.isNullOrUndefined(message)) {
|
|
this.m_responseTraceMessages.push(message);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
ClientRequest.prototype.addTrace = function (actionId, message) {
|
|
this.m_traceInfos[actionId] = message;
|
|
};
|
|
ClientRequest.prototype._addPendingEventHandlerAction = function (eventHandlers, action) {
|
|
if (!this.m_pendingEventHandlerActions[eventHandlers._id]) {
|
|
this.m_pendingEventHandlerActions[eventHandlers._id] = [];
|
|
this.m_pendingProcessEventHandlers.push(eventHandlers);
|
|
}
|
|
this.m_pendingEventHandlerActions[eventHandlers._id].push(action);
|
|
};
|
|
Object.defineProperty(ClientRequest.prototype, "_pendingProcessEventHandlers", {
|
|
get: function () {
|
|
return this.m_pendingProcessEventHandlers;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ClientRequest.prototype._getPendingEventHandlerActions = function (eventHandlers) {
|
|
return this.m_pendingEventHandlerActions[eventHandlers._id];
|
|
};
|
|
return ClientRequest;
|
|
}(ClientRequestBase));
|
|
OfficeExtension_1.ClientRequest = ClientRequest;
|
|
var EventHandlers = (function () {
|
|
function EventHandlers(context, parentObject, name, eventInfo) {
|
|
var _this = this;
|
|
this.m_id = context._nextId();
|
|
this.m_context = context;
|
|
this.m_name = name;
|
|
this.m_handlers = [];
|
|
this.m_registered = false;
|
|
this.m_eventInfo = eventInfo;
|
|
this.m_callback = function (args) {
|
|
_this.m_eventInfo.eventArgsTransformFunc(args).then(function (newArgs) { return _this.fireEvent(newArgs); });
|
|
};
|
|
}
|
|
Object.defineProperty(EventHandlers.prototype, "_registered", {
|
|
get: function () {
|
|
return this.m_registered;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(EventHandlers.prototype, "_id", {
|
|
get: function () {
|
|
return this.m_id;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(EventHandlers.prototype, "_handlers", {
|
|
get: function () {
|
|
return this.m_handlers;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(EventHandlers.prototype, "_context", {
|
|
get: function () {
|
|
return this.m_context;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(EventHandlers.prototype, "_callback", {
|
|
get: function () {
|
|
return this.m_callback;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
EventHandlers.prototype.add = function (handler) {
|
|
var action = ActionFactory.createTraceAction(this.m_context, null, false);
|
|
this.m_context._pendingRequest._addPendingEventHandlerAction(this, {
|
|
id: action.actionInfo.Id,
|
|
handler: handler,
|
|
operation: 0
|
|
});
|
|
return new EventHandlerResult(this.m_context, this, handler);
|
|
};
|
|
EventHandlers.prototype.remove = function (handler) {
|
|
var action = ActionFactory.createTraceAction(this.m_context, null, false);
|
|
this.m_context._pendingRequest._addPendingEventHandlerAction(this, {
|
|
id: action.actionInfo.Id,
|
|
handler: handler,
|
|
operation: 1
|
|
});
|
|
};
|
|
EventHandlers.prototype.removeAll = function () {
|
|
var action = ActionFactory.createTraceAction(this.m_context, null, false);
|
|
this.m_context._pendingRequest._addPendingEventHandlerAction(this, {
|
|
id: action.actionInfo.Id,
|
|
handler: null,
|
|
operation: 2
|
|
});
|
|
};
|
|
EventHandlers.prototype._processRegistration = function (req) {
|
|
var _this = this;
|
|
var ret = CoreUtility._createPromiseFromResult(null);
|
|
var actions = req._getPendingEventHandlerActions(this);
|
|
if (!actions) {
|
|
return ret;
|
|
}
|
|
var handlersResult = [];
|
|
for (var i = 0; i < this.m_handlers.length; i++) {
|
|
handlersResult.push(this.m_handlers[i]);
|
|
}
|
|
var hasChange = false;
|
|
for (var i = 0; i < actions.length; i++) {
|
|
if (req._responseTraceIds[actions[i].id]) {
|
|
hasChange = true;
|
|
switch (actions[i].operation) {
|
|
case 0:
|
|
handlersResult.push(actions[i].handler);
|
|
break;
|
|
case 1:
|
|
for (var index = handlersResult.length - 1; index >= 0; index--) {
|
|
if (handlersResult[index] === actions[i].handler) {
|
|
handlersResult.splice(index, 1);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case 2:
|
|
handlersResult = [];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (hasChange) {
|
|
if (!this.m_registered && handlersResult.length > 0) {
|
|
ret = ret.then(function () { return _this.m_eventInfo.registerFunc(_this.m_callback); }).then(function () { return (_this.m_registered = true); });
|
|
}
|
|
else if (this.m_registered && handlersResult.length == 0) {
|
|
ret = ret
|
|
.then(function () { return _this.m_eventInfo.unregisterFunc(_this.m_callback); })["catch"](function (ex) {
|
|
CoreUtility.log('Error when unregister event: ' + JSON.stringify(ex));
|
|
})
|
|
.then(function () { return (_this.m_registered = false); });
|
|
}
|
|
ret = ret.then(function () { return (_this.m_handlers = handlersResult); });
|
|
}
|
|
return ret;
|
|
};
|
|
EventHandlers.prototype.fireEvent = function (args) {
|
|
var promises = [];
|
|
for (var i = 0; i < this.m_handlers.length; i++) {
|
|
var handler = this.m_handlers[i];
|
|
var p = CoreUtility._createPromiseFromResult(null)
|
|
.then(this.createFireOneEventHandlerFunc(handler, args))["catch"](function (ex) {
|
|
CoreUtility.log('Error when invoke handler: ' + JSON.stringify(ex));
|
|
});
|
|
promises.push(p);
|
|
}
|
|
CoreUtility.Promise.all(promises);
|
|
};
|
|
EventHandlers.prototype.createFireOneEventHandlerFunc = function (handler, args) {
|
|
return function () { return handler(args); };
|
|
};
|
|
return EventHandlers;
|
|
}());
|
|
OfficeExtension_1.EventHandlers = EventHandlers;
|
|
var EventHandlerResult = (function () {
|
|
function EventHandlerResult(context, handlers, handler) {
|
|
this.m_context = context;
|
|
this.m_allHandlers = handlers;
|
|
this.m_handler = handler;
|
|
}
|
|
Object.defineProperty(EventHandlerResult.prototype, "context", {
|
|
get: function () {
|
|
return this.m_context;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
EventHandlerResult.prototype.remove = function () {
|
|
if (this.m_allHandlers && this.m_handler) {
|
|
this.m_allHandlers.remove(this.m_handler);
|
|
this.m_allHandlers = null;
|
|
this.m_handler = null;
|
|
}
|
|
};
|
|
return EventHandlerResult;
|
|
}());
|
|
OfficeExtension_1.EventHandlerResult = EventHandlerResult;
|
|
(function (_Internal) {
|
|
var OfficeJsEventRegistration = (function () {
|
|
function OfficeJsEventRegistration() {
|
|
}
|
|
OfficeJsEventRegistration.prototype.register = function (eventId, targetId, handler) {
|
|
switch (eventId) {
|
|
case 4:
|
|
return Utility.promisify(function (callback) { return Office.context.document.bindings.getByIdAsync(targetId, callback); }).then(function (officeBinding) {
|
|
return Utility.promisify(function (callback) {
|
|
return officeBinding.addHandlerAsync(Office.EventType.BindingDataChanged, handler, callback);
|
|
});
|
|
});
|
|
case 3:
|
|
return Utility.promisify(function (callback) { return Office.context.document.bindings.getByIdAsync(targetId, callback); }).then(function (officeBinding) {
|
|
return Utility.promisify(function (callback) {
|
|
return officeBinding.addHandlerAsync(Office.EventType.BindingSelectionChanged, handler, callback);
|
|
});
|
|
});
|
|
case 2:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.addHandlerAsync(Office.EventType.DocumentSelectionChanged, handler, callback);
|
|
});
|
|
case 1:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.settings.addHandlerAsync(Office.EventType.SettingsChanged, handler, callback);
|
|
});
|
|
case 5:
|
|
return OSF.DDA.RichApi.richApiMessageManager.register(handler);
|
|
case 13:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.addHandlerAsync(Office.EventType.ObjectDeleted, handler, { id: targetId }, callback);
|
|
});
|
|
case 14:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.addHandlerAsync(Office.EventType.ObjectSelectionChanged, handler, { id: targetId }, callback);
|
|
});
|
|
case 15:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.addHandlerAsync(Office.EventType.ObjectDataChanged, handler, { id: targetId }, callback);
|
|
});
|
|
case 16:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.addHandlerAsync(Office.EventType.ContentControlAdded, handler, { id: targetId }, callback);
|
|
});
|
|
default:
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'eventId' });
|
|
}
|
|
};
|
|
OfficeJsEventRegistration.prototype.unregister = function (eventId, targetId, handler) {
|
|
switch (eventId) {
|
|
case 4:
|
|
return Utility.promisify(function (callback) { return Office.context.document.bindings.getByIdAsync(targetId, callback); }).then(function (officeBinding) {
|
|
return Utility.promisify(function (callback) {
|
|
return officeBinding.removeHandlerAsync(Office.EventType.BindingDataChanged, { handler: handler }, callback);
|
|
});
|
|
});
|
|
case 3:
|
|
return Utility.promisify(function (callback) { return Office.context.document.bindings.getByIdAsync(targetId, callback); }).then(function (officeBinding) {
|
|
return Utility.promisify(function (callback) {
|
|
return officeBinding.removeHandlerAsync(Office.EventType.BindingSelectionChanged, { handler: handler }, callback);
|
|
});
|
|
});
|
|
case 2:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.removeHandlerAsync(Office.EventType.DocumentSelectionChanged, { handler: handler }, callback);
|
|
});
|
|
case 1:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.settings.removeHandlerAsync(Office.EventType.SettingsChanged, { handler: handler }, callback);
|
|
});
|
|
case 5:
|
|
return Utility.promisify(function (callback) {
|
|
return OSF.DDA.RichApi.richApiMessageManager.removeHandlerAsync('richApiMessage', { handler: handler }, callback);
|
|
});
|
|
case 13:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.removeHandlerAsync(Office.EventType.ObjectDeleted, { id: targetId, handler: handler }, callback);
|
|
});
|
|
case 14:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.removeHandlerAsync(Office.EventType.ObjectSelectionChanged, { id: targetId, handler: handler }, callback);
|
|
});
|
|
case 15:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.removeHandlerAsync(Office.EventType.ObjectDataChanged, { id: targetId, handler: handler }, callback);
|
|
});
|
|
case 16:
|
|
return Utility.promisify(function (callback) {
|
|
return Office.context.document.removeHandlerAsync(Office.EventType.ContentControlAdded, { id: targetId, handler: handler }, callback);
|
|
});
|
|
default:
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'eventId' });
|
|
}
|
|
};
|
|
return OfficeJsEventRegistration;
|
|
}());
|
|
_Internal.officeJsEventRegistration = new OfficeJsEventRegistration();
|
|
})(_Internal = OfficeExtension_1._Internal || (OfficeExtension_1._Internal = {}));
|
|
var EventRegistration = (function () {
|
|
function EventRegistration(registerEventImpl, unregisterEventImpl) {
|
|
this.m_handlersByEventByTarget = {};
|
|
this.m_registerEventImpl = registerEventImpl;
|
|
this.m_unregisterEventImpl = unregisterEventImpl;
|
|
}
|
|
EventRegistration.getTargetIdOrDefault = function (targetId) {
|
|
if (Utility.isNullOrUndefined(targetId)) {
|
|
return '';
|
|
}
|
|
return targetId;
|
|
};
|
|
EventRegistration.prototype.getHandlers = function (eventId, targetId) {
|
|
targetId = EventRegistration.getTargetIdOrDefault(targetId);
|
|
var handlersById = this.m_handlersByEventByTarget[eventId];
|
|
if (!handlersById) {
|
|
handlersById = {};
|
|
this.m_handlersByEventByTarget[eventId] = handlersById;
|
|
}
|
|
var handlers = handlersById[targetId];
|
|
if (!handlers) {
|
|
handlers = [];
|
|
handlersById[targetId] = handlers;
|
|
}
|
|
return handlers;
|
|
};
|
|
EventRegistration.prototype.callHandlers = function (eventId, targetId, argument) {
|
|
var funcs = this.getHandlers(eventId, targetId);
|
|
for (var i = 0; i < funcs.length; i++) {
|
|
funcs[i](argument);
|
|
}
|
|
};
|
|
EventRegistration.prototype.hasHandlers = function (eventId, targetId) {
|
|
return this.getHandlers(eventId, targetId).length > 0;
|
|
};
|
|
EventRegistration.prototype.register = function (eventId, targetId, handler) {
|
|
if (!handler) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'handler' });
|
|
}
|
|
var handlers = this.getHandlers(eventId, targetId);
|
|
handlers.push(handler);
|
|
if (handlers.length === 1) {
|
|
return this.m_registerEventImpl(eventId, targetId);
|
|
}
|
|
return Utility._createPromiseFromResult(null);
|
|
};
|
|
EventRegistration.prototype.unregister = function (eventId, targetId, handler) {
|
|
if (!handler) {
|
|
throw _Internal.RuntimeError._createInvalidArgError({ argumentName: 'handler' });
|
|
}
|
|
var handlers = this.getHandlers(eventId, targetId);
|
|
for (var index = handlers.length - 1; index >= 0; index--) {
|
|
if (handlers[index] === handler) {
|
|
handlers.splice(index, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (handlers.length === 0) {
|
|
return this.m_unregisterEventImpl(eventId, targetId);
|
|
}
|
|
return Utility._createPromiseFromResult(null);
|
|
};
|
|
return EventRegistration;
|
|
}());
|
|
OfficeExtension_1.EventRegistration = EventRegistration;
|
|
var GenericEventRegistration = (function () {
|
|
function GenericEventRegistration() {
|
|
this.m_eventRegistration = new EventRegistration(this._registerEventImpl.bind(this), this._unregisterEventImpl.bind(this));
|
|
this.m_richApiMessageHandler = this._handleRichApiMessage.bind(this);
|
|
}
|
|
GenericEventRegistration.prototype.ready = function () {
|
|
var _this = this;
|
|
if (!this.m_ready) {
|
|
if (GenericEventRegistration._testReadyImpl) {
|
|
this.m_ready = GenericEventRegistration._testReadyImpl().then(function () {
|
|
_this.m_isReady = true;
|
|
});
|
|
}
|
|
else if (HostBridge.instance) {
|
|
this.m_ready = Utility._createPromiseFromResult(null).then(function () {
|
|
_this.m_isReady = true;
|
|
});
|
|
}
|
|
else {
|
|
this.m_ready = _Internal.officeJsEventRegistration
|
|
.register(5, '', this.m_richApiMessageHandler)
|
|
.then(function () {
|
|
_this.m_isReady = true;
|
|
});
|
|
}
|
|
}
|
|
return this.m_ready;
|
|
};
|
|
Object.defineProperty(GenericEventRegistration.prototype, "isReady", {
|
|
get: function () {
|
|
return this.m_isReady;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
GenericEventRegistration.prototype.register = function (eventId, targetId, handler) {
|
|
var _this = this;
|
|
return this.ready().then(function () { return _this.m_eventRegistration.register(eventId, targetId, handler); });
|
|
};
|
|
GenericEventRegistration.prototype.unregister = function (eventId, targetId, handler) {
|
|
var _this = this;
|
|
return this.ready().then(function () { return _this.m_eventRegistration.unregister(eventId, targetId, handler); });
|
|
};
|
|
GenericEventRegistration.prototype._registerEventImpl = function (eventId, targetId) {
|
|
return Utility._createPromiseFromResult(null);
|
|
};
|
|
GenericEventRegistration.prototype._unregisterEventImpl = function (eventId, targetId) {
|
|
return Utility._createPromiseFromResult(null);
|
|
};
|
|
GenericEventRegistration.prototype._handleRichApiMessage = function (msg) {
|
|
if (msg && msg.entries) {
|
|
for (var entryIndex = 0; entryIndex < msg.entries.length; entryIndex++) {
|
|
var entry = msg.entries[entryIndex];
|
|
if (entry.messageCategory == Constants.eventMessageCategory) {
|
|
if (CoreUtility._logEnabled) {
|
|
CoreUtility.log(JSON.stringify(entry));
|
|
}
|
|
var eventId = entry.messageType;
|
|
var targetId = entry.targetId;
|
|
var hasHandlers = this.m_eventRegistration.hasHandlers(eventId, targetId);
|
|
if (hasHandlers) {
|
|
var arg = JSON.parse(entry.message);
|
|
if (entry.isRemoteOverride) {
|
|
arg.source = Constants.eventSourceRemote;
|
|
}
|
|
this.m_eventRegistration.callHandlers(eventId, targetId, arg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
GenericEventRegistration.getGenericEventRegistration = function () {
|
|
if (!GenericEventRegistration.s_genericEventRegistration) {
|
|
GenericEventRegistration.s_genericEventRegistration = new GenericEventRegistration();
|
|
}
|
|
return GenericEventRegistration.s_genericEventRegistration;
|
|
};
|
|
GenericEventRegistration.richApiMessageEventCategory = 65536;
|
|
return GenericEventRegistration;
|
|
}());
|
|
OfficeExtension_1.GenericEventRegistration = GenericEventRegistration;
|
|
function _testSetRichApiMessageReadyImpl(impl) {
|
|
GenericEventRegistration._testReadyImpl = impl;
|
|
}
|
|
OfficeExtension_1._testSetRichApiMessageReadyImpl = _testSetRichApiMessageReadyImpl;
|
|
function _testTriggerRichApiMessageEvent(msg) {
|
|
GenericEventRegistration.getGenericEventRegistration()._handleRichApiMessage(msg);
|
|
}
|
|
OfficeExtension_1._testTriggerRichApiMessageEvent = _testTriggerRichApiMessageEvent;
|
|
var GenericEventHandlers = (function (_super) {
|
|
__extends(GenericEventHandlers, _super);
|
|
function GenericEventHandlers(context, parentObject, name, eventInfo) {
|
|
var _this = _super.call(this, context, parentObject, name, eventInfo) || this;
|
|
_this.m_genericEventInfo = eventInfo;
|
|
return _this;
|
|
}
|
|
GenericEventHandlers.prototype.add = function (handler) {
|
|
var _this = this;
|
|
if (this._handlers.length == 0 && this.m_genericEventInfo.registerFunc) {
|
|
this.m_genericEventInfo.registerFunc();
|
|
}
|
|
if (!GenericEventRegistration.getGenericEventRegistration().isReady) {
|
|
this._context._pendingRequest._addPreSyncPromise(GenericEventRegistration.getGenericEventRegistration().ready());
|
|
}
|
|
ActionFactory.createTraceMarkerForCallback(this._context, function () {
|
|
_this._handlers.push(handler);
|
|
if (_this._handlers.length == 1) {
|
|
GenericEventRegistration.getGenericEventRegistration().register(_this.m_genericEventInfo.eventType, _this.m_genericEventInfo.getTargetIdFunc(), _this._callback);
|
|
}
|
|
});
|
|
return new EventHandlerResult(this._context, this, handler);
|
|
};
|
|
GenericEventHandlers.prototype.remove = function (handler) {
|
|
var _this = this;
|
|
if (this._handlers.length == 1 && this.m_genericEventInfo.unregisterFunc) {
|
|
this.m_genericEventInfo.unregisterFunc();
|
|
}
|
|
ActionFactory.createTraceMarkerForCallback(this._context, function () {
|
|
var handlers = _this._handlers;
|
|
for (var index = handlers.length - 1; index >= 0; index--) {
|
|
if (handlers[index] === handler) {
|
|
handlers.splice(index, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (handlers.length == 0) {
|
|
GenericEventRegistration.getGenericEventRegistration().unregister(_this.m_genericEventInfo.eventType, _this.m_genericEventInfo.getTargetIdFunc(), _this._callback);
|
|
}
|
|
});
|
|
};
|
|
GenericEventHandlers.prototype.removeAll = function () { };
|
|
return GenericEventHandlers;
|
|
}(EventHandlers));
|
|
OfficeExtension_1.GenericEventHandlers = GenericEventHandlers;
|
|
var InstantiateActionResultHandler = (function () {
|
|
function InstantiateActionResultHandler(clientObject) {
|
|
this.m_clientObject = clientObject;
|
|
}
|
|
InstantiateActionResultHandler.prototype._handleResult = function (value) {
|
|
this.m_clientObject._handleIdResult(value);
|
|
};
|
|
return InstantiateActionResultHandler;
|
|
}());
|
|
var ObjectPathFactory = (function () {
|
|
function ObjectPathFactory() {
|
|
}
|
|
ObjectPathFactory.createGlobalObjectObjectPath = function (context) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 1,
|
|
Name: ''
|
|
};
|
|
return new ObjectPath(objectPathInfo, null, false, false, 1, 4);
|
|
};
|
|
ObjectPathFactory.createNewObjectObjectPath = function (context, typeName, isCollection, flags) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 2,
|
|
Name: typeName
|
|
};
|
|
var ret = new ObjectPath(objectPathInfo, null, isCollection, false, 1, Utility._fixupApiFlags(flags));
|
|
return ret;
|
|
};
|
|
ObjectPathFactory.createPropertyObjectPath = function (context, parent, propertyName, isCollection, isInvalidAfterRequest, flags) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 4,
|
|
Name: propertyName,
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id
|
|
};
|
|
var ret = new ObjectPath(objectPathInfo, parent._objectPath, isCollection, isInvalidAfterRequest, 1, Utility._fixupApiFlags(flags));
|
|
return ret;
|
|
};
|
|
ObjectPathFactory.createIndexerObjectPath = function (context, parent, args) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 5,
|
|
Name: '',
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
objectPathInfo.ArgumentInfo.Arguments = args;
|
|
return new ObjectPath(objectPathInfo, parent._objectPath, false, false, 1, 4);
|
|
};
|
|
ObjectPathFactory.createIndexerObjectPathUsingParentPath = function (context, parentObjectPath, args) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 5,
|
|
Name: '',
|
|
ParentObjectPathId: parentObjectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
objectPathInfo.ArgumentInfo.Arguments = args;
|
|
return new ObjectPath(objectPathInfo, parentObjectPath, false, false, 1, 4);
|
|
};
|
|
ObjectPathFactory.createMethodObjectPath = function (context, parent, methodName, operationType, args, isCollection, isInvalidAfterRequest, getByIdMethodName, flags) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 3,
|
|
Name: methodName,
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
var argumentObjectPaths = Utility.setMethodArguments(context, objectPathInfo.ArgumentInfo, args);
|
|
var ret = new ObjectPath(objectPathInfo, parent._objectPath, isCollection, isInvalidAfterRequest, operationType, Utility._fixupApiFlags(flags));
|
|
ret.argumentObjectPaths = argumentObjectPaths;
|
|
ret.getByIdMethodName = getByIdMethodName;
|
|
return ret;
|
|
};
|
|
ObjectPathFactory.createReferenceIdObjectPath = function (context, referenceId) {
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 6,
|
|
Name: referenceId,
|
|
ArgumentInfo: {}
|
|
};
|
|
var ret = new ObjectPath(objectPathInfo, null, false, false, 1, 4);
|
|
return ret;
|
|
};
|
|
ObjectPathFactory.createChildItemObjectPathUsingIndexerOrGetItemAt = function (hasIndexerMethod, context, parent, childItem, index) {
|
|
var id = Utility.tryGetObjectIdFromLoadOrRetrieveResult(childItem);
|
|
if (hasIndexerMethod && !Utility.isNullOrUndefined(id)) {
|
|
return ObjectPathFactory.createChildItemObjectPathUsingIndexer(context, parent, childItem);
|
|
}
|
|
else {
|
|
return ObjectPathFactory.createChildItemObjectPathUsingGetItemAt(context, parent, childItem, index);
|
|
}
|
|
};
|
|
ObjectPathFactory.createChildItemObjectPathUsingIndexer = function (context, parent, childItem) {
|
|
var id = Utility.tryGetObjectIdFromLoadOrRetrieveResult(childItem);
|
|
var objectPathInfo = (objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 5,
|
|
Name: '',
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
});
|
|
objectPathInfo.ArgumentInfo.Arguments = [id];
|
|
return new ObjectPath(objectPathInfo, parent._objectPath, false, false, 1, 4);
|
|
};
|
|
ObjectPathFactory.createChildItemObjectPathUsingGetItemAt = function (context, parent, childItem, index) {
|
|
var indexFromServer = childItem[Constants.index];
|
|
if (indexFromServer) {
|
|
index = indexFromServer;
|
|
}
|
|
var objectPathInfo = {
|
|
Id: context._nextId(),
|
|
ObjectPathType: 3,
|
|
Name: Constants.getItemAt,
|
|
ParentObjectPathId: parent._objectPath.objectPathInfo.Id,
|
|
ArgumentInfo: {}
|
|
};
|
|
objectPathInfo.ArgumentInfo.Arguments = [index];
|
|
return new ObjectPath(objectPathInfo, parent._objectPath, false, false, 1, 4);
|
|
};
|
|
return ObjectPathFactory;
|
|
}());
|
|
OfficeExtension_1.ObjectPathFactory = ObjectPathFactory;
|
|
var OfficeJsRequestExecutor = (function () {
|
|
function OfficeJsRequestExecutor(context) {
|
|
this.m_context = context;
|
|
}
|
|
OfficeJsRequestExecutor.prototype.executeAsync = function (customData, requestFlags, requestMessage) {
|
|
var _this = this;
|
|
var messageSafearray = RichApiMessageUtility.buildMessageArrayForIRequestExecutor(customData, requestFlags, requestMessage, OfficeJsRequestExecutor.SourceLibHeaderValue);
|
|
return new OfficeExtension_1.Promise(function (resolve, reject) {
|
|
OSF.DDA.RichApi.executeRichApiRequestAsync(messageSafearray, function (result) {
|
|
CoreUtility.log('Response:');
|
|
CoreUtility.log(JSON.stringify(result));
|
|
var response;
|
|
if (result.status == 'succeeded') {
|
|
response = RichApiMessageUtility.buildResponseOnSuccess(RichApiMessageUtility.getResponseBody(result), RichApiMessageUtility.getResponseHeaders(result));
|
|
}
|
|
else {
|
|
response = RichApiMessageUtility.buildResponseOnError(result.error.code, result.error.message);
|
|
_this.m_context._processOfficeJsErrorResponse(result.error.code, response);
|
|
}
|
|
resolve(response);
|
|
});
|
|
});
|
|
};
|
|
OfficeJsRequestExecutor.SourceLibHeaderValue = 'officejs';
|
|
return OfficeJsRequestExecutor;
|
|
}());
|
|
var TrackedObjects = (function () {
|
|
function TrackedObjects(context) {
|
|
this._autoCleanupList = {};
|
|
this.m_context = context;
|
|
}
|
|
TrackedObjects.prototype.add = function (param) {
|
|
var _this = this;
|
|
if (Array.isArray(param)) {
|
|
param.forEach(function (item) { return _this._addCommon(item, true); });
|
|
}
|
|
else {
|
|
this._addCommon(param, true);
|
|
}
|
|
};
|
|
TrackedObjects.prototype._autoAdd = function (object) {
|
|
this._addCommon(object, false);
|
|
this._autoCleanupList[object._objectPath.objectPathInfo.Id] = object;
|
|
};
|
|
TrackedObjects.prototype._autoTrackIfNecessaryWhenHandleObjectResultValue = function (object, resultValue) {
|
|
var shouldAutoTrack = this.m_context._autoCleanup &&
|
|
!object[Constants.isTracked] &&
|
|
object !== this.m_context._rootObject &&
|
|
resultValue &&
|
|
!Utility.isNullOrEmptyString(resultValue[Constants.referenceId]);
|
|
if (shouldAutoTrack) {
|
|
this._autoCleanupList[object._objectPath.objectPathInfo.Id] = object;
|
|
object[Constants.isTracked] = true;
|
|
}
|
|
};
|
|
TrackedObjects.prototype._addCommon = function (object, isExplicitlyAdded) {
|
|
if (object[Constants.isTracked]) {
|
|
if (isExplicitlyAdded && this.m_context._autoCleanup) {
|
|
delete this._autoCleanupList[object._objectPath.objectPathInfo.Id];
|
|
}
|
|
return;
|
|
}
|
|
var referenceId = object[Constants.referenceId];
|
|
var donotKeepReference = object._objectPath.objectPathInfo[Constants.objectPathInfoDoNotKeepReferenceFieldName];
|
|
if (donotKeepReference) {
|
|
throw Utility.createRuntimeError(CoreErrorCodes.generalException, CoreUtility._getResourceString(ResourceStrings.objectIsUntracked), null);
|
|
}
|
|
if (Utility.isNullOrEmptyString(referenceId) && object._KeepReference) {
|
|
object._KeepReference();
|
|
ActionFactory.createInstantiateAction(this.m_context, object);
|
|
if (isExplicitlyAdded && this.m_context._autoCleanup) {
|
|
delete this._autoCleanupList[object._objectPath.objectPathInfo.Id];
|
|
}
|
|
object[Constants.isTracked] = true;
|
|
}
|
|
};
|
|
TrackedObjects.prototype.remove = function (param) {
|
|
var _this = this;
|
|
if (Array.isArray(param)) {
|
|
param.forEach(function (item) { return _this._removeCommon(item); });
|
|
}
|
|
else {
|
|
this._removeCommon(param);
|
|
}
|
|
};
|
|
TrackedObjects.prototype._removeCommon = function (object) {
|
|
object._objectPath.objectPathInfo[Constants.objectPathInfoDoNotKeepReferenceFieldName] = true;
|
|
object.context._pendingRequest._removeKeepReferenceAction(object._objectPath.objectPathInfo.Id);
|
|
var referenceId = object[Constants.referenceId];
|
|
if (!Utility.isNullOrEmptyString(referenceId)) {
|
|
var rootObject = this.m_context._rootObject;
|
|
if (rootObject._RemoveReference) {
|
|
rootObject._RemoveReference(referenceId);
|
|
}
|
|
}
|
|
delete object[Constants.isTracked];
|
|
};
|
|
TrackedObjects.prototype._retrieveAndClearAutoCleanupList = function () {
|
|
var list = this._autoCleanupList;
|
|
this._autoCleanupList = {};
|
|
return list;
|
|
};
|
|
return TrackedObjects;
|
|
}());
|
|
OfficeExtension_1.TrackedObjects = TrackedObjects;
|
|
var RequestPrettyPrinter = (function () {
|
|
function RequestPrettyPrinter(globalObjName, referencedObjectPaths, actions, showDispose, removePII) {
|
|
if (!globalObjName) {
|
|
globalObjName = 'root';
|
|
}
|
|
this.m_globalObjName = globalObjName;
|
|
this.m_referencedObjectPaths = referencedObjectPaths;
|
|
this.m_actions = actions;
|
|
this.m_statements = [];
|
|
this.m_variableNameForObjectPathMap = {};
|
|
this.m_variableNameToObjectPathMap = {};
|
|
this.m_declaredObjectPathMap = {};
|
|
this.m_showDispose = showDispose;
|
|
this.m_removePII = removePII;
|
|
}
|
|
RequestPrettyPrinter.prototype.process = function () {
|
|
if (this.m_showDispose) {
|
|
ClientRequest._calculateLastUsedObjectPathIds(this.m_actions);
|
|
}
|
|
for (var i = 0; i < this.m_actions.length; i++) {
|
|
this.processOneAction(this.m_actions[i]);
|
|
}
|
|
return this.m_statements;
|
|
};
|
|
RequestPrettyPrinter.prototype.processForDebugStatementInfo = function (actionIndex) {
|
|
if (this.m_showDispose) {
|
|
ClientRequest._calculateLastUsedObjectPathIds(this.m_actions);
|
|
}
|
|
var surroundingCount = 5;
|
|
this.m_statements = [];
|
|
var oneStatement = '';
|
|
var statementIndex = -1;
|
|
for (var i = 0; i < this.m_actions.length; i++) {
|
|
this.processOneAction(this.m_actions[i]);
|
|
if (actionIndex == i) {
|
|
statementIndex = this.m_statements.length - 1;
|
|
}
|
|
if (statementIndex >= 0 && this.m_statements.length > statementIndex + surroundingCount + 1) {
|
|
break;
|
|
}
|
|
}
|
|
if (statementIndex < 0) {
|
|
return null;
|
|
}
|
|
var startIndex = statementIndex - surroundingCount;
|
|
if (startIndex < 0) {
|
|
startIndex = 0;
|
|
}
|
|
var endIndex = statementIndex + 1 + surroundingCount;
|
|
if (endIndex > this.m_statements.length) {
|
|
endIndex = this.m_statements.length;
|
|
}
|
|
var surroundingStatements = [];
|
|
if (startIndex != 0) {
|
|
surroundingStatements.push('...');
|
|
}
|
|
for (var i_1 = startIndex; i_1 < statementIndex; i_1++) {
|
|
surroundingStatements.push(this.m_statements[i_1]);
|
|
}
|
|
surroundingStatements.push('// >>>>>');
|
|
surroundingStatements.push(this.m_statements[statementIndex]);
|
|
surroundingStatements.push('// <<<<<');
|
|
for (var i_2 = statementIndex + 1; i_2 < endIndex; i_2++) {
|
|
surroundingStatements.push(this.m_statements[i_2]);
|
|
}
|
|
if (endIndex < this.m_statements.length) {
|
|
surroundingStatements.push('...');
|
|
}
|
|
return {
|
|
statement: this.m_statements[statementIndex],
|
|
surroundingStatements: surroundingStatements
|
|
};
|
|
};
|
|
RequestPrettyPrinter.prototype.processOneAction = function (action) {
|
|
var actionInfo = action.actionInfo;
|
|
switch (actionInfo.ActionType) {
|
|
case 1:
|
|
this.processInstantiateAction(action);
|
|
break;
|
|
case 3:
|
|
this.processMethodAction(action);
|
|
break;
|
|
case 2:
|
|
this.processQueryAction(action);
|
|
break;
|
|
case 7:
|
|
this.processQueryAsJsonAction(action);
|
|
break;
|
|
case 6:
|
|
this.processRecursiveQueryAction(action);
|
|
break;
|
|
case 4:
|
|
this.processSetPropertyAction(action);
|
|
break;
|
|
case 5:
|
|
this.processTraceAction(action);
|
|
break;
|
|
case 8:
|
|
this.processEnsureUnchangedAction(action);
|
|
break;
|
|
case 9:
|
|
this.processUpdateAction(action);
|
|
break;
|
|
}
|
|
};
|
|
RequestPrettyPrinter.prototype.processInstantiateAction = function (action) {
|
|
var objId = action.actionInfo.ObjectPathId;
|
|
var objPath = this.m_referencedObjectPaths[objId];
|
|
var varName = this.getObjVarName(objId);
|
|
if (!this.m_declaredObjectPathMap[objId]) {
|
|
var statement = 'var ' + varName + ' = ' + this.buildObjectPathExpressionWithParent(objPath) + ';';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
this.m_declaredObjectPathMap[objId] = varName;
|
|
}
|
|
else {
|
|
var statement = '// Instantiate {' + varName + '}';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
}
|
|
};
|
|
RequestPrettyPrinter.prototype.processMethodAction = function (action) {
|
|
var methodName = action.actionInfo.Name;
|
|
if (methodName === '_KeepReference') {
|
|
if (!OfficeExtension_1._internalConfig.showInternalApiInDebugInfo) {
|
|
return;
|
|
}
|
|
methodName = 'track';
|
|
}
|
|
var statement = this.getObjVarName(action.actionInfo.ObjectPathId) +
|
|
'.' +
|
|
Utility._toCamelLowerCase(methodName) +
|
|
'(' +
|
|
this.buildArgumentsExpression(action.actionInfo.ArgumentInfo) +
|
|
');';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
};
|
|
RequestPrettyPrinter.prototype.processQueryAction = function (action) {
|
|
var queryExp = this.buildQueryExpression(action);
|
|
var statement = this.getObjVarName(action.actionInfo.ObjectPathId) + '.load(' + queryExp + ');';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
};
|
|
RequestPrettyPrinter.prototype.processQueryAsJsonAction = function (action) {
|
|
var queryExp = this.buildQueryExpression(action);
|
|
var statement = this.getObjVarName(action.actionInfo.ObjectPathId) + '.retrieve(' + queryExp + ');';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
};
|
|
RequestPrettyPrinter.prototype.processRecursiveQueryAction = function (action) {
|
|
var queryExp = '';
|
|
if (action.actionInfo.RecursiveQueryInfo) {
|
|
queryExp = JSON.stringify(action.actionInfo.RecursiveQueryInfo);
|
|
}
|
|
var statement = this.getObjVarName(action.actionInfo.ObjectPathId) + '.loadRecursive(' + queryExp + ');';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
};
|
|
RequestPrettyPrinter.prototype.processSetPropertyAction = function (action) {
|
|
var statement = this.getObjVarName(action.actionInfo.ObjectPathId) +
|
|
'.' +
|
|
Utility._toCamelLowerCase(action.actionInfo.Name) +
|
|
' = ' +
|
|
this.buildArgumentsExpression(action.actionInfo.ArgumentInfo) +
|
|
';';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
};
|
|
RequestPrettyPrinter.prototype.processTraceAction = function (action) {
|
|
var statement = 'context.trace();';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
};
|
|
RequestPrettyPrinter.prototype.processEnsureUnchangedAction = function (action) {
|
|
var statement = this.getObjVarName(action.actionInfo.ObjectPathId) +
|
|
'.ensureUnchanged(' +
|
|
JSON.stringify(action.actionInfo.ObjectState) +
|
|
');';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
};
|
|
RequestPrettyPrinter.prototype.processUpdateAction = function (action) {
|
|
var statement = this.getObjVarName(action.actionInfo.ObjectPathId) +
|
|
'.update(' +
|
|
JSON.stringify(action.actionInfo.ObjectState) +
|
|
');';
|
|
statement = this.appendDisposeCommentIfRelevant(statement, action);
|
|
this.m_statements.push(statement);
|
|
};
|
|
RequestPrettyPrinter.prototype.appendDisposeCommentIfRelevant = function (statement, action) {
|
|
var _this = this;
|
|
if (this.m_showDispose) {
|
|
var lastUsedObjectPathIds = action.actionInfo.L;
|
|
if (lastUsedObjectPathIds && lastUsedObjectPathIds.length > 0) {
|
|
var objectNamesToDispose = lastUsedObjectPathIds.map(function (item) { return _this.getObjVarName(item); }).join(', ');
|
|
return statement + ' // And then dispose {' + objectNamesToDispose + '}';
|
|
}
|
|
}
|
|
return statement;
|
|
};
|
|
RequestPrettyPrinter.prototype.buildQueryExpression = function (action) {
|
|
if (action.actionInfo.QueryInfo) {
|
|
var option = {};
|
|
option.select = action.actionInfo.QueryInfo.Select;
|
|
option.expand = action.actionInfo.QueryInfo.Expand;
|
|
option.skip = action.actionInfo.QueryInfo.Skip;
|
|
option.top = action.actionInfo.QueryInfo.Top;
|
|
if (typeof option.top === 'undefined' &&
|
|
typeof option.skip === 'undefined' &&
|
|
typeof option.expand === 'undefined') {
|
|
if (typeof option.select === 'undefined') {
|
|
return '';
|
|
}
|
|
else {
|
|
return JSON.stringify(option.select);
|
|
}
|
|
}
|
|
else {
|
|
return JSON.stringify(option);
|
|
}
|
|
}
|
|
return '';
|
|
};
|
|
RequestPrettyPrinter.prototype.buildObjectPathExpressionWithParent = function (objPath) {
|
|
var hasParent = objPath.objectPathInfo.ObjectPathType == 5 ||
|
|
objPath.objectPathInfo.ObjectPathType == 3 ||
|
|
objPath.objectPathInfo.ObjectPathType == 4;
|
|
if (hasParent && objPath.objectPathInfo.ParentObjectPathId) {
|
|
return (this.getObjVarName(objPath.objectPathInfo.ParentObjectPathId) + '.' + this.buildObjectPathExpression(objPath));
|
|
}
|
|
return this.buildObjectPathExpression(objPath);
|
|
};
|
|
RequestPrettyPrinter.prototype.buildObjectPathExpression = function (objPath) {
|
|
var expr = this.buildObjectPathInfoExpression(objPath.objectPathInfo);
|
|
var originalObjectPathInfo = objPath.originalObjectPathInfo;
|
|
if (originalObjectPathInfo) {
|
|
expr = expr + ' /* originally ' + this.buildObjectPathInfoExpression(originalObjectPathInfo) + ' */';
|
|
}
|
|
return expr;
|
|
};
|
|
RequestPrettyPrinter.prototype.buildObjectPathInfoExpression = function (objectPathInfo) {
|
|
switch (objectPathInfo.ObjectPathType) {
|
|
case 1:
|
|
return 'context.' + this.m_globalObjName;
|
|
case 5:
|
|
return 'getItem(' + this.buildArgumentsExpression(objectPathInfo.ArgumentInfo) + ')';
|
|
case 3:
|
|
return (Utility._toCamelLowerCase(objectPathInfo.Name) +
|
|
'(' +
|
|
this.buildArgumentsExpression(objectPathInfo.ArgumentInfo) +
|
|
')');
|
|
case 2:
|
|
return objectPathInfo.Name + '.newObject()';
|
|
case 7:
|
|
return 'null';
|
|
case 4:
|
|
return Utility._toCamelLowerCase(objectPathInfo.Name);
|
|
case 6:
|
|
return ('context.' + this.m_globalObjName + '._getObjectByReferenceId(' + JSON.stringify(objectPathInfo.Name) + ')');
|
|
}
|
|
};
|
|
RequestPrettyPrinter.prototype.buildArgumentsExpression = function (args) {
|
|
var ret = '';
|
|
if (!args.Arguments || args.Arguments.length === 0) {
|
|
return ret;
|
|
}
|
|
if (this.m_removePII) {
|
|
if (typeof args.Arguments[0] === 'undefined') {
|
|
return ret;
|
|
}
|
|
return '...';
|
|
}
|
|
for (var i = 0; i < args.Arguments.length; i++) {
|
|
if (i > 0) {
|
|
ret = ret + ', ';
|
|
}
|
|
ret =
|
|
ret +
|
|
this.buildArgumentLiteral(args.Arguments[i], args.ReferencedObjectPathIds ? args.ReferencedObjectPathIds[i] : null);
|
|
}
|
|
if (ret === 'undefined') {
|
|
ret = '';
|
|
}
|
|
return ret;
|
|
};
|
|
RequestPrettyPrinter.prototype.buildArgumentLiteral = function (value, objectPathId) {
|
|
if (typeof value == 'number' && value === objectPathId) {
|
|
return this.getObjVarName(objectPathId);
|
|
}
|
|
else {
|
|
return JSON.stringify(value);
|
|
}
|
|
};
|
|
RequestPrettyPrinter.prototype.getObjVarNameBase = function (objectPathId) {
|
|
var ret = 'v';
|
|
var objPath = this.m_referencedObjectPaths[objectPathId];
|
|
if (objPath) {
|
|
switch (objPath.objectPathInfo.ObjectPathType) {
|
|
case 1:
|
|
ret = this.m_globalObjName;
|
|
break;
|
|
case 4:
|
|
ret = Utility._toCamelLowerCase(objPath.objectPathInfo.Name);
|
|
break;
|
|
case 3:
|
|
var methodName = objPath.objectPathInfo.Name;
|
|
if (methodName.length > 3 && methodName.substr(0, 3) === 'Get') {
|
|
methodName = methodName.substr(3);
|
|
}
|
|
ret = Utility._toCamelLowerCase(methodName);
|
|
break;
|
|
case 5:
|
|
var parentName = this.getObjVarNameBase(objPath.objectPathInfo.ParentObjectPathId);
|
|
if (parentName.charAt(parentName.length - 1) === 's') {
|
|
ret = parentName.substr(0, parentName.length - 1);
|
|
}
|
|
else {
|
|
ret = parentName + 'Item';
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return ret;
|
|
};
|
|
RequestPrettyPrinter.prototype.getObjVarName = function (objectPathId) {
|
|
if (this.m_variableNameForObjectPathMap[objectPathId]) {
|
|
return this.m_variableNameForObjectPathMap[objectPathId];
|
|
}
|
|
var ret = this.getObjVarNameBase(objectPathId);
|
|
if (!this.m_variableNameToObjectPathMap[ret]) {
|
|
this.m_variableNameForObjectPathMap[objectPathId] = ret;
|
|
this.m_variableNameToObjectPathMap[ret] = objectPathId;
|
|
return ret;
|
|
}
|
|
var i = 1;
|
|
while (this.m_variableNameToObjectPathMap[ret + i.toString()]) {
|
|
i++;
|
|
}
|
|
ret = ret + i.toString();
|
|
this.m_variableNameForObjectPathMap[objectPathId] = ret;
|
|
this.m_variableNameToObjectPathMap[ret] = objectPathId;
|
|
return ret;
|
|
};
|
|
return RequestPrettyPrinter;
|
|
}());
|
|
var ResourceStrings = (function (_super) {
|
|
__extends(ResourceStrings, _super);
|
|
function ResourceStrings() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
ResourceStrings.cannotRegisterEvent = 'CannotRegisterEvent';
|
|
ResourceStrings.connectionFailureWithStatus = 'ConnectionFailureWithStatus';
|
|
ResourceStrings.connectionFailureWithDetails = 'ConnectionFailureWithDetails';
|
|
ResourceStrings.propertyNotLoaded = 'PropertyNotLoaded';
|
|
ResourceStrings.runMustReturnPromise = 'RunMustReturnPromise';
|
|
ResourceStrings.moreInfoInnerError = 'MoreInfoInnerError';
|
|
ResourceStrings.cannotApplyPropertyThroughSetMethod = 'CannotApplyPropertyThroughSetMethod';
|
|
ResourceStrings.invalidOperationInCellEditMode = 'InvalidOperationInCellEditMode';
|
|
ResourceStrings.objectIsUntracked = 'ObjectIsUntracked';
|
|
ResourceStrings.customFunctionDefintionMissing = 'CustomFunctionDefintionMissing';
|
|
ResourceStrings.customFunctionImplementationMissing = 'CustomFunctionImplementationMissing';
|
|
ResourceStrings.customFunctionNameContainsBadChars = 'CustomFunctionNameContainsBadChars';
|
|
ResourceStrings.customFunctionNameCannotSplit = 'CustomFunctionNameCannotSplit';
|
|
ResourceStrings.customFunctionUnexpectedNumberOfEntriesInResultBatch = 'CustomFunctionUnexpectedNumberOfEntriesInResultBatch';
|
|
ResourceStrings.customFunctionCancellationHandlerMissing = 'CustomFunctionCancellationHandlerMissing';
|
|
ResourceStrings.customFunctionInvalidFunction = 'CustomFunctionInvalidFunction';
|
|
ResourceStrings.customFunctionInvalidFunctionMapping = 'CustomFunctionInvalidFunctionMapping';
|
|
ResourceStrings.customFunctionWindowMissing = 'CustomFunctionWindowMissing';
|
|
ResourceStrings.customFunctionDefintionMissingOnWindow = 'CustomFunctionDefintionMissingOnWindow';
|
|
ResourceStrings.pendingBatchInProgress = 'PendingBatchInProgress';
|
|
ResourceStrings.notInsideBatch = 'NotInsideBatch';
|
|
ResourceStrings.cannotUpdateReadOnlyProperty = 'CannotUpdateReadOnlyProperty';
|
|
return ResourceStrings;
|
|
}(CommonResourceStrings));
|
|
OfficeExtension_1.ResourceStrings = ResourceStrings;
|
|
CoreUtility.addResourceStringValues({
|
|
CannotRegisterEvent: 'The event handler cannot be registered.',
|
|
PropertyNotLoaded: "The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.",
|
|
RunMustReturnPromise: 'The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".',
|
|
InvalidOrTimedOutSessionMessage: 'Your Office Online session has expired or is invalid. To continue, refresh the page.',
|
|
InvalidOperationInCellEditMode: 'Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.',
|
|
InvalidSheetName: 'The request cannot be processed because the specified worksheet cannot be found. Please try again.',
|
|
CustomFunctionDefintionMissing: "A property with the name '{0}' that represents the function's definition must exist on Excel.Script.CustomFunctions.",
|
|
CustomFunctionDefintionMissingOnWindow: "A property with the name '{0}' that represents the function's definition must exist on the window object.",
|
|
CustomFunctionImplementationMissing: "The property with the name '{0}' on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.",
|
|
CustomFunctionNameContainsBadChars: 'The function name may only contain letters, digits, underscores, and periods.',
|
|
CustomFunctionNameCannotSplit: 'The function name must contain a non-empty namespace and a non-empty short name.',
|
|
CustomFunctionUnexpectedNumberOfEntriesInResultBatch: "The batching function returned a number of results that doesn't match the number of parameter value sets that were passed into it.",
|
|
CustomFunctionCancellationHandlerMissing: 'The cancellation handler onCanceled is missing in the function. The handler must be present as the function is defined as cancelable.',
|
|
CustomFunctionInvalidFunction: "The property with the name '{0}' that represents the function's definition is not a valid function.",
|
|
CustomFunctionInvalidFunctionMapping: "The property with the name '{0}' on CustomFunctionMappings that represents the function's definition is not a valid function.",
|
|
CustomFunctionWindowMissing: 'The window object was not found.',
|
|
PendingBatchInProgress: 'There is a pending batch in progress. The batch method may not be called inside another batch, or simultaneously with another batch.',
|
|
NotInsideBatch: 'Operations may not be invoked outside of a batch method.',
|
|
CannotUpdateReadOnlyProperty: "The property '{0}' is read-only and it cannot be updated.",
|
|
ObjectIsUntracked: 'The object is untracked.'
|
|
});
|
|
var Utility = (function (_super) {
|
|
__extends(Utility, _super);
|
|
function Utility() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Utility.fixObjectPathIfNecessary = function (clientObject, value) {
|
|
if (clientObject && clientObject._objectPath && value) {
|
|
clientObject._objectPath.updateUsingObjectData(value, clientObject);
|
|
}
|
|
};
|
|
Utility.load = function (clientObj, option) {
|
|
clientObj.context.load(clientObj, option);
|
|
return clientObj;
|
|
};
|
|
Utility.loadAndSync = function (clientObj, option) {
|
|
clientObj.context.load(clientObj, option);
|
|
return clientObj.context.sync().then(function () { return clientObj; });
|
|
};
|
|
Utility.retrieve = function (clientObj, option) {
|
|
var shouldPolyfill = OfficeExtension_1._internalConfig.alwaysPolyfillClientObjectRetrieveMethod;
|
|
if (!shouldPolyfill) {
|
|
shouldPolyfill = !Utility.isSetSupported('RichApiRuntime', '1.1');
|
|
}
|
|
var result = new RetrieveResultImpl(clientObj, shouldPolyfill);
|
|
clientObj._retrieve(option, result);
|
|
return result;
|
|
};
|
|
Utility.retrieveAndSync = function (clientObj, option) {
|
|
var result = Utility.retrieve(clientObj, option);
|
|
return clientObj.context.sync().then(function () { return result; });
|
|
};
|
|
Utility.toJson = function (clientObj, scalarProperties, navigationProperties, collectionItemsIfAny) {
|
|
var result = {};
|
|
for (var prop in scalarProperties) {
|
|
var value = scalarProperties[prop];
|
|
if (typeof value !== 'undefined') {
|
|
result[prop] = value;
|
|
}
|
|
}
|
|
for (var prop in navigationProperties) {
|
|
var value = navigationProperties[prop];
|
|
if (typeof value !== 'undefined') {
|
|
if (value[Utility.fieldName_isCollection] && typeof value[Utility.fieldName_m__items] !== 'undefined') {
|
|
result[prop] = value.toJSON()['items'];
|
|
}
|
|
else {
|
|
result[prop] = value.toJSON();
|
|
}
|
|
}
|
|
}
|
|
if (collectionItemsIfAny) {
|
|
result['items'] = collectionItemsIfAny.map(function (item) { return item.toJSON(); });
|
|
}
|
|
return result;
|
|
};
|
|
Utility.throwError = function (resourceId, arg, errorLocation) {
|
|
throw new _Internal.RuntimeError({
|
|
code: resourceId,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(resourceId, arg),
|
|
debugInfo: errorLocation ? { errorLocation: errorLocation } : undefined
|
|
});
|
|
};
|
|
Utility.createRuntimeError = function (code, message, location, httpStatusCode, data) {
|
|
return new _Internal.RuntimeError({
|
|
code: code,
|
|
httpStatusCode: httpStatusCode,
|
|
message: message,
|
|
debugInfo: { errorLocation: location },
|
|
data: data
|
|
});
|
|
};
|
|
Utility.throwIfNotLoaded = function (propertyName, fieldValue, entityName, isNull) {
|
|
if (!isNull &&
|
|
CoreUtility.isUndefined(fieldValue) &&
|
|
propertyName.charCodeAt(0) != Utility.s_underscoreCharCode &&
|
|
!Utility.s_suppressPropertyNotLoadedException) {
|
|
throw Utility.createPropertyNotLoadedException(entityName, propertyName);
|
|
}
|
|
};
|
|
Utility._getPropertyValueWithoutCheckLoaded = function (object, propertyName) {
|
|
Utility.s_suppressPropertyNotLoadedException = true;
|
|
try {
|
|
return object[propertyName];
|
|
}
|
|
finally {
|
|
Utility.s_suppressPropertyNotLoadedException = false;
|
|
}
|
|
};
|
|
Utility.createPropertyNotLoadedException = function (entityName, propertyName) {
|
|
return new _Internal.RuntimeError({
|
|
code: ErrorCodes.propertyNotLoaded,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(ResourceStrings.propertyNotLoaded, propertyName),
|
|
debugInfo: entityName ? { errorLocation: entityName + '.' + propertyName } : undefined
|
|
});
|
|
};
|
|
Utility.createCannotUpdateReadOnlyPropertyException = function (entityName, propertyName) {
|
|
return new _Internal.RuntimeError({
|
|
code: ErrorCodes.cannotUpdateReadOnlyProperty,
|
|
httpStatusCode: 400,
|
|
message: CoreUtility._getResourceString(ResourceStrings.cannotUpdateReadOnlyProperty, propertyName),
|
|
debugInfo: entityName ? { errorLocation: entityName + '.' + propertyName } : undefined
|
|
});
|
|
};
|
|
Utility.promisify = function (action) {
|
|
return new OfficeExtension_1.Promise(function (resolve, reject) {
|
|
var callback = function (result) {
|
|
if (result.status == 'failed') {
|
|
reject(result.error);
|
|
}
|
|
else {
|
|
resolve(result.value);
|
|
}
|
|
};
|
|
action(callback);
|
|
});
|
|
};
|
|
Utility._addActionResultHandler = function (clientObj, action, resultHandler) {
|
|
clientObj.context._pendingRequest.addActionResultHandler(action, resultHandler);
|
|
};
|
|
Utility._handleNavigationPropertyResults = function (clientObj, objectValue, propertyNames) {
|
|
for (var i = 0; i < propertyNames.length - 1; i += 2) {
|
|
if (!CoreUtility.isUndefined(objectValue[propertyNames[i + 1]])) {
|
|
clientObj[propertyNames[i]]._handleResult(objectValue[propertyNames[i + 1]]);
|
|
}
|
|
}
|
|
};
|
|
Utility._fixupApiFlags = function (flags) {
|
|
if (typeof flags === 'boolean') {
|
|
if (flags) {
|
|
flags = 1;
|
|
}
|
|
else {
|
|
flags = 0;
|
|
}
|
|
}
|
|
return flags;
|
|
};
|
|
Utility.definePropertyThrowUnloadedException = function (obj, typeName, propertyName) {
|
|
Object.defineProperty(obj, propertyName, {
|
|
configurable: true,
|
|
enumerable: true,
|
|
get: function () {
|
|
throw Utility.createPropertyNotLoadedException(typeName, propertyName);
|
|
},
|
|
set: function () {
|
|
throw Utility.createCannotUpdateReadOnlyPropertyException(typeName, propertyName);
|
|
}
|
|
});
|
|
};
|
|
Utility.defineReadOnlyPropertyWithValue = function (obj, propertyName, value) {
|
|
Object.defineProperty(obj, propertyName, {
|
|
configurable: true,
|
|
enumerable: true,
|
|
get: function () {
|
|
return value;
|
|
},
|
|
set: function () {
|
|
throw Utility.createCannotUpdateReadOnlyPropertyException(null, propertyName);
|
|
}
|
|
});
|
|
};
|
|
Utility.processRetrieveResult = function (proxy, value, result, childItemCreateFunc) {
|
|
if (CoreUtility.isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (childItemCreateFunc) {
|
|
var data = value[Constants.itemsLowerCase];
|
|
if (Array.isArray(data)) {
|
|
var itemsResult = [];
|
|
for (var i = 0; i < data.length; i++) {
|
|
var itemProxy = childItemCreateFunc(data[i], i);
|
|
var itemResult = {};
|
|
itemResult[Constants.proxy] = itemProxy;
|
|
itemProxy._handleRetrieveResult(data[i], itemResult);
|
|
itemsResult.push(itemResult);
|
|
}
|
|
Utility.defineReadOnlyPropertyWithValue(result, Constants.itemsLowerCase, itemsResult);
|
|
}
|
|
}
|
|
else {
|
|
var scalarPropertyNames = proxy[Constants.scalarPropertyNames];
|
|
var navigationPropertyNames = proxy[Constants.navigationPropertyNames];
|
|
var typeName = proxy[Constants.className];
|
|
if (scalarPropertyNames) {
|
|
for (var i = 0; i < scalarPropertyNames.length; i++) {
|
|
var propName = scalarPropertyNames[i];
|
|
var propValue = value[propName];
|
|
if (CoreUtility.isUndefined(propValue)) {
|
|
Utility.definePropertyThrowUnloadedException(result, typeName, propName);
|
|
}
|
|
else {
|
|
Utility.defineReadOnlyPropertyWithValue(result, propName, propValue);
|
|
}
|
|
}
|
|
}
|
|
if (navigationPropertyNames) {
|
|
for (var i = 0; i < navigationPropertyNames.length; i++) {
|
|
var propName = navigationPropertyNames[i];
|
|
var propValue = value[propName];
|
|
if (CoreUtility.isUndefined(propValue)) {
|
|
Utility.definePropertyThrowUnloadedException(result, typeName, propName);
|
|
}
|
|
else {
|
|
var propProxy = proxy[propName];
|
|
var propResult = {};
|
|
propProxy._handleRetrieveResult(propValue, propResult);
|
|
propResult[Constants.proxy] = propProxy;
|
|
if (Array.isArray(propResult[Constants.itemsLowerCase])) {
|
|
propResult = propResult[Constants.itemsLowerCase];
|
|
}
|
|
Utility.defineReadOnlyPropertyWithValue(result, propName, propResult);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
Utility.setMockData = function (clientObj, value, childItemCreateFunc, setItemsFunc) {
|
|
if (CoreUtility.isNullOrUndefined(value)) {
|
|
clientObj._handleResult(value);
|
|
return;
|
|
}
|
|
if (clientObj[Constants.scalarPropertyOriginalNames]) {
|
|
var result = {};
|
|
var scalarPropertyOriginalNames = clientObj[Constants.scalarPropertyOriginalNames];
|
|
var scalarPropertyNames = clientObj[Constants.scalarPropertyNames];
|
|
for (var i = 0; i < scalarPropertyNames.length; i++) {
|
|
if (typeof (value[scalarPropertyNames[i]]) !== 'undefined') {
|
|
result[scalarPropertyOriginalNames[i]] = value[scalarPropertyNames[i]];
|
|
}
|
|
}
|
|
clientObj._handleResult(result);
|
|
}
|
|
if (clientObj[Constants.navigationPropertyNames]) {
|
|
var navigationPropertyNames = clientObj[Constants.navigationPropertyNames];
|
|
for (var i = 0; i < navigationPropertyNames.length; i++) {
|
|
if (typeof (value[navigationPropertyNames[i]]) !== 'undefined') {
|
|
var navigationPropValue = clientObj[navigationPropertyNames[i]];
|
|
if (navigationPropValue.setMockData) {
|
|
navigationPropValue.setMockData(value[navigationPropertyNames[i]]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (clientObj[Constants.isCollection] && childItemCreateFunc) {
|
|
var itemsData = Array.isArray(value) ? value : value[Constants.itemsLowerCase];
|
|
if (Array.isArray(itemsData)) {
|
|
var items = [];
|
|
for (var i = 0; i < itemsData.length; i++) {
|
|
var item = childItemCreateFunc(itemsData, i);
|
|
Utility.setMockData(item, itemsData[i]);
|
|
items.push(item);
|
|
}
|
|
setItemsFunc(items);
|
|
}
|
|
}
|
|
};
|
|
Utility.applyMixin = function (derived, base) {
|
|
Object.getOwnPropertyNames(base.prototype).forEach(function (name) {
|
|
if (name !== 'constructor') {
|
|
Object.defineProperty(derived.prototype, name, Object.getOwnPropertyDescriptor(base.prototype, name));
|
|
}
|
|
});
|
|
};
|
|
Utility.ensureTypeInitialized = function (type) {
|
|
var context = new ClientRequestContext();
|
|
var objectPath = ObjectPathFactory.createNewObjectObjectPath(context, "Temp", false, 0);
|
|
new type(context, objectPath);
|
|
};
|
|
Utility.fieldName_m__items = 'm__items';
|
|
Utility.fieldName_isCollection = '_isCollection';
|
|
Utility._synchronousCleanup = false;
|
|
Utility.s_underscoreCharCode = '_'.charCodeAt(0);
|
|
Utility.s_suppressPropertyNotLoadedException = false;
|
|
return Utility;
|
|
}(CommonUtility));
|
|
OfficeExtension_1.Utility = Utility;
|
|
var BatchApiHelper = (function () {
|
|
function BatchApiHelper() {
|
|
}
|
|
BatchApiHelper.invokeMethod = function (obj, methodName, operationType, args, flags, resultProcessType) {
|
|
var action = ActionFactory.createMethodAction(obj.context, obj, methodName, operationType, args, flags);
|
|
var result = new ClientResult(resultProcessType);
|
|
Utility._addActionResultHandler(obj, action, result);
|
|
return result;
|
|
};
|
|
BatchApiHelper.invokeEnsureUnchanged = function (obj, objectState) {
|
|
ActionFactory.createEnsureUnchangedAction(obj.context, obj, objectState);
|
|
};
|
|
BatchApiHelper.invokeSetProperty = function (obj, propName, propValue, flags) {
|
|
ActionFactory.createSetPropertyAction(obj.context, obj, propName, propValue, flags);
|
|
};
|
|
BatchApiHelper.createRootServiceObject = function (type, context) {
|
|
var objectPath = ObjectPathFactory.createGlobalObjectObjectPath(context);
|
|
return new type(context, objectPath);
|
|
};
|
|
BatchApiHelper.createObjectFromReferenceId = function (type, context, referenceId) {
|
|
var objectPath = ObjectPathFactory.createReferenceIdObjectPath(context, referenceId);
|
|
return new type(context, objectPath);
|
|
};
|
|
BatchApiHelper.createTopLevelServiceObject = function (type, context, typeName, isCollection, flags) {
|
|
var objectPath = ObjectPathFactory.createNewObjectObjectPath(context, typeName, isCollection, flags);
|
|
return new type(context, objectPath);
|
|
};
|
|
BatchApiHelper.createPropertyObject = function (type, parent, propertyName, isCollection, flags) {
|
|
var objectPath = ObjectPathFactory.createPropertyObjectPath(parent.context, parent, propertyName, isCollection, false, flags);
|
|
return new type(parent.context, objectPath);
|
|
};
|
|
BatchApiHelper.createIndexerObject = function (type, parent, args) {
|
|
var objectPath = ObjectPathFactory.createIndexerObjectPath(parent.context, parent, args);
|
|
return new type(parent.context, objectPath);
|
|
};
|
|
BatchApiHelper.createMethodObject = function (type, parent, methodName, operationType, args, isCollection, isInvalidAfterRequest, getByIdMethodName, flags) {
|
|
var objectPath = ObjectPathFactory.createMethodObjectPath(parent.context, parent, methodName, operationType, args, isCollection, isInvalidAfterRequest, getByIdMethodName, flags);
|
|
return new type(parent.context, objectPath);
|
|
};
|
|
BatchApiHelper.createChildItemObject = function (type, hasIndexerMethod, parent, chileItem, index) {
|
|
var objectPath = ObjectPathFactory.createChildItemObjectPathUsingIndexerOrGetItemAt(hasIndexerMethod, parent.context, parent, chileItem, index);
|
|
return new type(parent.context, objectPath);
|
|
};
|
|
return BatchApiHelper;
|
|
}());
|
|
OfficeExtension_1.BatchApiHelper = BatchApiHelper;
|
|
var LibraryBuilder = (function () {
|
|
function LibraryBuilder(options) {
|
|
this.m_namespaceMap = {};
|
|
this.m_namespace = options.metadata.name;
|
|
this.m_targetNamespaceObject = options.targetNamespaceObject;
|
|
this.m_namespaceMap[this.m_namespace] = options.targetNamespaceObject;
|
|
if (options.namespaceMap) {
|
|
for (var ns in options.namespaceMap) {
|
|
this.m_namespaceMap[ns] = options.namespaceMap[ns];
|
|
}
|
|
}
|
|
this.m_defaultApiSetName = options.metadata.defaultApiSetName;
|
|
this.m_hostName = options.metadata.hostName;
|
|
var metadata = options.metadata;
|
|
if (metadata.enumTypes) {
|
|
for (var i = 0; i < metadata.enumTypes.length; i++) {
|
|
this.buildEnumType(metadata.enumTypes[i]);
|
|
}
|
|
}
|
|
if (metadata.apiSets) {
|
|
for (var i = 0; i < metadata.apiSets.length; i++) {
|
|
var elem = metadata.apiSets[i];
|
|
if (Array.isArray(elem)) {
|
|
metadata.apiSets[i] = {
|
|
version: elem[0],
|
|
name: elem[1] || this.m_defaultApiSetName
|
|
};
|
|
}
|
|
}
|
|
this.m_apiSets = metadata.apiSets;
|
|
}
|
|
this.m_strings = metadata.strings;
|
|
if (metadata.clientObjectTypes) {
|
|
for (var i = 0; i < metadata.clientObjectTypes.length; i++) {
|
|
var elem = metadata.clientObjectTypes[i];
|
|
if (Array.isArray(elem)) {
|
|
this.ensureArraySize(elem, 11);
|
|
metadata.clientObjectTypes[i] = {
|
|
name: this.getString(elem[0]),
|
|
behaviorFlags: elem[1],
|
|
collectionPropertyPath: this.getString(elem[6]),
|
|
newObjectServerTypeFullName: this.getString(elem[9]),
|
|
newObjectApiFlags: elem[10],
|
|
childItemTypeFullName: this.getString(elem[7]),
|
|
scalarProperties: elem[2],
|
|
navigationProperties: elem[3],
|
|
scalarMethods: elem[4],
|
|
navigationMethods: elem[5],
|
|
events: elem[8]
|
|
};
|
|
}
|
|
this.buildClientObjectType(metadata.clientObjectTypes[i], options.fullyInitialize);
|
|
}
|
|
}
|
|
}
|
|
LibraryBuilder.prototype.ensureArraySize = function (value, size) {
|
|
var count = size - value.length;
|
|
while (count > 0) {
|
|
value.push(0);
|
|
count--;
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.getString = function (ordinalOrValue) {
|
|
if (typeof (ordinalOrValue) === "number") {
|
|
if (ordinalOrValue > 0) {
|
|
return this.m_strings[ordinalOrValue - 1];
|
|
}
|
|
return null;
|
|
}
|
|
return ordinalOrValue;
|
|
};
|
|
LibraryBuilder.prototype.buildEnumType = function (elem) {
|
|
var enumType;
|
|
if (Array.isArray(elem)) {
|
|
enumType = {
|
|
name: elem[0],
|
|
fields: elem[2]
|
|
};
|
|
if (!enumType.fields) {
|
|
enumType.fields = {};
|
|
}
|
|
var fieldsWithCamelUpperCaseValue = elem[1];
|
|
if (Array.isArray(fieldsWithCamelUpperCaseValue)) {
|
|
for (var index = 0; index < fieldsWithCamelUpperCaseValue.length; index++) {
|
|
enumType.fields[fieldsWithCamelUpperCaseValue[index]] = this.toSimpleCamelUpperCase(fieldsWithCamelUpperCaseValue[index]);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
enumType = elem;
|
|
}
|
|
this.m_targetNamespaceObject[enumType.name] = enumType.fields;
|
|
};
|
|
LibraryBuilder.prototype.buildClientObjectType = function (typeInfo, fullyInitialize) {
|
|
var thisBuilder = this;
|
|
var type = function (context, objectPath) {
|
|
ClientObject.apply(this, arguments);
|
|
if (!thisBuilder.m_targetNamespaceObject[typeInfo.name]._typeInited) {
|
|
thisBuilder.buildPrototype(thisBuilder.m_targetNamespaceObject[typeInfo.name], typeInfo);
|
|
thisBuilder.m_targetNamespaceObject[typeInfo.name]._typeInited = true;
|
|
}
|
|
if (OfficeExtension_1._internalConfig.appendTypeNameToObjectPathInfo) {
|
|
if (this._objectPath && this._objectPath.objectPathInfo && this._className) {
|
|
this._objectPath.objectPathInfo.T = this._className;
|
|
}
|
|
}
|
|
};
|
|
this.m_targetNamespaceObject[typeInfo.name] = type;
|
|
this.extendsType(type, ClientObject);
|
|
this.buildNewObject(type, typeInfo);
|
|
if ((typeInfo.behaviorFlags & 2) !== 0) {
|
|
type.prototype._KeepReference = function () {
|
|
BatchApiHelper.invokeMethod(this, "_KeepReference", 1, [], 0, 0);
|
|
};
|
|
}
|
|
if ((typeInfo.behaviorFlags & 32) !== 0) {
|
|
var func = this.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_StaticCustomize");
|
|
func.call(null, type);
|
|
}
|
|
if (fullyInitialize) {
|
|
this.buildPrototype(type, typeInfo);
|
|
type._typeInited = true;
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.extendsType = function (d, b) {
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
LibraryBuilder.prototype.findObjectUnderPath = function (top, paths, pathStartIndex) {
|
|
var obj = top;
|
|
for (var i = pathStartIndex; i < paths.length; i++) {
|
|
if (typeof (obj) !== 'object') {
|
|
throw new OfficeExtension_1.Error("Cannot find " + paths.join("."));
|
|
}
|
|
obj = obj[paths[i]];
|
|
}
|
|
return obj;
|
|
};
|
|
LibraryBuilder.prototype.getFunction = function (fullName) {
|
|
var ret = this.resolveObjectByFullName(fullName);
|
|
if (typeof (ret) !== 'function') {
|
|
throw new OfficeExtension_1.Error("Cannot find function or type: " + fullName);
|
|
}
|
|
return ret;
|
|
};
|
|
LibraryBuilder.prototype.resolveObjectByFullName = function (fullName) {
|
|
var parts = fullName.split('.');
|
|
if (parts.length === 1) {
|
|
return this.m_targetNamespaceObject[parts[0]];
|
|
}
|
|
var rootName = parts[0];
|
|
if (rootName === this.m_namespace) {
|
|
return this.findObjectUnderPath(this.m_targetNamespaceObject, parts, 1);
|
|
}
|
|
if (this.m_namespaceMap[rootName]) {
|
|
return this.findObjectUnderPath(this.m_namespaceMap[rootName], parts, 1);
|
|
}
|
|
return this.findObjectUnderPath(this.m_targetNamespaceObject, parts, 0);
|
|
};
|
|
LibraryBuilder.prototype.evaluateSimpleExpression = function (expression, thisObj) {
|
|
if (Utility.isNullOrUndefined(expression)) {
|
|
return null;
|
|
}
|
|
var paths = expression.split('.');
|
|
if (paths.length === 3 && paths[0] === 'OfficeExtension' && paths[1] === 'Constants') {
|
|
return Constants[paths[2]];
|
|
}
|
|
if (paths[0] === 'this') {
|
|
var obj = thisObj;
|
|
for (var i = 1; i < paths.length; i++) {
|
|
if (paths[i] == 'toString()') {
|
|
obj = obj.toString();
|
|
}
|
|
else if (paths[i].substr(paths[i].length - 2) === "()") {
|
|
obj = obj[paths[i].substr(0, paths[i].length - 2)]();
|
|
}
|
|
else {
|
|
obj = obj[paths[i]];
|
|
}
|
|
}
|
|
return obj;
|
|
}
|
|
throw new OfficeExtension_1.Error("Cannot evaluate: " + expression);
|
|
};
|
|
LibraryBuilder.prototype.evaluateEventTargetId = function (targetIdExpression, thisObj) {
|
|
if (Utility.isNullOrEmptyString(targetIdExpression)) {
|
|
return '';
|
|
}
|
|
return this.evaluateSimpleExpression(targetIdExpression, thisObj);
|
|
};
|
|
LibraryBuilder.prototype.isAllDigits = function (expression) {
|
|
var charZero = '0'.charCodeAt(0);
|
|
var charNine = '9'.charCodeAt(0);
|
|
for (var i = 0; i < expression.length; i++) {
|
|
if (expression.charCodeAt(i) < charZero ||
|
|
expression.charCodeAt(i) > charNine) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
};
|
|
LibraryBuilder.prototype.evaluateEventType = function (eventTypeExpression) {
|
|
if (Utility.isNullOrEmptyString(eventTypeExpression)) {
|
|
return 0;
|
|
}
|
|
if (this.isAllDigits(eventTypeExpression)) {
|
|
return parseInt(eventTypeExpression);
|
|
}
|
|
var ret = this.resolveObjectByFullName(eventTypeExpression);
|
|
if (typeof (ret) !== 'number') {
|
|
throw new OfficeExtension_1.Error("Invalid event type: " + eventTypeExpression);
|
|
}
|
|
return ret;
|
|
};
|
|
LibraryBuilder.prototype.buildPrototype = function (type, typeInfo) {
|
|
this.buildScalarProperties(type, typeInfo);
|
|
this.buildNavigationProperties(type, typeInfo);
|
|
this.buildScalarMethods(type, typeInfo);
|
|
this.buildNavigationMethods(type, typeInfo);
|
|
this.buildEvents(type, typeInfo);
|
|
this.buildHandleResult(type, typeInfo);
|
|
this.buildHandleIdResult(type, typeInfo);
|
|
this.buildHandleRetrieveResult(type, typeInfo);
|
|
this.buildLoad(type, typeInfo);
|
|
this.buildRetrieve(type, typeInfo);
|
|
this.buildSetMockData(type, typeInfo);
|
|
this.buildEnsureUnchanged(type, typeInfo);
|
|
this.buildUpdate(type, typeInfo);
|
|
this.buildSet(type, typeInfo);
|
|
this.buildToJSON(type, typeInfo);
|
|
this.buildItems(type, typeInfo);
|
|
this.buildTypeMetadataInfo(type, typeInfo);
|
|
this.buildTrackUntrack(type, typeInfo);
|
|
this.buildMixin(type, typeInfo);
|
|
};
|
|
LibraryBuilder.prototype.toSimpleCamelUpperCase = function (name) {
|
|
return name.substr(0, 1).toUpperCase() + name.substr(1);
|
|
};
|
|
LibraryBuilder.prototype.ensureOriginalName = function (member) {
|
|
if (member.originalName === null) {
|
|
member.originalName = this.toSimpleCamelUpperCase(member.name);
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.getFieldName = function (member) {
|
|
return "m_" + member.name;
|
|
};
|
|
LibraryBuilder.prototype.throwIfApiNotSupported = function (typeInfo, member) {
|
|
if (this.m_apiSets && member.apiSetInfoOrdinal > 0) {
|
|
var apiSetInfo = this.m_apiSets[member.apiSetInfoOrdinal - 1];
|
|
if (apiSetInfo) {
|
|
Utility.throwIfApiNotSupported(typeInfo.name + "." + member.name, apiSetInfo.name, apiSetInfo.version, this.m_hostName);
|
|
}
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildScalarProperties = function (type, typeInfo) {
|
|
if (Array.isArray(typeInfo.scalarProperties)) {
|
|
for (var i = 0; i < typeInfo.scalarProperties.length; i++) {
|
|
var elem = typeInfo.scalarProperties[i];
|
|
if (Array.isArray(elem)) {
|
|
this.ensureArraySize(elem, 6);
|
|
typeInfo.scalarProperties[i] = {
|
|
name: this.getString(elem[0]),
|
|
behaviorFlags: elem[1],
|
|
apiSetInfoOrdinal: elem[2],
|
|
originalName: this.getString(elem[3]),
|
|
setMethodApiFlags: elem[4],
|
|
undoableApiSetInfoOrdinal: elem[5]
|
|
};
|
|
}
|
|
this.buildScalarProperty(type, typeInfo, typeInfo.scalarProperties[i]);
|
|
}
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.calculateApiFlags = function (apiFlags, undoableApiSetInfoOrdinal) {
|
|
if (undoableApiSetInfoOrdinal > 0) {
|
|
var undoableApiSetInfo = this.m_apiSets[undoableApiSetInfoOrdinal - 1];
|
|
if (undoableApiSetInfo) {
|
|
apiFlags = CommonUtility.calculateApiFlags(apiFlags, undoableApiSetInfo.name, undoableApiSetInfo.version);
|
|
}
|
|
}
|
|
return apiFlags;
|
|
};
|
|
LibraryBuilder.prototype.buildScalarProperty = function (type, typeInfo, propInfo) {
|
|
this.ensureOriginalName(propInfo);
|
|
var thisBuilder = this;
|
|
var fieldName = this.getFieldName(propInfo);
|
|
var descriptor = {
|
|
get: function () {
|
|
Utility.throwIfNotLoaded(propInfo.name, this[fieldName], typeInfo.name, this._isNull);
|
|
thisBuilder.throwIfApiNotSupported(typeInfo, propInfo);
|
|
return this[fieldName];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
};
|
|
if ((propInfo.behaviorFlags & 2) === 0) {
|
|
descriptor.set = function (value) {
|
|
if (propInfo.behaviorFlags & 4) {
|
|
var customizationFunc = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_" + propInfo.originalName + "_Set");
|
|
var handled = customizationFunc.call(this, this, value).handled;
|
|
if (handled) {
|
|
return;
|
|
}
|
|
}
|
|
this[fieldName] = value;
|
|
var apiFlags = thisBuilder.calculateApiFlags(propInfo.setMethodApiFlags, propInfo.undoableApiSetInfoOrdinal);
|
|
BatchApiHelper.invokeSetProperty(this, propInfo.originalName, value, apiFlags);
|
|
};
|
|
}
|
|
Object.defineProperty(type.prototype, propInfo.name, descriptor);
|
|
};
|
|
LibraryBuilder.prototype.buildNavigationProperties = function (type, typeInfo) {
|
|
if (Array.isArray(typeInfo.navigationProperties)) {
|
|
for (var i = 0; i < typeInfo.navigationProperties.length; i++) {
|
|
var elem = typeInfo.navigationProperties[i];
|
|
if (Array.isArray(elem)) {
|
|
this.ensureArraySize(elem, 8);
|
|
typeInfo.navigationProperties[i] = {
|
|
name: this.getString(elem[0]),
|
|
behaviorFlags: elem[2],
|
|
apiSetInfoOrdinal: elem[3],
|
|
originalName: this.getString(elem[4]),
|
|
getMethodApiFlags: elem[5],
|
|
setMethodApiFlags: elem[6],
|
|
propertyTypeFullName: this.getString(elem[1]),
|
|
undoableApiSetInfoOrdinal: elem[7]
|
|
};
|
|
}
|
|
this.buildNavigationProperty(type, typeInfo, typeInfo.navigationProperties[i]);
|
|
}
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildNavigationProperty = function (type, typeInfo, propInfo) {
|
|
this.ensureOriginalName(propInfo);
|
|
var thisBuilder = this;
|
|
var fieldName = this.getFieldName(propInfo);
|
|
var descriptor = {
|
|
get: function () {
|
|
if (!this[thisBuilder.getFieldName(propInfo)]) {
|
|
thisBuilder.throwIfApiNotSupported(typeInfo, propInfo);
|
|
this[fieldName] = BatchApiHelper.createPropertyObject(thisBuilder.getFunction(propInfo.propertyTypeFullName), this, propInfo.originalName, (propInfo.behaviorFlags & 16) !== 0, propInfo.getMethodApiFlags);
|
|
}
|
|
if (propInfo.behaviorFlags & 64) {
|
|
var customizationFunc = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_" + propInfo.originalName + "_Get");
|
|
customizationFunc.call(this, this, this[fieldName]);
|
|
}
|
|
return this[fieldName];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
};
|
|
if ((propInfo.behaviorFlags & 2) === 0) {
|
|
descriptor.set = function (value) {
|
|
if (propInfo.behaviorFlags & 4) {
|
|
var customizationFunc = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_" + propInfo.originalName + "_Set");
|
|
var handled = customizationFunc.call(this, this, value).handled;
|
|
if (handled) {
|
|
return;
|
|
}
|
|
}
|
|
this[fieldName] = value;
|
|
var apiFlags = thisBuilder.calculateApiFlags(propInfo.setMethodApiFlags, propInfo.undoableApiSetInfoOrdinal);
|
|
BatchApiHelper.invokeSetProperty(this, propInfo.originalName, value, apiFlags);
|
|
};
|
|
}
|
|
Object.defineProperty(type.prototype, propInfo.name, descriptor);
|
|
};
|
|
LibraryBuilder.prototype.buildScalarMethods = function (type, typeInfo) {
|
|
if (Array.isArray(typeInfo.scalarMethods)) {
|
|
for (var i = 0; i < typeInfo.scalarMethods.length; i++) {
|
|
var elem = typeInfo.scalarMethods[i];
|
|
if (Array.isArray(elem)) {
|
|
this.ensureArraySize(elem, 7);
|
|
typeInfo.scalarMethods[i] = {
|
|
name: this.getString(elem[0]),
|
|
behaviorFlags: elem[2],
|
|
apiSetInfoOrdinal: elem[3],
|
|
originalName: this.getString(elem[5]),
|
|
apiFlags: elem[4],
|
|
parameterCount: elem[1],
|
|
undoableApiSetInfoOrdinal: elem[6]
|
|
};
|
|
}
|
|
this.buildScalarMethod(type, typeInfo, typeInfo.scalarMethods[i]);
|
|
}
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildScalarMethod = function (type, typeInfo, methodInfo) {
|
|
this.ensureOriginalName(methodInfo);
|
|
var thisBuilder = this;
|
|
type.prototype[methodInfo.name] = function () {
|
|
var args = [];
|
|
if ((methodInfo.behaviorFlags & 64) && methodInfo.parameterCount > 0) {
|
|
for (var i = 0; i < methodInfo.parameterCount - 1; i++) {
|
|
args.push(arguments[i]);
|
|
}
|
|
var rest = [];
|
|
for (var i = methodInfo.parameterCount - 1; i < arguments.length; i++) {
|
|
rest.push(arguments[i]);
|
|
}
|
|
args.push(rest);
|
|
}
|
|
else {
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
args.push(arguments[i]);
|
|
}
|
|
}
|
|
if (methodInfo.behaviorFlags & 1) {
|
|
var customizationFunc = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_" + methodInfo.originalName);
|
|
var applyArgs = [this];
|
|
for (var i = 0; i < args.length; i++) {
|
|
applyArgs.push(args[i]);
|
|
}
|
|
var _a = customizationFunc.apply(this, applyArgs), handled = _a.handled, result = _a.result;
|
|
if (handled) {
|
|
return result;
|
|
}
|
|
}
|
|
thisBuilder.throwIfApiNotSupported(typeInfo, methodInfo);
|
|
var resultProcessType = 0;
|
|
if (methodInfo.behaviorFlags & 32) {
|
|
resultProcessType = 1;
|
|
}
|
|
var operationType = 0;
|
|
if (methodInfo.behaviorFlags & 2) {
|
|
operationType = 1;
|
|
}
|
|
var apiFlags = thisBuilder.calculateApiFlags(methodInfo.apiFlags, methodInfo.undoableApiSetInfoOrdinal);
|
|
return BatchApiHelper.invokeMethod(this, methodInfo.originalName, operationType, args, apiFlags, resultProcessType);
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildNavigationMethods = function (type, typeInfo) {
|
|
if (Array.isArray(typeInfo.navigationMethods)) {
|
|
for (var i = 0; i < typeInfo.navigationMethods.length; i++) {
|
|
var elem = typeInfo.navigationMethods[i];
|
|
if (Array.isArray(elem)) {
|
|
this.ensureArraySize(elem, 9);
|
|
typeInfo.navigationMethods[i] = {
|
|
name: this.getString(elem[0]),
|
|
behaviorFlags: elem[3],
|
|
apiSetInfoOrdinal: elem[4],
|
|
originalName: this.getString(elem[6]),
|
|
apiFlags: elem[5],
|
|
parameterCount: elem[2],
|
|
returnTypeFullName: this.getString(elem[1]),
|
|
returnObjectGetByIdMethodName: this.getString(elem[7]),
|
|
undoableApiSetInfoOrdinal: elem[8]
|
|
};
|
|
}
|
|
this.buildNavigationMethod(type, typeInfo, typeInfo.navigationMethods[i]);
|
|
}
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildNavigationMethod = function (type, typeInfo, methodInfo) {
|
|
this.ensureOriginalName(methodInfo);
|
|
var thisBuilder = this;
|
|
type.prototype[methodInfo.name] = function () {
|
|
var args = [];
|
|
if ((methodInfo.behaviorFlags & 64) && methodInfo.parameterCount > 0) {
|
|
for (var i = 0; i < methodInfo.parameterCount - 1; i++) {
|
|
args.push(arguments[i]);
|
|
}
|
|
var rest = [];
|
|
for (var i = methodInfo.parameterCount - 1; i < arguments.length; i++) {
|
|
rest.push(arguments[i]);
|
|
}
|
|
args.push(rest);
|
|
}
|
|
else {
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
args.push(arguments[i]);
|
|
}
|
|
}
|
|
if (methodInfo.behaviorFlags & 1) {
|
|
var customizationFunc = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_" + methodInfo.originalName);
|
|
var applyArgs = [this];
|
|
for (var i = 0; i < args.length; i++) {
|
|
applyArgs.push(args[i]);
|
|
}
|
|
var _a = customizationFunc.apply(this, applyArgs), handled = _a.handled, result = _a.result;
|
|
if (handled) {
|
|
return result;
|
|
}
|
|
}
|
|
thisBuilder.throwIfApiNotSupported(typeInfo, methodInfo);
|
|
if ((methodInfo.behaviorFlags & 16) !== 0) {
|
|
return BatchApiHelper.createIndexerObject(thisBuilder.getFunction(methodInfo.returnTypeFullName), this, args);
|
|
}
|
|
else {
|
|
var operationType = 0;
|
|
if (methodInfo.behaviorFlags & 2) {
|
|
operationType = 1;
|
|
}
|
|
var apiFlags = thisBuilder.calculateApiFlags(methodInfo.apiFlags, methodInfo.undoableApiSetInfoOrdinal);
|
|
return BatchApiHelper.createMethodObject(thisBuilder.getFunction(methodInfo.returnTypeFullName), this, methodInfo.originalName, operationType, args, (methodInfo.behaviorFlags & 4) !== 0, (methodInfo.behaviorFlags & 8) !== 0, methodInfo.returnObjectGetByIdMethodName, apiFlags);
|
|
}
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildHandleResult = function (type, typeInfo) {
|
|
var thisBuilder = this;
|
|
type.prototype._handleResult = function (value) {
|
|
ClientObject.prototype._handleResult.call(this, value);
|
|
if (Utility.isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
Utility.fixObjectPathIfNecessary(this, value);
|
|
if (typeInfo.behaviorFlags & 8) {
|
|
var customizationFunc = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_HandleResult");
|
|
customizationFunc.call(this, this, value);
|
|
}
|
|
if (typeInfo.scalarProperties) {
|
|
for (var i_3 = 0; i_3 < typeInfo.scalarProperties.length; i_3++) {
|
|
if (!Utility.isUndefined(value[typeInfo.scalarProperties[i_3].originalName])) {
|
|
if ((typeInfo.scalarProperties[i_3].behaviorFlags & 8) !== 0) {
|
|
this[thisBuilder.getFieldName(typeInfo.scalarProperties[i_3])] = Utility.adjustToDateTime(value[typeInfo.scalarProperties[i_3].originalName]);
|
|
}
|
|
else {
|
|
this[thisBuilder.getFieldName(typeInfo.scalarProperties[i_3])] = value[typeInfo.scalarProperties[i_3].originalName];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (typeInfo.navigationProperties) {
|
|
var propNames = [];
|
|
for (var i_4 = 0; i_4 < typeInfo.navigationProperties.length; i_4++) {
|
|
propNames.push(typeInfo.navigationProperties[i_4].name);
|
|
propNames.push(typeInfo.navigationProperties[i_4].originalName);
|
|
}
|
|
Utility._handleNavigationPropertyResults(this, value, propNames);
|
|
}
|
|
if ((typeInfo.behaviorFlags & 1) !== 0) {
|
|
var hasIndexerMethod = thisBuilder.hasIndexMethod(typeInfo);
|
|
if (!Utility.isNullOrUndefined(value[Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = value[Constants.items];
|
|
var childItemType = thisBuilder.getFunction(typeInfo.childItemTypeFullName);
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = BatchApiHelper.createChildItemObject(childItemType, hasIndexerMethod, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildHandleRetrieveResult = function (type, typeInfo) {
|
|
var thisBuilder = this;
|
|
type.prototype._handleRetrieveResult = function (value, result) {
|
|
ClientObject.prototype._handleRetrieveResult.call(this, value, result);
|
|
if (Utility.isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (typeInfo.scalarProperties) {
|
|
for (var i = 0; i < typeInfo.scalarProperties.length; i++) {
|
|
if (typeInfo.scalarProperties[i].behaviorFlags & 8) {
|
|
if (!Utility.isNullOrUndefined(value[typeInfo.scalarProperties[i].name])) {
|
|
value[typeInfo.scalarProperties[i].name] = Utility.adjustToDateTime(value[typeInfo.scalarProperties[i].name]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (typeInfo.behaviorFlags & 1) {
|
|
var hasIndexerMethod_1 = thisBuilder.hasIndexMethod(typeInfo);
|
|
var childItemType_1 = thisBuilder.getFunction(typeInfo.childItemTypeFullName);
|
|
var thisObj_1 = this;
|
|
Utility.processRetrieveResult(thisObj_1, value, result, function (childItemData, index) { return BatchApiHelper.createChildItemObject(childItemType_1, hasIndexerMethod_1, thisObj_1, childItemData, index); });
|
|
}
|
|
else {
|
|
Utility.processRetrieveResult(this, value, result);
|
|
}
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildHandleIdResult = function (type, typeInfo) {
|
|
var thisBuilder = this;
|
|
type.prototype._handleIdResult = function (value) {
|
|
ClientObject.prototype._handleIdResult.call(this, value);
|
|
if (Utility.isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (typeInfo.behaviorFlags & 16) {
|
|
var customizationFunc = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_HandleIdResult");
|
|
customizationFunc.call(this, this, value);
|
|
}
|
|
if (typeInfo.scalarProperties) {
|
|
for (var i = 0; i < typeInfo.scalarProperties.length; i++) {
|
|
var propName = typeInfo.scalarProperties[i].originalName;
|
|
if (propName === "Id" || propName === "_Id" || propName === "_ReferenceId") {
|
|
if (!Utility.isNullOrUndefined(value[typeInfo.scalarProperties[i].originalName])) {
|
|
this[thisBuilder.getFieldName(typeInfo.scalarProperties[i])] = value[typeInfo.scalarProperties[i].originalName];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildLoad = function (type, typeInfo) {
|
|
type.prototype.load = function (options) {
|
|
return Utility.load(this, options);
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildRetrieve = function (type, typeInfo) {
|
|
type.prototype.retrieve = function (options) {
|
|
return Utility.retrieve(this, options);
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildNewObject = function (type, typeInfo) {
|
|
if (!Utility.isNullOrEmptyString(typeInfo.newObjectServerTypeFullName)) {
|
|
type.newObject = function (context) {
|
|
return BatchApiHelper.createTopLevelServiceObject(type, context, typeInfo.newObjectServerTypeFullName, (typeInfo.behaviorFlags & 1) !== 0, typeInfo.newObjectApiFlags);
|
|
};
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildSetMockData = function (type, typeInfo) {
|
|
var thisBuilder = this;
|
|
if (typeInfo.behaviorFlags & 1) {
|
|
var hasIndexMethod_1 = thisBuilder.hasIndexMethod(typeInfo);
|
|
type.prototype.setMockData = function (data) {
|
|
var thisObj = this;
|
|
Utility.setMockData(thisObj, data, function (childItemData, index) {
|
|
return BatchApiHelper.createChildItemObject(thisBuilder.getFunction(typeInfo.childItemTypeFullName), hasIndexMethod_1, thisObj, childItemData, index);
|
|
}, function (items) {
|
|
thisObj.m__items = items;
|
|
});
|
|
};
|
|
}
|
|
else {
|
|
type.prototype.setMockData = function (data) {
|
|
Utility.setMockData(this, data);
|
|
};
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildEnsureUnchanged = function (type, typeInfo) {
|
|
type.prototype.ensureUnchanged = function (data) {
|
|
BatchApiHelper.invokeEnsureUnchanged(this, data);
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildUpdate = function (type, typeInfo) {
|
|
type.prototype.update = function (properties) {
|
|
this._recursivelyUpdate(properties);
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildSet = function (type, typeInfo) {
|
|
if ((typeInfo.behaviorFlags & 1) !== 0) {
|
|
return;
|
|
}
|
|
var notAllowedToBeSetPropertyNames = [];
|
|
var allowedScalarPropertyNames = [];
|
|
if (typeInfo.scalarProperties) {
|
|
for (var i = 0; i < typeInfo.scalarProperties.length; i++) {
|
|
if ((typeInfo.scalarProperties[i].behaviorFlags & 2) === 0 &&
|
|
(typeInfo.scalarProperties[i].behaviorFlags & 1) !== 0) {
|
|
allowedScalarPropertyNames.push(typeInfo.scalarProperties[i].name);
|
|
}
|
|
else {
|
|
notAllowedToBeSetPropertyNames.push(typeInfo.scalarProperties[i].name);
|
|
}
|
|
}
|
|
}
|
|
var allowedNavigationPropertyNames = [];
|
|
if (typeInfo.navigationProperties) {
|
|
for (var i = 0; i < typeInfo.navigationProperties.length; i++) {
|
|
if ((typeInfo.navigationProperties[i].behaviorFlags & 16) !== 0) {
|
|
notAllowedToBeSetPropertyNames.push(typeInfo.navigationProperties[i].name);
|
|
}
|
|
else if ((typeInfo.navigationProperties[i].behaviorFlags & 1) === 0) {
|
|
notAllowedToBeSetPropertyNames.push(typeInfo.navigationProperties[i].name);
|
|
}
|
|
else if ((typeInfo.navigationProperties[i].behaviorFlags & 32) === 0) {
|
|
notAllowedToBeSetPropertyNames.push(typeInfo.navigationProperties[i].name);
|
|
}
|
|
else {
|
|
allowedNavigationPropertyNames.push(typeInfo.navigationProperties[i].name);
|
|
}
|
|
}
|
|
}
|
|
if (allowedNavigationPropertyNames.length === 0 && allowedScalarPropertyNames.length === 0) {
|
|
return;
|
|
}
|
|
type.prototype.set = function (properties, options) {
|
|
this._recursivelySet(properties, options, allowedScalarPropertyNames, allowedNavigationPropertyNames, notAllowedToBeSetPropertyNames);
|
|
};
|
|
};
|
|
LibraryBuilder.prototype.buildItems = function (type, typeInfo) {
|
|
if ((typeInfo.behaviorFlags & 1) === 0) {
|
|
return;
|
|
}
|
|
Object.defineProperty(type.prototype, "items", {
|
|
get: function () {
|
|
Utility.throwIfNotLoaded("items", this.m__items, typeInfo.name, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
};
|
|
LibraryBuilder.prototype.buildToJSON = function (type, typeInfo) {
|
|
var thisBuilder = this;
|
|
if ((typeInfo.behaviorFlags & 1) !== 0) {
|
|
type.prototype.toJSON = function () {
|
|
return Utility.toJson(this, {}, {}, this.m__items);
|
|
};
|
|
return;
|
|
}
|
|
else {
|
|
type.prototype.toJSON = function () {
|
|
var scalarProperties = {};
|
|
if (typeInfo.scalarProperties) {
|
|
for (var i = 0; i < typeInfo.scalarProperties.length; i++) {
|
|
if ((typeInfo.scalarProperties[i].behaviorFlags & 1) !== 0) {
|
|
scalarProperties[typeInfo.scalarProperties[i].name] = this[thisBuilder.getFieldName(typeInfo.scalarProperties[i])];
|
|
}
|
|
}
|
|
}
|
|
var navProperties = {};
|
|
if (typeInfo.navigationProperties) {
|
|
for (var i = 0; i < typeInfo.navigationProperties.length; i++) {
|
|
if ((typeInfo.navigationProperties[i].behaviorFlags & 1) !== 0) {
|
|
navProperties[typeInfo.navigationProperties[i].name] = this[thisBuilder.getFieldName(typeInfo.navigationProperties[i])];
|
|
}
|
|
}
|
|
}
|
|
return Utility.toJson(this, scalarProperties, navProperties);
|
|
};
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildTypeMetadataInfo = function (type, typeInfo) {
|
|
Object.defineProperty(type.prototype, "_className", {
|
|
get: function () {
|
|
return typeInfo.name;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(type.prototype, "_isCollection", {
|
|
get: function () {
|
|
return (typeInfo.behaviorFlags & 1) !== 0;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
if (!Utility.isNullOrEmptyString(typeInfo.collectionPropertyPath)) {
|
|
Object.defineProperty(type.prototype, "_collectionPropertyPath", {
|
|
get: function () {
|
|
return typeInfo.collectionPropertyPath;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
}
|
|
if (typeInfo.scalarProperties && typeInfo.scalarProperties.length > 0) {
|
|
Object.defineProperty(type.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
if (!this.m__scalarPropertyNames) {
|
|
this.m__scalarPropertyNames = typeInfo.scalarProperties.map(function (p) { return p.name; });
|
|
}
|
|
return this.m__scalarPropertyNames;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(type.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
if (!this.m__scalarPropertyOriginalNames) {
|
|
this.m__scalarPropertyOriginalNames = typeInfo.scalarProperties.map(function (p) { return p.originalName; });
|
|
}
|
|
return this.m__scalarPropertyOriginalNames;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(type.prototype, "_scalarPropertyUpdateable", {
|
|
get: function () {
|
|
if (!this.m__scalarPropertyUpdateable) {
|
|
this.m__scalarPropertyUpdateable = typeInfo.scalarProperties.map(function (p) { return (p.behaviorFlags & 2) === 0; });
|
|
}
|
|
return this.m__scalarPropertyUpdateable;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
}
|
|
if (typeInfo.navigationProperties && typeInfo.navigationProperties.length > 0) {
|
|
Object.defineProperty(type.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
if (!this.m__navigationPropertyNames) {
|
|
this.m__navigationPropertyNames = typeInfo.navigationProperties.map(function (p) { return p.name; });
|
|
}
|
|
return this.m__navigationPropertyNames;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildTrackUntrack = function (type, typeInfo) {
|
|
if (typeInfo.behaviorFlags & 2) {
|
|
type.prototype.track = function () {
|
|
this.context.trackedObjects.add(this);
|
|
return this;
|
|
};
|
|
type.prototype.untrack = function () {
|
|
this.context.trackedObjects.remove(this);
|
|
return this;
|
|
};
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildMixin = function (type, typeInfo) {
|
|
if (typeInfo.behaviorFlags & 4) {
|
|
var mixinType = this.getFunction(typeInfo.name + 'Custom');
|
|
Utility.applyMixin(type, mixinType);
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.getOnEventName = function (name) {
|
|
if (name[0] === '_') {
|
|
return '_on' + name.substr(1);
|
|
}
|
|
return 'on' + name;
|
|
};
|
|
LibraryBuilder.prototype.buildEvents = function (type, typeInfo) {
|
|
if (typeInfo.events) {
|
|
for (var i = 0; i < typeInfo.events.length; i++) {
|
|
var elem = typeInfo.events[i];
|
|
if (Array.isArray(elem)) {
|
|
this.ensureArraySize(elem, 7);
|
|
typeInfo.events[i] = {
|
|
name: this.getString(elem[0]),
|
|
behaviorFlags: elem[1],
|
|
apiSetInfoOrdinal: elem[2],
|
|
typeExpression: this.getString(elem[3]),
|
|
targetIdExpression: this.getString(elem[4]),
|
|
register: this.getString(elem[5]),
|
|
unregister: this.getString(elem[6])
|
|
};
|
|
}
|
|
this.buildEvent(type, typeInfo, typeInfo.events[i]);
|
|
}
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildEvent = function (type, typeInfo, evt) {
|
|
if (evt.behaviorFlags & 1) {
|
|
this.buildV0Event(type, typeInfo, evt);
|
|
}
|
|
else {
|
|
this.buildV2Event(type, typeInfo, evt);
|
|
}
|
|
};
|
|
LibraryBuilder.prototype.buildV2Event = function (type, typeInfo, evt) {
|
|
var thisBuilder = this;
|
|
var eventName = this.getOnEventName(evt.name);
|
|
var fieldName = this.getFieldName(evt);
|
|
Object.defineProperty(type.prototype, eventName, {
|
|
get: function () {
|
|
if (!this[fieldName]) {
|
|
thisBuilder.throwIfApiNotSupported(typeInfo, evt);
|
|
var thisObj = this;
|
|
var registerFunc = null;
|
|
if (evt.register !== 'null') {
|
|
registerFunc = this[evt.register].bind(this);
|
|
}
|
|
var unregisterFunc = null;
|
|
if (evt.unregister !== 'null') {
|
|
unregisterFunc = this[evt.unregister].bind(this);
|
|
}
|
|
var getTargetIdFunc = function () {
|
|
return thisBuilder.evaluateEventTargetId(evt.targetIdExpression, thisObj);
|
|
};
|
|
var func = null;
|
|
if (evt.behaviorFlags & 2) {
|
|
func = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_" + evt.name + "_EventArgsTransform");
|
|
}
|
|
var eventArgsTransformFunc = function (value) {
|
|
if (func) {
|
|
value = func.call(thisObj, thisObj, value);
|
|
}
|
|
return Utility._createPromiseFromResult(value);
|
|
};
|
|
var eventType = thisBuilder.evaluateEventType(evt.typeExpression);
|
|
this[fieldName] = new GenericEventHandlers(this.context, this, evt.name, {
|
|
eventType: eventType,
|
|
getTargetIdFunc: getTargetIdFunc,
|
|
registerFunc: registerFunc,
|
|
unregisterFunc: unregisterFunc,
|
|
eventArgsTransformFunc: eventArgsTransformFunc
|
|
});
|
|
}
|
|
return this[fieldName];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
};
|
|
LibraryBuilder.prototype.buildV0Event = function (type, typeInfo, evt) {
|
|
var thisBuilder = this;
|
|
var eventName = this.getOnEventName(evt.name);
|
|
var fieldName = this.getFieldName(evt);
|
|
Object.defineProperty(type.prototype, eventName, {
|
|
get: function () {
|
|
if (!this[fieldName]) {
|
|
thisBuilder.throwIfApiNotSupported(typeInfo, evt);
|
|
var thisObj = this;
|
|
var registerFunc = null;
|
|
if (Utility.isNullOrEmptyString(evt.register)) {
|
|
var eventType_1 = thisBuilder.evaluateEventType(evt.typeExpression);
|
|
registerFunc =
|
|
function (handlerCallback) {
|
|
var targetId = thisBuilder.evaluateEventTargetId(evt.targetIdExpression, thisObj);
|
|
return thisObj.context.eventRegistration.register(eventType_1, targetId, handlerCallback);
|
|
};
|
|
}
|
|
else if (evt.register !== 'null') {
|
|
var func_1 = thisBuilder.getFunction(evt.register);
|
|
registerFunc =
|
|
function (handlerCallback) {
|
|
return func_1.call(thisObj, thisObj, handlerCallback);
|
|
};
|
|
}
|
|
var unregisterFunc = null;
|
|
if (Utility.isNullOrEmptyString(evt.unregister)) {
|
|
var eventType_2 = thisBuilder.evaluateEventType(evt.typeExpression);
|
|
unregisterFunc =
|
|
function (handlerCallback) {
|
|
var targetId = thisBuilder.evaluateEventTargetId(evt.targetIdExpression, thisObj);
|
|
return thisObj.context.eventRegistration.unregister(eventType_2, targetId, handlerCallback);
|
|
};
|
|
}
|
|
else if (evt.unregister !== 'null') {
|
|
var func_2 = thisBuilder.getFunction(evt.unregister);
|
|
unregisterFunc =
|
|
function (handlerCallback) {
|
|
return func_2.call(thisObj, thisObj, handlerCallback);
|
|
};
|
|
}
|
|
var func = null;
|
|
if (evt.behaviorFlags & 2) {
|
|
func = thisBuilder.getFunction(LibraryBuilder.CustomizationCodeNamespace + "." + typeInfo.name + "_" + evt.name + "_EventArgsTransform");
|
|
}
|
|
var eventArgsTransformFunc = function (value) {
|
|
if (func) {
|
|
value = func.call(thisObj, thisObj, value);
|
|
}
|
|
return Utility._createPromiseFromResult(value);
|
|
};
|
|
this[fieldName] = new EventHandlers(this.context, this, evt.name, {
|
|
registerFunc: registerFunc,
|
|
unregisterFunc: unregisterFunc,
|
|
eventArgsTransformFunc: eventArgsTransformFunc
|
|
});
|
|
}
|
|
return this[fieldName];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
};
|
|
LibraryBuilder.prototype.hasIndexMethod = function (typeInfo) {
|
|
var ret = false;
|
|
if (typeInfo.navigationMethods) {
|
|
for (var i = 0; i < typeInfo.navigationMethods.length; i++) {
|
|
if ((typeInfo.navigationMethods[i].behaviorFlags & 16) !== 0) {
|
|
ret = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return ret;
|
|
};
|
|
LibraryBuilder.CustomizationCodeNamespace = "_CC";
|
|
return LibraryBuilder;
|
|
}());
|
|
OfficeExtension_1.LibraryBuilder = LibraryBuilder;
|
|
var versionToken = 1;
|
|
var internalConfiguration = {
|
|
invokeRequestModifier: function (request) {
|
|
request.DdaMethod.Version = versionToken;
|
|
return request;
|
|
},
|
|
invokeResponseModifier: function (args) {
|
|
versionToken = args.Version;
|
|
if (args.Error) {
|
|
args.error = {};
|
|
args.error.Code = args.Error;
|
|
}
|
|
return args;
|
|
}
|
|
};
|
|
var CommunicationConstants;
|
|
(function (CommunicationConstants) {
|
|
CommunicationConstants["SendingId"] = "sId";
|
|
CommunicationConstants["RespondingId"] = "rId";
|
|
CommunicationConstants["CommandKey"] = "command";
|
|
CommunicationConstants["SessionInfoKey"] = "sessionInfo";
|
|
CommunicationConstants["ParamsKey"] = "params";
|
|
CommunicationConstants["ApiReadyCommand"] = "apiready";
|
|
CommunicationConstants["ExecuteMethodCommand"] = "executeMethod";
|
|
CommunicationConstants["GetAppContextCommand"] = "getAppContext";
|
|
CommunicationConstants["RegisterEventCommand"] = "registerEvent";
|
|
CommunicationConstants["UnregisterEventCommand"] = "unregisterEvent";
|
|
CommunicationConstants["FireEventCommand"] = "fireEvent";
|
|
})(CommunicationConstants || (CommunicationConstants = {}));
|
|
var EmbeddedConstants = (function () {
|
|
function EmbeddedConstants() {
|
|
}
|
|
EmbeddedConstants.sessionContext = 'sc';
|
|
EmbeddedConstants.embeddingPageOrigin = 'EmbeddingPageOrigin';
|
|
EmbeddedConstants.embeddingPageSessionInfo = 'EmbeddingPageSessionInfo';
|
|
return EmbeddedConstants;
|
|
}());
|
|
OfficeExtension_1.EmbeddedConstants = EmbeddedConstants;
|
|
var EmbeddedSession = (function (_super) {
|
|
__extends(EmbeddedSession, _super);
|
|
function EmbeddedSession(url, options) {
|
|
var _this = _super.call(this) || this;
|
|
_this.m_chosenWindow = null;
|
|
_this.m_chosenOrigin = null;
|
|
_this.m_enabled = true;
|
|
_this.m_onMessageHandler = _this._onMessage.bind(_this);
|
|
_this.m_callbackList = {};
|
|
_this.m_id = 0;
|
|
_this.m_timeoutId = -1;
|
|
_this.m_appContext = null;
|
|
_this.m_url = url;
|
|
_this.m_options = options;
|
|
if (!_this.m_options) {
|
|
_this.m_options = { sessionKey: Math.random().toString() };
|
|
}
|
|
if (!_this.m_options.sessionKey) {
|
|
_this.m_options.sessionKey = Math.random().toString();
|
|
}
|
|
if (!_this.m_options.container) {
|
|
_this.m_options.container = document.body;
|
|
}
|
|
if (!_this.m_options.timeoutInMilliseconds) {
|
|
_this.m_options.timeoutInMilliseconds = 60000;
|
|
}
|
|
if (!_this.m_options.height) {
|
|
_this.m_options.height = '400px';
|
|
}
|
|
if (!_this.m_options.width) {
|
|
_this.m_options.width = '100%';
|
|
}
|
|
if (!(_this.m_options.webApplication &&
|
|
_this.m_options.webApplication.accessToken &&
|
|
_this.m_options.webApplication.accessTokenTtl)) {
|
|
_this.m_options.webApplication = null;
|
|
}
|
|
return _this;
|
|
}
|
|
EmbeddedSession.prototype._getIFrameSrc = function () {
|
|
var origin = window.location.protocol + '//' + window.location.host;
|
|
var toAppend = EmbeddedConstants.embeddingPageOrigin +
|
|
'=' +
|
|
encodeURIComponent(origin) +
|
|
'&' +
|
|
EmbeddedConstants.embeddingPageSessionInfo +
|
|
'=' +
|
|
encodeURIComponent(this.m_options.sessionKey);
|
|
var useHash = false;
|
|
if (this.m_url.toLowerCase().indexOf('/_layouts/preauth.aspx') > 0 ||
|
|
this.m_url.toLowerCase().indexOf('/_layouts/15/preauth.aspx') > 0) {
|
|
useHash = true;
|
|
}
|
|
var a = document.createElement('a');
|
|
a.href = this.m_url;
|
|
if (this.m_options.webApplication) {
|
|
var toAppendWAC = EmbeddedConstants.embeddingPageOrigin +
|
|
'=' +
|
|
origin +
|
|
'&' +
|
|
EmbeddedConstants.embeddingPageSessionInfo +
|
|
'=' +
|
|
this.m_options.sessionKey;
|
|
if (a.search.length === 0 || a.search === '?') {
|
|
a.search = '?' + EmbeddedConstants.sessionContext + '=' + encodeURIComponent(toAppendWAC);
|
|
}
|
|
else {
|
|
a.search = a.search + '&' + EmbeddedConstants.sessionContext + '=' + encodeURIComponent(toAppendWAC);
|
|
}
|
|
}
|
|
else if (useHash) {
|
|
if (a.hash.length === 0 || a.hash === '#') {
|
|
a.hash = '#' + toAppend;
|
|
}
|
|
else {
|
|
a.hash = a.hash + '&' + toAppend;
|
|
}
|
|
}
|
|
else {
|
|
if (a.search.length === 0 || a.search === '?') {
|
|
a.search = '?' + toAppend;
|
|
}
|
|
else {
|
|
a.search = a.search + '&' + toAppend;
|
|
}
|
|
}
|
|
var iframeSrc = a.href;
|
|
return iframeSrc;
|
|
};
|
|
EmbeddedSession.prototype.init = function () {
|
|
var _this = this;
|
|
window.addEventListener('message', this.m_onMessageHandler);
|
|
var iframeSrc = this._getIFrameSrc();
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
var iframeElement = document.createElement('iframe');
|
|
if (_this.m_options.id) {
|
|
iframeElement.id = _this.m_options.id;
|
|
iframeElement.name = _this.m_options.id;
|
|
}
|
|
iframeElement.style.height = _this.m_options.height;
|
|
iframeElement.style.width = _this.m_options.width;
|
|
if (!_this.m_options.webApplication) {
|
|
iframeElement.src = iframeSrc;
|
|
_this.m_options.container.appendChild(iframeElement);
|
|
}
|
|
else {
|
|
var webApplicationForm = document.createElement('form');
|
|
webApplicationForm.setAttribute('action', iframeSrc);
|
|
webApplicationForm.setAttribute('method', 'post');
|
|
webApplicationForm.setAttribute('target', iframeElement.name);
|
|
_this.m_options.container.appendChild(webApplicationForm);
|
|
var token_input = document.createElement('input');
|
|
token_input.setAttribute('type', 'hidden');
|
|
token_input.setAttribute('name', 'access_token');
|
|
token_input.setAttribute('value', _this.m_options.webApplication.accessToken);
|
|
webApplicationForm.appendChild(token_input);
|
|
var token_ttl_input = document.createElement('input');
|
|
token_ttl_input.setAttribute('type', 'hidden');
|
|
token_ttl_input.setAttribute('name', 'access_token_ttl');
|
|
token_ttl_input.setAttribute('value', _this.m_options.webApplication.accessTokenTtl);
|
|
webApplicationForm.appendChild(token_ttl_input);
|
|
_this.m_options.container.appendChild(iframeElement);
|
|
webApplicationForm.submit();
|
|
}
|
|
_this.m_timeoutId = window.setTimeout(function () {
|
|
_this.close();
|
|
var err = Utility.createRuntimeError(CoreErrorCodes.timeout, CoreUtility._getResourceString(CoreResourceStrings.timeout), 'EmbeddedSession.init');
|
|
reject(err);
|
|
}, _this.m_options.timeoutInMilliseconds);
|
|
_this.m_promiseResolver = resolve;
|
|
});
|
|
};
|
|
EmbeddedSession.prototype._invoke = function (method, callback, params) {
|
|
if (!this.m_enabled) {
|
|
callback(5001, null);
|
|
return;
|
|
}
|
|
if (internalConfiguration.invokeRequestModifier) {
|
|
params = internalConfiguration.invokeRequestModifier(params);
|
|
}
|
|
this._sendMessageWithCallback(this.m_id++, method, params, function (args) {
|
|
if (internalConfiguration.invokeResponseModifier) {
|
|
args = internalConfiguration.invokeResponseModifier(args);
|
|
}
|
|
var errorCode = args['Error'];
|
|
delete args['Error'];
|
|
callback(errorCode || 0, args);
|
|
});
|
|
};
|
|
EmbeddedSession.prototype.close = function () {
|
|
window.removeEventListener('message', this.m_onMessageHandler);
|
|
window.clearTimeout(this.m_timeoutId);
|
|
this.m_enabled = false;
|
|
};
|
|
Object.defineProperty(EmbeddedSession.prototype, "eventRegistration", {
|
|
get: function () {
|
|
if (!this.m_sessionEventManager) {
|
|
this.m_sessionEventManager = new EventRegistration(this._registerEventImpl.bind(this), this._unregisterEventImpl.bind(this));
|
|
}
|
|
return this.m_sessionEventManager;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
EmbeddedSession.prototype._createRequestExecutorOrNull = function () {
|
|
return new EmbeddedRequestExecutor(this);
|
|
};
|
|
EmbeddedSession.prototype._resolveRequestUrlAndHeaderInfo = function () {
|
|
return CoreUtility._createPromiseFromResult(null);
|
|
};
|
|
EmbeddedSession.prototype._registerEventImpl = function (eventId, targetId) {
|
|
var _this = this;
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
_this._sendMessageWithCallback(_this.m_id++, CommunicationConstants.RegisterEventCommand, { EventId: eventId, TargetId: targetId }, function () {
|
|
resolve(null);
|
|
});
|
|
});
|
|
};
|
|
EmbeddedSession.prototype._unregisterEventImpl = function (eventId, targetId) {
|
|
var _this = this;
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
_this._sendMessageWithCallback(_this.m_id++, CommunicationConstants.UnregisterEventCommand, { EventId: eventId, TargetId: targetId }, function () {
|
|
resolve();
|
|
});
|
|
});
|
|
};
|
|
EmbeddedSession.prototype._onMessage = function (event) {
|
|
var _this = this;
|
|
if (!this.m_enabled) {
|
|
return;
|
|
}
|
|
if (this.m_chosenWindow && (this.m_chosenWindow !== event.source || this.m_chosenOrigin !== event.origin)) {
|
|
return;
|
|
}
|
|
var eventData = event.data;
|
|
if (eventData && eventData[CommunicationConstants.CommandKey] === CommunicationConstants.ApiReadyCommand) {
|
|
if (!this.m_chosenWindow &&
|
|
this._isValidDescendant(event.source) &&
|
|
eventData[CommunicationConstants.SessionInfoKey] === this.m_options.sessionKey) {
|
|
this.m_chosenWindow = event.source;
|
|
this.m_chosenOrigin = event.origin;
|
|
this._sendMessageWithCallback(this.m_id++, CommunicationConstants.GetAppContextCommand, null, function (appContext) {
|
|
_this._setupContext(appContext);
|
|
window.clearTimeout(_this.m_timeoutId);
|
|
_this.m_promiseResolver();
|
|
});
|
|
}
|
|
return;
|
|
}
|
|
if (eventData && eventData[CommunicationConstants.CommandKey] === CommunicationConstants.FireEventCommand) {
|
|
var msg = eventData[CommunicationConstants.ParamsKey];
|
|
var eventId = msg['EventId'];
|
|
var targetId = msg['TargetId'];
|
|
var data = msg['Data'];
|
|
if (this.m_sessionEventManager) {
|
|
var handlers = this.m_sessionEventManager.getHandlers(eventId, targetId);
|
|
for (var i = 0; i < handlers.length; i++) {
|
|
handlers[i](data);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
if (eventData && eventData.hasOwnProperty(CommunicationConstants.RespondingId)) {
|
|
var rId = eventData[CommunicationConstants.RespondingId];
|
|
var callback = this.m_callbackList[rId];
|
|
if (typeof callback === 'function') {
|
|
callback(eventData[CommunicationConstants.ParamsKey]);
|
|
}
|
|
delete this.m_callbackList[rId];
|
|
}
|
|
};
|
|
EmbeddedSession.prototype._sendMessageWithCallback = function (id, command, data, callback) {
|
|
this.m_callbackList[id] = callback;
|
|
var message = {};
|
|
message[CommunicationConstants.SendingId] = id;
|
|
message[CommunicationConstants.CommandKey] = command;
|
|
message[CommunicationConstants.ParamsKey] = data;
|
|
this.m_chosenWindow.postMessage(JSON.stringify(message), this.m_chosenOrigin);
|
|
};
|
|
EmbeddedSession.prototype._isValidDescendant = function (wnd) {
|
|
var container = this.m_options.container || document.body;
|
|
function doesFrameWindow(containerWindow) {
|
|
if (containerWindow === wnd) {
|
|
return true;
|
|
}
|
|
for (var i = 0, len = containerWindow.frames.length; i < len; i++) {
|
|
if (doesFrameWindow(containerWindow.frames[i])) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
var iframes = container.getElementsByTagName('iframe');
|
|
for (var i = 0, len = iframes.length; i < len; i++) {
|
|
if (doesFrameWindow(iframes[i].contentWindow)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
EmbeddedSession.prototype._setupContext = function (appContext) {
|
|
if (!(this.m_appContext = appContext)) {
|
|
return;
|
|
}
|
|
};
|
|
return EmbeddedSession;
|
|
}(SessionBase));
|
|
OfficeExtension_1.EmbeddedSession = EmbeddedSession;
|
|
var EmbeddedRequestExecutor = (function () {
|
|
function EmbeddedRequestExecutor(session) {
|
|
this.m_session = session;
|
|
}
|
|
EmbeddedRequestExecutor.prototype.executeAsync = function (customData, requestFlags, requestMessage) {
|
|
var _this = this;
|
|
var messageSafearray = RichApiMessageUtility.buildMessageArrayForIRequestExecutor(customData, requestFlags, requestMessage, EmbeddedRequestExecutor.SourceLibHeaderValue);
|
|
return CoreUtility.createPromise(function (resolve, reject) {
|
|
_this.m_session._invoke(CommunicationConstants.ExecuteMethodCommand, function (status, result) {
|
|
CoreUtility.log('Response:');
|
|
CoreUtility.log(JSON.stringify(result));
|
|
var response;
|
|
if (status == 0) {
|
|
response = RichApiMessageUtility.buildResponseOnSuccess(RichApiMessageUtility.getResponseBodyFromSafeArray(result.Data), RichApiMessageUtility.getResponseHeadersFromSafeArray(result.Data));
|
|
}
|
|
else {
|
|
response = RichApiMessageUtility.buildResponseOnError(result.error.Code, result.error.Message);
|
|
}
|
|
resolve(response);
|
|
}, EmbeddedRequestExecutor._transformMessageArrayIntoParams(messageSafearray));
|
|
});
|
|
};
|
|
EmbeddedRequestExecutor._transformMessageArrayIntoParams = function (msgArray) {
|
|
return {
|
|
ArrayData: msgArray,
|
|
DdaMethod: {
|
|
DispatchId: EmbeddedRequestExecutor.DispidExecuteRichApiRequestMethod
|
|
}
|
|
};
|
|
};
|
|
EmbeddedRequestExecutor.DispidExecuteRichApiRequestMethod = 93;
|
|
EmbeddedRequestExecutor.SourceLibHeaderValue = 'Embedded';
|
|
return EmbeddedRequestExecutor;
|
|
}());
|
|
})(OfficeExtension || (OfficeExtension = {}));
|
|
var __extends = (this && this.__extends) || (function () {
|
|
var extendStatics = function (d, b) {
|
|
extendStatics = Object.setPrototypeOf ||
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
function (d, b) { for (var p in b)
|
|
if (b.hasOwnProperty(p))
|
|
d[p] = b[p]; };
|
|
return extendStatics(d, b);
|
|
};
|
|
return function (d, b) {
|
|
extendStatics(d, b);
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
})();
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
function fulfilled(value) { try {
|
|
step(generator.next(value));
|
|
}
|
|
catch (e) {
|
|
reject(e);
|
|
} }
|
|
function rejected(value) { try {
|
|
step(generator["throw"](value));
|
|
}
|
|
catch (e) {
|
|
reject(e);
|
|
} }
|
|
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
});
|
|
};
|
|
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
var _ = { label: 0, sent: function () { if (t[0] & 1)
|
|
throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
|
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
function step(op) {
|
|
if (f)
|
|
throw new TypeError("Generator is already executing.");
|
|
while (_)
|
|
try {
|
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
|
|
return t;
|
|
if (y = 0, t)
|
|
op = [op[0] & 2, t.value];
|
|
switch (op[0]) {
|
|
case 0:
|
|
case 1:
|
|
t = op;
|
|
break;
|
|
case 4:
|
|
_.label++;
|
|
return { value: op[1], done: false };
|
|
case 5:
|
|
_.label++;
|
|
y = op[1];
|
|
op = [0];
|
|
continue;
|
|
case 7:
|
|
op = _.ops.pop();
|
|
_.trys.pop();
|
|
continue;
|
|
default:
|
|
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
_ = 0;
|
|
continue;
|
|
}
|
|
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
|
|
_.label = op[1];
|
|
break;
|
|
}
|
|
if (op[0] === 6 && _.label < t[1]) {
|
|
_.label = t[1];
|
|
t = op;
|
|
break;
|
|
}
|
|
if (t && _.label < t[2]) {
|
|
_.label = t[2];
|
|
_.ops.push(op);
|
|
break;
|
|
}
|
|
if (t[2])
|
|
_.ops.pop();
|
|
_.trys.pop();
|
|
continue;
|
|
}
|
|
op = body.call(thisArg, _);
|
|
}
|
|
catch (e) {
|
|
op = [6, e];
|
|
y = 0;
|
|
}
|
|
finally {
|
|
f = t = 0;
|
|
}
|
|
if (op[0] & 5)
|
|
throw op[1];
|
|
return { value: op[0] ? op[1] : void 0, done: true };
|
|
}
|
|
};
|
|
var OfficeCore;
|
|
(function (OfficeCore) {
|
|
var _hostName = "OfficeCore";
|
|
var _defaultApiSetName = "AgaveVisualApi";
|
|
var _createPropertyObject = OfficeExtension.BatchApiHelper.createPropertyObject;
|
|
var _createMethodObject = OfficeExtension.BatchApiHelper.createMethodObject;
|
|
var _createIndexerObject = OfficeExtension.BatchApiHelper.createIndexerObject;
|
|
var _createRootServiceObject = OfficeExtension.BatchApiHelper.createRootServiceObject;
|
|
var _createTopLevelServiceObject = OfficeExtension.BatchApiHelper.createTopLevelServiceObject;
|
|
var _createChildItemObject = OfficeExtension.BatchApiHelper.createChildItemObject;
|
|
var _invokeMethod = OfficeExtension.BatchApiHelper.invokeMethod;
|
|
var _invokeEnsureUnchanged = OfficeExtension.BatchApiHelper.invokeEnsureUnchanged;
|
|
var _invokeSetProperty = OfficeExtension.BatchApiHelper.invokeSetProperty;
|
|
var _isNullOrUndefined = OfficeExtension.Utility.isNullOrUndefined;
|
|
var _isUndefined = OfficeExtension.Utility.isUndefined;
|
|
var _throwIfNotLoaded = OfficeExtension.Utility.throwIfNotLoaded;
|
|
var _throwIfApiNotSupported = OfficeExtension.Utility.throwIfApiNotSupported;
|
|
var _load = OfficeExtension.Utility.load;
|
|
var _retrieve = OfficeExtension.Utility.retrieve;
|
|
var _toJson = OfficeExtension.Utility.toJson;
|
|
var _fixObjectPathIfNecessary = OfficeExtension.Utility.fixObjectPathIfNecessary;
|
|
var _handleNavigationPropertyResults = OfficeExtension.Utility._handleNavigationPropertyResults;
|
|
var _adjustToDateTime = OfficeExtension.Utility.adjustToDateTime;
|
|
var _processRetrieveResult = OfficeExtension.Utility.processRetrieveResult;
|
|
var _typeBiShim = "BiShim";
|
|
var BiShim = (function (_super) {
|
|
__extends(BiShim, _super);
|
|
function BiShim() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(BiShim.prototype, "_className", {
|
|
get: function () {
|
|
return "BiShim";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
BiShim.prototype.initialize = function (capabilities) {
|
|
_invokeMethod(this, "Initialize", 0, [capabilities], 0, 0);
|
|
};
|
|
BiShim.prototype.getData = function () {
|
|
return _invokeMethod(this, "getData", 1, [], 4, 0);
|
|
};
|
|
BiShim.prototype.setVisualObjects = function (visualObjects) {
|
|
_invokeMethod(this, "setVisualObjects", 0, [visualObjects], 2, 0);
|
|
};
|
|
BiShim.prototype.setVisualObjectsToPersist = function (visualObjectsToPersist) {
|
|
_invokeMethod(this, "setVisualObjectsToPersist", 0, [visualObjectsToPersist], 2, 0);
|
|
};
|
|
BiShim.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
BiShim.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
BiShim.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.BiShim, context, "Microsoft.AgaveVisual.BiShim", false, 4);
|
|
};
|
|
BiShim.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return BiShim;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.BiShim = BiShim;
|
|
var AgaveVisualErrorCodes;
|
|
(function (AgaveVisualErrorCodes) {
|
|
AgaveVisualErrorCodes["generalException1"] = "GeneralException";
|
|
})(AgaveVisualErrorCodes = OfficeCore.AgaveVisualErrorCodes || (OfficeCore.AgaveVisualErrorCodes = {}));
|
|
})(OfficeCore || (OfficeCore = {}));
|
|
var OfficeCore;
|
|
(function (OfficeCore) {
|
|
var _hostName = "OfficeCore";
|
|
var _defaultApiSetName = "ExperimentApi";
|
|
var _createPropertyObject = OfficeExtension.BatchApiHelper.createPropertyObject;
|
|
var _createMethodObject = OfficeExtension.BatchApiHelper.createMethodObject;
|
|
var _createIndexerObject = OfficeExtension.BatchApiHelper.createIndexerObject;
|
|
var _createRootServiceObject = OfficeExtension.BatchApiHelper.createRootServiceObject;
|
|
var _createTopLevelServiceObject = OfficeExtension.BatchApiHelper.createTopLevelServiceObject;
|
|
var _createChildItemObject = OfficeExtension.BatchApiHelper.createChildItemObject;
|
|
var _invokeMethod = OfficeExtension.BatchApiHelper.invokeMethod;
|
|
var _invokeEnsureUnchanged = OfficeExtension.BatchApiHelper.invokeEnsureUnchanged;
|
|
var _invokeSetProperty = OfficeExtension.BatchApiHelper.invokeSetProperty;
|
|
var _isNullOrUndefined = OfficeExtension.Utility.isNullOrUndefined;
|
|
var _isUndefined = OfficeExtension.Utility.isUndefined;
|
|
var _throwIfNotLoaded = OfficeExtension.Utility.throwIfNotLoaded;
|
|
var _throwIfApiNotSupported = OfficeExtension.Utility.throwIfApiNotSupported;
|
|
var _load = OfficeExtension.Utility.load;
|
|
var _retrieve = OfficeExtension.Utility.retrieve;
|
|
var _toJson = OfficeExtension.Utility.toJson;
|
|
var _fixObjectPathIfNecessary = OfficeExtension.Utility.fixObjectPathIfNecessary;
|
|
var _handleNavigationPropertyResults = OfficeExtension.Utility._handleNavigationPropertyResults;
|
|
var _adjustToDateTime = OfficeExtension.Utility.adjustToDateTime;
|
|
var _processRetrieveResult = OfficeExtension.Utility.processRetrieveResult;
|
|
var _typeFlightingService = "FlightingService";
|
|
var FlightingService = (function (_super) {
|
|
__extends(FlightingService, _super);
|
|
function FlightingService() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(FlightingService.prototype, "_className", {
|
|
get: function () {
|
|
return "FlightingService";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
FlightingService.prototype.getClientSessionId = function () {
|
|
return _invokeMethod(this, "GetClientSessionId", 1, [], 4, 0);
|
|
};
|
|
FlightingService.prototype.getDeferredFlights = function () {
|
|
return _invokeMethod(this, "GetDeferredFlights", 1, [], 4, 0);
|
|
};
|
|
FlightingService.prototype.getFeature = function (featureName, type, defaultValue, possibleValues) {
|
|
return _createMethodObject(OfficeCore.ABType, this, "GetFeature", 1, [featureName, type, defaultValue, possibleValues], false, false, null, 4);
|
|
};
|
|
FlightingService.prototype.getFeatureGate = function (featureName, scope) {
|
|
return _createMethodObject(OfficeCore.ABType, this, "GetFeatureGate", 1, [featureName, scope], false, false, null, 4);
|
|
};
|
|
FlightingService.prototype.resetOverride = function (featureName) {
|
|
_invokeMethod(this, "ResetOverride", 0, [featureName], 0, 0);
|
|
};
|
|
FlightingService.prototype.setOverride = function (featureName, type, value) {
|
|
_invokeMethod(this, "SetOverride", 0, [featureName, type, value], 0, 0);
|
|
};
|
|
FlightingService.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
FlightingService.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
FlightingService.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.FlightingService, context, "Microsoft.Experiment.FlightingService", false, 4);
|
|
};
|
|
FlightingService.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return FlightingService;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.FlightingService = FlightingService;
|
|
var _typeABType = "ABType";
|
|
var ABType = (function (_super) {
|
|
__extends(ABType, _super);
|
|
function ABType() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(ABType.prototype, "_className", {
|
|
get: function () {
|
|
return "ABType";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ABType.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["value"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ABType.prototype, "value", {
|
|
get: function () {
|
|
_throwIfNotLoaded("value", this._V, _typeABType, this._isNull);
|
|
return this._V;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ABType.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Value"])) {
|
|
this._V = obj["Value"];
|
|
}
|
|
};
|
|
ABType.prototype.load = function (option) {
|
|
return _load(this, option);
|
|
};
|
|
ABType.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
ABType.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
ABType.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"value": this._V
|
|
}, {});
|
|
};
|
|
ABType.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return ABType;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.ABType = ABType;
|
|
var FeatureType;
|
|
(function (FeatureType) {
|
|
FeatureType["boolean"] = "Boolean";
|
|
FeatureType["integer"] = "Integer";
|
|
FeatureType["string"] = "String";
|
|
})(FeatureType = OfficeCore.FeatureType || (OfficeCore.FeatureType = {}));
|
|
var ExperimentErrorCodes;
|
|
(function (ExperimentErrorCodes) {
|
|
ExperimentErrorCodes["generalException"] = "GeneralException";
|
|
})(ExperimentErrorCodes = OfficeCore.ExperimentErrorCodes || (OfficeCore.ExperimentErrorCodes = {}));
|
|
})(OfficeCore || (OfficeCore = {}));
|
|
var OfficeCore;
|
|
(function (OfficeCore) {
|
|
OfficeCore.OfficeOnlineDomainList = [
|
|
"*.dod.online.office365.us",
|
|
"*.gov.online.office365.us",
|
|
"*.officeapps-df.live.com",
|
|
"*.officeapps.live.com",
|
|
"*.online.office.de",
|
|
"*.partner.officewebapps.cn"
|
|
];
|
|
function isHostOriginTrusted() {
|
|
if (typeof window.external === 'undefined' ||
|
|
typeof window.external.GetContext === 'undefined') {
|
|
var hostUrl = OSF.getClientEndPoint()._targetUrl;
|
|
var hostname_1 = getHostNameFromUrl(hostUrl);
|
|
if (hostUrl.indexOf("https:") != 0) {
|
|
return false;
|
|
}
|
|
OfficeCore.OfficeOnlineDomainList.forEach(function (domain) {
|
|
if (domain.indexOf("*.") == 0) {
|
|
domain = domain.substring(2);
|
|
}
|
|
if (hostname_1.indexOf(domain) == hostname_1.length - domain.length) {
|
|
return true;
|
|
}
|
|
});
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
OfficeCore.isHostOriginTrusted = isHostOriginTrusted;
|
|
function getHostNameFromUrl(url) {
|
|
var hostName = "";
|
|
hostName = url.split("/")[2];
|
|
hostName = hostName.split(":")[0];
|
|
hostName = hostName.split("?")[0];
|
|
return hostName;
|
|
}
|
|
})(OfficeCore || (OfficeCore = {}));
|
|
var OfficeCore;
|
|
(function (OfficeCore) {
|
|
var FirstPartyApis = (function () {
|
|
function FirstPartyApis(context) {
|
|
this.context = context;
|
|
}
|
|
Object.defineProperty(FirstPartyApis.prototype, "roamingSettings", {
|
|
get: function () {
|
|
if (!this.m_roamingSettings) {
|
|
this.m_roamingSettings = OfficeCore.AuthenticationService.newObject(this.context).roamingSettings;
|
|
}
|
|
return this.m_roamingSettings;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(FirstPartyApis.prototype, "tap", {
|
|
get: function () {
|
|
if (!this.m_tap) {
|
|
this.m_tap = OfficeCore.Tap.newObject(this.context);
|
|
}
|
|
return this.m_tap;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(FirstPartyApis.prototype, "skill", {
|
|
get: function () {
|
|
if (!this.m_skill) {
|
|
this.m_skill = OfficeCore.Skill.newObject(this.context);
|
|
}
|
|
return this.m_skill;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
return FirstPartyApis;
|
|
}());
|
|
OfficeCore.FirstPartyApis = FirstPartyApis;
|
|
var RequestContext = (function (_super) {
|
|
__extends(RequestContext, _super);
|
|
function RequestContext(url) {
|
|
return _super.call(this, url) || this;
|
|
}
|
|
Object.defineProperty(RequestContext.prototype, "firstParty", {
|
|
get: function () {
|
|
if (!this.m_firstPartyApis) {
|
|
this.m_firstPartyApis = new FirstPartyApis(this);
|
|
}
|
|
return this.m_firstPartyApis;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RequestContext.prototype, "flighting", {
|
|
get: function () {
|
|
return this.flightingService;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RequestContext.prototype, "telemetry", {
|
|
get: function () {
|
|
if (!this.m_telemetry) {
|
|
this.m_telemetry = OfficeCore.TelemetryService.newObject(this);
|
|
}
|
|
return this.m_telemetry;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RequestContext.prototype, "ribbon", {
|
|
get: function () {
|
|
if (!this.m_ribbon) {
|
|
this.m_ribbon = OfficeCore.DynamicRibbon.newObject(this);
|
|
}
|
|
return this.m_ribbon;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RequestContext.prototype, "bi", {
|
|
get: function () {
|
|
if (!this.m_biShim) {
|
|
this.m_biShim = OfficeCore.BiShim.newObject(this);
|
|
}
|
|
return this.m_biShim;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RequestContext.prototype, "flightingService", {
|
|
get: function () {
|
|
if (!this.m_flightingService) {
|
|
this.m_flightingService = OfficeCore.FlightingService.newObject(this);
|
|
}
|
|
return this.m_flightingService;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
return RequestContext;
|
|
}(OfficeExtension.ClientRequestContext));
|
|
OfficeCore.RequestContext = RequestContext;
|
|
function run(arg1, arg2) {
|
|
return OfficeExtension.ClientRequestContext._runBatch("OfficeCore.run", arguments, function (requestInfo) { return new OfficeCore.RequestContext(requestInfo); });
|
|
}
|
|
OfficeCore.run = run;
|
|
})(OfficeCore || (OfficeCore = {}));
|
|
var Office;
|
|
(function (Office) {
|
|
var license;
|
|
(function (license_1) {
|
|
function _createRequestContext() {
|
|
var context = new OfficeCore.RequestContext();
|
|
if (OSF._OfficeAppFactory.getHostInfo().hostPlatform == 'web') {
|
|
context._customData = 'WacPartition';
|
|
}
|
|
return context;
|
|
}
|
|
function isFeatureEnabled(feature, fallbackValue) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, license, isEnabled;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
license = OfficeCore.License.newObject(context);
|
|
isEnabled = license.isFeatureEnabled(feature, fallbackValue);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2, isEnabled.value];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
license_1.isFeatureEnabled = isFeatureEnabled;
|
|
function getFeatureTier(feature, fallbackValue) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, license, tier;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
license = OfficeCore.License.newObject(context);
|
|
tier = license.getFeatureTier(feature, fallbackValue);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2, tier.value];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
license_1.getFeatureTier = getFeatureTier;
|
|
function isFreemiumUpsellEnabled() {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, license, isFreemiumUpsellEnabled;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
license = OfficeCore.License.newObject(context);
|
|
isFreemiumUpsellEnabled = license.isFreemiumUpsellEnabled();
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2, isFreemiumUpsellEnabled.value];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
license_1.isFreemiumUpsellEnabled = isFreemiumUpsellEnabled;
|
|
function launchUpsellExperience(experienceId) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, license;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
license = OfficeCore.License.newObject(context);
|
|
license.launchUpsellExperience(experienceId);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
license_1.launchUpsellExperience = launchUpsellExperience;
|
|
function onFeatureStateChanged(feature, listener) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, license, licenseFeature, removeListener;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
license = OfficeCore.License.newObject(context);
|
|
licenseFeature = license.getLicenseFeature(feature);
|
|
licenseFeature.onStateChanged.add(listener);
|
|
removeListener = function () {
|
|
licenseFeature.onStateChanged.remove(listener);
|
|
return null;
|
|
};
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2, removeListener];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
license_1.onFeatureStateChanged = onFeatureStateChanged;
|
|
function getMsaDeviceTicket(resource, policy, options) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, license, msaDeviceTicket;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
license = OfficeCore.License.newObject(context);
|
|
msaDeviceTicket = license.getMsaDeviceTicket(resource, policy, options);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2, msaDeviceTicket.value];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
license_1.getMsaDeviceTicket = getMsaDeviceTicket;
|
|
})(license = Office.license || (Office.license = {}));
|
|
})(Office || (Office = {}));
|
|
var OfficeCore;
|
|
(function (OfficeCore) {
|
|
var _hostName = "Office";
|
|
var _defaultApiSetName = "OfficeSharedApi";
|
|
var _createPropertyObject = OfficeExtension.BatchApiHelper.createPropertyObject;
|
|
var _createMethodObject = OfficeExtension.BatchApiHelper.createMethodObject;
|
|
var _createIndexerObject = OfficeExtension.BatchApiHelper.createIndexerObject;
|
|
var _createRootServiceObject = OfficeExtension.BatchApiHelper.createRootServiceObject;
|
|
var _createTopLevelServiceObject = OfficeExtension.BatchApiHelper.createTopLevelServiceObject;
|
|
var _createChildItemObject = OfficeExtension.BatchApiHelper.createChildItemObject;
|
|
var _invokeMethod = OfficeExtension.BatchApiHelper.invokeMethod;
|
|
var _invokeEnsureUnchanged = OfficeExtension.BatchApiHelper.invokeEnsureUnchanged;
|
|
var _invokeSetProperty = OfficeExtension.BatchApiHelper.invokeSetProperty;
|
|
var _isNullOrUndefined = OfficeExtension.Utility.isNullOrUndefined;
|
|
var _isUndefined = OfficeExtension.Utility.isUndefined;
|
|
var _throwIfNotLoaded = OfficeExtension.Utility.throwIfNotLoaded;
|
|
var _throwIfApiNotSupported = OfficeExtension.Utility.throwIfApiNotSupported;
|
|
var _load = OfficeExtension.Utility.load;
|
|
var _retrieve = OfficeExtension.Utility.retrieve;
|
|
var _toJson = OfficeExtension.Utility.toJson;
|
|
var _fixObjectPathIfNecessary = OfficeExtension.Utility.fixObjectPathIfNecessary;
|
|
var _handleNavigationPropertyResults = OfficeExtension.Utility._handleNavigationPropertyResults;
|
|
var _adjustToDateTime = OfficeExtension.Utility.adjustToDateTime;
|
|
var _processRetrieveResult = OfficeExtension.Utility.processRetrieveResult;
|
|
var _setMockData = OfficeExtension.Utility.setMockData;
|
|
var _calculateApiFlags = OfficeExtension.CommonUtility.calculateApiFlags;
|
|
var _typeSkill = "Skill";
|
|
var Skill = (function (_super) {
|
|
__extends(Skill, _super);
|
|
function Skill() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Skill.prototype, "_className", {
|
|
get: function () {
|
|
return "Skill";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Skill.prototype.executeAction = function (paneId, actionId, actionDescriptor) {
|
|
return _invokeMethod(this, "ExecuteAction", 1, [paneId, actionId, actionDescriptor], 4 | 1, 0);
|
|
};
|
|
Skill.prototype.notifyPaneEvent = function (paneId, eventDescriptor) {
|
|
_invokeMethod(this, "NotifyPaneEvent", 1, [paneId, eventDescriptor], 4 | 1, 0);
|
|
};
|
|
Skill.prototype.registerHostSkillEvent = function () {
|
|
_invokeMethod(this, "RegisterHostSkillEvent", 0, [], 1, 0);
|
|
};
|
|
Skill.prototype.testFireEvent = function () {
|
|
_invokeMethod(this, "TestFireEvent", 0, [], 1, 0);
|
|
};
|
|
Skill.prototype.unregisterHostSkillEvent = function () {
|
|
_invokeMethod(this, "UnregisterHostSkillEvent", 0, [], 1, 0);
|
|
};
|
|
Skill.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
Skill.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Skill.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.Skill, context, "Microsoft.SkillApi.Skill", false, 4);
|
|
};
|
|
Object.defineProperty(Skill.prototype, "onHostSkillEvent", {
|
|
get: function () {
|
|
var _this = this;
|
|
if (!this.m_hostSkillEvent) {
|
|
this.m_hostSkillEvent = new OfficeExtension.GenericEventHandlers(this.context, this, "HostSkillEvent", {
|
|
eventType: 65538,
|
|
registerFunc: function () { return _this.registerHostSkillEvent(); },
|
|
unregisterFunc: function () { return _this.unregisterHostSkillEvent(); },
|
|
getTargetIdFunc: function () { return ""; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = _CC.Skill_HostSkillEvent_EventArgsTransform(_this, value);
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_hostSkillEvent;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Skill.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return Skill;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.Skill = Skill;
|
|
var _CC;
|
|
(function (_CC) {
|
|
function Skill_HostSkillEvent_EventArgsTransform(thisObj, args) {
|
|
var transformedArgs = {
|
|
type: args.type,
|
|
data: args.data
|
|
};
|
|
return transformedArgs;
|
|
}
|
|
_CC.Skill_HostSkillEvent_EventArgsTransform = Skill_HostSkillEvent_EventArgsTransform;
|
|
})(_CC = OfficeCore._CC || (OfficeCore._CC = {}));
|
|
var SkillErrorCodes;
|
|
(function (SkillErrorCodes) {
|
|
SkillErrorCodes["generalException"] = "GeneralException";
|
|
})(SkillErrorCodes = OfficeCore.SkillErrorCodes || (OfficeCore.SkillErrorCodes = {}));
|
|
})(OfficeCore || (OfficeCore = {}));
|
|
var OfficeCore;
|
|
(function (OfficeCore) {
|
|
var _hostName = "OfficeCore";
|
|
var _defaultApiSetName = "TelemetryApi";
|
|
var _createPropertyObject = OfficeExtension.BatchApiHelper.createPropertyObject;
|
|
var _createMethodObject = OfficeExtension.BatchApiHelper.createMethodObject;
|
|
var _createIndexerObject = OfficeExtension.BatchApiHelper.createIndexerObject;
|
|
var _createRootServiceObject = OfficeExtension.BatchApiHelper.createRootServiceObject;
|
|
var _createTopLevelServiceObject = OfficeExtension.BatchApiHelper.createTopLevelServiceObject;
|
|
var _createChildItemObject = OfficeExtension.BatchApiHelper.createChildItemObject;
|
|
var _invokeMethod = OfficeExtension.BatchApiHelper.invokeMethod;
|
|
var _invokeEnsureUnchanged = OfficeExtension.BatchApiHelper.invokeEnsureUnchanged;
|
|
var _invokeSetProperty = OfficeExtension.BatchApiHelper.invokeSetProperty;
|
|
var _isNullOrUndefined = OfficeExtension.Utility.isNullOrUndefined;
|
|
var _isUndefined = OfficeExtension.Utility.isUndefined;
|
|
var _throwIfNotLoaded = OfficeExtension.Utility.throwIfNotLoaded;
|
|
var _throwIfApiNotSupported = OfficeExtension.Utility.throwIfApiNotSupported;
|
|
var _load = OfficeExtension.Utility.load;
|
|
var _retrieve = OfficeExtension.Utility.retrieve;
|
|
var _toJson = OfficeExtension.Utility.toJson;
|
|
var _fixObjectPathIfNecessary = OfficeExtension.Utility.fixObjectPathIfNecessary;
|
|
var _handleNavigationPropertyResults = OfficeExtension.Utility._handleNavigationPropertyResults;
|
|
var _adjustToDateTime = OfficeExtension.Utility.adjustToDateTime;
|
|
var _processRetrieveResult = OfficeExtension.Utility.processRetrieveResult;
|
|
var _setMockData = OfficeExtension.Utility.setMockData;
|
|
var _calculateApiFlags = OfficeExtension.CommonUtility.calculateApiFlags;
|
|
var _typeTelemetryService = "TelemetryService";
|
|
var TelemetryService = (function (_super) {
|
|
__extends(TelemetryService, _super);
|
|
function TelemetryService() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(TelemetryService.prototype, "_className", {
|
|
get: function () {
|
|
return "TelemetryService";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
TelemetryService.prototype.sendCustomerContent = function (telemetryProperties, eventName, eventContract, eventFlags, value) {
|
|
_throwIfApiNotSupported("TelemetryService.sendCustomerContent", "Telemetry", "1.3", _hostName);
|
|
_invokeMethod(this, "SendCustomerContent", 1, [telemetryProperties, eventName, eventContract, eventFlags, value], 4, 0);
|
|
};
|
|
TelemetryService.prototype.sendTelemetryEvent = function (telemetryProperties, eventName, eventContract, eventFlags, value) {
|
|
_invokeMethod(this, "SendTelemetryEvent", 1, [telemetryProperties, eventName, eventContract, eventFlags, value], 4, 0);
|
|
};
|
|
TelemetryService.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
TelemetryService.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
TelemetryService.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.TelemetryService, context, "Microsoft.Telemetry.TelemetryService", false, 4);
|
|
};
|
|
TelemetryService.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return TelemetryService;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.TelemetryService = TelemetryService;
|
|
var DataFieldType;
|
|
(function (DataFieldType) {
|
|
DataFieldType["unset"] = "Unset";
|
|
DataFieldType["string"] = "String";
|
|
DataFieldType["boolean"] = "Boolean";
|
|
DataFieldType["int64"] = "Int64";
|
|
DataFieldType["double"] = "Double";
|
|
})(DataFieldType = OfficeCore.DataFieldType || (OfficeCore.DataFieldType = {}));
|
|
var TelemetryErrorCodes;
|
|
(function (TelemetryErrorCodes) {
|
|
TelemetryErrorCodes["generalException"] = "GeneralException";
|
|
})(TelemetryErrorCodes = OfficeCore.TelemetryErrorCodes || (OfficeCore.TelemetryErrorCodes = {}));
|
|
})(OfficeCore || (OfficeCore = {}));
|
|
var OfficeFirstPartyAuth;
|
|
(function (OfficeFirstPartyAuth) {
|
|
var WebAuthReplyUrlsStorageKey = "officeWebAuthReplyUrls";
|
|
var loaded = false;
|
|
OfficeFirstPartyAuth.authFlow = "implicit";
|
|
OfficeFirstPartyAuth.autoPopup = false;
|
|
OfficeFirstPartyAuth.debugging = false;
|
|
OfficeFirstPartyAuth.delay = 0;
|
|
function load(replyUrl) {
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
if (OSF.WebAuth && OSF._OfficeAppFactory.getHostInfo().hostPlatform == "web") {
|
|
var retrievedAuthContext = false;
|
|
var errorMessage;
|
|
try {
|
|
if (!Office || !Office.context || !Office.context.webAuth) {
|
|
reject({
|
|
code: "GetAuthContextAsyncMissing",
|
|
message: (typeof (Strings) !== 'undefined' && Strings.OfficeOM.L_ImplicitGetAuthContextMissing) ? Strings.OfficeOM.L_ImplicitGetAuthContextMissing : ""
|
|
});
|
|
return;
|
|
}
|
|
Office.context.webAuth.getAuthContextAsync(function (result) {
|
|
if (result.status === "succeeded") {
|
|
retrievedAuthContext = true;
|
|
var authContext = result.value;
|
|
if (!authContext || authContext.isAnonymous) {
|
|
reject({
|
|
code: "CannotGetAuthContext",
|
|
message: (typeof (Strings) !== 'undefined' && Strings.OfficeOM.L_ImplicitGetAuthContextMissing) ? Strings.OfficeOM.L_ImplicitGetAuthContextMissing : ""
|
|
});
|
|
return;
|
|
}
|
|
var isMsa = authContext.authorityType.toLowerCase() === 'msa';
|
|
OSF.WebAuth.config = {
|
|
authFlow: OfficeFirstPartyAuth.authFlow,
|
|
authVersion: (OfficeFirstPartyAuth.authVersion) ? OfficeFirstPartyAuth.authVersion : null,
|
|
loadDelay: OfficeFirstPartyAuth.delay,
|
|
debugging: OfficeFirstPartyAuth.debugging,
|
|
authority: (OfficeFirstPartyAuth.authorityOverride) ? OfficeFirstPartyAuth.authorityOverride : authContext.authority,
|
|
idp: authContext.authorityType.toLowerCase(),
|
|
appIds: [isMsa ? (authContext.msaAppId) ? authContext.msaAppId : authContext.appId : authContext.appId],
|
|
redirectUri: (replyUrl) ? replyUrl : null,
|
|
upn: authContext.upn,
|
|
telemetryInstance: 'otel',
|
|
autoPopup: OfficeFirstPartyAuth.autoPopup,
|
|
enableConsoleLogging: OfficeFirstPartyAuth.debugging
|
|
};
|
|
OSF.WebAuth.load().then(function (loadResult) {
|
|
loaded = true;
|
|
logLoadEvent(loadResult, true);
|
|
resolve();
|
|
})["catch"](function (loadError) {
|
|
logLoadEvent(loadError, false);
|
|
reject({
|
|
code: "PackageNotLoaded",
|
|
message: loadError ? loadError : (typeof (Strings) !== 'undefined' && Strings.OfficeOM.L_ImplicitNotLoaded) ? Strings.OfficeOM.L_ImplicitNotLoaded : ""
|
|
});
|
|
});
|
|
var finalReplyUrl = (replyUrl) ? replyUrl : window.location.href.split("?")[0];
|
|
var replyUrls = sessionStorage.getItem(WebAuthReplyUrlsStorageKey);
|
|
if (replyUrls || replyUrls === "") {
|
|
replyUrls = finalReplyUrl;
|
|
}
|
|
else {
|
|
replyUrls += ", " + finalReplyUrl;
|
|
}
|
|
if (replyUrls)
|
|
sessionStorage.setItem(WebAuthReplyUrlsStorageKey, replyUrls);
|
|
}
|
|
else {
|
|
OSF.WebAuth.config = null;
|
|
errorMessage = JSON.stringify(result);
|
|
reject({
|
|
code: "CannotGetAuthContext",
|
|
message: errorMessage
|
|
});
|
|
}
|
|
});
|
|
}
|
|
catch (e) {
|
|
errorMessage = e;
|
|
OSF.WebAuth.config = null;
|
|
OSF.WebAuth.load().then(function () {
|
|
resolve();
|
|
})["catch"](function () {
|
|
reject({
|
|
code: retrievedAuthContext ? "CannotGetAuthContext" : "FailedToLoad",
|
|
message: errorMessage
|
|
});
|
|
});
|
|
}
|
|
}
|
|
else {
|
|
resolve();
|
|
}
|
|
});
|
|
}
|
|
OfficeFirstPartyAuth.load = load;
|
|
function getAccessToken(options, behaviorOption) {
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
if (OSF._OfficeAppFactory.getHostInfo().hostPlatform == "web") {
|
|
Office.context.webAuth.getAuthContextAsync(function (result) {
|
|
var supportsAuthToken = false;
|
|
if (result.status === "succeeded") {
|
|
var authContext = result.value;
|
|
if (authContext.supportsAuthToken) {
|
|
supportsAuthToken = true;
|
|
}
|
|
}
|
|
if (!supportsAuthToken) {
|
|
if (OSF.WebAuth && loaded) {
|
|
if (OSF.WebAuth.config.appIds[0]) {
|
|
OSF.WebAuth.getToken(options.resource, OSF.WebAuth.config.appIds[0], OSF._OfficeAppFactory.getHostInfo().osfControlAppCorrelationId, (behaviorOption && behaviorOption.popup) ? behaviorOption.popup : null).then(function (result) {
|
|
logAcquireEvent(result, true, options.resource, (behaviorOption && behaviorOption.popup) ? behaviorOption.popup : null);
|
|
resolve({
|
|
accessToken: result.Token,
|
|
tokenIdenityType: (OSF.WebAuth.config.idp.toLowerCase() == "msa")
|
|
? OfficeCore.IdentityType.microsoftAccount
|
|
: OfficeCore.IdentityType.organizationAccount
|
|
});
|
|
})["catch"](function (result) {
|
|
logAcquireEvent(result, false, options.resource, (behaviorOption && behaviorOption.popup) ? behaviorOption.popup : null, result.ErrorCode);
|
|
reject({ code: result.ErrorCode, message: result.ErrorMessage });
|
|
});
|
|
}
|
|
}
|
|
else {
|
|
logUnexpectedAcquireEvent(loaded, OSF.WebAuth.loadAttempts);
|
|
}
|
|
}
|
|
else {
|
|
var context = new OfficeCore.RequestContext();
|
|
var auth = OfficeCore.AuthenticationService.newObject(context);
|
|
context._customData = "WacPartition";
|
|
var result_1 = auth.getAccessToken(options, null);
|
|
context.sync().then(function () {
|
|
resolve(result_1.value);
|
|
});
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
var context_1 = new OfficeCore.RequestContext();
|
|
var auth_1 = OfficeCore.AuthenticationService.newObject(context_1);
|
|
var handler_1 = auth_1.onTokenReceived.add(function (arg) {
|
|
if (!OfficeExtension.CoreUtility.isNullOrUndefined(arg)) {
|
|
handler_1.remove();
|
|
context_1.sync()["catch"](function () {
|
|
});
|
|
if (arg.code == 0) {
|
|
resolve(arg.tokenValue);
|
|
}
|
|
else {
|
|
if (OfficeExtension.CoreUtility.isNullOrUndefined(arg.errorInfo)) {
|
|
reject({ code: arg.code });
|
|
}
|
|
else {
|
|
try {
|
|
reject(JSON.parse(arg.errorInfo));
|
|
}
|
|
catch (e) {
|
|
reject({ code: arg.code, message: arg.errorInfo });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
});
|
|
context_1.sync()
|
|
.then(function () {
|
|
var apiResult = auth_1.getAccessToken(options, auth_1._targetId);
|
|
return context_1.sync()
|
|
.then(function () {
|
|
if (OfficeExtension.CoreUtility.isNullOrUndefined(apiResult.value)) {
|
|
return null;
|
|
}
|
|
var tokenValue = apiResult.value.accessToken;
|
|
if (!OfficeExtension.CoreUtility.isNullOrUndefined(tokenValue)) {
|
|
resolve(apiResult.value);
|
|
}
|
|
});
|
|
})["catch"](function (e) {
|
|
reject(e);
|
|
});
|
|
}
|
|
});
|
|
}
|
|
OfficeFirstPartyAuth.getAccessToken = getAccessToken;
|
|
function getPrimaryIdentityInfo() {
|
|
var context = new OfficeCore.RequestContext();
|
|
var auth = OfficeCore.AuthenticationService.newObject(context);
|
|
context._customData = "WacPartition";
|
|
var result = auth.getPrimaryIdentityInfo();
|
|
return context.sync().then(function () { return result.value; });
|
|
}
|
|
OfficeFirstPartyAuth.getPrimaryIdentityInfo = getPrimaryIdentityInfo;
|
|
function getIdentities() {
|
|
var context = new OfficeCore.RequestContext();
|
|
var auth_service = OfficeCore.AuthenticationService.newObject(context);
|
|
var result = auth_service.getIdentities();
|
|
return context.sync().then(function () { return result.value; });
|
|
}
|
|
OfficeFirstPartyAuth.getIdentities = getIdentities;
|
|
function logLoadEvent(result, succeeded) {
|
|
if (OfficeFirstPartyAuth.debugging) {
|
|
console.log("Logging WebAuthJs load event:" + succeeded);
|
|
}
|
|
if (typeof OTel !== "undefined") {
|
|
OTel.OTelLogger.onTelemetryLoaded(function () {
|
|
var telemetryData = [
|
|
oteljs.makeStringDataField('IdentityProvider', OSF.WebAuth.config.idp),
|
|
oteljs.makeStringDataField('AppId', OSF.WebAuth.config.appIds[0]),
|
|
oteljs.makeBooleanDataField('Js', (typeof Implicit !== "undefined" || typeof BrowserAuth !== "undefined") ? true : false),
|
|
oteljs.makeBooleanDataField('Result', succeeded)
|
|
];
|
|
if (OSF.WebAuth.config.telemetry) {
|
|
for (var key in OSF.WebAuth.config.telemetry) {
|
|
telemetryData.push(oteljs.makeStringDataField(key, OSF.WebAuth.config.telemetry[key]));
|
|
}
|
|
}
|
|
if (result && result.Telemetry) {
|
|
for (var key in result.Telemetry) {
|
|
if (!result.Telemetry[key]) {
|
|
continue;
|
|
}
|
|
switch (key) {
|
|
case 'succeeded':
|
|
telemetryData.push(oteljs.makeBooleanDataField(key, result.Telemetry[key]));
|
|
break;
|
|
case 'loadedApplicationCount':
|
|
telemetryData.push(oteljs.makeInt64DataField(key, result.Telemetry[key]));
|
|
break;
|
|
case 'timeToLoad':
|
|
telemetryData.push(oteljs.makeInt64DataField(key, result.Telemetry[key]));
|
|
break;
|
|
default:
|
|
telemetryData.push(oteljs.makeStringDataField(key, result.Telemetry[key]));
|
|
}
|
|
}
|
|
}
|
|
OTel.OTelLogger.sendTelemetryEvent({
|
|
eventName: "Office.Extensibility.OfficeJs.OfficeFirstPartyAuth.Load",
|
|
dataFields: telemetryData,
|
|
eventFlags: {
|
|
dataCategories: oteljs.DataCategories.ProductServiceUsage
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
function logAcquireEvent(result, succeeded, target, popup, message) {
|
|
if (OfficeFirstPartyAuth.debugging) {
|
|
console.log("Logging WebAuthJs acquire event");
|
|
}
|
|
if (typeof OTel !== "undefined") {
|
|
OTel.OTelLogger.onTelemetryLoaded(function () {
|
|
var telemetryData = [
|
|
oteljs.makeStringDataField('IdentityProvider', OSF.WebAuth.config.idp),
|
|
oteljs.makeStringDataField('AppId', OSF.WebAuth.config.appIds[0]),
|
|
oteljs.makeStringDataField('Target', target),
|
|
oteljs.makeBooleanDataField('Popup', (typeof popup === "boolean") ? popup : false),
|
|
oteljs.makeBooleanDataField('Result', succeeded),
|
|
oteljs.makeStringDataField('Error', message)
|
|
];
|
|
if (OSF.WebAuth.config.telemetry) {
|
|
for (var key in OSF.WebAuth.config.telemetry) {
|
|
telemetryData.push(oteljs.makeStringDataField(key, OSF.WebAuth.config.telemetry[key]));
|
|
}
|
|
}
|
|
if (result && result.Telemetry) {
|
|
for (var key in result.Telemetry) {
|
|
if (!result.Telemetry[key]) {
|
|
continue;
|
|
}
|
|
switch (key) {
|
|
case 'succeeded':
|
|
telemetryData.push(oteljs.makeBooleanDataField(key, result.Telemetry[key]));
|
|
break;
|
|
case 'timeToGetToken':
|
|
telemetryData.push(oteljs.makeInt64DataField(key, result.Telemetry[key]));
|
|
break;
|
|
default:
|
|
telemetryData.push(oteljs.makeStringDataField(key, result.Telemetry[key]));
|
|
}
|
|
}
|
|
}
|
|
OTel.OTelLogger.sendTelemetryEvent({
|
|
eventName: "Office.Extensibility.OfficeJs.OfficeFirstPartyAuth.GetAccessToken",
|
|
dataFields: telemetryData,
|
|
eventFlags: {
|
|
dataCategories: oteljs.DataCategories.ProductServiceUsage
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
function logUnexpectedAcquireEvent(loadResult, loadAttempts) {
|
|
if (OfficeFirstPartyAuth.debugging) {
|
|
console.log("Logging WebAuthJs unexpected acquire event");
|
|
}
|
|
if (typeof OTel !== "undefined") {
|
|
OTel.OTelLogger.onTelemetryLoaded(function () {
|
|
var telemetryData = [
|
|
oteljs.makeBooleanDataField('Loaded', loadResult),
|
|
oteljs.makeInt64DataField('LoadAttempts', loadAttempts)
|
|
];
|
|
OTel.OTelLogger.sendTelemetryEvent({
|
|
eventName: "Office.Extensibility.OfficeJs.OfficeFirstPartyAuth.UnexpectedAcquire",
|
|
dataFields: telemetryData,
|
|
eventFlags: {
|
|
dataCategories: oteljs.DataCategories.ProductServiceUsage
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
function loadWebAuthForReplyPage() {
|
|
try {
|
|
if (typeof (window) === "undefined" || !window.sessionStorage) {
|
|
return;
|
|
}
|
|
var webAuthRedirectUrls = sessionStorage.getItem(WebAuthReplyUrlsStorageKey);
|
|
if (webAuthRedirectUrls !== null && webAuthRedirectUrls.indexOf(window.location.origin + window.location.pathname) !== -1) {
|
|
load();
|
|
}
|
|
}
|
|
catch (ex) {
|
|
console.error(ex);
|
|
}
|
|
}
|
|
if (typeof (window) !== "undefined" && window.OSF) {
|
|
loadWebAuthForReplyPage();
|
|
}
|
|
})(OfficeFirstPartyAuth || (OfficeFirstPartyAuth = {}));
|
|
var OfficeCore;
|
|
(function (OfficeCore) {
|
|
var _hostName = "Office";
|
|
var _defaultApiSetName = "OfficeSharedApi";
|
|
var _createPropertyObject = OfficeExtension.BatchApiHelper.createPropertyObject;
|
|
var _createMethodObject = OfficeExtension.BatchApiHelper.createMethodObject;
|
|
var _createIndexerObject = OfficeExtension.BatchApiHelper.createIndexerObject;
|
|
var _createRootServiceObject = OfficeExtension.BatchApiHelper.createRootServiceObject;
|
|
var _createTopLevelServiceObject = OfficeExtension.BatchApiHelper.createTopLevelServiceObject;
|
|
var _createChildItemObject = OfficeExtension.BatchApiHelper.createChildItemObject;
|
|
var _invokeMethod = OfficeExtension.BatchApiHelper.invokeMethod;
|
|
var _invokeEnsureUnchanged = OfficeExtension.BatchApiHelper.invokeEnsureUnchanged;
|
|
var _invokeSetProperty = OfficeExtension.BatchApiHelper.invokeSetProperty;
|
|
var _isNullOrUndefined = OfficeExtension.Utility.isNullOrUndefined;
|
|
var _isUndefined = OfficeExtension.Utility.isUndefined;
|
|
var _throwIfNotLoaded = OfficeExtension.Utility.throwIfNotLoaded;
|
|
var _throwIfApiNotSupported = OfficeExtension.Utility.throwIfApiNotSupported;
|
|
var _load = OfficeExtension.Utility.load;
|
|
var _retrieve = OfficeExtension.Utility.retrieve;
|
|
var _toJson = OfficeExtension.Utility.toJson;
|
|
var _fixObjectPathIfNecessary = OfficeExtension.Utility.fixObjectPathIfNecessary;
|
|
var _handleNavigationPropertyResults = OfficeExtension.Utility._handleNavigationPropertyResults;
|
|
var _adjustToDateTime = OfficeExtension.Utility.adjustToDateTime;
|
|
var _processRetrieveResult = OfficeExtension.Utility.processRetrieveResult;
|
|
var _setMockData = OfficeExtension.Utility.setMockData;
|
|
var _calculateApiFlags = OfficeExtension.CommonUtility.calculateApiFlags;
|
|
var IdentityType;
|
|
(function (IdentityType) {
|
|
IdentityType["organizationAccount"] = "OrganizationAccount";
|
|
IdentityType["microsoftAccount"] = "MicrosoftAccount";
|
|
IdentityType["unsupported"] = "Unsupported";
|
|
})(IdentityType = OfficeCore.IdentityType || (OfficeCore.IdentityType = {}));
|
|
var _typeAuthenticationService = "AuthenticationService";
|
|
var AuthenticationService = (function (_super) {
|
|
__extends(AuthenticationService, _super);
|
|
function AuthenticationService() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(AuthenticationService.prototype, "_className", {
|
|
get: function () {
|
|
return "AuthenticationService";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AuthenticationService.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["roamingSettings"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(AuthenticationService.prototype, "roamingSettings", {
|
|
get: function () {
|
|
if (!this._R) {
|
|
this._R = _createPropertyObject(OfficeCore.RoamingSettingCollection, this, "RoamingSettings", false, 4);
|
|
}
|
|
return this._R;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
AuthenticationService.prototype.getAccessToken = function (tokenParameters, targetId) {
|
|
return _invokeMethod(this, "GetAccessToken", 1, [tokenParameters, targetId], 4 | 1, 0);
|
|
};
|
|
AuthenticationService.prototype.getIdentities = function () {
|
|
_throwIfApiNotSupported("AuthenticationService.getIdentities", "FirstPartyAuthentication", "1.3", _hostName);
|
|
return _invokeMethod(this, "GetIdentities", 1, [], 4 | 1, 0);
|
|
};
|
|
AuthenticationService.prototype.getPrimaryIdentityInfo = function () {
|
|
_throwIfApiNotSupported("AuthenticationService.getPrimaryIdentityInfo", "FirstPartyAuthentication", "1.2", _hostName);
|
|
return _invokeMethod(this, "GetPrimaryIdentityInfo", 1, [], 4 | 1, 0);
|
|
};
|
|
AuthenticationService.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
_handleNavigationPropertyResults(this, obj, ["roamingSettings", "RoamingSettings"]);
|
|
};
|
|
AuthenticationService.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
AuthenticationService.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
AuthenticationService.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
AuthenticationService.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.AuthenticationService, context, "Microsoft.Authentication.AuthenticationService", false, 4);
|
|
};
|
|
Object.defineProperty(AuthenticationService.prototype, "onTokenReceived", {
|
|
get: function () {
|
|
var _this = this;
|
|
_throwIfApiNotSupported("AuthenticationService.onTokenReceived", "FirstPartyAuthentication", "1.2", _hostName);
|
|
if (!this.m_tokenReceived) {
|
|
this.m_tokenReceived = new OfficeExtension.GenericEventHandlers(this.context, this, "TokenReceived", {
|
|
eventType: 3001,
|
|
registerFunc: function () { return OfficeExtension.Utility._createPromiseFromResult(null); },
|
|
unregisterFunc: function () { return OfficeExtension.Utility._createPromiseFromResult(null); },
|
|
getTargetIdFunc: function () { return _this._targetId; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = _CC.AuthenticationService_TokenReceived_EventArgsTransform(_this, value);
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_tokenReceived;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
AuthenticationService.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return AuthenticationService;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.AuthenticationService = AuthenticationService;
|
|
var AuthenticationServiceCustom = (function () {
|
|
function AuthenticationServiceCustom() {
|
|
}
|
|
Object.defineProperty(AuthenticationServiceCustom.prototype, "_targetId", {
|
|
get: function () {
|
|
if (this.m_targetId == undefined) {
|
|
if (typeof (OSF) !== 'undefined' && OSF.OUtil) {
|
|
this.m_targetId = OSF.OUtil.Guid.generateNewGuid();
|
|
}
|
|
else {
|
|
this.m_targetId = "" + this.context._nextId();
|
|
}
|
|
}
|
|
return this.m_targetId;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
return AuthenticationServiceCustom;
|
|
}());
|
|
OfficeCore.AuthenticationServiceCustom = AuthenticationServiceCustom;
|
|
OfficeExtension.Utility.applyMixin(AuthenticationService, AuthenticationServiceCustom);
|
|
var _CC;
|
|
(function (_CC) {
|
|
function AuthenticationService_TokenReceived_EventArgsTransform(thisObj, args) {
|
|
var value = args;
|
|
var newArgs = {
|
|
tokenValue: value.tokenValue,
|
|
code: value.code,
|
|
errorInfo: value.errorInfo
|
|
};
|
|
return newArgs;
|
|
}
|
|
_CC.AuthenticationService_TokenReceived_EventArgsTransform = AuthenticationService_TokenReceived_EventArgsTransform;
|
|
})(_CC = OfficeCore._CC || (OfficeCore._CC = {}));
|
|
var _typeRoamingSetting = "RoamingSetting";
|
|
var RoamingSetting = (function (_super) {
|
|
__extends(RoamingSetting, _super);
|
|
function RoamingSetting() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(RoamingSetting.prototype, "_className", {
|
|
get: function () {
|
|
return "RoamingSetting";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RoamingSetting.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id", "value"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RoamingSetting.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id", "Value"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RoamingSetting.prototype, "_scalarPropertyUpdateable", {
|
|
get: function () {
|
|
return [false, true];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RoamingSetting.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeRoamingSetting, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RoamingSetting.prototype, "value", {
|
|
get: function () {
|
|
_throwIfNotLoaded("value", this._V, _typeRoamingSetting, this._isNull);
|
|
return this._V;
|
|
},
|
|
set: function (value) {
|
|
this._V = value;
|
|
_invokeSetProperty(this, "Value", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
RoamingSetting.prototype.set = function (properties, options) {
|
|
this._recursivelySet(properties, options, ["value"], [], []);
|
|
};
|
|
RoamingSetting.prototype.update = function (properties) {
|
|
this._recursivelyUpdate(properties);
|
|
};
|
|
RoamingSetting.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
if (!_isUndefined(obj["Value"])) {
|
|
this._V = obj["Value"];
|
|
}
|
|
};
|
|
RoamingSetting.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
RoamingSetting.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
RoamingSetting.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
RoamingSetting.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
RoamingSetting.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"id": this._I,
|
|
"value": this._V
|
|
}, {});
|
|
};
|
|
RoamingSetting.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
RoamingSetting.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return RoamingSetting;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.RoamingSetting = RoamingSetting;
|
|
var _typeRoamingSettingCollection = "RoamingSettingCollection";
|
|
var RoamingSettingCollection = (function (_super) {
|
|
__extends(RoamingSettingCollection, _super);
|
|
function RoamingSettingCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(RoamingSettingCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "RoamingSettingCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
RoamingSettingCollection.prototype.getItem = function (id) {
|
|
return _createMethodObject(OfficeCore.RoamingSetting, this, "GetItem", 1, [id], false, false, null, 4);
|
|
};
|
|
RoamingSettingCollection.prototype.getItemOrNullObject = function (id) {
|
|
return _createMethodObject(OfficeCore.RoamingSetting, this, "GetItemOrNullObject", 1, [id], false, false, null, 4);
|
|
};
|
|
RoamingSettingCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
RoamingSettingCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
RoamingSettingCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return RoamingSettingCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.RoamingSettingCollection = RoamingSettingCollection;
|
|
var ServiceProvider;
|
|
(function (ServiceProvider) {
|
|
ServiceProvider["ariaBrowserPipeUrl"] = "AriaBrowserPipeUrl";
|
|
ServiceProvider["ariaUploadUrl"] = "AriaUploadUrl";
|
|
ServiceProvider["ariaVNextUploadUrl"] = "AriaVNextUploadUrl";
|
|
ServiceProvider["lokiAutoDiscoverUrl"] = "LokiAutoDiscoverUrl";
|
|
})(ServiceProvider = OfficeCore.ServiceProvider || (OfficeCore.ServiceProvider = {}));
|
|
var _typeServiceUrlProvider = "ServiceUrlProvider";
|
|
var ServiceUrlProvider = (function (_super) {
|
|
__extends(ServiceUrlProvider, _super);
|
|
function ServiceUrlProvider() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(ServiceUrlProvider.prototype, "_className", {
|
|
get: function () {
|
|
return "ServiceUrlProvider";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ServiceUrlProvider.prototype.getServiceUrl = function (emailAddress, provider) {
|
|
return _invokeMethod(this, "GetServiceUrl", 1, [emailAddress, provider], 4, 0);
|
|
};
|
|
ServiceUrlProvider.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
ServiceUrlProvider.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
ServiceUrlProvider.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.ServiceUrlProvider, context, "Microsoft.DesktopCompliance.ServiceUrlProvider", false, 4);
|
|
};
|
|
ServiceUrlProvider.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return ServiceUrlProvider;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.ServiceUrlProvider = ServiceUrlProvider;
|
|
var _typeLinkedIn = "LinkedIn";
|
|
var LinkedIn = (function (_super) {
|
|
__extends(LinkedIn, _super);
|
|
function LinkedIn() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(LinkedIn.prototype, "_className", {
|
|
get: function () {
|
|
return "LinkedIn";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
LinkedIn.prototype.isEnabledForOffice = function () {
|
|
return _invokeMethod(this, "IsEnabledForOffice", 1, [], 4, 0);
|
|
};
|
|
LinkedIn.prototype.recordLinkedInSettingsCompliance = function (featureName, isEnabled) {
|
|
_invokeMethod(this, "RecordLinkedInSettingsCompliance", 0, [featureName, isEnabled], 0, 0);
|
|
};
|
|
LinkedIn.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
LinkedIn.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
LinkedIn.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.LinkedIn, context, "Microsoft.DesktopCompliance.LinkedIn", false, 4);
|
|
};
|
|
LinkedIn.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return LinkedIn;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.LinkedIn = LinkedIn;
|
|
var _typeNetworkUsage = "NetworkUsage";
|
|
var NetworkUsage = (function (_super) {
|
|
__extends(NetworkUsage, _super);
|
|
function NetworkUsage() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(NetworkUsage.prototype, "_className", {
|
|
get: function () {
|
|
return "NetworkUsage";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
NetworkUsage.prototype.isInDisconnectedMode = function () {
|
|
return _invokeMethod(this, "IsInDisconnectedMode", 1, [], 4, 0);
|
|
};
|
|
NetworkUsage.prototype.isInOnlineMode = function () {
|
|
return _invokeMethod(this, "IsInOnlineMode", 1, [], 4, 0);
|
|
};
|
|
NetworkUsage.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
NetworkUsage.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
NetworkUsage.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.NetworkUsage, context, "Microsoft.DesktopCompliance.NetworkUsage", false, 4);
|
|
};
|
|
NetworkUsage.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return NetworkUsage;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.NetworkUsage = NetworkUsage;
|
|
var _typeDynamicRibbon = "DynamicRibbon";
|
|
var DynamicRibbon = (function (_super) {
|
|
__extends(DynamicRibbon, _super);
|
|
function DynamicRibbon() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(DynamicRibbon.prototype, "_className", {
|
|
get: function () {
|
|
return "DynamicRibbon";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(DynamicRibbon.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["buttons"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(DynamicRibbon.prototype, "buttons", {
|
|
get: function () {
|
|
if (!this._B) {
|
|
this._B = _createPropertyObject(OfficeCore.RibbonButtonCollection, this, "Buttons", true, 4);
|
|
}
|
|
return this._B;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
DynamicRibbon.prototype.executeRequestCreate = function (jsonCreate) {
|
|
_throwIfApiNotSupported("DynamicRibbon.executeRequestCreate", "DynamicRibbon", "1.2", _hostName);
|
|
_invokeMethod(this, "ExecuteRequestCreate", 1, [jsonCreate], 4, 0);
|
|
};
|
|
DynamicRibbon.prototype.executeRequestUpdate = function (jsonUpdate) {
|
|
_invokeMethod(this, "ExecuteRequestUpdate", 1, [jsonUpdate], 4, 0);
|
|
};
|
|
DynamicRibbon.prototype.getButton = function (id) {
|
|
return _createMethodObject(OfficeCore.RibbonButton, this, "GetButton", 1, [id], false, false, null, 4);
|
|
};
|
|
DynamicRibbon.prototype.getTab = function (id) {
|
|
return _createMethodObject(OfficeCore.RibbonTab, this, "GetTab", 1, [id], false, false, null, 4);
|
|
};
|
|
DynamicRibbon.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
_handleNavigationPropertyResults(this, obj, ["buttons", "Buttons"]);
|
|
};
|
|
DynamicRibbon.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
DynamicRibbon.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
DynamicRibbon.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
DynamicRibbon.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.DynamicRibbon, context, "Microsoft.DynamicRibbon.DynamicRibbon", false, 4);
|
|
};
|
|
DynamicRibbon.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {
|
|
"buttons": this._B
|
|
});
|
|
};
|
|
return DynamicRibbon;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.DynamicRibbon = DynamicRibbon;
|
|
var _typeRibbonTab = "RibbonTab";
|
|
var RibbonTab = (function (_super) {
|
|
__extends(RibbonTab, _super);
|
|
function RibbonTab() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(RibbonTab.prototype, "_className", {
|
|
get: function () {
|
|
return "RibbonTab";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonTab.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonTab.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonTab.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeRibbonTab, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
RibbonTab.prototype.setVisibility = function (visibility) {
|
|
_invokeMethod(this, "SetVisibility", 0, [visibility], 0, 0);
|
|
};
|
|
RibbonTab.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
};
|
|
RibbonTab.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
RibbonTab.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
RibbonTab.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
RibbonTab.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
RibbonTab.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"id": this._I
|
|
}, {});
|
|
};
|
|
RibbonTab.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
RibbonTab.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return RibbonTab;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.RibbonTab = RibbonTab;
|
|
var _typeRibbonButton = "RibbonButton";
|
|
var RibbonButton = (function (_super) {
|
|
__extends(RibbonButton, _super);
|
|
function RibbonButton() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(RibbonButton.prototype, "_className", {
|
|
get: function () {
|
|
return "RibbonButton";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonButton.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id", "enabled", "label"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonButton.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id", "Enabled", "Label"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonButton.prototype, "_scalarPropertyUpdateable", {
|
|
get: function () {
|
|
return [false, true, false];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonButton.prototype, "enabled", {
|
|
get: function () {
|
|
_throwIfNotLoaded("enabled", this._E, _typeRibbonButton, this._isNull);
|
|
return this._E;
|
|
},
|
|
set: function (value) {
|
|
this._E = value;
|
|
_invokeSetProperty(this, "Enabled", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonButton.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeRibbonButton, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonButton.prototype, "label", {
|
|
get: function () {
|
|
_throwIfNotLoaded("label", this._L, _typeRibbonButton, this._isNull);
|
|
return this._L;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
RibbonButton.prototype.set = function (properties, options) {
|
|
this._recursivelySet(properties, options, ["enabled"], [], []);
|
|
};
|
|
RibbonButton.prototype.update = function (properties) {
|
|
this._recursivelyUpdate(properties);
|
|
};
|
|
RibbonButton.prototype.setEnabled = function (enabled) {
|
|
_invokeMethod(this, "SetEnabled", 0, [enabled], 0, 0);
|
|
};
|
|
RibbonButton.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Enabled"])) {
|
|
this._E = obj["Enabled"];
|
|
}
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
if (!_isUndefined(obj["Label"])) {
|
|
this._L = obj["Label"];
|
|
}
|
|
};
|
|
RibbonButton.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
RibbonButton.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
RibbonButton.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
RibbonButton.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
RibbonButton.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"enabled": this._E,
|
|
"id": this._I,
|
|
"label": this._L
|
|
}, {});
|
|
};
|
|
RibbonButton.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
RibbonButton.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return RibbonButton;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.RibbonButton = RibbonButton;
|
|
var _typeRibbonButtonCollection = "RibbonButtonCollection";
|
|
var RibbonButtonCollection = (function (_super) {
|
|
__extends(RibbonButtonCollection, _super);
|
|
function RibbonButtonCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(RibbonButtonCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "RibbonButtonCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonButtonCollection.prototype, "_isCollection", {
|
|
get: function () {
|
|
return true;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RibbonButtonCollection.prototype, "items", {
|
|
get: function () {
|
|
_throwIfNotLoaded("items", this.m__items, _typeRibbonButtonCollection, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
RibbonButtonCollection.prototype.getCount = function () {
|
|
return _invokeMethod(this, "GetCount", 1, [], 4, 0);
|
|
};
|
|
RibbonButtonCollection.prototype.getItem = function (key) {
|
|
return _createIndexerObject(OfficeCore.RibbonButton, this, [key]);
|
|
};
|
|
RibbonButtonCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isNullOrUndefined(obj[OfficeExtension.Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = obj[OfficeExtension.Constants.items];
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = _createChildItemObject(OfficeCore.RibbonButton, true, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
};
|
|
RibbonButtonCollection.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
RibbonButtonCollection.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
RibbonButtonCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
var _this = this;
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result, function (childItemData, index) { return _createChildItemObject(OfficeCore.RibbonButton, true, _this, childItemData, index); });
|
|
};
|
|
RibbonButtonCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {}, this.m__items);
|
|
};
|
|
RibbonButtonCollection.prototype.setMockData = function (data) {
|
|
var _this = this;
|
|
_setMockData(this, data, function (childItemData, index) { return _createChildItemObject(OfficeCore.RibbonButton, true, _this, childItemData, index); }, function (items) { return _this.m__items = items; });
|
|
};
|
|
return RibbonButtonCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.RibbonButtonCollection = RibbonButtonCollection;
|
|
var TimeStringFormat;
|
|
(function (TimeStringFormat) {
|
|
TimeStringFormat["shortTime"] = "ShortTime";
|
|
TimeStringFormat["longTime"] = "LongTime";
|
|
TimeStringFormat["shortDate"] = "ShortDate";
|
|
TimeStringFormat["longDate"] = "LongDate";
|
|
})(TimeStringFormat = OfficeCore.TimeStringFormat || (OfficeCore.TimeStringFormat = {}));
|
|
var _typeLocaleApi = "LocaleApi";
|
|
var LocaleApi = (function (_super) {
|
|
__extends(LocaleApi, _super);
|
|
function LocaleApi() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(LocaleApi.prototype, "_className", {
|
|
get: function () {
|
|
return "LocaleApi";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
LocaleApi.prototype.formatDateTimeString = function (localeName, value, format) {
|
|
return _invokeMethod(this, "FormatDateTimeString", 1, [localeName, value, format], 4, 0);
|
|
};
|
|
LocaleApi.prototype.getLocaleDateTimeFormattingInfo = function (localeName) {
|
|
return _invokeMethod(this, "GetLocaleDateTimeFormattingInfo", 1, [localeName], 4, 0);
|
|
};
|
|
LocaleApi.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
LocaleApi.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
LocaleApi.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.LocaleApi, context, "Microsoft.LocaleApi.LocaleApi", false, 4);
|
|
};
|
|
LocaleApi.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return LocaleApi;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.LocaleApi = LocaleApi;
|
|
var _typeComment = "Comment";
|
|
var Comment = (function (_super) {
|
|
__extends(Comment, _super);
|
|
function Comment() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Comment.prototype, "_className", {
|
|
get: function () {
|
|
return "Comment";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id", "text", "created", "level", "resolved", "author", "mentions"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id", "Text", "Created", "Level", "Resolved", "Author", "Mentions"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "_scalarPropertyUpdateable", {
|
|
get: function () {
|
|
return [false, true, false, false, true, false, false];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["parent", "parentOrNullObject", "replies"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "parent", {
|
|
get: function () {
|
|
if (!this._P) {
|
|
this._P = _createPropertyObject(OfficeCore.Comment, this, "Parent", false, 4);
|
|
}
|
|
return this._P;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "parentOrNullObject", {
|
|
get: function () {
|
|
if (!this._Pa) {
|
|
this._Pa = _createPropertyObject(OfficeCore.Comment, this, "ParentOrNullObject", false, 4);
|
|
}
|
|
return this._Pa;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "replies", {
|
|
get: function () {
|
|
if (!this._R) {
|
|
this._R = _createPropertyObject(OfficeCore.CommentCollection, this, "Replies", true, 4);
|
|
}
|
|
return this._R;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "author", {
|
|
get: function () {
|
|
_throwIfNotLoaded("author", this._A, _typeComment, this._isNull);
|
|
return this._A;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "created", {
|
|
get: function () {
|
|
_throwIfNotLoaded("created", this._C, _typeComment, this._isNull);
|
|
return this._C;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeComment, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "level", {
|
|
get: function () {
|
|
_throwIfNotLoaded("level", this._L, _typeComment, this._isNull);
|
|
return this._L;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "mentions", {
|
|
get: function () {
|
|
_throwIfNotLoaded("mentions", this._M, _typeComment, this._isNull);
|
|
return this._M;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "resolved", {
|
|
get: function () {
|
|
_throwIfNotLoaded("resolved", this._Re, _typeComment, this._isNull);
|
|
return this._Re;
|
|
},
|
|
set: function (value) {
|
|
this._Re = value;
|
|
_invokeSetProperty(this, "Resolved", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Comment.prototype, "text", {
|
|
get: function () {
|
|
_throwIfNotLoaded("text", this._T, _typeComment, this._isNull);
|
|
return this._T;
|
|
},
|
|
set: function (value) {
|
|
this._T = value;
|
|
_invokeSetProperty(this, "Text", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Comment.prototype.set = function (properties, options) {
|
|
this._recursivelySet(properties, options, ["text", "resolved"], [], [
|
|
"parent",
|
|
"parentOrNullObject",
|
|
"replies"
|
|
]);
|
|
};
|
|
Comment.prototype.update = function (properties) {
|
|
this._recursivelyUpdate(properties);
|
|
};
|
|
Comment.prototype["delete"] = function () {
|
|
_invokeMethod(this, "Delete", 0, [], 0, 0);
|
|
};
|
|
Comment.prototype.getParentOrSelf = function () {
|
|
return _createMethodObject(OfficeCore.Comment, this, "GetParentOrSelf", 1, [], false, false, null, 4);
|
|
};
|
|
Comment.prototype.getRichText = function (format) {
|
|
return _invokeMethod(this, "GetRichText", 1, [format], 4, 0);
|
|
};
|
|
Comment.prototype.reply = function (text, format) {
|
|
return _createMethodObject(OfficeCore.Comment, this, "Reply", 0, [text, format], false, false, null, 0);
|
|
};
|
|
Comment.prototype.setRichText = function (text, format) {
|
|
return _invokeMethod(this, "SetRichText", 0, [text, format], 0, 0);
|
|
};
|
|
Comment.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Author"])) {
|
|
this._A = obj["Author"];
|
|
}
|
|
if (!_isUndefined(obj["Created"])) {
|
|
this._C = _adjustToDateTime(obj["Created"]);
|
|
}
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
if (!_isUndefined(obj["Level"])) {
|
|
this._L = obj["Level"];
|
|
}
|
|
if (!_isUndefined(obj["Mentions"])) {
|
|
this._M = obj["Mentions"];
|
|
}
|
|
if (!_isUndefined(obj["Resolved"])) {
|
|
this._Re = obj["Resolved"];
|
|
}
|
|
if (!_isUndefined(obj["Text"])) {
|
|
this._T = obj["Text"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["parent", "Parent", "parentOrNullObject", "ParentOrNullObject", "replies", "Replies"]);
|
|
};
|
|
Comment.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
Comment.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
Comment.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
Comment.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
if (!_isUndefined(obj["Created"])) {
|
|
obj["created"] = _adjustToDateTime(obj["created"]);
|
|
}
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Comment.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"author": this._A,
|
|
"created": this._C,
|
|
"id": this._I,
|
|
"level": this._L,
|
|
"mentions": this._M,
|
|
"resolved": this._Re,
|
|
"text": this._T
|
|
}, {
|
|
"replies": this._R
|
|
});
|
|
};
|
|
Comment.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
Comment.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return Comment;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.Comment = Comment;
|
|
var _typeCommentCollection = "CommentCollection";
|
|
var CommentCollection = (function (_super) {
|
|
__extends(CommentCollection, _super);
|
|
function CommentCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(CommentCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "CommentCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(CommentCollection.prototype, "_isCollection", {
|
|
get: function () {
|
|
return true;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(CommentCollection.prototype, "items", {
|
|
get: function () {
|
|
_throwIfNotLoaded("items", this.m__items, _typeCommentCollection, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
CommentCollection.prototype.getCount = function () {
|
|
return _invokeMethod(this, "GetCount", 1, [], 4, 0);
|
|
};
|
|
CommentCollection.prototype.getItem = function (id) {
|
|
return _createIndexerObject(OfficeCore.Comment, this, [id]);
|
|
};
|
|
CommentCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isNullOrUndefined(obj[OfficeExtension.Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = obj[OfficeExtension.Constants.items];
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = _createChildItemObject(OfficeCore.Comment, true, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
};
|
|
CommentCollection.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
CommentCollection.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
CommentCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
var _this = this;
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result, function (childItemData, index) { return _createChildItemObject(OfficeCore.Comment, true, _this, childItemData, index); });
|
|
};
|
|
CommentCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {}, this.m__items);
|
|
};
|
|
CommentCollection.prototype.setMockData = function (data) {
|
|
var _this = this;
|
|
_setMockData(this, data, function (childItemData, index) { return _createChildItemObject(OfficeCore.Comment, true, _this, childItemData, index); }, function (items) { return _this.m__items = items; });
|
|
};
|
|
return CommentCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.CommentCollection = CommentCollection;
|
|
var CommentTextFormat;
|
|
(function (CommentTextFormat) {
|
|
CommentTextFormat["plain"] = "Plain";
|
|
CommentTextFormat["markdown"] = "Markdown";
|
|
CommentTextFormat["delta"] = "Delta";
|
|
})(CommentTextFormat = OfficeCore.CommentTextFormat || (OfficeCore.CommentTextFormat = {}));
|
|
var PersonaCardPerfPoint;
|
|
(function (PersonaCardPerfPoint) {
|
|
PersonaCardPerfPoint["placeHolderRendered"] = "PlaceHolderRendered";
|
|
PersonaCardPerfPoint["initialCardRendered"] = "InitialCardRendered";
|
|
})(PersonaCardPerfPoint = OfficeCore.PersonaCardPerfPoint || (OfficeCore.PersonaCardPerfPoint = {}));
|
|
var UnifiedCommunicationAvailability;
|
|
(function (UnifiedCommunicationAvailability) {
|
|
UnifiedCommunicationAvailability["notSet"] = "NotSet";
|
|
UnifiedCommunicationAvailability["free"] = "Free";
|
|
UnifiedCommunicationAvailability["idle"] = "Idle";
|
|
UnifiedCommunicationAvailability["busy"] = "Busy";
|
|
UnifiedCommunicationAvailability["idleBusy"] = "IdleBusy";
|
|
UnifiedCommunicationAvailability["doNotDisturb"] = "DoNotDisturb";
|
|
UnifiedCommunicationAvailability["unalertable"] = "Unalertable";
|
|
UnifiedCommunicationAvailability["unavailable"] = "Unavailable";
|
|
})(UnifiedCommunicationAvailability = OfficeCore.UnifiedCommunicationAvailability || (OfficeCore.UnifiedCommunicationAvailability = {}));
|
|
var UnifiedCommunicationStatus;
|
|
(function (UnifiedCommunicationStatus) {
|
|
UnifiedCommunicationStatus["online"] = "Online";
|
|
UnifiedCommunicationStatus["notOnline"] = "NotOnline";
|
|
UnifiedCommunicationStatus["away"] = "Away";
|
|
UnifiedCommunicationStatus["busy"] = "Busy";
|
|
UnifiedCommunicationStatus["beRightBack"] = "BeRightBack";
|
|
UnifiedCommunicationStatus["onThePhone"] = "OnThePhone";
|
|
UnifiedCommunicationStatus["outToLunch"] = "OutToLunch";
|
|
UnifiedCommunicationStatus["inAMeeting"] = "InAMeeting";
|
|
UnifiedCommunicationStatus["outOfOffice"] = "OutOfOffice";
|
|
UnifiedCommunicationStatus["doNotDisturb"] = "DoNotDisturb";
|
|
UnifiedCommunicationStatus["inAConference"] = "InAConference";
|
|
UnifiedCommunicationStatus["getting"] = "Getting";
|
|
UnifiedCommunicationStatus["notABuddy"] = "NotABuddy";
|
|
UnifiedCommunicationStatus["disconnected"] = "Disconnected";
|
|
UnifiedCommunicationStatus["notInstalled"] = "NotInstalled";
|
|
UnifiedCommunicationStatus["urgentInterruptionsOnly"] = "UrgentInterruptionsOnly";
|
|
UnifiedCommunicationStatus["mayBeAvailable"] = "MayBeAvailable";
|
|
UnifiedCommunicationStatus["idle"] = "Idle";
|
|
UnifiedCommunicationStatus["inPresentation"] = "InPresentation";
|
|
})(UnifiedCommunicationStatus = OfficeCore.UnifiedCommunicationStatus || (OfficeCore.UnifiedCommunicationStatus = {}));
|
|
var UnifiedCommunicationPresence;
|
|
(function (UnifiedCommunicationPresence) {
|
|
UnifiedCommunicationPresence["free"] = "Free";
|
|
UnifiedCommunicationPresence["busy"] = "Busy";
|
|
UnifiedCommunicationPresence["idle"] = "Idle";
|
|
UnifiedCommunicationPresence["doNotDistrub"] = "DoNotDistrub";
|
|
UnifiedCommunicationPresence["blocked"] = "Blocked";
|
|
UnifiedCommunicationPresence["notSet"] = "NotSet";
|
|
UnifiedCommunicationPresence["outOfOffice"] = "OutOfOffice";
|
|
})(UnifiedCommunicationPresence = OfficeCore.UnifiedCommunicationPresence || (OfficeCore.UnifiedCommunicationPresence = {}));
|
|
var FreeBusyCalendarState;
|
|
(function (FreeBusyCalendarState) {
|
|
FreeBusyCalendarState["unknown"] = "Unknown";
|
|
FreeBusyCalendarState["free"] = "Free";
|
|
FreeBusyCalendarState["busy"] = "Busy";
|
|
FreeBusyCalendarState["elsewhere"] = "Elsewhere";
|
|
FreeBusyCalendarState["tentative"] = "Tentative";
|
|
FreeBusyCalendarState["outOfOffice"] = "OutOfOffice";
|
|
})(FreeBusyCalendarState = OfficeCore.FreeBusyCalendarState || (OfficeCore.FreeBusyCalendarState = {}));
|
|
var PersonaType;
|
|
(function (PersonaType) {
|
|
PersonaType["unknown"] = "Unknown";
|
|
PersonaType["enterprise"] = "Enterprise";
|
|
PersonaType["contact"] = "Contact";
|
|
PersonaType["bot"] = "Bot";
|
|
PersonaType["phoneOnly"] = "PhoneOnly";
|
|
PersonaType["oneOff"] = "OneOff";
|
|
PersonaType["distributionList"] = "DistributionList";
|
|
PersonaType["personalDistributionList"] = "PersonalDistributionList";
|
|
PersonaType["anonymous"] = "Anonymous";
|
|
PersonaType["unifiedGroup"] = "UnifiedGroup";
|
|
})(PersonaType = OfficeCore.PersonaType || (OfficeCore.PersonaType = {}));
|
|
var PhoneType;
|
|
(function (PhoneType) {
|
|
PhoneType["workPhone"] = "WorkPhone";
|
|
PhoneType["homePhone"] = "HomePhone";
|
|
PhoneType["mobilePhone"] = "MobilePhone";
|
|
PhoneType["businessFax"] = "BusinessFax";
|
|
PhoneType["otherPhone"] = "OtherPhone";
|
|
})(PhoneType = OfficeCore.PhoneType || (OfficeCore.PhoneType = {}));
|
|
var AddressType;
|
|
(function (AddressType) {
|
|
AddressType["workAddress"] = "WorkAddress";
|
|
AddressType["homeAddress"] = "HomeAddress";
|
|
AddressType["otherAddress"] = "OtherAddress";
|
|
})(AddressType = OfficeCore.AddressType || (OfficeCore.AddressType = {}));
|
|
var MemberType;
|
|
(function (MemberType) {
|
|
MemberType["unknown"] = "Unknown";
|
|
MemberType["individual"] = "Individual";
|
|
MemberType["group"] = "Group";
|
|
})(MemberType = OfficeCore.MemberType || (OfficeCore.MemberType = {}));
|
|
var _typeMemberInfoList = "MemberInfoList";
|
|
var MemberInfoList = (function (_super) {
|
|
__extends(MemberInfoList, _super);
|
|
function MemberInfoList() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(MemberInfoList.prototype, "_className", {
|
|
get: function () {
|
|
return "MemberInfoList";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MemberInfoList.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["isWarmedUp", "isWarmingUp"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MemberInfoList.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["IsWarmedUp", "IsWarmingUp"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MemberInfoList.prototype, "isWarmedUp", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isWarmedUp", this._I, _typeMemberInfoList, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MemberInfoList.prototype, "isWarmingUp", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isWarmingUp", this._Is, _typeMemberInfoList, this._isNull);
|
|
return this._Is;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
MemberInfoList.prototype.getPersonaForMember = function (memberCookie) {
|
|
return _createMethodObject(OfficeCore.Persona, this, "GetPersonaForMember", 1, [memberCookie], false, false, null, 4);
|
|
};
|
|
MemberInfoList.prototype.items = function () {
|
|
return _invokeMethod(this, "Items", 1, [], 4, 0);
|
|
};
|
|
MemberInfoList.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["IsWarmedUp"])) {
|
|
this._I = obj["IsWarmedUp"];
|
|
}
|
|
if (!_isUndefined(obj["IsWarmingUp"])) {
|
|
this._Is = obj["IsWarmingUp"];
|
|
}
|
|
};
|
|
MemberInfoList.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
MemberInfoList.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
MemberInfoList.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
MemberInfoList.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"isWarmedUp": this._I,
|
|
"isWarmingUp": this._Is
|
|
}, {});
|
|
};
|
|
MemberInfoList.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
MemberInfoList.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return MemberInfoList;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.MemberInfoList = MemberInfoList;
|
|
var PersonaDataUpdated;
|
|
(function (PersonaDataUpdated) {
|
|
PersonaDataUpdated["hostId"] = "HostId";
|
|
PersonaDataUpdated["type"] = "Type";
|
|
PersonaDataUpdated["photo"] = "Photo";
|
|
PersonaDataUpdated["personaInfo"] = "PersonaInfo";
|
|
PersonaDataUpdated["unifiedCommunicationInfo"] = "UnifiedCommunicationInfo";
|
|
PersonaDataUpdated["organization"] = "Organization";
|
|
PersonaDataUpdated["unifiedGroupInfo"] = "UnifiedGroupInfo";
|
|
PersonaDataUpdated["members"] = "Members";
|
|
PersonaDataUpdated["membership"] = "Membership";
|
|
PersonaDataUpdated["capabilities"] = "Capabilities";
|
|
PersonaDataUpdated["customizations"] = "Customizations";
|
|
PersonaDataUpdated["viewableSources"] = "ViewableSources";
|
|
PersonaDataUpdated["placeholder"] = "Placeholder";
|
|
})(PersonaDataUpdated = OfficeCore.PersonaDataUpdated || (OfficeCore.PersonaDataUpdated = {}));
|
|
var _typePersonaActions = "PersonaActions";
|
|
var PersonaActions = (function (_super) {
|
|
__extends(PersonaActions, _super);
|
|
function PersonaActions() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(PersonaActions.prototype, "_className", {
|
|
get: function () {
|
|
return "PersonaActions";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaActions.prototype.addContact = function () {
|
|
_invokeMethod(this, "AddContact", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.callPhoneNumber = function (contactNumber) {
|
|
_invokeMethod(this, "CallPhoneNumber", 0, [contactNumber], 0, 0);
|
|
};
|
|
PersonaActions.prototype.composeEmail = function (emailAddress) {
|
|
_invokeMethod(this, "ComposeEmail", 0, [emailAddress], 0, 0);
|
|
};
|
|
PersonaActions.prototype.composeInstantMessage = function (sipAddress) {
|
|
_invokeMethod(this, "ComposeInstantMessage", 0, [sipAddress], 0, 0);
|
|
};
|
|
PersonaActions.prototype.editContact = function () {
|
|
_invokeMethod(this, "EditContact", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.editContactByIdentifier = function (identifier) {
|
|
_invokeMethod(this, "EditContactByIdentifier", 0, [identifier], 0, 0);
|
|
};
|
|
PersonaActions.prototype.editUnifiedGroup = function () {
|
|
_invokeMethod(this, "EditUnifiedGroup", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.getChangePhotoUrlAndOpenInBrowser = function () {
|
|
_invokeMethod(this, "GetChangePhotoUrlAndOpenInBrowser", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.hideHoverCardForPersona = function () {
|
|
_invokeMethod(this, "HideHoverCardForPersona", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.joinUnifiedGroup = function () {
|
|
_invokeMethod(this, "JoinUnifiedGroup", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.leaveUnifiedGroup = function () {
|
|
_invokeMethod(this, "LeaveUnifiedGroup", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.openGroupCalendar = function () {
|
|
_invokeMethod(this, "OpenGroupCalendar", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.openLinkContactUx = function () {
|
|
_invokeMethod(this, "OpenLinkContactUx", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.openOutlookProperties = function () {
|
|
_invokeMethod(this, "OpenOutlookProperties", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.pinPersonaToQuickContacts = function () {
|
|
_invokeMethod(this, "PinPersonaToQuickContacts", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.scheduleMeeting = function () {
|
|
_invokeMethod(this, "ScheduleMeeting", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.showContactCard = function (pointToShowX, pointToShowY, personaRectTop, personaRectLeft, personaRectWidth, personaRectHeight) {
|
|
_invokeMethod(this, "ShowContactCard", 0, [pointToShowX, pointToShowY, personaRectTop, personaRectLeft, personaRectWidth, personaRectHeight], 0, 0);
|
|
};
|
|
PersonaActions.prototype.showContextMenu = function (pointToShowX, pointToShowY, personaRectTop, personaRectLeft, personaRectWidth, personaRectHeight) {
|
|
_invokeMethod(this, "ShowContextMenu", 0, [pointToShowX, pointToShowY, personaRectTop, personaRectLeft, personaRectWidth, personaRectHeight], 0, 0);
|
|
};
|
|
PersonaActions.prototype.showExpandedCard = function (pointToShowX, pointToShowY, personaRectTop, personaRectLeft, personaRectWidth, personaRectHeight) {
|
|
_invokeMethod(this, "ShowExpandedCard", 0, [pointToShowX, pointToShowY, personaRectTop, personaRectLeft, personaRectWidth, personaRectHeight], 0, 0);
|
|
};
|
|
PersonaActions.prototype.showHoverCardForPersona = function (pointToShowX, pointToShowY, personaRectTop, personaRectLeft, personaRectWidth, personaRectHeight) {
|
|
_invokeMethod(this, "ShowHoverCardForPersona", 0, [pointToShowX, pointToShowY, personaRectTop, personaRectLeft, personaRectWidth, personaRectHeight], 0, 0);
|
|
};
|
|
PersonaActions.prototype.startAudioCall = function () {
|
|
_invokeMethod(this, "StartAudioCall", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.startVideoCall = function () {
|
|
_invokeMethod(this, "StartVideoCall", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.subscribeToGroup = function () {
|
|
_invokeMethod(this, "SubscribeToGroup", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.toggleTagForAlerts = function () {
|
|
_invokeMethod(this, "ToggleTagForAlerts", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype.unsubscribeFromGroup = function () {
|
|
_invokeMethod(this, "UnsubscribeFromGroup", 0, [], 0, 0);
|
|
};
|
|
PersonaActions.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
PersonaActions.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
PersonaActions.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return PersonaActions;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.PersonaActions = PersonaActions;
|
|
var _typePersonaInfoSource = "PersonaInfoSource";
|
|
var PersonaInfoSource = (function (_super) {
|
|
__extends(PersonaInfoSource, _super);
|
|
function PersonaInfoSource() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(PersonaInfoSource.prototype, "_className", {
|
|
get: function () {
|
|
return "PersonaInfoSource";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["displayName", "email", "emailAddresses", "sipAddresses", "birthday", "birthdays", "title", "jobInfoDepartment", "companyName", "office", "linkedTitles", "linkedDepartments", "linkedCompanyNames", "linkedOffices", "phones", "addresses", "webSites", "notes"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["DisplayName", "Email", "EmailAddresses", "SipAddresses", "Birthday", "Birthdays", "Title", "JobInfoDepartment", "CompanyName", "Office", "LinkedTitles", "LinkedDepartments", "LinkedCompanyNames", "LinkedOffices", "Phones", "Addresses", "WebSites", "Notes"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "addresses", {
|
|
get: function () {
|
|
_throwIfNotLoaded("addresses", this._A, _typePersonaInfoSource, this._isNull);
|
|
return this._A;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "birthday", {
|
|
get: function () {
|
|
_throwIfNotLoaded("birthday", this._B, _typePersonaInfoSource, this._isNull);
|
|
return this._B;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "birthdays", {
|
|
get: function () {
|
|
_throwIfNotLoaded("birthdays", this._Bi, _typePersonaInfoSource, this._isNull);
|
|
return this._Bi;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "companyName", {
|
|
get: function () {
|
|
_throwIfNotLoaded("companyName", this._C, _typePersonaInfoSource, this._isNull);
|
|
return this._C;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "displayName", {
|
|
get: function () {
|
|
_throwIfNotLoaded("displayName", this._D, _typePersonaInfoSource, this._isNull);
|
|
return this._D;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "email", {
|
|
get: function () {
|
|
_throwIfNotLoaded("email", this._E, _typePersonaInfoSource, this._isNull);
|
|
return this._E;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "emailAddresses", {
|
|
get: function () {
|
|
_throwIfNotLoaded("emailAddresses", this._Em, _typePersonaInfoSource, this._isNull);
|
|
return this._Em;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "jobInfoDepartment", {
|
|
get: function () {
|
|
_throwIfNotLoaded("jobInfoDepartment", this._J, _typePersonaInfoSource, this._isNull);
|
|
return this._J;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "linkedCompanyNames", {
|
|
get: function () {
|
|
_throwIfNotLoaded("linkedCompanyNames", this._L, _typePersonaInfoSource, this._isNull);
|
|
return this._L;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "linkedDepartments", {
|
|
get: function () {
|
|
_throwIfNotLoaded("linkedDepartments", this._Li, _typePersonaInfoSource, this._isNull);
|
|
return this._Li;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "linkedOffices", {
|
|
get: function () {
|
|
_throwIfNotLoaded("linkedOffices", this._Lin, _typePersonaInfoSource, this._isNull);
|
|
return this._Lin;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "linkedTitles", {
|
|
get: function () {
|
|
_throwIfNotLoaded("linkedTitles", this._Link, _typePersonaInfoSource, this._isNull);
|
|
return this._Link;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "notes", {
|
|
get: function () {
|
|
_throwIfNotLoaded("notes", this._N, _typePersonaInfoSource, this._isNull);
|
|
return this._N;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "office", {
|
|
get: function () {
|
|
_throwIfNotLoaded("office", this._O, _typePersonaInfoSource, this._isNull);
|
|
return this._O;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "phones", {
|
|
get: function () {
|
|
_throwIfNotLoaded("phones", this._P, _typePersonaInfoSource, this._isNull);
|
|
return this._P;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "sipAddresses", {
|
|
get: function () {
|
|
_throwIfNotLoaded("sipAddresses", this._S, _typePersonaInfoSource, this._isNull);
|
|
return this._S;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "title", {
|
|
get: function () {
|
|
_throwIfNotLoaded("title", this._T, _typePersonaInfoSource, this._isNull);
|
|
return this._T;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfoSource.prototype, "webSites", {
|
|
get: function () {
|
|
_throwIfNotLoaded("webSites", this._W, _typePersonaInfoSource, this._isNull);
|
|
return this._W;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaInfoSource.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Addresses"])) {
|
|
this._A = obj["Addresses"];
|
|
}
|
|
if (!_isUndefined(obj["Birthday"])) {
|
|
this._B = obj["Birthday"];
|
|
}
|
|
if (!_isUndefined(obj["Birthdays"])) {
|
|
this._Bi = obj["Birthdays"];
|
|
}
|
|
if (!_isUndefined(obj["CompanyName"])) {
|
|
this._C = obj["CompanyName"];
|
|
}
|
|
if (!_isUndefined(obj["DisplayName"])) {
|
|
this._D = obj["DisplayName"];
|
|
}
|
|
if (!_isUndefined(obj["Email"])) {
|
|
this._E = obj["Email"];
|
|
}
|
|
if (!_isUndefined(obj["EmailAddresses"])) {
|
|
this._Em = obj["EmailAddresses"];
|
|
}
|
|
if (!_isUndefined(obj["JobInfoDepartment"])) {
|
|
this._J = obj["JobInfoDepartment"];
|
|
}
|
|
if (!_isUndefined(obj["LinkedCompanyNames"])) {
|
|
this._L = obj["LinkedCompanyNames"];
|
|
}
|
|
if (!_isUndefined(obj["LinkedDepartments"])) {
|
|
this._Li = obj["LinkedDepartments"];
|
|
}
|
|
if (!_isUndefined(obj["LinkedOffices"])) {
|
|
this._Lin = obj["LinkedOffices"];
|
|
}
|
|
if (!_isUndefined(obj["LinkedTitles"])) {
|
|
this._Link = obj["LinkedTitles"];
|
|
}
|
|
if (!_isUndefined(obj["Notes"])) {
|
|
this._N = obj["Notes"];
|
|
}
|
|
if (!_isUndefined(obj["Office"])) {
|
|
this._O = obj["Office"];
|
|
}
|
|
if (!_isUndefined(obj["Phones"])) {
|
|
this._P = obj["Phones"];
|
|
}
|
|
if (!_isUndefined(obj["SipAddresses"])) {
|
|
this._S = obj["SipAddresses"];
|
|
}
|
|
if (!_isUndefined(obj["Title"])) {
|
|
this._T = obj["Title"];
|
|
}
|
|
if (!_isUndefined(obj["WebSites"])) {
|
|
this._W = obj["WebSites"];
|
|
}
|
|
};
|
|
PersonaInfoSource.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
PersonaInfoSource.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
PersonaInfoSource.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
PersonaInfoSource.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"addresses": this._A,
|
|
"birthday": this._B,
|
|
"birthdays": this._Bi,
|
|
"companyName": this._C,
|
|
"displayName": this._D,
|
|
"email": this._E,
|
|
"emailAddresses": this._Em,
|
|
"jobInfoDepartment": this._J,
|
|
"linkedCompanyNames": this._L,
|
|
"linkedDepartments": this._Li,
|
|
"linkedOffices": this._Lin,
|
|
"linkedTitles": this._Link,
|
|
"notes": this._N,
|
|
"office": this._O,
|
|
"phones": this._P,
|
|
"sipAddresses": this._S,
|
|
"title": this._T,
|
|
"webSites": this._W
|
|
}, {});
|
|
};
|
|
PersonaInfoSource.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
PersonaInfoSource.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return PersonaInfoSource;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.PersonaInfoSource = PersonaInfoSource;
|
|
var _typePersonaInfo = "PersonaInfo";
|
|
var PersonaInfo = (function (_super) {
|
|
__extends(PersonaInfo, _super);
|
|
function PersonaInfo() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(PersonaInfo.prototype, "_className", {
|
|
get: function () {
|
|
return "PersonaInfo";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["displayName", "email", "emailAddresses", "sipAddresses", "birthday", "birthdays", "title", "jobInfoDepartment", "companyName", "office", "linkedTitles", "linkedDepartments", "linkedCompanyNames", "linkedOffices", "webSites", "notes", "isPersonResolved"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["DisplayName", "Email", "EmailAddresses", "SipAddresses", "Birthday", "Birthdays", "Title", "JobInfoDepartment", "CompanyName", "Office", "LinkedTitles", "LinkedDepartments", "LinkedCompanyNames", "LinkedOffices", "WebSites", "Notes", "IsPersonResolved"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["sources"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "sources", {
|
|
get: function () {
|
|
if (!this._So) {
|
|
this._So = _createPropertyObject(OfficeCore.PersonaInfoSource, this, "Sources", false, 4);
|
|
}
|
|
return this._So;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "birthday", {
|
|
get: function () {
|
|
_throwIfNotLoaded("birthday", this._B, _typePersonaInfo, this._isNull);
|
|
return this._B;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "birthdays", {
|
|
get: function () {
|
|
_throwIfNotLoaded("birthdays", this._Bi, _typePersonaInfo, this._isNull);
|
|
return this._Bi;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "companyName", {
|
|
get: function () {
|
|
_throwIfNotLoaded("companyName", this._C, _typePersonaInfo, this._isNull);
|
|
return this._C;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "displayName", {
|
|
get: function () {
|
|
_throwIfNotLoaded("displayName", this._D, _typePersonaInfo, this._isNull);
|
|
return this._D;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "email", {
|
|
get: function () {
|
|
_throwIfNotLoaded("email", this._E, _typePersonaInfo, this._isNull);
|
|
return this._E;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "emailAddresses", {
|
|
get: function () {
|
|
_throwIfNotLoaded("emailAddresses", this._Em, _typePersonaInfo, this._isNull);
|
|
return this._Em;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "isPersonResolved", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isPersonResolved", this._I, _typePersonaInfo, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "jobInfoDepartment", {
|
|
get: function () {
|
|
_throwIfNotLoaded("jobInfoDepartment", this._J, _typePersonaInfo, this._isNull);
|
|
return this._J;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "linkedCompanyNames", {
|
|
get: function () {
|
|
_throwIfNotLoaded("linkedCompanyNames", this._L, _typePersonaInfo, this._isNull);
|
|
return this._L;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "linkedDepartments", {
|
|
get: function () {
|
|
_throwIfNotLoaded("linkedDepartments", this._Li, _typePersonaInfo, this._isNull);
|
|
return this._Li;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "linkedOffices", {
|
|
get: function () {
|
|
_throwIfNotLoaded("linkedOffices", this._Lin, _typePersonaInfo, this._isNull);
|
|
return this._Lin;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "linkedTitles", {
|
|
get: function () {
|
|
_throwIfNotLoaded("linkedTitles", this._Link, _typePersonaInfo, this._isNull);
|
|
return this._Link;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "notes", {
|
|
get: function () {
|
|
_throwIfNotLoaded("notes", this._N, _typePersonaInfo, this._isNull);
|
|
return this._N;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "office", {
|
|
get: function () {
|
|
_throwIfNotLoaded("office", this._O, _typePersonaInfo, this._isNull);
|
|
return this._O;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "sipAddresses", {
|
|
get: function () {
|
|
_throwIfNotLoaded("sipAddresses", this._S, _typePersonaInfo, this._isNull);
|
|
return this._S;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "title", {
|
|
get: function () {
|
|
_throwIfNotLoaded("title", this._T, _typePersonaInfo, this._isNull);
|
|
return this._T;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaInfo.prototype, "webSites", {
|
|
get: function () {
|
|
_throwIfNotLoaded("webSites", this._W, _typePersonaInfo, this._isNull);
|
|
return this._W;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaInfo.prototype.getAddresses = function () {
|
|
return _invokeMethod(this, "GetAddresses", 1, [], 4, 0);
|
|
};
|
|
PersonaInfo.prototype.getPhones = function () {
|
|
return _invokeMethod(this, "GetPhones", 1, [], 4, 0);
|
|
};
|
|
PersonaInfo.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Birthday"])) {
|
|
this._B = _adjustToDateTime(obj["Birthday"]);
|
|
}
|
|
if (!_isUndefined(obj["Birthdays"])) {
|
|
this._Bi = _adjustToDateTime(obj["Birthdays"]);
|
|
}
|
|
if (!_isUndefined(obj["CompanyName"])) {
|
|
this._C = obj["CompanyName"];
|
|
}
|
|
if (!_isUndefined(obj["DisplayName"])) {
|
|
this._D = obj["DisplayName"];
|
|
}
|
|
if (!_isUndefined(obj["Email"])) {
|
|
this._E = obj["Email"];
|
|
}
|
|
if (!_isUndefined(obj["EmailAddresses"])) {
|
|
this._Em = obj["EmailAddresses"];
|
|
}
|
|
if (!_isUndefined(obj["IsPersonResolved"])) {
|
|
this._I = obj["IsPersonResolved"];
|
|
}
|
|
if (!_isUndefined(obj["JobInfoDepartment"])) {
|
|
this._J = obj["JobInfoDepartment"];
|
|
}
|
|
if (!_isUndefined(obj["LinkedCompanyNames"])) {
|
|
this._L = obj["LinkedCompanyNames"];
|
|
}
|
|
if (!_isUndefined(obj["LinkedDepartments"])) {
|
|
this._Li = obj["LinkedDepartments"];
|
|
}
|
|
if (!_isUndefined(obj["LinkedOffices"])) {
|
|
this._Lin = obj["LinkedOffices"];
|
|
}
|
|
if (!_isUndefined(obj["LinkedTitles"])) {
|
|
this._Link = obj["LinkedTitles"];
|
|
}
|
|
if (!_isUndefined(obj["Notes"])) {
|
|
this._N = obj["Notes"];
|
|
}
|
|
if (!_isUndefined(obj["Office"])) {
|
|
this._O = obj["Office"];
|
|
}
|
|
if (!_isUndefined(obj["SipAddresses"])) {
|
|
this._S = obj["SipAddresses"];
|
|
}
|
|
if (!_isUndefined(obj["Title"])) {
|
|
this._T = obj["Title"];
|
|
}
|
|
if (!_isUndefined(obj["WebSites"])) {
|
|
this._W = obj["WebSites"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["sources", "Sources"]);
|
|
};
|
|
PersonaInfo.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
PersonaInfo.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
PersonaInfo.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
if (!_isUndefined(obj["Birthday"])) {
|
|
obj["birthday"] = _adjustToDateTime(obj["birthday"]);
|
|
}
|
|
if (!_isUndefined(obj["Birthdays"])) {
|
|
obj["birthdays"] = _adjustToDateTime(obj["birthdays"]);
|
|
}
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
PersonaInfo.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"birthday": this._B,
|
|
"birthdays": this._Bi,
|
|
"companyName": this._C,
|
|
"displayName": this._D,
|
|
"email": this._E,
|
|
"emailAddresses": this._Em,
|
|
"isPersonResolved": this._I,
|
|
"jobInfoDepartment": this._J,
|
|
"linkedCompanyNames": this._L,
|
|
"linkedDepartments": this._Li,
|
|
"linkedOffices": this._Lin,
|
|
"linkedTitles": this._Link,
|
|
"notes": this._N,
|
|
"office": this._O,
|
|
"sipAddresses": this._S,
|
|
"title": this._T,
|
|
"webSites": this._W
|
|
}, {
|
|
"sources": this._So
|
|
});
|
|
};
|
|
PersonaInfo.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
PersonaInfo.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return PersonaInfo;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.PersonaInfo = PersonaInfo;
|
|
var _typePersonaUnifiedCommunicationInfo = "PersonaUnifiedCommunicationInfo";
|
|
var PersonaUnifiedCommunicationInfo = (function (_super) {
|
|
__extends(PersonaUnifiedCommunicationInfo, _super);
|
|
function PersonaUnifiedCommunicationInfo() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "_className", {
|
|
get: function () {
|
|
return "PersonaUnifiedCommunicationInfo";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["availability", "status", "isSelf", "isTagged", "customStatusString", "isBlocked", "presenceTooltip", "isOutOfOffice", "outOfOfficeNote", "timezone", "meetingLocation", "meetingSubject", "timezoneBias", "idleStartTime", "overallCapability", "isOnBuddyList", "presenceNote", "voiceMailUri", "availabilityText", "availabilityTooltip", "isDurationInAvailabilityText", "freeBusyStatus", "calendarState", "presence"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Availability", "Status", "IsSelf", "IsTagged", "CustomStatusString", "IsBlocked", "PresenceTooltip", "IsOutOfOffice", "OutOfOfficeNote", "Timezone", "MeetingLocation", "MeetingSubject", "TimezoneBias", "IdleStartTime", "OverallCapability", "IsOnBuddyList", "PresenceNote", "VoiceMailUri", "AvailabilityText", "AvailabilityTooltip", "IsDurationInAvailabilityText", "FreeBusyStatus", "CalendarState", "Presence"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "availability", {
|
|
get: function () {
|
|
_throwIfNotLoaded("availability", this._A, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._A;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "availabilityText", {
|
|
get: function () {
|
|
_throwIfNotLoaded("availabilityText", this._Av, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Av;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "availabilityTooltip", {
|
|
get: function () {
|
|
_throwIfNotLoaded("availabilityTooltip", this._Ava, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Ava;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "calendarState", {
|
|
get: function () {
|
|
_throwIfNotLoaded("calendarState", this._C, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._C;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "customStatusString", {
|
|
get: function () {
|
|
_throwIfNotLoaded("customStatusString", this._Cu, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Cu;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "freeBusyStatus", {
|
|
get: function () {
|
|
_throwIfNotLoaded("freeBusyStatus", this._F, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._F;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "idleStartTime", {
|
|
get: function () {
|
|
_throwIfNotLoaded("idleStartTime", this._I, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "isBlocked", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isBlocked", this._Is, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Is;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "isDurationInAvailabilityText", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isDurationInAvailabilityText", this._IsD, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._IsD;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "isOnBuddyList", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isOnBuddyList", this._IsO, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._IsO;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "isOutOfOffice", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isOutOfOffice", this._IsOu, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._IsOu;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "isSelf", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isSelf", this._IsS, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._IsS;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "isTagged", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isTagged", this._IsT, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._IsT;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "meetingLocation", {
|
|
get: function () {
|
|
_throwIfNotLoaded("meetingLocation", this._M, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._M;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "meetingSubject", {
|
|
get: function () {
|
|
_throwIfNotLoaded("meetingSubject", this._Me, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Me;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "outOfOfficeNote", {
|
|
get: function () {
|
|
_throwIfNotLoaded("outOfOfficeNote", this._O, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._O;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "overallCapability", {
|
|
get: function () {
|
|
_throwIfNotLoaded("overallCapability", this._Ov, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Ov;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "presence", {
|
|
get: function () {
|
|
_throwIfNotLoaded("presence", this._P, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._P;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "presenceNote", {
|
|
get: function () {
|
|
_throwIfNotLoaded("presenceNote", this._Pr, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Pr;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "presenceTooltip", {
|
|
get: function () {
|
|
_throwIfNotLoaded("presenceTooltip", this._Pre, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Pre;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "status", {
|
|
get: function () {
|
|
_throwIfNotLoaded("status", this._S, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._S;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "timezone", {
|
|
get: function () {
|
|
_throwIfNotLoaded("timezone", this._T, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._T;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "timezoneBias", {
|
|
get: function () {
|
|
_throwIfNotLoaded("timezoneBias", this._Ti, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._Ti;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaUnifiedCommunicationInfo.prototype, "voiceMailUri", {
|
|
get: function () {
|
|
_throwIfNotLoaded("voiceMailUri", this._V, _typePersonaUnifiedCommunicationInfo, this._isNull);
|
|
return this._V;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaUnifiedCommunicationInfo.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Availability"])) {
|
|
this._A = obj["Availability"];
|
|
}
|
|
if (!_isUndefined(obj["AvailabilityText"])) {
|
|
this._Av = obj["AvailabilityText"];
|
|
}
|
|
if (!_isUndefined(obj["AvailabilityTooltip"])) {
|
|
this._Ava = obj["AvailabilityTooltip"];
|
|
}
|
|
if (!_isUndefined(obj["CalendarState"])) {
|
|
this._C = obj["CalendarState"];
|
|
}
|
|
if (!_isUndefined(obj["CustomStatusString"])) {
|
|
this._Cu = obj["CustomStatusString"];
|
|
}
|
|
if (!_isUndefined(obj["FreeBusyStatus"])) {
|
|
this._F = obj["FreeBusyStatus"];
|
|
}
|
|
if (!_isUndefined(obj["IdleStartTime"])) {
|
|
this._I = _adjustToDateTime(obj["IdleStartTime"]);
|
|
}
|
|
if (!_isUndefined(obj["IsBlocked"])) {
|
|
this._Is = obj["IsBlocked"];
|
|
}
|
|
if (!_isUndefined(obj["IsDurationInAvailabilityText"])) {
|
|
this._IsD = obj["IsDurationInAvailabilityText"];
|
|
}
|
|
if (!_isUndefined(obj["IsOnBuddyList"])) {
|
|
this._IsO = obj["IsOnBuddyList"];
|
|
}
|
|
if (!_isUndefined(obj["IsOutOfOffice"])) {
|
|
this._IsOu = obj["IsOutOfOffice"];
|
|
}
|
|
if (!_isUndefined(obj["IsSelf"])) {
|
|
this._IsS = obj["IsSelf"];
|
|
}
|
|
if (!_isUndefined(obj["IsTagged"])) {
|
|
this._IsT = obj["IsTagged"];
|
|
}
|
|
if (!_isUndefined(obj["MeetingLocation"])) {
|
|
this._M = obj["MeetingLocation"];
|
|
}
|
|
if (!_isUndefined(obj["MeetingSubject"])) {
|
|
this._Me = obj["MeetingSubject"];
|
|
}
|
|
if (!_isUndefined(obj["OutOfOfficeNote"])) {
|
|
this._O = obj["OutOfOfficeNote"];
|
|
}
|
|
if (!_isUndefined(obj["OverallCapability"])) {
|
|
this._Ov = obj["OverallCapability"];
|
|
}
|
|
if (!_isUndefined(obj["Presence"])) {
|
|
this._P = obj["Presence"];
|
|
}
|
|
if (!_isUndefined(obj["PresenceNote"])) {
|
|
this._Pr = obj["PresenceNote"];
|
|
}
|
|
if (!_isUndefined(obj["PresenceTooltip"])) {
|
|
this._Pre = obj["PresenceTooltip"];
|
|
}
|
|
if (!_isUndefined(obj["Status"])) {
|
|
this._S = obj["Status"];
|
|
}
|
|
if (!_isUndefined(obj["Timezone"])) {
|
|
this._T = obj["Timezone"];
|
|
}
|
|
if (!_isUndefined(obj["TimezoneBias"])) {
|
|
this._Ti = obj["TimezoneBias"];
|
|
}
|
|
if (!_isUndefined(obj["VoiceMailUri"])) {
|
|
this._V = obj["VoiceMailUri"];
|
|
}
|
|
};
|
|
PersonaUnifiedCommunicationInfo.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
PersonaUnifiedCommunicationInfo.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
PersonaUnifiedCommunicationInfo.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
if (!_isUndefined(obj["IdleStartTime"])) {
|
|
obj["idleStartTime"] = _adjustToDateTime(obj["idleStartTime"]);
|
|
}
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
PersonaUnifiedCommunicationInfo.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"availability": this._A,
|
|
"availabilityText": this._Av,
|
|
"availabilityTooltip": this._Ava,
|
|
"calendarState": this._C,
|
|
"customStatusString": this._Cu,
|
|
"freeBusyStatus": this._F,
|
|
"idleStartTime": this._I,
|
|
"isBlocked": this._Is,
|
|
"isDurationInAvailabilityText": this._IsD,
|
|
"isOnBuddyList": this._IsO,
|
|
"isOutOfOffice": this._IsOu,
|
|
"isSelf": this._IsS,
|
|
"isTagged": this._IsT,
|
|
"meetingLocation": this._M,
|
|
"meetingSubject": this._Me,
|
|
"outOfOfficeNote": this._O,
|
|
"overallCapability": this._Ov,
|
|
"presence": this._P,
|
|
"presenceNote": this._Pr,
|
|
"presenceTooltip": this._Pre,
|
|
"status": this._S,
|
|
"timezone": this._T,
|
|
"timezoneBias": this._Ti,
|
|
"voiceMailUri": this._V
|
|
}, {});
|
|
};
|
|
PersonaUnifiedCommunicationInfo.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
PersonaUnifiedCommunicationInfo.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return PersonaUnifiedCommunicationInfo;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.PersonaUnifiedCommunicationInfo = PersonaUnifiedCommunicationInfo;
|
|
var _typePersonaPhotoInfo = "PersonaPhotoInfo";
|
|
var PersonaPhotoInfo = (function (_super) {
|
|
__extends(PersonaPhotoInfo, _super);
|
|
function PersonaPhotoInfo() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(PersonaPhotoInfo.prototype, "_className", {
|
|
get: function () {
|
|
return "PersonaPhotoInfo";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaPhotoInfo.prototype.getImageUri = function (uriScheme) {
|
|
return _invokeMethod(this, "getImageUri", 1, [uriScheme], 4, 0);
|
|
};
|
|
PersonaPhotoInfo.prototype.getImageUriWithMetadata = function (uriScheme) {
|
|
return _invokeMethod(this, "getImageUriWithMetadata", 1, [uriScheme], 4, 0);
|
|
};
|
|
PersonaPhotoInfo.prototype.getPlaceholderUri = function (uriScheme) {
|
|
return _invokeMethod(this, "getPlaceholderUri", 1, [uriScheme], 4, 0);
|
|
};
|
|
PersonaPhotoInfo.prototype.setPlaceholderColor = function (color) {
|
|
_invokeMethod(this, "setPlaceholderColor", 0, [color], 0, 0);
|
|
};
|
|
PersonaPhotoInfo.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
PersonaPhotoInfo.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
PersonaPhotoInfo.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return PersonaPhotoInfo;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.PersonaPhotoInfo = PersonaPhotoInfo;
|
|
var _typePersonaCollection = "PersonaCollection";
|
|
var PersonaCollection = (function (_super) {
|
|
__extends(PersonaCollection, _super);
|
|
function PersonaCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(PersonaCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "PersonaCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaCollection.prototype, "_isCollection", {
|
|
get: function () {
|
|
return true;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaCollection.prototype, "items", {
|
|
get: function () {
|
|
_throwIfNotLoaded("items", this.m__items, _typePersonaCollection, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaCollection.prototype.getCount = function () {
|
|
return _invokeMethod(this, "GetCount", 1, [], 4, 0);
|
|
};
|
|
PersonaCollection.prototype.getItem = function (index) {
|
|
return _createIndexerObject(OfficeCore.Persona, this, [index]);
|
|
};
|
|
PersonaCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isNullOrUndefined(obj[OfficeExtension.Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = obj[OfficeExtension.Constants.items];
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = _createChildItemObject(OfficeCore.Persona, true, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
};
|
|
PersonaCollection.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
PersonaCollection.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
PersonaCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
var _this = this;
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result, function (childItemData, index) { return _createChildItemObject(OfficeCore.Persona, true, _this, childItemData, index); });
|
|
};
|
|
PersonaCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {}, this.m__items);
|
|
};
|
|
PersonaCollection.prototype.setMockData = function (data) {
|
|
var _this = this;
|
|
_setMockData(this, data, function (childItemData, index) { return _createChildItemObject(OfficeCore.Persona, true, _this, childItemData, index); }, function (items) { return _this.m__items = items; });
|
|
};
|
|
return PersonaCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.PersonaCollection = PersonaCollection;
|
|
var _typePersonaOrganizationInfo = "PersonaOrganizationInfo";
|
|
var PersonaOrganizationInfo = (function (_super) {
|
|
__extends(PersonaOrganizationInfo, _super);
|
|
function PersonaOrganizationInfo() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "_className", {
|
|
get: function () {
|
|
return "PersonaOrganizationInfo";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["isWarmedUp", "isWarmingUp"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["IsWarmedUp", "IsWarmingUp"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["hierarchy", "manager", "directReports"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "directReports", {
|
|
get: function () {
|
|
if (!this._D) {
|
|
this._D = _createPropertyObject(OfficeCore.PersonaCollection, this, "DirectReports", true, 4);
|
|
}
|
|
return this._D;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "hierarchy", {
|
|
get: function () {
|
|
if (!this._H) {
|
|
this._H = _createPropertyObject(OfficeCore.PersonaCollection, this, "Hierarchy", true, 4);
|
|
}
|
|
return this._H;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "manager", {
|
|
get: function () {
|
|
if (!this._M) {
|
|
this._M = _createPropertyObject(OfficeCore.Persona, this, "Manager", false, 4);
|
|
}
|
|
return this._M;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "isWarmedUp", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isWarmedUp", this._I, _typePersonaOrganizationInfo, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaOrganizationInfo.prototype, "isWarmingUp", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isWarmingUp", this._Is, _typePersonaOrganizationInfo, this._isNull);
|
|
return this._Is;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaOrganizationInfo.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["IsWarmedUp"])) {
|
|
this._I = obj["IsWarmedUp"];
|
|
}
|
|
if (!_isUndefined(obj["IsWarmingUp"])) {
|
|
this._Is = obj["IsWarmingUp"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["directReports", "DirectReports", "hierarchy", "Hierarchy", "manager", "Manager"]);
|
|
};
|
|
PersonaOrganizationInfo.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
PersonaOrganizationInfo.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
PersonaOrganizationInfo.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
PersonaOrganizationInfo.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"isWarmedUp": this._I,
|
|
"isWarmingUp": this._Is
|
|
}, {});
|
|
};
|
|
PersonaOrganizationInfo.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
PersonaOrganizationInfo.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return PersonaOrganizationInfo;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.PersonaOrganizationInfo = PersonaOrganizationInfo;
|
|
var CustomizedData;
|
|
(function (CustomizedData) {
|
|
CustomizedData["email"] = "Email";
|
|
CustomizedData["workPhone"] = "WorkPhone";
|
|
CustomizedData["workPhone2"] = "WorkPhone2";
|
|
CustomizedData["workFax"] = "WorkFax";
|
|
CustomizedData["mobilePhone"] = "MobilePhone";
|
|
CustomizedData["homePhone"] = "HomePhone";
|
|
CustomizedData["homePhone2"] = "HomePhone2";
|
|
CustomizedData["otherPhone"] = "OtherPhone";
|
|
CustomizedData["sipAddress"] = "SipAddress";
|
|
CustomizedData["profile"] = "Profile";
|
|
CustomizedData["office"] = "Office";
|
|
CustomizedData["company"] = "Company";
|
|
CustomizedData["workAddress"] = "WorkAddress";
|
|
CustomizedData["homeAddress"] = "HomeAddress";
|
|
CustomizedData["otherAddress"] = "OtherAddress";
|
|
CustomizedData["birthday"] = "Birthday";
|
|
})(CustomizedData = OfficeCore.CustomizedData || (OfficeCore.CustomizedData = {}));
|
|
var _typeUnifiedGroupInfo = "UnifiedGroupInfo";
|
|
var UnifiedGroupInfo = (function (_super) {
|
|
__extends(UnifiedGroupInfo, _super);
|
|
function UnifiedGroupInfo() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "_className", {
|
|
get: function () {
|
|
return "UnifiedGroupInfo";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["description", "oneDrive", "oneNote", "isPublic", "amIOwner", "amIMember", "amISubscribed", "memberCount", "ownerCount", "hasGuests", "site", "planner", "classification", "subscriptionEnabled"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Description", "OneDrive", "OneNote", "IsPublic", "AmIOwner", "AmIMember", "AmISubscribed", "MemberCount", "OwnerCount", "HasGuests", "Site", "Planner", "Classification", "SubscriptionEnabled"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "_scalarPropertyUpdateable", {
|
|
get: function () {
|
|
return [true, true, true, true, true, true, true, true, true, true, true, true, true, true];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "amIMember", {
|
|
get: function () {
|
|
_throwIfNotLoaded("amIMember", this._A, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._A;
|
|
},
|
|
set: function (value) {
|
|
this._A = value;
|
|
_invokeSetProperty(this, "AmIMember", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "amIOwner", {
|
|
get: function () {
|
|
_throwIfNotLoaded("amIOwner", this._Am, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._Am;
|
|
},
|
|
set: function (value) {
|
|
this._Am = value;
|
|
_invokeSetProperty(this, "AmIOwner", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "amISubscribed", {
|
|
get: function () {
|
|
_throwIfNotLoaded("amISubscribed", this._AmI, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._AmI;
|
|
},
|
|
set: function (value) {
|
|
this._AmI = value;
|
|
_invokeSetProperty(this, "AmISubscribed", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "classification", {
|
|
get: function () {
|
|
_throwIfNotLoaded("classification", this._C, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._C;
|
|
},
|
|
set: function (value) {
|
|
this._C = value;
|
|
_invokeSetProperty(this, "Classification", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "description", {
|
|
get: function () {
|
|
_throwIfNotLoaded("description", this._D, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._D;
|
|
},
|
|
set: function (value) {
|
|
this._D = value;
|
|
_invokeSetProperty(this, "Description", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "hasGuests", {
|
|
get: function () {
|
|
_throwIfNotLoaded("hasGuests", this._H, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._H;
|
|
},
|
|
set: function (value) {
|
|
this._H = value;
|
|
_invokeSetProperty(this, "HasGuests", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "isPublic", {
|
|
get: function () {
|
|
_throwIfNotLoaded("isPublic", this._I, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._I;
|
|
},
|
|
set: function (value) {
|
|
this._I = value;
|
|
_invokeSetProperty(this, "IsPublic", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "memberCount", {
|
|
get: function () {
|
|
_throwIfNotLoaded("memberCount", this._M, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._M;
|
|
},
|
|
set: function (value) {
|
|
this._M = value;
|
|
_invokeSetProperty(this, "MemberCount", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "oneDrive", {
|
|
get: function () {
|
|
_throwIfNotLoaded("oneDrive", this._O, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._O;
|
|
},
|
|
set: function (value) {
|
|
this._O = value;
|
|
_invokeSetProperty(this, "OneDrive", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "oneNote", {
|
|
get: function () {
|
|
_throwIfNotLoaded("oneNote", this._On, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._On;
|
|
},
|
|
set: function (value) {
|
|
this._On = value;
|
|
_invokeSetProperty(this, "OneNote", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "ownerCount", {
|
|
get: function () {
|
|
_throwIfNotLoaded("ownerCount", this._Ow, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._Ow;
|
|
},
|
|
set: function (value) {
|
|
this._Ow = value;
|
|
_invokeSetProperty(this, "OwnerCount", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "planner", {
|
|
get: function () {
|
|
_throwIfNotLoaded("planner", this._P, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._P;
|
|
},
|
|
set: function (value) {
|
|
this._P = value;
|
|
_invokeSetProperty(this, "Planner", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "site", {
|
|
get: function () {
|
|
_throwIfNotLoaded("site", this._S, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._S;
|
|
},
|
|
set: function (value) {
|
|
this._S = value;
|
|
_invokeSetProperty(this, "Site", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(UnifiedGroupInfo.prototype, "subscriptionEnabled", {
|
|
get: function () {
|
|
_throwIfNotLoaded("subscriptionEnabled", this._Su, _typeUnifiedGroupInfo, this._isNull);
|
|
return this._Su;
|
|
},
|
|
set: function (value) {
|
|
this._Su = value;
|
|
_invokeSetProperty(this, "SubscriptionEnabled", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
UnifiedGroupInfo.prototype.set = function (properties, options) {
|
|
this._recursivelySet(properties, options, ["description", "oneDrive", "oneNote", "isPublic", "amIOwner", "amIMember", "amISubscribed", "memberCount", "ownerCount", "hasGuests", "site", "planner", "classification", "subscriptionEnabled"], [], []);
|
|
};
|
|
UnifiedGroupInfo.prototype.update = function (properties) {
|
|
this._recursivelyUpdate(properties);
|
|
};
|
|
UnifiedGroupInfo.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["AmIMember"])) {
|
|
this._A = obj["AmIMember"];
|
|
}
|
|
if (!_isUndefined(obj["AmIOwner"])) {
|
|
this._Am = obj["AmIOwner"];
|
|
}
|
|
if (!_isUndefined(obj["AmISubscribed"])) {
|
|
this._AmI = obj["AmISubscribed"];
|
|
}
|
|
if (!_isUndefined(obj["Classification"])) {
|
|
this._C = obj["Classification"];
|
|
}
|
|
if (!_isUndefined(obj["Description"])) {
|
|
this._D = obj["Description"];
|
|
}
|
|
if (!_isUndefined(obj["HasGuests"])) {
|
|
this._H = obj["HasGuests"];
|
|
}
|
|
if (!_isUndefined(obj["IsPublic"])) {
|
|
this._I = obj["IsPublic"];
|
|
}
|
|
if (!_isUndefined(obj["MemberCount"])) {
|
|
this._M = obj["MemberCount"];
|
|
}
|
|
if (!_isUndefined(obj["OneDrive"])) {
|
|
this._O = obj["OneDrive"];
|
|
}
|
|
if (!_isUndefined(obj["OneNote"])) {
|
|
this._On = obj["OneNote"];
|
|
}
|
|
if (!_isUndefined(obj["OwnerCount"])) {
|
|
this._Ow = obj["OwnerCount"];
|
|
}
|
|
if (!_isUndefined(obj["Planner"])) {
|
|
this._P = obj["Planner"];
|
|
}
|
|
if (!_isUndefined(obj["Site"])) {
|
|
this._S = obj["Site"];
|
|
}
|
|
if (!_isUndefined(obj["SubscriptionEnabled"])) {
|
|
this._Su = obj["SubscriptionEnabled"];
|
|
}
|
|
};
|
|
UnifiedGroupInfo.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
UnifiedGroupInfo.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
UnifiedGroupInfo.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
UnifiedGroupInfo.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"amIMember": this._A,
|
|
"amIOwner": this._Am,
|
|
"amISubscribed": this._AmI,
|
|
"classification": this._C,
|
|
"description": this._D,
|
|
"hasGuests": this._H,
|
|
"isPublic": this._I,
|
|
"memberCount": this._M,
|
|
"oneDrive": this._O,
|
|
"oneNote": this._On,
|
|
"ownerCount": this._Ow,
|
|
"planner": this._P,
|
|
"site": this._S,
|
|
"subscriptionEnabled": this._Su
|
|
}, {});
|
|
};
|
|
UnifiedGroupInfo.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
UnifiedGroupInfo.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return UnifiedGroupInfo;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.UnifiedGroupInfo = UnifiedGroupInfo;
|
|
var _typePersona = "Persona";
|
|
var PersonaPromiseType;
|
|
(function (PersonaPromiseType) {
|
|
PersonaPromiseType[PersonaPromiseType["immediate"] = 0] = "immediate";
|
|
PersonaPromiseType[PersonaPromiseType["load"] = 3] = "load";
|
|
})(PersonaPromiseType = OfficeCore.PersonaPromiseType || (OfficeCore.PersonaPromiseType = {}));
|
|
var PersonaInfoAndSource = (function () {
|
|
function PersonaInfoAndSource() {
|
|
}
|
|
return PersonaInfoAndSource;
|
|
}());
|
|
OfficeCore.PersonaInfoAndSource = PersonaInfoAndSource;
|
|
;
|
|
var Persona = (function (_super) {
|
|
__extends(Persona, _super);
|
|
function Persona() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Persona.prototype, "_className", {
|
|
get: function () {
|
|
return "Persona";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["hostId", "type", "capabilities", "diagnosticId", "instanceId"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["HostId", "Type", "Capabilities", "DiagnosticId", "InstanceId"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["photo", "personaInfo", "unifiedCommunicationInfo", "organization", "unifiedGroupInfo", "actions"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "actions", {
|
|
get: function () {
|
|
if (!this._A) {
|
|
this._A = _createPropertyObject(OfficeCore.PersonaActions, this, "Actions", false, 4);
|
|
}
|
|
return this._A;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "organization", {
|
|
get: function () {
|
|
if (!this._O) {
|
|
this._O = _createPropertyObject(OfficeCore.PersonaOrganizationInfo, this, "Organization", false, 4);
|
|
}
|
|
return this._O;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "personaInfo", {
|
|
get: function () {
|
|
if (!this._P) {
|
|
this._P = _createPropertyObject(OfficeCore.PersonaInfo, this, "PersonaInfo", false, 4);
|
|
}
|
|
return this._P;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "photo", {
|
|
get: function () {
|
|
if (!this._Ph) {
|
|
this._Ph = _createPropertyObject(OfficeCore.PersonaPhotoInfo, this, "Photo", false, 4);
|
|
}
|
|
return this._Ph;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "unifiedCommunicationInfo", {
|
|
get: function () {
|
|
if (!this._U) {
|
|
this._U = _createPropertyObject(OfficeCore.PersonaUnifiedCommunicationInfo, this, "UnifiedCommunicationInfo", false, 4);
|
|
}
|
|
return this._U;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "unifiedGroupInfo", {
|
|
get: function () {
|
|
if (!this._Un) {
|
|
this._Un = _createPropertyObject(OfficeCore.UnifiedGroupInfo, this, "UnifiedGroupInfo", false, 4);
|
|
}
|
|
return this._Un;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "capabilities", {
|
|
get: function () {
|
|
_throwIfNotLoaded("capabilities", this._C, _typePersona, this._isNull);
|
|
return this._C;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "diagnosticId", {
|
|
get: function () {
|
|
_throwIfNotLoaded("diagnosticId", this._D, _typePersona, this._isNull);
|
|
return this._D;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "hostId", {
|
|
get: function () {
|
|
_throwIfNotLoaded("hostId", this._H, _typePersona, this._isNull);
|
|
return this._H;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "instanceId", {
|
|
get: function () {
|
|
_throwIfNotLoaded("instanceId", this._I, _typePersona, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Persona.prototype, "type", {
|
|
get: function () {
|
|
_throwIfNotLoaded("type", this._T, _typePersona, this._isNull);
|
|
return this._T;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Persona.prototype.set = function (properties, options) {
|
|
this._recursivelySet(properties, options, [], ["unifiedGroupInfo"], [
|
|
"actions",
|
|
"organization",
|
|
"personaInfo",
|
|
"photo",
|
|
"unifiedCommunicationInfo"
|
|
]);
|
|
};
|
|
Persona.prototype.update = function (properties) {
|
|
this._recursivelyUpdate(properties);
|
|
};
|
|
Persona.prototype.dispose = function () {
|
|
_invokeMethod(this, "Dispose", 0, [], 0, 0);
|
|
};
|
|
Persona.prototype.getCustomizations = function () {
|
|
return _invokeMethod(this, "GetCustomizations", 1, [], 4, 0);
|
|
};
|
|
Persona.prototype.getMembers = function () {
|
|
return _createMethodObject(OfficeCore.MemberInfoList, this, "GetMembers", 1, [], false, false, null, 4);
|
|
};
|
|
Persona.prototype.getMembership = function () {
|
|
return _createMethodObject(OfficeCore.MemberInfoList, this, "GetMembership", 1, [], false, false, null, 4);
|
|
};
|
|
Persona.prototype.getViewableSources = function () {
|
|
return _invokeMethod(this, "GetViewableSources", 1, [], 4, 0);
|
|
};
|
|
Persona.prototype.reportTimeForRender = function (perfpoint, millisecUTC) {
|
|
_invokeMethod(this, "ReportTimeForRender", 0, [perfpoint, millisecUTC], 0, 0);
|
|
};
|
|
Persona.prototype.warmup = function (dataToWarmUp) {
|
|
_invokeMethod(this, "Warmup", 0, [dataToWarmUp], 0, 0);
|
|
};
|
|
Persona.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Capabilities"])) {
|
|
this._C = obj["Capabilities"];
|
|
}
|
|
if (!_isUndefined(obj["DiagnosticId"])) {
|
|
this._D = obj["DiagnosticId"];
|
|
}
|
|
if (!_isUndefined(obj["HostId"])) {
|
|
this._H = obj["HostId"];
|
|
}
|
|
if (!_isUndefined(obj["InstanceId"])) {
|
|
this._I = obj["InstanceId"];
|
|
}
|
|
if (!_isUndefined(obj["Type"])) {
|
|
this._T = obj["Type"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["actions", "Actions", "organization", "Organization", "personaInfo", "PersonaInfo", "photo", "Photo", "unifiedCommunicationInfo", "UnifiedCommunicationInfo", "unifiedGroupInfo", "UnifiedGroupInfo"]);
|
|
};
|
|
Persona.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
Persona.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
Persona.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Persona.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"capabilities": this._C,
|
|
"diagnosticId": this._D,
|
|
"hostId": this._H,
|
|
"instanceId": this._I,
|
|
"type": this._T
|
|
}, {
|
|
"organization": this._O,
|
|
"personaInfo": this._P,
|
|
"unifiedCommunicationInfo": this._U,
|
|
"unifiedGroupInfo": this._Un
|
|
});
|
|
};
|
|
Persona.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
Persona.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return Persona;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.Persona = Persona;
|
|
var PersonaCustom = (function () {
|
|
function PersonaCustom() {
|
|
}
|
|
PersonaCustom.prototype.performAsyncOperation = function (type, waitFor, action, check) {
|
|
var _this = this;
|
|
if (type == PersonaPromiseType.immediate) {
|
|
action();
|
|
return;
|
|
}
|
|
check().then(function (isWarmedUp) {
|
|
if (isWarmedUp) {
|
|
action();
|
|
}
|
|
else {
|
|
var persona = _this;
|
|
persona.load("hostId");
|
|
persona.context.sync().then(function () {
|
|
var hostId = persona.hostId;
|
|
_this.getPersonaLifetime().then(function (personaLifetime) {
|
|
var eventHandler = function (args) {
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
if (args.sendingPersonaHostId == hostId) {
|
|
for (var index = 0; index < args.dataUpdated.length; ++index) {
|
|
var updated = args.dataUpdated[index];
|
|
if (waitFor == updated) {
|
|
check().then(function (isWarmedUp) {
|
|
if (isWarmedUp) {
|
|
action();
|
|
personaLifetime.onPersonaUpdated.remove(eventHandler);
|
|
persona.context.sync();
|
|
}
|
|
resolve(isWarmedUp);
|
|
});
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
resolve(false);
|
|
});
|
|
};
|
|
personaLifetime.onPersonaUpdated.add(eventHandler);
|
|
persona.context.sync();
|
|
});
|
|
});
|
|
}
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getOrganizationAsync = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
var organization = persona.organization;
|
|
organization.load("*");
|
|
persona.context.sync().then(function () {
|
|
resolve(organization);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return new OfficeExtension.CoreUtility.Promise(function (isWarmedUpResolve, isWarmedUpReject) {
|
|
var organization = persona.organization;
|
|
organization.load("isWarmedUp");
|
|
persona.context.sync().then(function () {
|
|
isWarmedUpResolve(organization.isWarmedUp);
|
|
});
|
|
});
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.organization, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getIsPersonaInfoResolvedCheck = function () {
|
|
var persona = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var info = persona.personaInfo;
|
|
info.load("isPersonResolved");
|
|
persona.context.sync().then(function () {
|
|
resolve(info.isPersonResolved);
|
|
});
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getPersonaInfoAsync = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
var info = persona.personaInfo;
|
|
info.load();
|
|
persona.context.sync().then(function () {
|
|
resolve(info);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return _this.getIsPersonaInfoResolvedCheck();
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.personaInfo, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getPersonaInfoWithSourceAsync = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
var result = new PersonaInfoAndSource();
|
|
result.info = persona.personaInfo;
|
|
result.info.load();
|
|
result.source = persona.personaInfo.sources;
|
|
result.source.load();
|
|
persona.context.sync().then(function () {
|
|
resolve(result);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return _this.getIsPersonaInfoResolvedCheck();
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.personaInfo, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getUnifiedCommunicationInfo = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
var ucInfo = persona.unifiedCommunicationInfo;
|
|
ucInfo.load("*");
|
|
persona.context.sync().then(function () {
|
|
resolve(ucInfo);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return _this.getIsPersonaInfoResolvedCheck();
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.personaInfo, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getUnifiedGroupInfoAsync = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
var group = persona.unifiedGroupInfo;
|
|
group.load("*");
|
|
persona.context.sync().then(function () {
|
|
resolve(group);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return _this.getIsPersonaInfoResolvedCheck();
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.personaInfo, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getTypeAsync = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
persona.load("type");
|
|
persona.context.sync().then(function () {
|
|
resolve(OfficeCore.PersonaType[persona.type.valueOf()]);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return _this.getIsPersonaInfoResolvedCheck();
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.personaInfo, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getCustomizationsAsync = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
var customizations = persona.getCustomizations();
|
|
persona.context.sync().then(function () {
|
|
resolve(customizations.value);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return _this.getIsPersonaInfoResolvedCheck();
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.personaInfo, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getMembersAsync = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, rejcet) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
var members = persona.getMembers();
|
|
members.load("isWarmedUp");
|
|
persona.context.sync().then(function () {
|
|
resolve(members);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return new OfficeExtension.CoreUtility.Promise(function (isWarmedUpResolve, isWarmedUpReject) {
|
|
var members = persona.getMembers();
|
|
members.load("isWarmedUp");
|
|
persona.context.sync().then(function () {
|
|
isWarmedUpResolve(members.isWarmedUp);
|
|
});
|
|
});
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.members, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getMembershipAsync = function (type) {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
var action = function () {
|
|
var membership = persona.getMembership();
|
|
membership.load("*");
|
|
persona.context.sync().then(function () {
|
|
resolve(membership);
|
|
});
|
|
};
|
|
var check = function () {
|
|
return new OfficeExtension.CoreUtility.Promise(function (isWarmedUpResolve) {
|
|
var membership = persona.getMembership();
|
|
membership.load("isWarmedUp");
|
|
persona.context.sync().then(function () {
|
|
isWarmedUpResolve(membership.isWarmedUp);
|
|
});
|
|
});
|
|
};
|
|
_this.performAsyncOperation(type, PersonaDataUpdated.membership, action, check);
|
|
});
|
|
};
|
|
PersonaCustom.prototype.getPersonaLifetime = function () {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this;
|
|
persona.load("instanceId");
|
|
persona.context.sync().then(function () {
|
|
var peopleApi = new PeopleApiContext(persona.context, persona.instanceId);
|
|
peopleApi.getPersonaLifetime().then(function (lifetime) {
|
|
resolve(lifetime);
|
|
});
|
|
});
|
|
});
|
|
};
|
|
return PersonaCustom;
|
|
}());
|
|
OfficeCore.PersonaCustom = PersonaCustom;
|
|
OfficeExtension.Utility.applyMixin(Persona, PersonaCustom);
|
|
var _typePersonaLifetime = "PersonaLifetime";
|
|
var PersonaLifetime = (function (_super) {
|
|
__extends(PersonaLifetime, _super);
|
|
function PersonaLifetime() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(PersonaLifetime.prototype, "_className", {
|
|
get: function () {
|
|
return "PersonaLifetime";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaLifetime.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["instanceId"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaLifetime.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["InstanceId"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(PersonaLifetime.prototype, "instanceId", {
|
|
get: function () {
|
|
_throwIfNotLoaded("instanceId", this._I, _typePersonaLifetime, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaLifetime.prototype.getPersona = function (hostId) {
|
|
return _createMethodObject(OfficeCore.Persona, this, "GetPersona", 1, [hostId], false, false, null, 4);
|
|
};
|
|
PersonaLifetime.prototype.getPersonaForOrgByEntryId = function (entryId, name, sip, smtp) {
|
|
return _createMethodObject(OfficeCore.Persona, this, "GetPersonaForOrgByEntryId", 1, [entryId, name, sip, smtp], false, false, null, 4);
|
|
};
|
|
PersonaLifetime.prototype.getPersonaForOrgEntry = function (name, sip, smtp, entryId) {
|
|
return _createMethodObject(OfficeCore.Persona, this, "GetPersonaForOrgEntry", 1, [name, sip, smtp, entryId], false, false, null, 4);
|
|
};
|
|
PersonaLifetime.prototype.getPolicies = function () {
|
|
return _invokeMethod(this, "GetPolicies", 1, [], 4, 0);
|
|
};
|
|
PersonaLifetime.prototype.getTextScaleFactor = function () {
|
|
return _invokeMethod(this, "GetTextScaleFactor", 1, [], 4, 0);
|
|
};
|
|
PersonaLifetime.prototype._RegisterPersonaUpdatedEvent = function () {
|
|
_invokeMethod(this, "_RegisterPersonaUpdatedEvent", 0, [], 0, 0);
|
|
};
|
|
PersonaLifetime.prototype._UnregisterPersonaUpdatedEvent = function () {
|
|
_invokeMethod(this, "_UnregisterPersonaUpdatedEvent", 0, [], 0, 0);
|
|
};
|
|
PersonaLifetime.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["InstanceId"])) {
|
|
this._I = obj["InstanceId"];
|
|
}
|
|
};
|
|
PersonaLifetime.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
PersonaLifetime.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
PersonaLifetime.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Object.defineProperty(PersonaLifetime.prototype, "onPersonaUpdated", {
|
|
get: function () {
|
|
var _this = this;
|
|
if (!this.m_personaUpdated) {
|
|
this.m_personaUpdated = new OfficeExtension.GenericEventHandlers(this.context, this, "PersonaUpdated", {
|
|
eventType: 3502,
|
|
registerFunc: function () { return _this._RegisterPersonaUpdatedEvent(); },
|
|
unregisterFunc: function () { return _this._UnregisterPersonaUpdatedEvent(); },
|
|
getTargetIdFunc: function () { return _this.instanceId; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = {
|
|
dataUpdated: value.dataUpdated,
|
|
sendingPersonaHostId: value.sendingPersonaHostId
|
|
};
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_personaUpdated;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PersonaLifetime.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"instanceId": this._I
|
|
}, {});
|
|
};
|
|
PersonaLifetime.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
PersonaLifetime.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return PersonaLifetime;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.PersonaLifetime = PersonaLifetime;
|
|
var _typeLokiTokenProvider = "LokiTokenProvider";
|
|
var LokiTokenProvider = (function (_super) {
|
|
__extends(LokiTokenProvider, _super);
|
|
function LokiTokenProvider() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(LokiTokenProvider.prototype, "_className", {
|
|
get: function () {
|
|
return "LokiTokenProvider";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LokiTokenProvider.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["emailOrUpn", "instanceId"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LokiTokenProvider.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["EmailOrUpn", "InstanceId"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LokiTokenProvider.prototype, "emailOrUpn", {
|
|
get: function () {
|
|
_throwIfNotLoaded("emailOrUpn", this._E, _typeLokiTokenProvider, this._isNull);
|
|
return this._E;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LokiTokenProvider.prototype, "instanceId", {
|
|
get: function () {
|
|
_throwIfNotLoaded("instanceId", this._I, _typeLokiTokenProvider, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
LokiTokenProvider.prototype.requestClientAccessToken = function () {
|
|
_invokeMethod(this, "RequestClientAccessToken", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype.requestIdentityUniqueId = function () {
|
|
_invokeMethod(this, "RequestIdentityUniqueId", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype.requestToken = function () {
|
|
_invokeMethod(this, "RequestToken", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype._RegisterClientAccessTokenAvailableEvent = function () {
|
|
_invokeMethod(this, "_RegisterClientAccessTokenAvailableEvent", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype._RegisterIdentityUniqueIdAvailableEvent = function () {
|
|
_invokeMethod(this, "_RegisterIdentityUniqueIdAvailableEvent", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype._RegisterLokiTokenAvailableEvent = function () {
|
|
_invokeMethod(this, "_RegisterLokiTokenAvailableEvent", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype._UnregisterClientAccessTokenAvailableEvent = function () {
|
|
_invokeMethod(this, "_UnregisterClientAccessTokenAvailableEvent", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype._UnregisterIdentityUniqueIdAvailableEvent = function () {
|
|
_invokeMethod(this, "_UnregisterIdentityUniqueIdAvailableEvent", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype._UnregisterLokiTokenAvailableEvent = function () {
|
|
_invokeMethod(this, "_UnregisterLokiTokenAvailableEvent", 0, [], 0, 0);
|
|
};
|
|
LokiTokenProvider.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["EmailOrUpn"])) {
|
|
this._E = obj["EmailOrUpn"];
|
|
}
|
|
if (!_isUndefined(obj["InstanceId"])) {
|
|
this._I = obj["InstanceId"];
|
|
}
|
|
};
|
|
LokiTokenProvider.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
LokiTokenProvider.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
LokiTokenProvider.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Object.defineProperty(LokiTokenProvider.prototype, "onClientAccessTokenAvailable", {
|
|
get: function () {
|
|
var _this = this;
|
|
if (!this.m_clientAccessTokenAvailable) {
|
|
this.m_clientAccessTokenAvailable = new OfficeExtension.GenericEventHandlers(this.context, this, "ClientAccessTokenAvailable", {
|
|
eventType: 3505,
|
|
registerFunc: function () { return _this._RegisterClientAccessTokenAvailableEvent(); },
|
|
unregisterFunc: function () { return _this._UnregisterClientAccessTokenAvailableEvent(); },
|
|
getTargetIdFunc: function () { return _this.instanceId; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = {
|
|
clientAccessToken: value.clientAccessToken,
|
|
isAvailable: value.isAvailable,
|
|
tokenTTLInSeconds: value.tokenTTLInSeconds
|
|
};
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_clientAccessTokenAvailable;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LokiTokenProvider.prototype, "onIdentityUniqueIdAvailable", {
|
|
get: function () {
|
|
var _this = this;
|
|
if (!this.m_identityUniqueIdAvailable) {
|
|
this.m_identityUniqueIdAvailable = new OfficeExtension.GenericEventHandlers(this.context, this, "IdentityUniqueIdAvailable", {
|
|
eventType: 3504,
|
|
registerFunc: function () { return _this._RegisterIdentityUniqueIdAvailableEvent(); },
|
|
unregisterFunc: function () { return _this._UnregisterIdentityUniqueIdAvailableEvent(); },
|
|
getTargetIdFunc: function () { return _this.instanceId; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = {
|
|
isAvailable: value.isAvailable,
|
|
uniqueId: value.uniqueId
|
|
};
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_identityUniqueIdAvailable;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LokiTokenProvider.prototype, "onLokiTokenAvailable", {
|
|
get: function () {
|
|
var _this = this;
|
|
if (!this.m_lokiTokenAvailable) {
|
|
this.m_lokiTokenAvailable = new OfficeExtension.GenericEventHandlers(this.context, this, "LokiTokenAvailable", {
|
|
eventType: 3503,
|
|
registerFunc: function () { return _this._RegisterLokiTokenAvailableEvent(); },
|
|
unregisterFunc: function () { return _this._UnregisterLokiTokenAvailableEvent(); },
|
|
getTargetIdFunc: function () { return _this.instanceId; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = {
|
|
isAvailable: value.isAvailable,
|
|
lokiAutoDiscoverUrl: value.lokiAutoDiscoverUrl,
|
|
lokiToken: value.lokiToken
|
|
};
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_lokiTokenAvailable;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
LokiTokenProvider.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"emailOrUpn": this._E,
|
|
"instanceId": this._I
|
|
}, {});
|
|
};
|
|
LokiTokenProvider.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
LokiTokenProvider.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return LokiTokenProvider;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.LokiTokenProvider = LokiTokenProvider;
|
|
var _typeLokiTokenProviderFactory = "LokiTokenProviderFactory";
|
|
var LokiTokenProviderFactory = (function (_super) {
|
|
__extends(LokiTokenProviderFactory, _super);
|
|
function LokiTokenProviderFactory() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(LokiTokenProviderFactory.prototype, "_className", {
|
|
get: function () {
|
|
return "LokiTokenProviderFactory";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
LokiTokenProviderFactory.prototype.getLokiTokenProvider = function (accountName) {
|
|
return _createMethodObject(OfficeCore.LokiTokenProvider, this, "GetLokiTokenProvider", 1, [accountName], false, false, null, 4);
|
|
};
|
|
LokiTokenProviderFactory.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
LokiTokenProviderFactory.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
LokiTokenProviderFactory.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.LokiTokenProviderFactory, context, "Microsoft.People.LokiTokenProviderFactory", false, 4);
|
|
};
|
|
LokiTokenProviderFactory.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return LokiTokenProviderFactory;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.LokiTokenProviderFactory = LokiTokenProviderFactory;
|
|
var _typeServiceContext = "ServiceContext";
|
|
var PeopleApiContext = (function () {
|
|
function PeopleApiContext(context, instanceId) {
|
|
this.context = context;
|
|
this.instanceId = instanceId;
|
|
}
|
|
Object.defineProperty(PeopleApiContext.prototype, "serviceContext", {
|
|
get: function () {
|
|
if (!this.m_serviceConext) {
|
|
this.m_serviceConext = OfficeCore.ServiceContext.newObject(this.context);
|
|
}
|
|
return this.m_serviceConext;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
PeopleApiContext.prototype.getPersonaLifetime = function () {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var lifetime = _this.serviceContext.getPersonaLifetime(_this.instanceId);
|
|
_this.context.sync().then(function () {
|
|
lifetime.load("instanceId");
|
|
_this.context.sync().then(function () {
|
|
resolve(lifetime);
|
|
});
|
|
});
|
|
});
|
|
};
|
|
PeopleApiContext.prototype.getInitialPersona = function () {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var persona = _this.serviceContext.getInitialPersona(_this.instanceId);
|
|
_this.context.sync().then(function () {
|
|
resolve(persona);
|
|
});
|
|
});
|
|
};
|
|
PeopleApiContext.prototype.getLokiTokenProvider = function () {
|
|
var _this = this;
|
|
return new OfficeExtension.CoreUtility.Promise(function (resolve, reject) {
|
|
var provider = _this.serviceContext.getLokiTokenProvider(_this.instanceId);
|
|
_this.context.sync().then(function () {
|
|
provider.load("instanceId");
|
|
_this.context.sync().then(function () {
|
|
resolve(provider);
|
|
});
|
|
});
|
|
});
|
|
};
|
|
return PeopleApiContext;
|
|
}());
|
|
OfficeCore.PeopleApiContext = PeopleApiContext;
|
|
var ServiceContext = (function (_super) {
|
|
__extends(ServiceContext, _super);
|
|
function ServiceContext() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(ServiceContext.prototype, "_className", {
|
|
get: function () {
|
|
return "ServiceContext";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ServiceContext.prototype.accountEmailOrUpn = function (instanceId) {
|
|
return _invokeMethod(this, "AccountEmailOrUpn", 1, [instanceId], 4, 0);
|
|
};
|
|
ServiceContext.prototype.dispose = function (instance) {
|
|
_invokeMethod(this, "Dispose", 0, [instance], 0, 0);
|
|
};
|
|
ServiceContext.prototype.getInitialPersona = function (instanceId) {
|
|
return _createMethodObject(OfficeCore.Persona, this, "GetInitialPersona", 1, [instanceId], false, false, null, 4);
|
|
};
|
|
ServiceContext.prototype.getLokiTokenProvider = function (instanceId) {
|
|
return _createMethodObject(OfficeCore.LokiTokenProvider, this, "GetLokiTokenProvider", 1, [instanceId], false, false, null, 4);
|
|
};
|
|
ServiceContext.prototype.getPersonaLifetime = function (instanceId) {
|
|
return _createMethodObject(OfficeCore.PersonaLifetime, this, "GetPersonaLifetime", 1, [instanceId], false, false, null, 4);
|
|
};
|
|
ServiceContext.prototype.getPersonaPolicies = function () {
|
|
return _invokeMethod(this, "GetPersonaPolicies", 1, [], 4, 0);
|
|
};
|
|
ServiceContext.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
ServiceContext.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
ServiceContext.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.ServiceContext, context, "Microsoft.People.ServiceContext", false, 4);
|
|
};
|
|
ServiceContext.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return ServiceContext;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.ServiceContext = ServiceContext;
|
|
var _typeRichapiPcxFeatureChecks = "RichapiPcxFeatureChecks";
|
|
var RichapiPcxFeatureChecks = (function (_super) {
|
|
__extends(RichapiPcxFeatureChecks, _super);
|
|
function RichapiPcxFeatureChecks() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(RichapiPcxFeatureChecks.prototype, "_className", {
|
|
get: function () {
|
|
return "RichapiPcxFeatureChecks";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
RichapiPcxFeatureChecks.prototype.isAddChangePhotoLinkOnLpcPersonaImageFlightEnabled = function () {
|
|
return _invokeMethod(this, "IsAddChangePhotoLinkOnLpcPersonaImageFlightEnabled", 1, [], 4, 0);
|
|
};
|
|
RichapiPcxFeatureChecks.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
RichapiPcxFeatureChecks.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
RichapiPcxFeatureChecks.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.RichapiPcxFeatureChecks, context, "Microsoft.People.RichapiPcxFeatureChecks", false, 4);
|
|
};
|
|
RichapiPcxFeatureChecks.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return RichapiPcxFeatureChecks;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.RichapiPcxFeatureChecks = RichapiPcxFeatureChecks;
|
|
var _typeTap = "Tap";
|
|
var Tap = (function (_super) {
|
|
__extends(Tap, _super);
|
|
function Tap() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Tap.prototype, "_className", {
|
|
get: function () {
|
|
return "Tap";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Tap.prototype.getEnterpriseUserInfo = function () {
|
|
return _invokeMethod(this, "GetEnterpriseUserInfo", 1, [], 4 | 1, 0);
|
|
};
|
|
Tap.prototype.getMruFriendlyPath = function (documentUrl) {
|
|
return _invokeMethod(this, "GetMruFriendlyPath", 1, [documentUrl], 4 | 1, 0);
|
|
};
|
|
Tap.prototype.launchFileUrlInOfficeApp = function (documentUrl, useUniversalAsBackup) {
|
|
return _invokeMethod(this, "LaunchFileUrlInOfficeApp", 1, [documentUrl, useUniversalAsBackup], 4 | 1, 0);
|
|
};
|
|
Tap.prototype.performLocalSearch = function (query, numResultsRequested, supportedFileExtensions, documentUrlToExclude) {
|
|
return _invokeMethod(this, "PerformLocalSearch", 1, [query, numResultsRequested, supportedFileExtensions, documentUrlToExclude], 4 | 1, 0);
|
|
};
|
|
Tap.prototype.readSearchCache = function (keyword, expiredHours, filterObjectType) {
|
|
return _invokeMethod(this, "ReadSearchCache", 1, [keyword, expiredHours, filterObjectType], 4 | 1, 0);
|
|
};
|
|
Tap.prototype.writeSearchCache = function (fileContent, keyword, filterObjectType) {
|
|
return _invokeMethod(this, "WriteSearchCache", 1, [fileContent, keyword, filterObjectType], 4 | 1, 0);
|
|
};
|
|
Tap.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
Tap.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Tap.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.Tap, context, "Microsoft.TapRichApi.Tap", false, 4);
|
|
};
|
|
Tap.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return Tap;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.Tap = Tap;
|
|
var ObjectType;
|
|
(function (ObjectType) {
|
|
ObjectType["unknown"] = "Unknown";
|
|
ObjectType["chart"] = "Chart";
|
|
ObjectType["smartArt"] = "SmartArt";
|
|
ObjectType["table"] = "Table";
|
|
ObjectType["image"] = "Image";
|
|
ObjectType["slide"] = "Slide";
|
|
ObjectType["ole"] = "OLE";
|
|
ObjectType["text"] = "Text";
|
|
})(ObjectType = OfficeCore.ObjectType || (OfficeCore.ObjectType = {}));
|
|
var _typeAppRuntimePersistenceService = "AppRuntimePersistenceService";
|
|
var AppRuntimePersistenceService = (function (_super) {
|
|
__extends(AppRuntimePersistenceService, _super);
|
|
function AppRuntimePersistenceService() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(AppRuntimePersistenceService.prototype, "_className", {
|
|
get: function () {
|
|
return "AppRuntimePersistenceService";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
AppRuntimePersistenceService.prototype.getAppRuntimeStartState = function () {
|
|
return _invokeMethod(this, "GetAppRuntimeStartState", 1, [], 4, 0);
|
|
};
|
|
AppRuntimePersistenceService.prototype.setAppRuntimeStartState = function (appRuntimeState) {
|
|
_invokeMethod(this, "SetAppRuntimeStartState", 0, [appRuntimeState], _calculateApiFlags(2, "SharedRuntimeInternal", "1.2"), 0);
|
|
};
|
|
AppRuntimePersistenceService.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
AppRuntimePersistenceService.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
AppRuntimePersistenceService.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.AppRuntimePersistenceService, context, "Microsoft.AppRuntime.AppRuntimePersistenceService", false, 4);
|
|
};
|
|
AppRuntimePersistenceService.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return AppRuntimePersistenceService;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.AppRuntimePersistenceService = AppRuntimePersistenceService;
|
|
var _typeAppRuntimeService = "AppRuntimeService";
|
|
var AppRuntimeService = (function (_super) {
|
|
__extends(AppRuntimeService, _super);
|
|
function AppRuntimeService() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(AppRuntimeService.prototype, "_className", {
|
|
get: function () {
|
|
return "AppRuntimeService";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
AppRuntimeService.prototype.getAppRuntimeState = function () {
|
|
return _invokeMethod(this, "GetAppRuntimeState", 1, [], 4, 0);
|
|
};
|
|
AppRuntimeService.prototype.setAppRuntimeState = function (appRuntimeState) {
|
|
_invokeMethod(this, "SetAppRuntimeState", 0, [appRuntimeState], _calculateApiFlags(2, "SharedRuntimeInternal", "1.2"), 0);
|
|
};
|
|
AppRuntimeService.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
AppRuntimeService.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
AppRuntimeService.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.AppRuntimeService, context, "Microsoft.AppRuntime.AppRuntimeService", false, 4);
|
|
};
|
|
Object.defineProperty(AppRuntimeService.prototype, "onVisibilityChanged", {
|
|
get: function () {
|
|
if (!this.m_visibilityChanged) {
|
|
this.m_visibilityChanged = new OfficeExtension.GenericEventHandlers(this.context, this, "VisibilityChanged", {
|
|
eventType: 65539,
|
|
registerFunc: function () { return OfficeExtension.Utility._createPromiseFromResult(null); },
|
|
unregisterFunc: function () { return OfficeExtension.Utility._createPromiseFromResult(null); },
|
|
getTargetIdFunc: function () { return ""; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = {
|
|
visibility: value.visibility
|
|
};
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_visibilityChanged;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
AppRuntimeService.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return AppRuntimeService;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.AppRuntimeService = AppRuntimeService;
|
|
var AppRuntimeState;
|
|
(function (AppRuntimeState) {
|
|
AppRuntimeState["inactive"] = "Inactive";
|
|
AppRuntimeState["background"] = "Background";
|
|
AppRuntimeState["visible"] = "Visible";
|
|
})(AppRuntimeState = OfficeCore.AppRuntimeState || (OfficeCore.AppRuntimeState = {}));
|
|
var Visibility;
|
|
(function (Visibility) {
|
|
Visibility["hidden"] = "Hidden";
|
|
Visibility["visible"] = "Visible";
|
|
})(Visibility = OfficeCore.Visibility || (OfficeCore.Visibility = {}));
|
|
var LicenseFeatureTier;
|
|
(function (LicenseFeatureTier) {
|
|
LicenseFeatureTier["unknown"] = "Unknown";
|
|
LicenseFeatureTier["basic"] = "Basic";
|
|
LicenseFeatureTier["premium"] = "Premium";
|
|
})(LicenseFeatureTier = OfficeCore.LicenseFeatureTier || (OfficeCore.LicenseFeatureTier = {}));
|
|
var _typeLicense = "License";
|
|
var License = (function (_super) {
|
|
__extends(License, _super);
|
|
function License() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(License.prototype, "_className", {
|
|
get: function () {
|
|
return "License";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
License.prototype.getFeatureTier = function (feature, fallbackValue) {
|
|
return _invokeMethod(this, "GetFeatureTier", 1, [feature, fallbackValue], 4, 0);
|
|
};
|
|
License.prototype.getLicenseFeature = function (feature) {
|
|
return _createMethodObject(OfficeCore.LicenseFeature, this, "GetLicenseFeature", 1, [feature], false, false, null, 4);
|
|
};
|
|
License.prototype.getMsaDeviceTicket = function (resource, policy, options) {
|
|
return _invokeMethod(this, "GetMsaDeviceTicket", 1, [resource, policy, options], 4 | 1, 0);
|
|
};
|
|
License.prototype.isFeatureEnabled = function (feature, fallbackValue) {
|
|
return _invokeMethod(this, "IsFeatureEnabled", 1, [feature, fallbackValue], 4, 0);
|
|
};
|
|
License.prototype.isFreemiumUpsellEnabled = function () {
|
|
return _invokeMethod(this, "IsFreemiumUpsellEnabled", 1, [], 4, 0);
|
|
};
|
|
License.prototype.launchUpsellExperience = function (experienceId) {
|
|
_invokeMethod(this, "LaunchUpsellExperience", 1, [experienceId], 4, 0);
|
|
};
|
|
License.prototype._TestFireStateChangedEvent = function (feature) {
|
|
_invokeMethod(this, "_TestFireStateChangedEvent", 0, [feature], 1, 0);
|
|
};
|
|
License.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
License.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
License.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.License, context, "Microsoft.Office.Licensing.License", false, 4);
|
|
};
|
|
License.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return License;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.License = License;
|
|
var _typeLicenseFeature = "LicenseFeature";
|
|
var LicenseFeature = (function (_super) {
|
|
__extends(LicenseFeature, _super);
|
|
function LicenseFeature() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(LicenseFeature.prototype, "_className", {
|
|
get: function () {
|
|
return "LicenseFeature";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LicenseFeature.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LicenseFeature.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(LicenseFeature.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeLicenseFeature, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
LicenseFeature.prototype._RegisterStateChange = function () {
|
|
_invokeMethod(this, "_RegisterStateChange", 1, [], 4, 0);
|
|
};
|
|
LicenseFeature.prototype._UnregisterStateChange = function () {
|
|
_invokeMethod(this, "_UnregisterStateChange", 1, [], 4, 0);
|
|
};
|
|
LicenseFeature.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
};
|
|
LicenseFeature.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
LicenseFeature.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
LicenseFeature.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
LicenseFeature.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Object.defineProperty(LicenseFeature.prototype, "onStateChanged", {
|
|
get: function () {
|
|
var _this = this;
|
|
if (!this.m_stateChanged) {
|
|
this.m_stateChanged = new OfficeExtension.GenericEventHandlers(this.context, this, "StateChanged", {
|
|
eventType: 1,
|
|
registerFunc: function () { return _this._RegisterStateChange(); },
|
|
unregisterFunc: function () { return _this._UnregisterStateChange(); },
|
|
getTargetIdFunc: function () { return _this.id; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = _CC.LicenseFeature_StateChanged_EventArgsTransform(_this, value);
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_stateChanged;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
LicenseFeature.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"id": this._I
|
|
}, {});
|
|
};
|
|
LicenseFeature.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
LicenseFeature.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return LicenseFeature;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.LicenseFeature = LicenseFeature;
|
|
(function (_CC) {
|
|
function LicenseFeature_StateChanged_EventArgsTransform(thisObj, args) {
|
|
var newArgs = {
|
|
feature: args.featureName,
|
|
isEnabled: args.isEnabled,
|
|
tier: args.tierName
|
|
};
|
|
if (args.tierName) {
|
|
newArgs.tier = args.tierName == 0 ? LicenseFeatureTier.unknown :
|
|
args.tierName == 1 ? LicenseFeatureTier.basic :
|
|
args.tierName == 2 ? LicenseFeatureTier.premium :
|
|
args.tierName;
|
|
}
|
|
return newArgs;
|
|
}
|
|
_CC.LicenseFeature_StateChanged_EventArgsTransform = LicenseFeature_StateChanged_EventArgsTransform;
|
|
})(_CC = OfficeCore._CC || (OfficeCore._CC = {}));
|
|
var _typeMsaDeviceTicketOptions = "MsaDeviceTicketOptions";
|
|
var MsaDeviceTicketOptions = (function (_super) {
|
|
__extends(MsaDeviceTicketOptions, _super);
|
|
function MsaDeviceTicketOptions() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(MsaDeviceTicketOptions.prototype, "_className", {
|
|
get: function () {
|
|
return "MsaDeviceTicketOptions";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MsaDeviceTicketOptions.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["scopes"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MsaDeviceTicketOptions.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Scopes"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MsaDeviceTicketOptions.prototype, "_scalarPropertyUpdateable", {
|
|
get: function () {
|
|
return [true];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(MsaDeviceTicketOptions.prototype, "scopes", {
|
|
get: function () {
|
|
_throwIfNotLoaded("scopes", this._S, _typeMsaDeviceTicketOptions, this._isNull);
|
|
return this._S;
|
|
},
|
|
set: function (value) {
|
|
this._S = value;
|
|
_invokeSetProperty(this, "Scopes", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
MsaDeviceTicketOptions.prototype.set = function (properties, options) {
|
|
this._recursivelySet(properties, options, ["scopes"], [], []);
|
|
};
|
|
MsaDeviceTicketOptions.prototype.update = function (properties) {
|
|
this._recursivelyUpdate(properties);
|
|
};
|
|
MsaDeviceTicketOptions.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Scopes"])) {
|
|
this._S = obj["Scopes"];
|
|
}
|
|
};
|
|
MsaDeviceTicketOptions.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
MsaDeviceTicketOptions.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
MsaDeviceTicketOptions.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
MsaDeviceTicketOptions.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.MsaDeviceTicketOptions, context, "Microsoft.Office.Licensing.MsaDeviceTicketOptions", false, 4);
|
|
};
|
|
MsaDeviceTicketOptions.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"scopes": this._S
|
|
}, {});
|
|
};
|
|
MsaDeviceTicketOptions.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
MsaDeviceTicketOptions.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return MsaDeviceTicketOptions;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.MsaDeviceTicketOptions = MsaDeviceTicketOptions;
|
|
var _typeDialogPage = "DialogPage";
|
|
var DialogPage = (function (_super) {
|
|
__extends(DialogPage, _super);
|
|
function DialogPage() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(DialogPage.prototype, "_className", {
|
|
get: function () {
|
|
return "DialogPage";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(DialogPage.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["_Id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(DialogPage.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["_Id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(DialogPage.prototype, "_Id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("_Id", this.__I, _typeDialogPage, this._isNull);
|
|
return this.__I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
DialogPage.prototype.close = function () {
|
|
_invokeMethod(this, "Close", 1, [], 4, 0);
|
|
};
|
|
DialogPage.prototype.readyToShow = function () {
|
|
_invokeMethod(this, "ReadyToShow", 1, [], 4, 0);
|
|
};
|
|
DialogPage.prototype.registerOnShow = function () {
|
|
_invokeMethod(this, "RegisterOnShow", 1, [], 4, 0);
|
|
};
|
|
DialogPage.prototype.sendMessageToHost = function (message) {
|
|
_invokeMethod(this, "SendMessageToHost", 1, [message], 4, 0);
|
|
};
|
|
DialogPage.prototype.unregisterOnShow = function () {
|
|
_invokeMethod(this, "UnregisterOnShow", 1, [], 4, 0);
|
|
};
|
|
DialogPage.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["_Id"])) {
|
|
this.__I = obj["_Id"];
|
|
}
|
|
};
|
|
DialogPage.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
DialogPage.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["_Id"])) {
|
|
this.__I = value["_Id"];
|
|
}
|
|
};
|
|
DialogPage.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
DialogPage.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.DialogPage, context, "Microsoft.Office.DialogPage.DialogPage", false, 4);
|
|
};
|
|
Object.defineProperty(DialogPage.prototype, "onOnShowEvent", {
|
|
get: function () {
|
|
var _this = this;
|
|
if (!this.m_onShowEvent) {
|
|
this.m_onShowEvent = new OfficeExtension.GenericEventHandlers(this.context, this, "OnShowEvent", {
|
|
eventType: 1,
|
|
registerFunc: function () { return _this.registerOnShow(); },
|
|
unregisterFunc: function () { return _this.unregisterOnShow(); },
|
|
getTargetIdFunc: function () { return _this._Id; },
|
|
eventArgsTransformFunc: function (value) {
|
|
var event = {};
|
|
return OfficeExtension.Utility._createPromiseFromResult(event);
|
|
}
|
|
});
|
|
}
|
|
return this.m_onShowEvent;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
DialogPage.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return DialogPage;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.DialogPage = DialogPage;
|
|
var _typeActionService = "ActionService";
|
|
var ActionService = (function (_super) {
|
|
__extends(ActionService, _super);
|
|
function ActionService() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(ActionService.prototype, "_className", {
|
|
get: function () {
|
|
return "ActionService";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ActionService.prototype.areShortcutsInUse = function (shortcuts) {
|
|
return _invokeMethod(this, "AreShortcutsInUse", 0, [shortcuts], 0, 0);
|
|
};
|
|
ActionService.prototype.getShortcuts = function () {
|
|
return _invokeMethod(this, "GetShortcuts", 1, [], 4, 0);
|
|
};
|
|
ActionService.prototype.replaceShortcuts = function (shortcuts) {
|
|
_invokeMethod(this, "ReplaceShortcuts", 0, [shortcuts], 0, 0);
|
|
};
|
|
ActionService.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
ActionService.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
ActionService.newObject = function (context) {
|
|
return _createTopLevelServiceObject(OfficeCore.ActionService, context, "Microsoft.Office.ActionService", false, 4);
|
|
};
|
|
ActionService.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return ActionService;
|
|
}(OfficeExtension.ClientObject));
|
|
OfficeCore.ActionService = ActionService;
|
|
var ErrorCodes;
|
|
(function (ErrorCodes) {
|
|
ErrorCodes["apiNotAvailable"] = "ApiNotAvailable";
|
|
ErrorCodes["clientError"] = "ClientError";
|
|
ErrorCodes["controlIdNotFound"] = "ControlIdNotFound";
|
|
ErrorCodes["entryIdRequired"] = "EntryIdRequired";
|
|
ErrorCodes["generalException"] = "GeneralException";
|
|
ErrorCodes["hostRestartNeeded"] = "HostRestartNeeded";
|
|
ErrorCodes["instanceNotFound"] = "InstanceNotFound";
|
|
ErrorCodes["interactiveFlowAborted"] = "InteractiveFlowAborted";
|
|
ErrorCodes["invalidArgument"] = "InvalidArgument";
|
|
ErrorCodes["invalidGrant"] = "InvalidGrant";
|
|
ErrorCodes["invalidResourceUrl"] = "InvalidResourceUrl";
|
|
ErrorCodes["invalidRibbonDefinition"] = "InvalidRibbonDefinition";
|
|
ErrorCodes["objectNotFound"] = "ObjectNotFound";
|
|
ErrorCodes["resourceNotSupported"] = "ResourceNotSupported";
|
|
ErrorCodes["serverError"] = "ServerError";
|
|
ErrorCodes["serviceUrlNotFound"] = "ServiceUrlNotFound";
|
|
ErrorCodes["sharedRuntimeNotAvailable"] = "SharedRuntimeNotAvailable";
|
|
ErrorCodes["ticketInvalidParams"] = "TicketInvalidParams";
|
|
ErrorCodes["ticketNetworkError"] = "TicketNetworkError";
|
|
ErrorCodes["ticketUnauthorized"] = "TicketUnauthorized";
|
|
ErrorCodes["ticketUninitialized"] = "TicketUninitialized";
|
|
ErrorCodes["ticketUnknownError"] = "TicketUnknownError";
|
|
ErrorCodes["unexpectedError"] = "UnexpectedError";
|
|
ErrorCodes["unsupportedUserIdentity"] = "UnsupportedUserIdentity";
|
|
ErrorCodes["userNotSignedIn"] = "UserNotSignedIn";
|
|
})(ErrorCodes = OfficeCore.ErrorCodes || (OfficeCore.ErrorCodes = {}));
|
|
var Interfaces;
|
|
(function (Interfaces) {
|
|
})(Interfaces = OfficeCore.Interfaces || (OfficeCore.Interfaces = {}));
|
|
})(OfficeCore || (OfficeCore = {}));
|
|
var Office;
|
|
(function (Office) {
|
|
var VisibilityMode;
|
|
(function (VisibilityMode) {
|
|
VisibilityMode["hidden"] = "Hidden";
|
|
VisibilityMode["taskpane"] = "Taskpane";
|
|
})(VisibilityMode = Office.VisibilityMode || (Office.VisibilityMode = {}));
|
|
var StartupBehavior;
|
|
(function (StartupBehavior) {
|
|
StartupBehavior["none"] = "None";
|
|
StartupBehavior["load"] = "Load";
|
|
})(StartupBehavior = Office.StartupBehavior || (Office.StartupBehavior = {}));
|
|
var addin;
|
|
(function (addin) {
|
|
function _createRequestContext(wacPartition) {
|
|
var context = new OfficeCore.RequestContext();
|
|
context._requestFlagModifier |= 64;
|
|
if (wacPartition) {
|
|
context._customData = 'WacPartition';
|
|
}
|
|
return context;
|
|
}
|
|
function setStartupBehavior(behavior) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var state, context, appRuntimePersistenceService;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
if (behavior !== StartupBehavior.load && behavior !== StartupBehavior.none) {
|
|
throw OfficeExtension.Utility.createRuntimeError(OfficeExtension.ErrorCodes.invalidArgument, null, null);
|
|
}
|
|
state = (behavior == StartupBehavior.load ? OfficeCore.AppRuntimeState.background : OfficeCore.AppRuntimeState.inactive);
|
|
context = _createRequestContext(false);
|
|
appRuntimePersistenceService = OfficeCore.AppRuntimePersistenceService.newObject(context);
|
|
appRuntimePersistenceService.setAppRuntimeStartState(state);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
addin.setStartupBehavior = setStartupBehavior;
|
|
function getStartupBehavior() {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, appRuntimePersistenceService, stateResult, state, ret;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext(false);
|
|
appRuntimePersistenceService = OfficeCore.AppRuntimePersistenceService.newObject(context);
|
|
stateResult = appRuntimePersistenceService.getAppRuntimeStartState();
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
state = stateResult.value;
|
|
ret = (state == OfficeCore.AppRuntimeState.inactive ? StartupBehavior.none : StartupBehavior.load);
|
|
return [2, ret];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
addin.getStartupBehavior = getStartupBehavior;
|
|
function _setState(state) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, appRuntimeService;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext(true);
|
|
appRuntimeService = OfficeCore.AppRuntimeService.newObject(context);
|
|
appRuntimeService.setAppRuntimeState(state);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
function _getState() {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, appRuntimeService, stateResult;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext(true);
|
|
appRuntimeService = OfficeCore.AppRuntimeService.newObject(context);
|
|
stateResult = appRuntimeService.getAppRuntimeState();
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2, stateResult.value];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
addin._getState = _getState;
|
|
function showAsTaskpane() {
|
|
return _setState(OfficeCore.AppRuntimeState.visible);
|
|
}
|
|
addin.showAsTaskpane = showAsTaskpane;
|
|
function hide() {
|
|
return _setState(OfficeCore.AppRuntimeState.background);
|
|
}
|
|
addin.hide = hide;
|
|
var _appRuntimeEvent;
|
|
function _getAppRuntimeEventService() {
|
|
if (!_appRuntimeEvent) {
|
|
var context = _createRequestContext(true);
|
|
_appRuntimeEvent = OfficeCore.AppRuntimeService.newObject(context);
|
|
}
|
|
return _appRuntimeEvent;
|
|
}
|
|
function _convertVisibilityToVisibilityMode(visibility) {
|
|
if (visibility === OfficeCore.Visibility.visible) {
|
|
return VisibilityMode.taskpane;
|
|
}
|
|
return VisibilityMode.hidden;
|
|
}
|
|
function onVisibilityModeChanged(listener) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var eventService, registrationToken, ret;
|
|
var _this = this;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
eventService = _getAppRuntimeEventService();
|
|
registrationToken = eventService.onVisibilityChanged.add(function (args) {
|
|
if (listener) {
|
|
var msg = {
|
|
visibilityMode: _convertVisibilityToVisibilityMode(args.visibility)
|
|
};
|
|
listener(msg);
|
|
}
|
|
return null;
|
|
});
|
|
return [4, eventService.context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
ret = function () {
|
|
return __awaiter(_this, void 0, void 0, function () {
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
registrationToken.remove();
|
|
return [4, eventService.context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2];
|
|
}
|
|
});
|
|
});
|
|
};
|
|
return [2, ret];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
addin.onVisibilityModeChanged = onVisibilityModeChanged;
|
|
})(addin = Office.addin || (Office.addin = {}));
|
|
})(Office || (Office = {}));
|
|
var Office;
|
|
(function (Office) {
|
|
var ribbon;
|
|
(function (ribbon_1) {
|
|
function _createRequestContext() {
|
|
var context = new OfficeCore.RequestContext();
|
|
if (OSF._OfficeAppFactory.getHostInfo().hostPlatform == 'web') {
|
|
context._customData = 'WacPartition';
|
|
}
|
|
return context;
|
|
}
|
|
function requestUpdate(input) {
|
|
var requestContext = _createRequestContext();
|
|
var ribbon = requestContext.ribbon;
|
|
function processControls(parent) {
|
|
if (parent.controls !== undefined
|
|
&& parent.controls.length !== undefined
|
|
&& !!parent.controls.length) {
|
|
parent.controls
|
|
.filter(function (control) { return !(!control.id); })
|
|
.forEach(function (control) {
|
|
var ribbonControl = ribbon.getButton(control.id);
|
|
if (control.enabled !== undefined && control.enabled !== null) {
|
|
ribbonControl.enabled = control.enabled;
|
|
}
|
|
});
|
|
}
|
|
}
|
|
input.tabs
|
|
.filter(function (tab) { return !(!tab.id); })
|
|
.forEach(function (tab) {
|
|
var ribbonTab = ribbon.getTab(tab.id);
|
|
if (tab.visible !== undefined && tab.visible !== null) {
|
|
ribbonTab.setVisibility(tab.visible);
|
|
}
|
|
if (!!tab.groups && !!tab.groups.length) {
|
|
tab.groups
|
|
.filter(function (group) { return !(!group.id); })
|
|
.forEach(function (group) {
|
|
processControls(group);
|
|
});
|
|
}
|
|
else {
|
|
processControls(tab);
|
|
}
|
|
});
|
|
return requestContext.sync();
|
|
}
|
|
ribbon_1.requestUpdate = requestUpdate;
|
|
function requestCreateControls(input) {
|
|
var requestContext = _createRequestContext();
|
|
var ribbon = requestContext.ribbon;
|
|
var delay = function (milliseconds) {
|
|
return new Promise(function (resolve, _) { return setTimeout(function () { return resolve(); }, milliseconds); });
|
|
};
|
|
ribbon.executeRequestCreate(JSON.stringify(input));
|
|
return delay(250)
|
|
.then(function () { return requestContext.sync(); });
|
|
}
|
|
ribbon_1.requestCreateControls = requestCreateControls;
|
|
})(ribbon = Office.ribbon || (Office.ribbon = {}));
|
|
})(Office || (Office = {}));
|
|
var OfficeCore;
|
|
(function (OfficeCore) {
|
|
var _hostName = "Office";
|
|
var _defaultApiSetName = "OfficeSharedApi";
|
|
var _createPropertyObject = OfficeExtension.BatchApiHelper.createPropertyObject;
|
|
var _createMethodObject = OfficeExtension.BatchApiHelper.createMethodObject;
|
|
var _createIndexerObject = OfficeExtension.BatchApiHelper.createIndexerObject;
|
|
var _createRootServiceObject = OfficeExtension.BatchApiHelper.createRootServiceObject;
|
|
var _createTopLevelServiceObject = OfficeExtension.BatchApiHelper.createTopLevelServiceObject;
|
|
var _createChildItemObject = OfficeExtension.BatchApiHelper.createChildItemObject;
|
|
var _invokeMethod = OfficeExtension.BatchApiHelper.invokeMethod;
|
|
var _invokeEnsureUnchanged = OfficeExtension.BatchApiHelper.invokeEnsureUnchanged;
|
|
var _invokeSetProperty = OfficeExtension.BatchApiHelper.invokeSetProperty;
|
|
var _isNullOrUndefined = OfficeExtension.Utility.isNullOrUndefined;
|
|
var _isUndefined = OfficeExtension.Utility.isUndefined;
|
|
var _throwIfNotLoaded = OfficeExtension.Utility.throwIfNotLoaded;
|
|
var _throwIfApiNotSupported = OfficeExtension.Utility.throwIfApiNotSupported;
|
|
var _load = OfficeExtension.Utility.load;
|
|
var _retrieve = OfficeExtension.Utility.retrieve;
|
|
var _toJson = OfficeExtension.Utility.toJson;
|
|
var _fixObjectPathIfNecessary = OfficeExtension.Utility.fixObjectPathIfNecessary;
|
|
var _handleNavigationPropertyResults = OfficeExtension.Utility._handleNavigationPropertyResults;
|
|
var _adjustToDateTime = OfficeExtension.Utility.adjustToDateTime;
|
|
var _processRetrieveResult = OfficeExtension.Utility.processRetrieveResult;
|
|
var _setMockData = OfficeExtension.Utility.setMockData;
|
|
var _calculateApiFlags = OfficeExtension.CommonUtility.calculateApiFlags;
|
|
var AddinInternalServiceErrorCodes;
|
|
(function (AddinInternalServiceErrorCodes) {
|
|
AddinInternalServiceErrorCodes["generalException"] = "GeneralException";
|
|
})(AddinInternalServiceErrorCodes || (AddinInternalServiceErrorCodes = {}));
|
|
var _libraryMetadataInternalServiceApi = { "version": "1.0.0",
|
|
"name": "OfficeCore",
|
|
"defaultApiSetName": "OfficeSharedApi",
|
|
"hostName": "Office",
|
|
"apiSets": [],
|
|
"strings": ["AddinInternalService"],
|
|
"enumTypes": [],
|
|
"clientObjectTypes": [[1,
|
|
0,
|
|
0,
|
|
0,
|
|
[["notifyActionHandlerReady",
|
|
0,
|
|
2,
|
|
0,
|
|
4]],
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
"Microsoft.InternalService.AddinInternalService",
|
|
4]] };
|
|
var _builder = new OfficeExtension.LibraryBuilder({ metadata: _libraryMetadataInternalServiceApi, targetNamespaceObject: OfficeCore });
|
|
})(OfficeCore || (OfficeCore = {}));
|
|
var Office;
|
|
(function (Office) {
|
|
var actionProxy;
|
|
(function (actionProxy) {
|
|
var _isNullOrUndefined = OfficeExtension.Utility.isNullOrUndefined;
|
|
var _association;
|
|
var ActionMessageCategory = 2;
|
|
var ActionDispatchMessageType = 1000;
|
|
function init() {
|
|
if (typeof (OSF) !== "undefined" && OSF.DDA && OSF.DDA.RichApi && OSF.DDA.RichApi.richApiMessageManager) {
|
|
var context = new OfficeExtension.ClientRequestContext();
|
|
return context.eventRegistration.register(5, "", _handleMessage);
|
|
}
|
|
}
|
|
function setActionAssociation(association) {
|
|
_association = association;
|
|
}
|
|
function _getFunction(functionName) {
|
|
if (functionName) {
|
|
var nameUpperCase = functionName.toUpperCase();
|
|
var call = _association.mappings[nameUpperCase];
|
|
if (!_isNullOrUndefined(call) && typeof (call) === "function") {
|
|
return call;
|
|
}
|
|
}
|
|
throw OfficeExtension.Utility.createRuntimeError("invalidOperation", "sourceData", "ActionProxy._getFunction");
|
|
}
|
|
function _handleMessage(args) {
|
|
try {
|
|
OfficeExtension.Utility.log('ActionProxy._handleMessage');
|
|
OfficeExtension.Utility.checkArgumentNull(args, "args");
|
|
var entryArray = args.entries;
|
|
var invocationArray = [];
|
|
for (var i = 0; i < entryArray.length; i++) {
|
|
if (entryArray[i].messageCategory !== ActionMessageCategory) {
|
|
continue;
|
|
}
|
|
if (typeof (entryArray[i].message) === 'string') {
|
|
entryArray[i].message = JSON.parse(entryArray[i].message);
|
|
}
|
|
if (entryArray[i].messageType === ActionDispatchMessageType) {
|
|
var actionsArgs = null;
|
|
var actionName = entryArray[i].message[0];
|
|
var call = _getFunction(actionName);
|
|
if (entryArray[i].message.length >= 2) {
|
|
var actionArgsJson = entryArray[i].message[1];
|
|
if (actionArgsJson) {
|
|
if (_isJsonObjectString(actionArgsJson)) {
|
|
actionsArgs = JSON.parse(actionArgsJson);
|
|
}
|
|
else {
|
|
actionsArgs = actionArgsJson;
|
|
}
|
|
}
|
|
}
|
|
if (typeof (OSF) !== 'undefined' &&
|
|
OSF.AppTelemetry &&
|
|
OSF.AppTelemetry.CallOnAppActivatedIfPending) {
|
|
OSF.AppTelemetry.CallOnAppActivatedIfPending();
|
|
}
|
|
call.apply(null, [actionsArgs]);
|
|
}
|
|
else {
|
|
OfficeExtension.Utility.log('ActionProxy._handleMessage unknown message type ' + entryArray[i].messageType);
|
|
}
|
|
}
|
|
}
|
|
catch (ex) {
|
|
_tryLog(ex);
|
|
throw ex;
|
|
}
|
|
return OfficeExtension.Utility._createPromiseFromResult(null);
|
|
}
|
|
function _isJsonObjectString(value) {
|
|
if (typeof value === 'string' && value[0] === '{') {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
function toLogMessage(ex) {
|
|
var ret = 'Unknown Error';
|
|
if (ex) {
|
|
try {
|
|
if (ex.toString) {
|
|
ret = ex.toString();
|
|
}
|
|
ret = ret + ' ' + JSON.stringify(ex);
|
|
}
|
|
catch (otherEx) {
|
|
ret = 'Unexpected Error';
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
function _tryLog(ex) {
|
|
var message = toLogMessage(ex);
|
|
OfficeExtension.Utility.log(message);
|
|
}
|
|
function notifyActionHandlerReady() {
|
|
var context = new OfficeExtension.ClientRequestContext();
|
|
var addinInternalService = OfficeCore.AddinInternalService.newObject(context);
|
|
context._customData = 'WacPartition';
|
|
addinInternalService.notifyActionHandlerReady();
|
|
return context.sync();
|
|
}
|
|
function handlerOnReadyInternal() {
|
|
try {
|
|
Microsoft.Office.WebExtension.onReadyInternal()
|
|
.then(function () {
|
|
return init();
|
|
})
|
|
.then(function () {
|
|
var hostInfo = OSF._OfficeAppFactory.getHostInfo();
|
|
if (hostInfo.hostPlatform === "web" && hostInfo.hostType !== "word" && hostInfo.hostType !== "excel") {
|
|
return;
|
|
}
|
|
else {
|
|
return notifyActionHandlerReady();
|
|
}
|
|
});
|
|
}
|
|
catch (ex) {
|
|
}
|
|
}
|
|
function initFromHostBridge(hostBridge) {
|
|
hostBridge.addHostMessageHandler(function (bridgeMessage) {
|
|
if (bridgeMessage.type === 3) {
|
|
_handleMessage(bridgeMessage.message);
|
|
}
|
|
});
|
|
}
|
|
function initOnce() {
|
|
OfficeExtension.Utility.log('ActionProxy.initOnce');
|
|
if (typeof (Office.actions) != 'undefined') {
|
|
setActionAssociation(Office.actions._association);
|
|
}
|
|
if (typeof (document) !== 'undefined') {
|
|
if (document.readyState && document.readyState !== 'loading') {
|
|
OfficeExtension.Utility.log('ActionProxy.initOnce: document.readyState is not loading state');
|
|
handlerOnReadyInternal();
|
|
}
|
|
else if (document.addEventListener) {
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
OfficeExtension.Utility.log('ActionProxy.initOnce: DOMContentLoaded event triggered');
|
|
handlerOnReadyInternal();
|
|
});
|
|
}
|
|
}
|
|
OfficeExtension.HostBridge.onInited(function (hostBridge) {
|
|
initFromHostBridge(hostBridge);
|
|
});
|
|
}
|
|
initOnce();
|
|
})(actionProxy || (actionProxy = {}));
|
|
})(Office || (Office = {}));
|
|
var Office;
|
|
(function (Office) {
|
|
var actions;
|
|
(function (actions) {
|
|
function _createRequestContext() {
|
|
var context = new OfficeCore.RequestContext();
|
|
if (OSF._OfficeAppFactory.getHostInfo().hostPlatform == 'web') {
|
|
context._customData = 'WacPartition';
|
|
}
|
|
return context;
|
|
}
|
|
function areShortcutsInUse(shortcuts) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, actionService, inUseArray, inUseInfoArray, i;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
actionService = OfficeCore.ActionService.newObject(context);
|
|
inUseArray = actionService.areShortcutsInUse(shortcuts);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
inUseInfoArray = [];
|
|
for (i = 0; i < shortcuts.length; i++) {
|
|
inUseInfoArray.push({
|
|
shortcut: shortcuts[i],
|
|
inUse: inUseArray.value[i]
|
|
});
|
|
}
|
|
return [2, inUseInfoArray];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
actions.areShortcutsInUse = areShortcutsInUse;
|
|
function replaceShortcuts(shortcuts) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, actionService;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
actionService = OfficeCore.ActionService.newObject(context);
|
|
actionService.replaceShortcuts(shortcuts);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
actions.replaceShortcuts = replaceShortcuts;
|
|
function getShortcuts() {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, actionService, shortcuts;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = _createRequestContext();
|
|
actionService = OfficeCore.ActionService.newObject(context);
|
|
shortcuts = actionService.getShortcuts();
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2, shortcuts.value];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
actions.getShortcuts = getShortcuts;
|
|
})(actions = Office.actions || (Office.actions = {}));
|
|
})(Office || (Office = {}));
|
|
var Office;
|
|
(function (Office) {
|
|
var dialogPage;
|
|
(function (dialogPage_1) {
|
|
function close() {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, dialogPage;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = new OfficeCore.RequestContext();
|
|
dialogPage = OfficeCore.DialogPage.newObject(context);
|
|
dialogPage.close();
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
dialogPage_1.close = close;
|
|
function readyToShow() {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, dialogPage;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = new OfficeCore.RequestContext();
|
|
dialogPage = OfficeCore.DialogPage.newObject(context);
|
|
dialogPage.readyToShow();
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
dialogPage_1.readyToShow = readyToShow;
|
|
function onShow(callback) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, dialogPage, removeListener;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = new OfficeCore.RequestContext();
|
|
dialogPage = OfficeCore.DialogPage.newObject(context);
|
|
dialogPage.onOnShowEvent.add(callback);
|
|
removeListener = function () {
|
|
dialogPage.onOnShowEvent.remove(callback);
|
|
return null;
|
|
};
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2, removeListener];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
dialogPage_1.onShow = onShow;
|
|
function sendMessageToHost(message) {
|
|
return __awaiter(this, void 0, void 0, function () {
|
|
var context, dialogPage;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
context = new OfficeCore.RequestContext();
|
|
dialogPage = OfficeCore.DialogPage.newObject(context);
|
|
dialogPage.sendMessageToHost(message);
|
|
return [4, context.sync()];
|
|
case 1:
|
|
_a.sent();
|
|
return [2];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
dialogPage_1.sendMessageToHost = sendMessageToHost;
|
|
})(dialogPage = Office.dialogPage || (Office.dialogPage = {}));
|
|
})(Office || (Office = {}));
|
|
var __extends = (this && this.__extends) || (function () {
|
|
var extendStatics = Object.setPrototypeOf ||
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
function (d, b) { for (var p in b)
|
|
if (b.hasOwnProperty(p))
|
|
d[p] = b[p]; };
|
|
return function (d, b) {
|
|
extendStatics(d, b);
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
})();
|
|
var PowerPoint;
|
|
(function (PowerPoint) {
|
|
var _hostName = "PowerPoint";
|
|
var _defaultApiSetName = "PowerPointApi";
|
|
var _createPropertyObject = OfficeExtension.BatchApiHelper.createPropertyObject;
|
|
var _createMethodObject = OfficeExtension.BatchApiHelper.createMethodObject;
|
|
var _createIndexerObject = OfficeExtension.BatchApiHelper.createIndexerObject;
|
|
var _createRootServiceObject = OfficeExtension.BatchApiHelper.createRootServiceObject;
|
|
var _createTopLevelServiceObject = OfficeExtension.BatchApiHelper.createTopLevelServiceObject;
|
|
var _createChildItemObject = OfficeExtension.BatchApiHelper.createChildItemObject;
|
|
var _invokeMethod = OfficeExtension.BatchApiHelper.invokeMethod;
|
|
var _invokeEnsureUnchanged = OfficeExtension.BatchApiHelper.invokeEnsureUnchanged;
|
|
var _invokeSetProperty = OfficeExtension.BatchApiHelper.invokeSetProperty;
|
|
var _isNullOrUndefined = OfficeExtension.Utility.isNullOrUndefined;
|
|
var _isUndefined = OfficeExtension.Utility.isUndefined;
|
|
var _throwIfNotLoaded = OfficeExtension.Utility.throwIfNotLoaded;
|
|
var _throwIfApiNotSupported = OfficeExtension.Utility.throwIfApiNotSupported;
|
|
var _load = OfficeExtension.Utility.load;
|
|
var _retrieve = OfficeExtension.Utility.retrieve;
|
|
var _toJson = OfficeExtension.Utility.toJson;
|
|
var _fixObjectPathIfNecessary = OfficeExtension.Utility.fixObjectPathIfNecessary;
|
|
var _handleNavigationPropertyResults = OfficeExtension.Utility._handleNavigationPropertyResults;
|
|
var _adjustToDateTime = OfficeExtension.Utility.adjustToDateTime;
|
|
var _processRetrieveResult = OfficeExtension.Utility.processRetrieveResult;
|
|
var _setMockData = OfficeExtension.Utility.setMockData;
|
|
var _calculateApiFlags = OfficeExtension.CommonUtility.calculateApiFlags;
|
|
var _typeApplication = "Application";
|
|
var Application = (function (_super) {
|
|
__extends(Application, _super);
|
|
function Application() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Application.prototype, "_className", {
|
|
get: function () {
|
|
return "Application";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Application.prototype.insertHyperLink = function (address, displayName) {
|
|
_throwIfApiNotSupported("Application.insertHyperLink", _defaultApiSetName, "1.1", _hostName);
|
|
_invokeMethod(this, "InsertHyperLink", 0, [address, displayName], 1, 0);
|
|
};
|
|
Application.prototype.insertSlideFromContent = function (slideContent) {
|
|
_throwIfApiNotSupported("Application.insertSlideFromContent", _defaultApiSetName, "1.1", _hostName);
|
|
return _invokeMethod(this, "InsertSlideFromContent", 0, [slideContent], 1, 0);
|
|
};
|
|
Application.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
};
|
|
Application.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Application.newObject = function (context) {
|
|
return _createTopLevelServiceObject(PowerPoint.Application, context, "Microsoft.Office.PowerPoint.Application", false, 4);
|
|
};
|
|
Application.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
return Application;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.Application = Application;
|
|
var _typePresentation = "Presentation";
|
|
var Presentation = (function (_super) {
|
|
__extends(Presentation, _super);
|
|
function Presentation() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Presentation.prototype, "_className", {
|
|
get: function () {
|
|
return "Presentation";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Presentation.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["title"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Presentation.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Title"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Presentation.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["slides", "slideMasters", "tags"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Presentation.prototype, "slideMasters", {
|
|
get: function () {
|
|
_throwIfApiNotSupported("Presentation.slideMasters", _defaultApiSetName, "1.3", _hostName);
|
|
if (!this._S) {
|
|
this._S = _createPropertyObject(PowerPoint.SlideMasterCollection, this, "SlideMasters", true, 4);
|
|
}
|
|
return this._S;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Presentation.prototype, "slides", {
|
|
get: function () {
|
|
_throwIfApiNotSupported("Presentation.slides", _defaultApiSetName, "1.2", _hostName);
|
|
if (!this._Sl) {
|
|
this._Sl = _createPropertyObject(PowerPoint.SlideCollection, this, "Slides", true, 4);
|
|
}
|
|
return this._Sl;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Presentation.prototype, "tags", {
|
|
get: function () {
|
|
_throwIfApiNotSupported("Presentation.tags", _defaultApiSetName, "1.3", _hostName);
|
|
if (!this._T) {
|
|
this._T = _createPropertyObject(PowerPoint.TagCollection, this, "Tags", true, 4);
|
|
}
|
|
return this._T;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Presentation.prototype, "title", {
|
|
get: function () {
|
|
_throwIfNotLoaded("title", this._Ti, _typePresentation, this._isNull);
|
|
return this._Ti;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Presentation.prototype.insertSlidesFromBase64 = function (base64File, options) {
|
|
_throwIfApiNotSupported("Presentation.insertSlidesFromBase64", _defaultApiSetName, "1.2", _hostName);
|
|
_invokeMethod(this, "InsertSlidesFromBase64", 0, [base64File, options], 0, 0);
|
|
};
|
|
Presentation.prototype._RegisterEvent = function (referenceId, eventType) {
|
|
_invokeMethod(this, "_RegisterEvent", 1, [referenceId, eventType], 4, 0);
|
|
};
|
|
Presentation.prototype._UnregisterEvent = function (referenceId, eventType) {
|
|
_invokeMethod(this, "_UnregisterEvent", 1, [referenceId, eventType], 4, 0);
|
|
};
|
|
Presentation.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Title"])) {
|
|
this._Ti = obj["Title"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["slideMasters", "SlideMasters", "slides", "Slides", "tags", "Tags"]);
|
|
};
|
|
Presentation.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
Presentation.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
Presentation.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Presentation.prototype.toJSON = function () {
|
|
return _toJson(this, {
|
|
"title": this._Ti
|
|
}, {});
|
|
};
|
|
Presentation.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
Presentation.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return Presentation;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.Presentation = Presentation;
|
|
var InsertSlideFormatting;
|
|
(function (InsertSlideFormatting) {
|
|
InsertSlideFormatting["keepSourceFormatting"] = "KeepSourceFormatting";
|
|
InsertSlideFormatting["useDestinationTheme"] = "UseDestinationTheme";
|
|
})(InsertSlideFormatting = PowerPoint.InsertSlideFormatting || (PowerPoint.InsertSlideFormatting = {}));
|
|
var _typeTag = "Tag";
|
|
var Tag = (function (_super) {
|
|
__extends(Tag, _super);
|
|
function Tag() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Tag.prototype, "_className", {
|
|
get: function () {
|
|
return "Tag";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Tag.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["key", "value"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Tag.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Key", "Value"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Tag.prototype, "_scalarPropertyUpdateable", {
|
|
get: function () {
|
|
return [false, true];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Tag.prototype, "key", {
|
|
get: function () {
|
|
_throwIfNotLoaded("key", this._K, _typeTag, this._isNull);
|
|
return this._K;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Tag.prototype, "value", {
|
|
get: function () {
|
|
_throwIfNotLoaded("value", this._V, _typeTag, this._isNull);
|
|
return this._V;
|
|
},
|
|
set: function (value) {
|
|
this._V = value;
|
|
_invokeSetProperty(this, "Value", value, 0);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Tag.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Key"])) {
|
|
this._K = obj["Key"];
|
|
}
|
|
if (!_isUndefined(obj["Value"])) {
|
|
this._V = obj["Value"];
|
|
}
|
|
};
|
|
Tag.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
Tag.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
Tag.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Tag.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
Tag.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
Tag.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return Tag;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.Tag = Tag;
|
|
var _typeTagCollection = "TagCollection";
|
|
var TagCollection = (function (_super) {
|
|
__extends(TagCollection, _super);
|
|
function TagCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(TagCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "TagCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(TagCollection.prototype, "_isCollection", {
|
|
get: function () {
|
|
return true;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(TagCollection.prototype, "items", {
|
|
get: function () {
|
|
_throwIfNotLoaded("items", this.m__items, _typeTagCollection, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
TagCollection.prototype.add = function (key, value) {
|
|
_invokeMethod(this, "Add", 0, [key, value], 0, 0);
|
|
};
|
|
TagCollection.prototype["delete"] = function (key) {
|
|
_invokeMethod(this, "Delete", 0, [key], 0, 0);
|
|
};
|
|
TagCollection.prototype.getCount = function () {
|
|
return _invokeMethod(this, "GetCount", 1, [], 4, 0);
|
|
};
|
|
TagCollection.prototype.getItem = function (key) {
|
|
return _createIndexerObject(PowerPoint.Tag, this, [key]);
|
|
};
|
|
TagCollection.prototype.getItemAt = function (index) {
|
|
return _createMethodObject(PowerPoint.Tag, this, "GetItemAt", 1, [index], false, false, null, 4);
|
|
};
|
|
TagCollection.prototype.getItemOrNullObject = function (key) {
|
|
return _createMethodObject(PowerPoint.Tag, this, "GetItemOrNullObject", 0, [key], false, false, null, 0);
|
|
};
|
|
TagCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isNullOrUndefined(obj[OfficeExtension.Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = obj[OfficeExtension.Constants.items];
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = _createChildItemObject(PowerPoint.Tag, true, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
};
|
|
TagCollection.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
TagCollection.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
TagCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
var _this = this;
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result, function (childItemData, index) { return _createChildItemObject(PowerPoint.Tag, true, _this, childItemData, index); });
|
|
};
|
|
TagCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {}, this.m__items);
|
|
};
|
|
TagCollection.prototype.setMockData = function (data) {
|
|
var _this = this;
|
|
_setMockData(this, data, function (childItemData, index) { return _createChildItemObject(PowerPoint.Tag, true, _this, childItemData, index); }, function (items) { return _this.m__items = items; });
|
|
};
|
|
return TagCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.TagCollection = TagCollection;
|
|
var _typeShape = "Shape";
|
|
var Shape = (function (_super) {
|
|
__extends(Shape, _super);
|
|
function Shape() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Shape.prototype, "_className", {
|
|
get: function () {
|
|
return "Shape";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Shape.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Shape.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Shape.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["tags"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Shape.prototype, "tags", {
|
|
get: function () {
|
|
if (!this._T) {
|
|
this._T = _createPropertyObject(PowerPoint.TagCollection, this, "Tags", true, 4);
|
|
}
|
|
return this._T;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Shape.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeShape, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Shape.prototype["delete"] = function () {
|
|
_invokeMethod(this, "Delete", 0, [], 0, 0);
|
|
};
|
|
Shape.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["tags", "Tags"]);
|
|
};
|
|
Shape.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
Shape.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
Shape.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
Shape.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Shape.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
Shape.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
Shape.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return Shape;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.Shape = Shape;
|
|
var _typeShapeCollection = "ShapeCollection";
|
|
var ShapeCollection = (function (_super) {
|
|
__extends(ShapeCollection, _super);
|
|
function ShapeCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(ShapeCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "ShapeCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ShapeCollection.prototype, "_isCollection", {
|
|
get: function () {
|
|
return true;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ShapeCollection.prototype, "items", {
|
|
get: function () {
|
|
_throwIfNotLoaded("items", this.m__items, _typeShapeCollection, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
ShapeCollection.prototype.getCount = function () {
|
|
return _invokeMethod(this, "GetCount", 1, [], 4, 0);
|
|
};
|
|
ShapeCollection.prototype.getItem = function (key) {
|
|
return _createIndexerObject(PowerPoint.Shape, this, [key]);
|
|
};
|
|
ShapeCollection.prototype.getItemAt = function (index) {
|
|
return _createMethodObject(PowerPoint.Shape, this, "GetItemAt", 1, [index], false, false, null, 4);
|
|
};
|
|
ShapeCollection.prototype.getItemOrNullObject = function (id) {
|
|
return _createMethodObject(PowerPoint.Shape, this, "GetItemOrNullObject", 0, [id], false, false, null, 0);
|
|
};
|
|
ShapeCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isNullOrUndefined(obj[OfficeExtension.Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = obj[OfficeExtension.Constants.items];
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = _createChildItemObject(PowerPoint.Shape, true, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
};
|
|
ShapeCollection.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
ShapeCollection.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
ShapeCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
var _this = this;
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result, function (childItemData, index) { return _createChildItemObject(PowerPoint.Shape, true, _this, childItemData, index); });
|
|
};
|
|
ShapeCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {}, this.m__items);
|
|
};
|
|
ShapeCollection.prototype.setMockData = function (data) {
|
|
var _this = this;
|
|
_setMockData(this, data, function (childItemData, index) { return _createChildItemObject(PowerPoint.Shape, true, _this, childItemData, index); }, function (items) { return _this.m__items = items; });
|
|
};
|
|
return ShapeCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.ShapeCollection = ShapeCollection;
|
|
var _typeSlideLayout = "SlideLayout";
|
|
var SlideLayout = (function (_super) {
|
|
__extends(SlideLayout, _super);
|
|
function SlideLayout() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(SlideLayout.prototype, "_className", {
|
|
get: function () {
|
|
return "SlideLayout";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideLayout.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id", "name"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideLayout.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id", "Name"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideLayout.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["shapes"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideLayout.prototype, "shapes", {
|
|
get: function () {
|
|
if (!this._S) {
|
|
this._S = _createPropertyObject(PowerPoint.ShapeCollection, this, "Shapes", true, 4);
|
|
}
|
|
return this._S;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideLayout.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeSlideLayout, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideLayout.prototype, "name", {
|
|
get: function () {
|
|
_throwIfNotLoaded("name", this._N, _typeSlideLayout, this._isNull);
|
|
return this._N;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
SlideLayout.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
if (!_isUndefined(obj["Name"])) {
|
|
this._N = obj["Name"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["shapes", "Shapes"]);
|
|
};
|
|
SlideLayout.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
SlideLayout.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
SlideLayout.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
SlideLayout.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
SlideLayout.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
SlideLayout.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
SlideLayout.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return SlideLayout;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.SlideLayout = SlideLayout;
|
|
var _typeSlideLayoutCollection = "SlideLayoutCollection";
|
|
var SlideLayoutCollection = (function (_super) {
|
|
__extends(SlideLayoutCollection, _super);
|
|
function SlideLayoutCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(SlideLayoutCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "SlideLayoutCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideLayoutCollection.prototype, "_isCollection", {
|
|
get: function () {
|
|
return true;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideLayoutCollection.prototype, "items", {
|
|
get: function () {
|
|
_throwIfNotLoaded("items", this.m__items, _typeSlideLayoutCollection, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
SlideLayoutCollection.prototype.getCount = function () {
|
|
return _invokeMethod(this, "GetCount", 1, [], 4, 0);
|
|
};
|
|
SlideLayoutCollection.prototype.getItem = function (key) {
|
|
return _createIndexerObject(PowerPoint.SlideLayout, this, [key]);
|
|
};
|
|
SlideLayoutCollection.prototype.getItemAt = function (index) {
|
|
return _createMethodObject(PowerPoint.SlideLayout, this, "GetItemAt", 1, [index], false, false, null, 4);
|
|
};
|
|
SlideLayoutCollection.prototype.getItemOrNullObject = function (id) {
|
|
return _createMethodObject(PowerPoint.SlideLayout, this, "GetItemOrNullObject", 0, [id], false, false, null, 0);
|
|
};
|
|
SlideLayoutCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isNullOrUndefined(obj[OfficeExtension.Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = obj[OfficeExtension.Constants.items];
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = _createChildItemObject(PowerPoint.SlideLayout, true, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
};
|
|
SlideLayoutCollection.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
SlideLayoutCollection.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
SlideLayoutCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
var _this = this;
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result, function (childItemData, index) { return _createChildItemObject(PowerPoint.SlideLayout, true, _this, childItemData, index); });
|
|
};
|
|
SlideLayoutCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {}, this.m__items);
|
|
};
|
|
SlideLayoutCollection.prototype.setMockData = function (data) {
|
|
var _this = this;
|
|
_setMockData(this, data, function (childItemData, index) { return _createChildItemObject(PowerPoint.SlideLayout, true, _this, childItemData, index); }, function (items) { return _this.m__items = items; });
|
|
};
|
|
return SlideLayoutCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.SlideLayoutCollection = SlideLayoutCollection;
|
|
var _typeSlideMaster = "SlideMaster";
|
|
var SlideMaster = (function (_super) {
|
|
__extends(SlideMaster, _super);
|
|
function SlideMaster() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(SlideMaster.prototype, "_className", {
|
|
get: function () {
|
|
return "SlideMaster";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMaster.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id", "name"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMaster.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id", "Name"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMaster.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["layouts", "shapes"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMaster.prototype, "layouts", {
|
|
get: function () {
|
|
if (!this._L) {
|
|
this._L = _createPropertyObject(PowerPoint.SlideLayoutCollection, this, "Layouts", true, 4);
|
|
}
|
|
return this._L;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMaster.prototype, "shapes", {
|
|
get: function () {
|
|
if (!this._S) {
|
|
this._S = _createPropertyObject(PowerPoint.ShapeCollection, this, "Shapes", true, 4);
|
|
}
|
|
return this._S;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMaster.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeSlideMaster, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMaster.prototype, "name", {
|
|
get: function () {
|
|
_throwIfNotLoaded("name", this._N, _typeSlideMaster, this._isNull);
|
|
return this._N;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
SlideMaster.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
if (!_isUndefined(obj["Name"])) {
|
|
this._N = obj["Name"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["layouts", "Layouts", "shapes", "Shapes"]);
|
|
};
|
|
SlideMaster.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
SlideMaster.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
SlideMaster.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
SlideMaster.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
SlideMaster.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
SlideMaster.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
SlideMaster.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return SlideMaster;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.SlideMaster = SlideMaster;
|
|
var _typeSlide = "Slide";
|
|
var Slide = (function (_super) {
|
|
__extends(Slide, _super);
|
|
function Slide() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(Slide.prototype, "_className", {
|
|
get: function () {
|
|
return "Slide";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Slide.prototype, "_scalarPropertyNames", {
|
|
get: function () {
|
|
return ["id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Slide.prototype, "_scalarPropertyOriginalNames", {
|
|
get: function () {
|
|
return ["Id"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Slide.prototype, "_navigationPropertyNames", {
|
|
get: function () {
|
|
return ["shapes", "layout", "slideMaster", "tags"];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Slide.prototype, "layout", {
|
|
get: function () {
|
|
_throwIfApiNotSupported("Slide.layout", _defaultApiSetName, "1.3", _hostName);
|
|
if (!this._L) {
|
|
this._L = _createPropertyObject(PowerPoint.SlideLayout, this, "Layout", false, 4);
|
|
}
|
|
return this._L;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Slide.prototype, "shapes", {
|
|
get: function () {
|
|
_throwIfApiNotSupported("Slide.shapes", _defaultApiSetName, "1.3", _hostName);
|
|
if (!this._S) {
|
|
this._S = _createPropertyObject(PowerPoint.ShapeCollection, this, "Shapes", true, 4);
|
|
}
|
|
return this._S;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Slide.prototype, "slideMaster", {
|
|
get: function () {
|
|
_throwIfApiNotSupported("Slide.slideMaster", _defaultApiSetName, "1.3", _hostName);
|
|
if (!this._Sl) {
|
|
this._Sl = _createPropertyObject(PowerPoint.SlideMaster, this, "SlideMaster", false, 4);
|
|
}
|
|
return this._Sl;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Slide.prototype, "tags", {
|
|
get: function () {
|
|
_throwIfApiNotSupported("Slide.tags", _defaultApiSetName, "1.3", _hostName);
|
|
if (!this._T) {
|
|
this._T = _createPropertyObject(PowerPoint.TagCollection, this, "Tags", true, 4);
|
|
}
|
|
return this._T;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Slide.prototype, "id", {
|
|
get: function () {
|
|
_throwIfNotLoaded("id", this._I, _typeSlide, this._isNull);
|
|
return this._I;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Slide.prototype["delete"] = function () {
|
|
_invokeMethod(this, "Delete", 0, [], 0, 0);
|
|
};
|
|
Slide.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isUndefined(obj["Id"])) {
|
|
this._I = obj["Id"];
|
|
}
|
|
_handleNavigationPropertyResults(this, obj, ["layout", "Layout", "shapes", "Shapes", "slideMaster", "SlideMaster", "tags", "Tags"]);
|
|
};
|
|
Slide.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
Slide.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
Slide.prototype._handleIdResult = function (value) {
|
|
_super.prototype._handleIdResult.call(this, value);
|
|
if (_isNullOrUndefined(value)) {
|
|
return;
|
|
}
|
|
if (!_isUndefined(value["Id"])) {
|
|
this._I = value["Id"];
|
|
}
|
|
};
|
|
Slide.prototype._handleRetrieveResult = function (value, result) {
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result);
|
|
};
|
|
Slide.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {});
|
|
};
|
|
Slide.prototype.setMockData = function (data) {
|
|
_setMockData(this, data);
|
|
};
|
|
Slide.prototype.ensureUnchanged = function (data) {
|
|
_invokeEnsureUnchanged(this, data);
|
|
return;
|
|
};
|
|
return Slide;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.Slide = Slide;
|
|
var _typeSlideCollection = "SlideCollection";
|
|
var SlideCollection = (function (_super) {
|
|
__extends(SlideCollection, _super);
|
|
function SlideCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(SlideCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "SlideCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideCollection.prototype, "_isCollection", {
|
|
get: function () {
|
|
return true;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideCollection.prototype, "items", {
|
|
get: function () {
|
|
_throwIfNotLoaded("items", this.m__items, _typeSlideCollection, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
SlideCollection.prototype.add = function (options) {
|
|
_throwIfApiNotSupported("SlideCollection.add", _defaultApiSetName, "1.3", _hostName);
|
|
_invokeMethod(this, "Add", 0, [options], 0, 0);
|
|
};
|
|
SlideCollection.prototype.getCount = function () {
|
|
return _invokeMethod(this, "GetCount", 1, [], 4, 0);
|
|
};
|
|
SlideCollection.prototype.getItem = function (key) {
|
|
return _createIndexerObject(PowerPoint.Slide, this, [key]);
|
|
};
|
|
SlideCollection.prototype.getItemAt = function (index) {
|
|
return _createMethodObject(PowerPoint.Slide, this, "GetItemAt", 1, [index], false, false, null, 4);
|
|
};
|
|
SlideCollection.prototype.getItemOrNullObject = function (id) {
|
|
return _createMethodObject(PowerPoint.Slide, this, "GetItemOrNullObject", 0, [id], false, false, null, 0);
|
|
};
|
|
SlideCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isNullOrUndefined(obj[OfficeExtension.Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = obj[OfficeExtension.Constants.items];
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = _createChildItemObject(PowerPoint.Slide, true, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
};
|
|
SlideCollection.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
SlideCollection.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
SlideCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
var _this = this;
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result, function (childItemData, index) { return _createChildItemObject(PowerPoint.Slide, true, _this, childItemData, index); });
|
|
};
|
|
SlideCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {}, this.m__items);
|
|
};
|
|
SlideCollection.prototype.setMockData = function (data) {
|
|
var _this = this;
|
|
_setMockData(this, data, function (childItemData, index) { return _createChildItemObject(PowerPoint.Slide, true, _this, childItemData, index); }, function (items) { return _this.m__items = items; });
|
|
};
|
|
return SlideCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.SlideCollection = SlideCollection;
|
|
var _typeSlideMasterCollection = "SlideMasterCollection";
|
|
var SlideMasterCollection = (function (_super) {
|
|
__extends(SlideMasterCollection, _super);
|
|
function SlideMasterCollection() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
Object.defineProperty(SlideMasterCollection.prototype, "_className", {
|
|
get: function () {
|
|
return "SlideMasterCollection";
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMasterCollection.prototype, "_isCollection", {
|
|
get: function () {
|
|
return true;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(SlideMasterCollection.prototype, "items", {
|
|
get: function () {
|
|
_throwIfNotLoaded("items", this.m__items, _typeSlideMasterCollection, this._isNull);
|
|
return this.m__items;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
SlideMasterCollection.prototype.getCount = function () {
|
|
return _invokeMethod(this, "GetCount", 1, [], 4, 0);
|
|
};
|
|
SlideMasterCollection.prototype.getItem = function (key) {
|
|
return _createIndexerObject(PowerPoint.SlideMaster, this, [key]);
|
|
};
|
|
SlideMasterCollection.prototype.getItemAt = function (index) {
|
|
return _createMethodObject(PowerPoint.SlideMaster, this, "GetItemAt", 1, [index], false, false, null, 4);
|
|
};
|
|
SlideMasterCollection.prototype.getItemOrNullObject = function (id) {
|
|
return _createMethodObject(PowerPoint.SlideMaster, this, "GetItemOrNullObject", 0, [id], false, false, null, 0);
|
|
};
|
|
SlideMasterCollection.prototype._handleResult = function (value) {
|
|
_super.prototype._handleResult.call(this, value);
|
|
if (_isNullOrUndefined(value))
|
|
return;
|
|
var obj = value;
|
|
_fixObjectPathIfNecessary(this, obj);
|
|
if (!_isNullOrUndefined(obj[OfficeExtension.Constants.items])) {
|
|
this.m__items = [];
|
|
var _data = obj[OfficeExtension.Constants.items];
|
|
for (var i = 0; i < _data.length; i++) {
|
|
var _item = _createChildItemObject(PowerPoint.SlideMaster, true, this, _data[i], i);
|
|
_item._handleResult(_data[i]);
|
|
this.m__items.push(_item);
|
|
}
|
|
}
|
|
};
|
|
SlideMasterCollection.prototype.load = function (options) {
|
|
return _load(this, options);
|
|
};
|
|
SlideMasterCollection.prototype.retrieve = function (option) {
|
|
return _retrieve(this, option);
|
|
};
|
|
SlideMasterCollection.prototype._handleRetrieveResult = function (value, result) {
|
|
var _this = this;
|
|
_super.prototype._handleRetrieveResult.call(this, value, result);
|
|
_processRetrieveResult(this, value, result, function (childItemData, index) { return _createChildItemObject(PowerPoint.SlideMaster, true, _this, childItemData, index); });
|
|
};
|
|
SlideMasterCollection.prototype.toJSON = function () {
|
|
return _toJson(this, {}, {}, this.m__items);
|
|
};
|
|
SlideMasterCollection.prototype.setMockData = function (data) {
|
|
var _this = this;
|
|
_setMockData(this, data, function (childItemData, index) { return _createChildItemObject(PowerPoint.SlideMaster, true, _this, childItemData, index); }, function (items) { return _this.m__items = items; });
|
|
};
|
|
return SlideMasterCollection;
|
|
}(OfficeExtension.ClientObject));
|
|
PowerPoint.SlideMasterCollection = SlideMasterCollection;
|
|
var ErrorCodes;
|
|
(function (ErrorCodes) {
|
|
ErrorCodes["generalException"] = "GeneralException";
|
|
})(ErrorCodes = PowerPoint.ErrorCodes || (PowerPoint.ErrorCodes = {}));
|
|
})(PowerPoint || (PowerPoint = {}));
|
|
var PowerPoint;
|
|
(function (PowerPoint) {
|
|
var RequestContext = (function (_super) {
|
|
__extends(RequestContext, _super);
|
|
function RequestContext(url) {
|
|
var _this = _super.call(this, url) || this;
|
|
_this.m_presentation = new PowerPoint.Presentation(_this, OfficeExtension.ObjectPathFactory.createGlobalObjectObjectPath(_this));
|
|
_this._rootObject = _this.m_presentation;
|
|
return _this;
|
|
}
|
|
Object.defineProperty(RequestContext.prototype, "presentation", {
|
|
get: function () {
|
|
return this.m_presentation;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(RequestContext.prototype, "application", {
|
|
get: function () {
|
|
if (this.m_application == null) {
|
|
this.m_application = new PowerPoint.Application(this, OfficeExtension.ObjectPathFactory.createNewObjectObjectPath(this, "Microsoft.Office.PowerPoint.Application", false));
|
|
}
|
|
return this.m_application;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
return RequestContext;
|
|
}(OfficeCore.RequestContext));
|
|
PowerPoint.RequestContext = RequestContext;
|
|
function run(arg1, arg2) {
|
|
return OfficeExtension.ClientRequestContext._runBatch("PowerPoint.run", arguments, function () { return new PowerPoint.RequestContext(); });
|
|
}
|
|
PowerPoint.run = run;
|
|
})(PowerPoint || (PowerPoint = {}));
|
|
var PowerPoint;
|
|
(function (PowerPoint) {
|
|
function createPresentation(base64) {
|
|
return new Office.Promise(function (resolve, reject) {
|
|
try {
|
|
OfficeExtension.Utility.throwIfApiNotSupported("PowerPoint.createPresentation", "PowerPointApi", "1.1", "PowerPoint");
|
|
}
|
|
catch (e) {
|
|
reject(e);
|
|
return;
|
|
}
|
|
var callback = function (asyncResult) {
|
|
if (asyncResult.status === Office.AsyncResultStatus.Failed) {
|
|
reject(new OfficeExtension.Error({
|
|
code: OfficeExtension.ErrorCodes.generalException,
|
|
message: asyncResult.error.message,
|
|
debugInfo: {}
|
|
}));
|
|
}
|
|
else {
|
|
resolve();
|
|
}
|
|
};
|
|
var func = Office.context.application.createDocumentAsync;
|
|
if (base64) {
|
|
func({ base64: base64 }, callback);
|
|
}
|
|
else {
|
|
func(callback);
|
|
}
|
|
});
|
|
}
|
|
PowerPoint.createPresentation = createPresentation;
|
|
})(PowerPoint || (PowerPoint = {}));
|
|
OSFAriaLogger.AriaLogger.EnableSendingTelemetryWithOTel = true;
|
|
OSFAriaLogger.AriaLogger.EnableSendingTelemetryWithLegacyAria = false;
|
|
window.OfficeExtensionBatch = window.OfficeExtension;
|
|
!function (modules) {
|
|
var installedModules = {};
|
|
function __webpack_require__(moduleId) {
|
|
if (installedModules[moduleId])
|
|
return installedModules[moduleId].exports;
|
|
var module = installedModules[moduleId] = {
|
|
i: moduleId,
|
|
l: !1,
|
|
exports: {}
|
|
};
|
|
return modules[moduleId].call(module.exports, module, module.exports, __webpack_require__),
|
|
module.l = !0, module.exports;
|
|
}
|
|
__webpack_require__.m = modules, __webpack_require__.c = installedModules, __webpack_require__.d = function (exports, name, getter) {
|
|
__webpack_require__.o(exports, name) || Object.defineProperty(exports, name, {
|
|
enumerable: !0,
|
|
get: getter
|
|
});
|
|
}, __webpack_require__.r = function (exports) {
|
|
"undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(exports, Symbol.toStringTag, {
|
|
value: "Module"
|
|
}), Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
});
|
|
}, __webpack_require__.t = function (value, mode) {
|
|
if (1 & mode && (value = __webpack_require__(value)), 8 & mode)
|
|
return value;
|
|
if (4 & mode && "object" == typeof value && value && value.__esModule)
|
|
return value;
|
|
var ns = Object.create(null);
|
|
if (__webpack_require__.r(ns), Object.defineProperty(ns, "default", {
|
|
enumerable: !0,
|
|
value: value
|
|
}), 2 & mode && "string" != typeof value)
|
|
for (var key in value)
|
|
__webpack_require__.d(ns, key, function (key) {
|
|
return value[key];
|
|
}.bind(null, key));
|
|
return ns;
|
|
}, __webpack_require__.n = function (module) {
|
|
var getter = module && module.__esModule ? function () {
|
|
return module["default"];
|
|
} : function () {
|
|
return module;
|
|
};
|
|
return __webpack_require__.d(getter, "a", getter), getter;
|
|
}, __webpack_require__.o = function (object, property) {
|
|
return Object.prototype.hasOwnProperty.call(object, property);
|
|
}, __webpack_require__.p = "", __webpack_require__(__webpack_require__.s = 1);
|
|
}([function (module, exports) {
|
|
module.exports = OfficeExtensionBatch;
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
var __assign = this && this.__assign || function () {
|
|
return (__assign = Object.assign || function (t) {
|
|
for (var s, i = 1, n = arguments.length; i < n; i++)
|
|
for (var p in s = arguments[i])
|
|
Object.prototype.hasOwnProperty.call(s, p) && (t[p] = s[p]);
|
|
return t;
|
|
}).apply(this, arguments);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
});
|
|
var office_apiinformation_web_1 = __webpack_require__(2), AsyncStorage = __webpack_require__(3), DialogApi = __webpack_require__(4), officeruntime_storage_web_1 = __webpack_require__(5), Experimentation = __webpack_require__(6), officeruntime_message_1 = __webpack_require__(7), officeruntime_auth_1 = __webpack_require__(10), DynamicRibbon = __webpack_require__(11);
|
|
window._OfficeRuntimeWeb = __assign(__assign({}, window.OfficeRuntime), {
|
|
displayWebDialog: DialogApi.displayWebDialog,
|
|
AsyncStorage: AsyncStorage,
|
|
storage: officeruntime_storage_web_1.storage,
|
|
experimentation: Experimentation.experimentation,
|
|
apiInformation: office_apiinformation_web_1.apiInformation,
|
|
message: officeruntime_message_1.Message.instance,
|
|
ui: DynamicRibbon.ui,
|
|
auth: officeruntime_auth_1.Auth.instance
|
|
}), Object.freeze(window._OfficeRuntimeWeb);
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.apiInformation = void 0, exports.apiInformation = {
|
|
isSetSupported: function (capability, version) {
|
|
try {
|
|
return !!(Office && Office.context && Office.context.requirements) && Office.context.requirements.isSetSupported(capability, version);
|
|
}
|
|
catch (e) {
|
|
return !1;
|
|
}
|
|
}
|
|
};
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.multiGet = exports.multiRemove = exports.multiSet = exports.getAllKeys = exports.clear = exports.removeItem = exports.setItem = exports.getItem = void 0;
|
|
var prefix = "_Office_AsyncStorage_";
|
|
function ensureFreshLocalStorage() {
|
|
window.localStorage.setItem("_Office_AsyncStorage_|_unusedKey_", null), window.localStorage.removeItem("_Office_AsyncStorage_|_unusedKey_");
|
|
}
|
|
function performAction(action, callback) {
|
|
return void 0 === callback && (callback = function () { }), new Promise((function (resolve, reject) {
|
|
try {
|
|
ensureFreshLocalStorage(), action(), callback(null), resolve();
|
|
}
|
|
catch (e) {
|
|
callback(e), reject(e);
|
|
}
|
|
}));
|
|
}
|
|
function performActionAndReturnResult(action, callback) {
|
|
return void 0 === callback && (callback = function () { }), new Promise((function (resolve, reject) {
|
|
try {
|
|
ensureFreshLocalStorage();
|
|
var result = action();
|
|
callback(null, result), resolve(result);
|
|
}
|
|
catch (e) {
|
|
callback(e, null), reject(e);
|
|
}
|
|
}));
|
|
}
|
|
function performMultiAction(collection, action, callback) {
|
|
return void 0 === callback && (callback = function () { }), new Promise((function (resolve, reject) {
|
|
var errors = [];
|
|
try {
|
|
ensureFreshLocalStorage();
|
|
}
|
|
catch (e) {
|
|
errors.push(e);
|
|
}
|
|
collection.forEach((function (item) {
|
|
try {
|
|
action(item);
|
|
}
|
|
catch (e) {
|
|
errors.push(e);
|
|
}
|
|
})), callback(errors), errors.length > 0 ? reject(errors) : resolve();
|
|
}));
|
|
}
|
|
exports.getItem = function (key, callback) {
|
|
return performActionAndReturnResult((function () {
|
|
return window.localStorage.getItem(prefix + key);
|
|
}), callback);
|
|
}, exports.setItem = function (key, value, callback) {
|
|
return performAction((function () {
|
|
return window.localStorage.setItem(prefix + key, value);
|
|
}), callback);
|
|
}, exports.removeItem = function (key, callback) {
|
|
return performAction((function () {
|
|
return window.localStorage.removeItem(prefix + key);
|
|
}), callback);
|
|
}, exports.clear = function (callback) {
|
|
return performAction((function () {
|
|
Object.keys(window.localStorage).filter((function (fullKey) {
|
|
return 0 === fullKey.indexOf(prefix);
|
|
})).forEach((function (fullKey) {
|
|
return window.localStorage.removeItem(fullKey);
|
|
}));
|
|
}), callback);
|
|
}, exports.getAllKeys = function (callback) {
|
|
return performActionAndReturnResult((function () {
|
|
return Object.keys(window.localStorage).filter((function (fullKey) {
|
|
return 0 === fullKey.indexOf(prefix);
|
|
})).map((function (fullKey) {
|
|
return fullKey.substr(prefix.length);
|
|
}));
|
|
}), callback);
|
|
}, exports.multiSet = function (keyValuePairs, callback) {
|
|
return performMultiAction(keyValuePairs, (function (_a) {
|
|
var key = _a[0], value = _a[1];
|
|
return window.localStorage.setItem(prefix + key, value);
|
|
}), callback);
|
|
}, exports.multiRemove = function (keys, callback) {
|
|
return performMultiAction(keys, (function (key) {
|
|
return window.localStorage.removeItem(prefix + key);
|
|
}), callback);
|
|
}, exports.multiGet = function (keys, callback) {
|
|
return new Promise((function (resolve, reject) {
|
|
callback || (callback = function () { });
|
|
var errors = [], results = keys.map((function (key) {
|
|
try {
|
|
return [key, window.localStorage.getItem(prefix + key)];
|
|
}
|
|
catch (e) {
|
|
errors.push(e);
|
|
}
|
|
})).filter((function (pair) {
|
|
return pair;
|
|
}));
|
|
errors.length > 0 ? (callback(errors, results), reject(errors)) : (callback(null, results),
|
|
resolve(results));
|
|
}));
|
|
};
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.displayWebDialog = exports.Dialog = void 0;
|
|
var OfficeExtension = __webpack_require__(0), Dialog = function () {
|
|
function Dialog(_dialog) {
|
|
this._dialog = _dialog;
|
|
}
|
|
return Dialog.prototype.close = function () {
|
|
return this._dialog.close(), OfficeExtension.CoreUtility.Promise.resolve();
|
|
}, Dialog;
|
|
}();
|
|
exports.Dialog = Dialog, exports.displayWebDialog = function (url, options) {
|
|
return new OfficeExtension.CoreUtility.Promise((function (resolve, reject) {
|
|
if (options.width && options.height && (!isInt(options.width) || !isInt(options.height)))
|
|
throw new OfficeExtension.Error({
|
|
code: "InvalidArgument",
|
|
message: 'Dimensions must be "number%" or number.'
|
|
});
|
|
var dialog, dialogOptions = {
|
|
width: options.width ? parseInt(options.width, 10) : 50,
|
|
height: options.height ? parseInt(options.height, 10) : 50,
|
|
displayInIframe: options.displayInIFrame || !1
|
|
};
|
|
function messageHandler(args) {
|
|
options.onMessage && options.onMessage(args.message, dialog, args.origin);
|
|
}
|
|
function eventHandler(args) {
|
|
12006 === args.error ? options.onClose && options.onClose() : options.onRuntimeError && options.onRuntimeError(new OfficeExtension.Error(lookupErrorCodeAndMessage(args.error)), dialog);
|
|
}
|
|
function isInt(value) {
|
|
return /^(\-|\+)?([0-9]+)%?$/.test(value);
|
|
}
|
|
function lookupErrorCodeAndMessage(internalCode) {
|
|
var _a, table = ((_a = {})[12002] = {
|
|
code: "InvalidUrl",
|
|
message: "Cannot load URL, no such page or bad URL syntax."
|
|
}, _a[12003] = {
|
|
code: "InvalidUrl",
|
|
message: "HTTPS is required."
|
|
}, _a[12004] = {
|
|
code: "Untrusted",
|
|
message: "Domain is not trusted."
|
|
}, _a[12005] = {
|
|
code: "InvalidUrl",
|
|
message: "HTTPS is required."
|
|
}, _a[12007] = {
|
|
code: "FailedToOpen",
|
|
message: "Another dialog is already opened."
|
|
}, _a);
|
|
return table[internalCode] ? table[internalCode] : {
|
|
code: "Unknown",
|
|
message: "An unknown error has occured"
|
|
};
|
|
}
|
|
Office.context.ui.displayDialogAsync(url, dialogOptions, (function (asyncResult) {
|
|
"failed" === asyncResult.status ? reject(new OfficeExtension.Error(lookupErrorCodeAndMessage(asyncResult.error.code))) : ((dialog = asyncResult.value).addEventHandler(Office.EventType.DialogMessageReceived, messageHandler),
|
|
dialog.addEventHandler(Office.EventType.DialogEventReceived, eventHandler), resolve(new Dialog(dialog)));
|
|
}));
|
|
}));
|
|
};
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.storage = void 0;
|
|
var prefix = "_OfficeRuntime_Storage_";
|
|
function ensureFreshLocalStorage() {
|
|
window.localStorage.setItem("_OfficeRuntime_Storage_|_unusedKey_", null), window.localStorage.removeItem("_OfficeRuntime_Storage_|_unusedKey_");
|
|
}
|
|
function performAction(action) {
|
|
return new Promise((function (resolve, reject) {
|
|
try {
|
|
ensureFreshLocalStorage(), action(), resolve();
|
|
}
|
|
catch (e) {
|
|
reject(e);
|
|
}
|
|
}));
|
|
}
|
|
function performActionAndReturnResult(action) {
|
|
return new Promise((function (resolve, reject) {
|
|
try {
|
|
ensureFreshLocalStorage(), resolve(action());
|
|
}
|
|
catch (e) {
|
|
reject(e);
|
|
}
|
|
}));
|
|
}
|
|
function performMultiAction(collection, action) {
|
|
return new Promise((function (resolve, reject) {
|
|
var errors = [];
|
|
try {
|
|
ensureFreshLocalStorage();
|
|
}
|
|
catch (e) {
|
|
errors.push(e);
|
|
}
|
|
for (var key in collection)
|
|
if (collection.hasOwnProperty(key) || Array.isArray(collection))
|
|
try {
|
|
Array.isArray(collection) ? action(collection[key]) : action(key);
|
|
}
|
|
catch (e) {
|
|
errors.push(e);
|
|
}
|
|
errors.length > 0 ? reject(new Error("Unknown error.")) : resolve();
|
|
}));
|
|
}
|
|
exports.storage = {
|
|
getItem: function (key) {
|
|
return performActionAndReturnResult((function () {
|
|
return window.localStorage.getItem(prefix + key);
|
|
}));
|
|
},
|
|
setItem: function (key, value) {
|
|
return performAction((function () {
|
|
return window.localStorage.setItem(prefix + key, value);
|
|
}));
|
|
},
|
|
removeItem: function (key) {
|
|
return performAction((function () {
|
|
return window.localStorage.removeItem(prefix + key);
|
|
}));
|
|
},
|
|
getItems: function (keys) {
|
|
return new Promise((function (resolve, reject) {
|
|
var result = {}, errors = [];
|
|
try {
|
|
ensureFreshLocalStorage();
|
|
}
|
|
catch (e) {
|
|
reject(e);
|
|
}
|
|
keys.forEach((function (key) {
|
|
try {
|
|
var value = window.localStorage.getItem(prefix + key);
|
|
result[key] = value || null;
|
|
}
|
|
catch (e) {
|
|
errors.push(e);
|
|
}
|
|
})), errors.length > 0 ? reject(new Error("Unknown error.")) : resolve(result);
|
|
}));
|
|
},
|
|
setItems: function (keyValues) {
|
|
return performMultiAction(keyValues, (function (key) {
|
|
return window.localStorage.setItem(prefix + key, keyValues[key]);
|
|
}));
|
|
},
|
|
removeItems: function (keys) {
|
|
return performMultiAction(keys, (function (key) {
|
|
window.localStorage.removeItem(prefix + key);
|
|
}));
|
|
},
|
|
getKeys: function () {
|
|
return performActionAndReturnResult((function () {
|
|
return Object.keys(window.localStorage).filter((function (fullKey) {
|
|
return 0 === fullKey.indexOf(prefix);
|
|
})).map((function (fullKey) {
|
|
return fullKey.substr(prefix.length);
|
|
}));
|
|
}));
|
|
}
|
|
};
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.experimentation = void 0;
|
|
var ExperimentationWeb = function () {
|
|
function ExperimentationWeb() { }
|
|
return ExperimentationWeb.prototype.getBooleanFeatureGate = function (featureName, defaultValue) {
|
|
try {
|
|
var featureGateValue = Microsoft.Office.WebExtension.FeatureGates[featureName];
|
|
return null == featureGateValue ? defaultValue : "true" === featureGateValue.toString().toLowerCase();
|
|
}
|
|
catch (error) {
|
|
return defaultValue;
|
|
}
|
|
}, ExperimentationWeb.prototype.getIntFeatureGate = function (featureName, defaultValue) {
|
|
try {
|
|
var featureGateValue = parseInt(Microsoft.Office.WebExtension.FeatureGates[featureName]);
|
|
return isNaN(featureGateValue) ? defaultValue : featureGateValue;
|
|
}
|
|
catch (error) {
|
|
return defaultValue;
|
|
}
|
|
}, ExperimentationWeb.prototype.getStringFeatureGate = function (featureName, defaultValue) {
|
|
try {
|
|
var featureGateValue = Microsoft.Office.WebExtension.FeatureGates[featureName];
|
|
return null == featureGateValue ? defaultValue : featureGateValue;
|
|
}
|
|
catch (error) {
|
|
return defaultValue;
|
|
}
|
|
}, ExperimentationWeb.prototype.getChangeGate = function (changeGateName) {
|
|
return this.getBooleanFeatureGate(changeGateName, !0);
|
|
}, ExperimentationWeb.prototype.getBooleanFeatureGateAsync = function (featureName, defaultValue) {
|
|
return Promise.resolve(this.getBooleanFeatureGate(featureName, defaultValue));
|
|
}, ExperimentationWeb.prototype.getIntFeatureGateAsync = function (featureName, defaultValue) {
|
|
return Promise.resolve(this.getIntFeatureGate(featureName, defaultValue));
|
|
}, ExperimentationWeb.prototype.getStringFeatureGateAsync = function (featureName, defaultValue) {
|
|
return Promise.resolve(this.getStringFeatureGate(featureName, defaultValue));
|
|
}, ExperimentationWeb;
|
|
}();
|
|
exports.experimentation = new ExperimentationWeb;
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.Message = void 0;
|
|
var Message_1 = __webpack_require__(8);
|
|
Object.defineProperty(exports, "Message", {
|
|
enumerable: !0,
|
|
get: function () {
|
|
return Message_1.Message;
|
|
}
|
|
});
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.Message = void 0;
|
|
var ListenerManager_1 = __webpack_require__(9), Message = function () {
|
|
function Message() {
|
|
this.listeners = {};
|
|
}
|
|
return Message.prototype.on = function (eventName, listener) {
|
|
return this.add(eventName, listener), new Promise((function (resolve) {
|
|
resolve();
|
|
}));
|
|
}, Message.prototype.off = function (eventName, listener) {
|
|
return this.remove(eventName, listener), new Promise((function (resolve) {
|
|
resolve();
|
|
}));
|
|
}, Message.prototype.emit = function (eventName, message) {
|
|
return this.send(eventName, message), new Promise((function (resolve) {
|
|
resolve();
|
|
}));
|
|
}, Object.defineProperty(Message, "instance", {
|
|
get: function () {
|
|
return Message.singleton || (Message.singleton = new Message), this.singleton;
|
|
},
|
|
enumerable: !1,
|
|
configurable: !0
|
|
}), Message.prototype.setupReceive = function () {
|
|
Office && Office.context && Office.context.messaging && !Office.context.messaging.onMessage && (Office.context.messaging.onMessage = this.receiveMessage.bind(this));
|
|
}, Message.prototype.add = function (eventName, listener) {
|
|
this.listeners.hasOwnProperty(eventName) || (this.listeners[eventName] = new ListenerManager_1.ListenerManager,
|
|
this.setupReceive()), this.listeners[eventName].add(listener);
|
|
}, Message.prototype.remove = function (eventName, listener) {
|
|
this.listeners.hasOwnProperty(eventName) && (listener ? this.listeners[eventName].remove(listener) : delete this.listeners[eventName]);
|
|
}, Message.prototype.send = function (eventName, message) {
|
|
var wrapped = {
|
|
eventName: eventName,
|
|
message: message
|
|
};
|
|
Office && Office.context && Office.context.messaging && Office.context.messaging.sendMessage && Office.context.messaging.sendMessage(wrapped);
|
|
}, Message.prototype.receiveMessage = function (wrapped) {
|
|
var eventName = wrapped.eventName, message = wrapped.message;
|
|
this.listeners.hasOwnProperty(eventName) && this.listeners[eventName].call(message);
|
|
}, Message;
|
|
}();
|
|
exports.Message = Message;
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.ListenerManager = void 0;
|
|
var ListenerManager = function () {
|
|
function ListenerManager() {
|
|
this.listeners = [];
|
|
}
|
|
return ListenerManager.prototype.add = function (listener) {
|
|
this.listeners.push(listener);
|
|
}, ListenerManager.prototype.remove = function (listener) {
|
|
var index = this.listeners.lastIndexOf(listener);
|
|
-1 !== index && this.listeners.splice(index, 1);
|
|
}, ListenerManager.prototype.call = function (message) {
|
|
this.listeners.forEach((function (listener) {
|
|
return listener(message);
|
|
}));
|
|
}, ListenerManager;
|
|
}();
|
|
exports.ListenerManager = ListenerManager;
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.Auth = void 0;
|
|
var OfficeExtension = __webpack_require__(0), Auth = function () {
|
|
function Auth() { }
|
|
return Auth.prototype.getAccessToken = function (params) {
|
|
return new OfficeExtension.CoreUtility.Promise((function (resolve, reject) {
|
|
try {
|
|
Office.context.auth.getAccessTokenAsync(params || {}, (function (result) {
|
|
"succeeded" === result.status ? resolve(result.value) : reject(result.error);
|
|
}));
|
|
}
|
|
catch (error) {
|
|
reject(error);
|
|
}
|
|
}));
|
|
}, Object.defineProperty(Auth, "instance", {
|
|
get: function () {
|
|
return Auth.singleton || (Auth.singleton = new Auth), Auth.singleton;
|
|
},
|
|
enumerable: !1,
|
|
configurable: !0
|
|
}), Auth;
|
|
}();
|
|
exports.Auth = Auth;
|
|
}, function (module, exports, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: !0
|
|
}), exports.Ribbon = exports.ui = void 0, exports.ui = {
|
|
getRibbon: function () {
|
|
return new Promise((function (resolve, reject) {
|
|
resolve(new Ribbon);
|
|
}));
|
|
}
|
|
};
|
|
var Ribbon = function () {
|
|
function Ribbon() {
|
|
this.requestContext = new OfficeCore.RequestContext, OSF.WebAuth && "web" == OSF._OfficeAppFactory.getHostInfo().hostPlatform && (this.requestContext._customData = "WacPartition");
|
|
}
|
|
return Ribbon.prototype.requestUpdate = function (input) {
|
|
var ribbon = this.requestContext.ribbon;
|
|
return input.tabs.filter((function (tab) {
|
|
return !!tab.id;
|
|
})).forEach((function (tab) {
|
|
var ribbonTab = ribbon.getTab(tab.id);
|
|
void 0 !== tab.visible && null !== tab.visible && ribbonTab.setVisibility(tab.visible),
|
|
tab.controls.filter((function (control) {
|
|
return !!control.id;
|
|
})).forEach((function (control) {
|
|
var ribbonControl = ribbon.getButton(control.id);
|
|
void 0 !== control.enabled && null !== control.enabled && (ribbonControl.enabled = control.enabled);
|
|
}));
|
|
})), this.requestContext.sync();
|
|
}, Ribbon;
|
|
}();
|
|
exports.Ribbon = Ribbon;
|
|
}]);
|
|
window.OfficeRuntime = window._OfficeRuntimeWeb;
|
|
function exposeOfficeRuntimeThroughOfficeNamespace(OfficeRuntime, Office) {
|
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
OfficeRuntime = typeof OfficeRuntime !== "undefined" ? OfficeRuntime : (_a = window) === null || _a === void 0 ? void 0 : _a.OfficeRuntime;
|
|
if (typeof Office !== "undefined") {
|
|
Office.storage = Office.storage || ((_b = OfficeRuntime) === null || _b === void 0 ? void 0 : _b.storage);
|
|
Office.auth = Office.auth || ((_c = OfficeRuntime) === null || _c === void 0 ? void 0 : _c.auth);
|
|
Office.getAccessToken = Office.getAccessToken || ((_e = (_d = OfficeRuntime) === null || _d === void 0 ? void 0 : _d.auth) === null || _e === void 0 ? void 0 : _e.getAccessToken);
|
|
Office.addin = Office.addin || ((_f = OfficeRuntime) === null || _f === void 0 ? void 0 : _f.addin);
|
|
Office.isSetSupported = Office.isSetSupported || ((_h = (_g = OfficeRuntime) === null || _g === void 0 ? void 0 : _g.apiInformation) === null || _h === void 0 ? void 0 : _h.isSetSupported);
|
|
Office.license = Office.license || ((_j = OfficeRuntime) === null || _j === void 0 ? void 0 : _j.license);
|
|
Office.message = Office.message || ((_k = OfficeRuntime) === null || _k === void 0 ? void 0 : _k.message);
|
|
}
|
|
}
|
|
exposeOfficeRuntimeThroughOfficeNamespace(OfficeRuntime, Office);
|
|
OfficeExtension.Utility._doApiNotSupportedCheck = true;
|