123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543 |
- /* Outlook specific API library */
- /* Version: 15.0.4615.1000 */
- /*
- 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.
- */
-
- ;
- Type.registerNamespace('Microsoft.Office.WebExtension.MailboxEnums');
- Microsoft.Office.WebExtension.MailboxEnums.EntityType={
- MeetingSuggestion: "meetingSuggestion", TaskSuggestion: "taskSuggestion", Address: "address", EmailAddress: "emailAddress", Url: "url", PhoneNumber: "phoneNumber", Contact: "contact"
- };
- Microsoft.Office.WebExtension.MailboxEnums.ItemType={
- Message: 'message', Appointment: 'appointment'
- };
- Microsoft.Office.WebExtension.MailboxEnums.ResponseType={
- None: "none", Organizer: "organizer", Tentative: "tentative", Accepted: "accepted", Declined: "declined"
- };
- Microsoft.Office.WebExtension.MailboxEnums.RecipientType={
- Other: "other", DistributionList: "distributionList", User: "user", ExternalUser: "externalUser"
- };
- Microsoft.Office.WebExtension.MailboxEnums.AttachmentType={
- File: "file", Item: "item"
- };
- Microsoft.Office.WebExtension.MailboxEnums.BodyType={
- Text: "text", Html: "html"
- };
- Microsoft.Office.WebExtension.CoercionType={
- Text: "text", Html: "html"
- };
- ;
- Type.registerNamespace('OSF.DDA');
- OSF.DDA.OutlookAppOm=function OSF_DDA_OutlookAppOm(officeAppContext, targetWindow, appReadyCallback)
- {
- this.$$d__callAppReadyCallback$p$0=Function.createDelegate(this, this._callAppReadyCallback$p$0);
- this.$$d__displayNewAppointmentFormApi$p$0=Function.createDelegate(this, this._displayNewAppointmentFormApi$p$0);
- this.$$d_windowOpenOverrideHandler=Function.createDelegate(this, this.windowOpenOverrideHandler);
- this.$$d__getEwsUrl$p$0=Function.createDelegate(this, this._getEwsUrl$p$0);
- this.$$d__getDiagnostics$p$0=Function.createDelegate(this, this._getDiagnostics$p$0);
- this.$$d__getUserProfile$p$0=Function.createDelegate(this, this._getUserProfile$p$0);
- this.$$d__getItem$p$0=Function.createDelegate(this, this._getItem$p$0);
- this.$$d__getInitialDataResponseHandler$p$0=Function.createDelegate(this, this._getInitialDataResponseHandler$p$0);
- OSF.DDA.OutlookAppOm._instance$p=this;
- this._officeAppContext$p$0=officeAppContext;
- this._appReadyCallback$p$0=appReadyCallback;
- var $$t_4=this;
- var stringLoadedCallback=function()
- {
- if (appReadyCallback)
- {
- $$t_4._invokeHostMethod$i$0(1, 'GetInitialData', null, $$t_4.$$d__getInitialDataResponseHandler$p$0)
- }
- };
- if (this._areStringsLoaded$p$0())
- {
- stringLoadedCallback()
- }
- else
- {
- this._loadLocalizedScript$p$0(stringLoadedCallback)
- }
- };
- OSF.DDA.OutlookAppOm._throwOnPropertyAccessForRestrictedPermission$i=function OSF_DDA_OutlookAppOm$_throwOnPropertyAccessForRestrictedPermission$i(currentPermissionLevel)
- {
- if (!currentPermissionLevel)
- {
- throw Error.create(_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text);
- }
- };
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i=function OSF_DDA_OutlookAppOm$_throwOnOutOfRange$i(value, minValue, maxValue, argumentName)
- {
- if (value < minValue || value > maxValue)
- {
- throw Error.argumentOutOfRange(argumentName);
- }
- };
- OSF.DDA.OutlookAppOm._throwOnArgumentType$p=function OSF_DDA_OutlookAppOm$_throwOnArgumentType$p(value, expectedType, argumentName)
- {
- if (Object.getType(value) !==expectedType)
- {
- throw Error.argumentType(argumentName);
- }
- };
- OSF.DDA.OutlookAppOm._validateOptionalStringParameter$p=function OSF_DDA_OutlookAppOm$_validateOptionalStringParameter$p(value, minLength, maxLength, name)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(value))
- {
- return
- }
- OSF.DDA.OutlookAppOm._throwOnArgumentType$p(value, String, name);
- var stringValue=value;
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(stringValue.length, minLength, maxLength, name)
- };
- OSF.DDA.OutlookAppOm._convertToOutlookParameters$p=function OSF_DDA_OutlookAppOm$_convertToOutlookParameters$p(dispid, data)
- {
- var executeParameters=null;
- switch (dispid)
- {
- case 1:
- case 2:
- case 12:
- case 3:
- case 14:
- case 18:
- case 26:
- break;
- case 4:
- var jsonProperty=JSON.stringify(data['customProperties']);
- executeParameters=[jsonProperty];
- break;
- case 5:
- executeParameters=[data['body']];
- break;
- case 8:
- case 9:
- executeParameters=[data['itemId']];
- break;
- case 7:
- executeParameters=[OSF.DDA.OutlookAppOm._convertRecipientArrayParameterForOutlookForDisplayApi$p(data['requiredAttendees']), OSF.DDA.OutlookAppOm._convertRecipientArrayParameterForOutlookForDisplayApi$p(data['optionalAttendees']), data['start'], data['end'], data['location'], OSF.DDA.OutlookAppOm._convertRecipientArrayParameterForOutlookForDisplayApi$p(data['resources']), data['subject'], data['body']];
- break;
- case 11:
- case 10:
- executeParameters=[data['htmlBody']];
- break;
- case 23:
- case 13:
- executeParameters=[data['data'], data['coercionType'] || null];
- break;
- case 17:
- executeParameters=[data['subject']];
- break;
- case 15:
- executeParameters=[data['recipientField']];
- break;
- case 22:
- case 21:
- executeParameters=[data['recipientField'], OSF.DDA.OutlookAppOm._convertComposeEmailDictionaryParameterForSetApi$p(data['recipientArray'])];
- break;
- case 19:
- executeParameters=[data['itemId'], data['name']];
- break;
- case 16:
- executeParameters=[data['uri'], data['name']];
- break;
- case 20:
- executeParameters=[data['attachmentIndex']];
- break;
- case 25:
- executeParameters=[data['TimeProperty'], data['time']];
- break;
- case 24:
- executeParameters=[data['TimeProperty']];
- break;
- case 27:
- executeParameters=[data['location']];
- break;
- default:
- Sys.Debug.fail('Unexpected method dispid');
- break
- }
- return executeParameters
- };
- OSF.DDA.OutlookAppOm._convertRecipientArrayParameterForOutlookForDisplayApi$p=function OSF_DDA_OutlookAppOm$_convertRecipientArrayParameterForOutlookForDisplayApi$p(array)
- {
- return (array) ? array.join(';') : null
- };
- OSF.DDA.OutlookAppOm._convertComposeEmailDictionaryParameterForSetApi$p=function OSF_DDA_OutlookAppOm$_convertComposeEmailDictionaryParameterForSetApi$p(recipients)
- {
- if (!recipients)
- {
- return null
- }
- var results=new Array(recipients.length);
- for (var i=0; i < recipients.length; i++)
- {
- results[i]=[recipients[i]['address'], recipients[i]['name']]
- }
- return results
- };
- OSF.DDA.OutlookAppOm._validateAndNormalizeRecipientEmails$p=function OSF_DDA_OutlookAppOm$_validateAndNormalizeRecipientEmails$p(emailset, name)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(emailset))
- {
- return null
- }
- OSF.DDA.OutlookAppOm._throwOnArgumentType$p(emailset, Array, name);
- var originalAttendees=emailset;
- var updatedAttendees=null;
- var normalizationNeeded=false;
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(originalAttendees.length, 0, OSF.DDA.OutlookAppOm._maxRecipients$p, String.format('{0}.length', name));
- for (var i=0; i < originalAttendees.length; i++)
- {
- if ($h.EmailAddressDetails.isInstanceOfType(originalAttendees[i]))
- {
- normalizationNeeded=true;
- break
- }
- }
- if (normalizationNeeded)
- {
- updatedAttendees=[]
- }
- for (var i=0; i < originalAttendees.length; i++)
- {
- if (normalizationNeeded)
- {
- updatedAttendees[i]=($h.EmailAddressDetails.isInstanceOfType(originalAttendees[i])) ? (originalAttendees[i]).emailAddress : originalAttendees[i];
- OSF.DDA.OutlookAppOm._throwOnArgumentType$p(updatedAttendees[i], String, String.format('{0}[{1}]', name, i))
- }
- else
- {
- OSF.DDA.OutlookAppOm._throwOnArgumentType$p(originalAttendees[i], String, String.format('{0}[{1}]', name, i))
- }
- }
- return updatedAttendees
- };
- OSF.DDA.OutlookAppOm.prototype={
- _initialData$p$0: null, _item$p$0: null, _userProfile$p$0: null, _diagnostics$p$0: null, _officeAppContext$p$0: null, _appReadyCallback$p$0: null, _clientEndPoint$p$0: null, get_clientEndPoint: function OSF_DDA_OutlookAppOm$get_clientEndPoint()
- {
- if (!this._clientEndPoint$p$0)
- {
- this._clientEndPoint$p$0=OSF._OfficeAppFactory.getClientEndPoint()
- }
- return this._clientEndPoint$p$0
- }, set_clientEndPoint: function OSF_DDA_OutlookAppOm$set_clientEndPoint(value)
- {
- this._clientEndPoint$p$0=value;
- return value
- }, get_initialData: function OSF_DDA_OutlookAppOm$get_initialData()
- {
- return this._initialData$p$0
- }, get__appName$i$0: function OSF_DDA_OutlookAppOm$get__appName$i$0()
- {
- return this._officeAppContext$p$0.get_appName()
- }, initialize: function OSF_DDA_OutlookAppOm$initialize(initialData)
- {
- var ItemTypeKey='itemType';
- this._initialData$p$0=new $h.InitialData(initialData);
- if (1===initialData[ItemTypeKey])
- {
- this._item$p$0=new $h.Message(this._initialData$p$0)
- }
- else if (3===initialData[ItemTypeKey])
- {
- this._item$p$0=new $h.MeetingRequest(this._initialData$p$0)
- }
- else if (2===initialData[ItemTypeKey])
- {
- this._item$p$0=new $h.Appointment(this._initialData$p$0)
- }
- else if (4===initialData[ItemTypeKey])
- {
- this._item$p$0=new $h.MessageCompose(this._initialData$p$0)
- }
- else if (5===initialData[ItemTypeKey])
- {
- this._item$p$0=new $h.AppointmentCompose(this._initialData$p$0)
- }
- else
- {
- Sys.Debug.trace('Unexpected item type was received from the host.')
- }
- this._userProfile$p$0=new $h.UserProfile(this._initialData$p$0);
- this._diagnostics$p$0=new $h.Diagnostics(this._initialData$p$0, this._officeAppContext$p$0.get_appName());
- this._initializeMethods$p$0();
- $h.InitialData._defineReadOnlyProperty$i(this, 'item', this.$$d__getItem$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'userProfile', this.$$d__getUserProfile$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'diagnostics', this.$$d__getDiagnostics$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'ewsUrl', this.$$d__getEwsUrl$p$0);
- if (OSF.DDA.OutlookAppOm._instance$p.get__appName$i$0()===64)
- {
- if (this._initialData$p$0.get__overrideWindowOpen$i$0())
- {
- window.open=this.$$d_windowOpenOverrideHandler
- }
- }
- }, windowOpenOverrideHandler: function OSF_DDA_OutlookAppOm$windowOpenOverrideHandler(url, targetName, features, replace)
- {
- this._invokeHostMethod$i$0(0, 'LaunchPalUrl', {launchUrl: url}, null)
- }, makeEwsRequestAsync: function OSF_DDA_OutlookAppOm$makeEwsRequestAsync(data)
- {
- var args=[];
- for (var $$pai_5=1; $$pai_5 < arguments.length;++$$pai_5)
- {
- args[$$pai_5 - 1]=arguments[$$pai_5]
- }
- if ($h.ScriptHelpers.isNullOrUndefined(data))
- {
- throw Error.argumentNull('data');
- }
- if (data.length > OSF.DDA.OutlookAppOm._maxEwsRequestSize$p)
- {
- throw Error.argument('data', _u.ExtensibilityStrings.l_EwsRequestOversized_Text);
- }
- this._throwOnMethodCallForInsufficientPermission$i$0(3, 'makeEwsRequestAsync');
- var parameters=$h.CommonParameters.parse(args, true, true);
- var ewsRequest=new $h.EwsRequest(parameters._asyncContext$p$0);
- var $$t_4=this;
- ewsRequest.onreadystatechange=function()
- {
- if (4===ewsRequest.get__requestState$i$1())
- {
- parameters.get_callback()(ewsRequest._asyncResult$p$0)
- }
- };
- ewsRequest.send(data)
- }, recordDataPoint: function OSF_DDA_OutlookAppOm$recordDataPoint(data)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(data))
- {
- throw Error.argumentNull('data');
- }
- this._invokeHostMethod$i$0(0, 'RecordDataPoint', data, null)
- }, recordTrace: function OSF_DDA_OutlookAppOm$recordTrace(data)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(data))
- {
- throw Error.argumentNull('data');
- }
- this._invokeHostMethod$i$0(0, 'RecordTrace', data, null)
- }, trackCtq: function OSF_DDA_OutlookAppOm$trackCtq(data)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(data))
- {
- throw Error.argumentNull('data');
- }
- this._invokeHostMethod$i$0(0, 'TrackCtq', data, null)
- }, convertToLocalClientTime: function OSF_DDA_OutlookAppOm$convertToLocalClientTime(timeValue)
- {
- var date=new Date(timeValue.getTime());
- var offset=date.getTimezoneOffset() * -1;
- if (this._initialData$p$0 && this._initialData$p$0.get__timeZoneOffsets$i$0())
- {
- date.setUTCMinutes(date.getUTCMinutes() - offset);
- offset=this._findOffset$p$0(date);
- date.setUTCMinutes(date.getUTCMinutes()+offset)
- }
- var retValue=this._dateToDictionary$i$0(date);
- retValue['timezoneOffset']=offset;
- return retValue
- }, convertToUtcClientTime: function OSF_DDA_OutlookAppOm$convertToUtcClientTime(input)
- {
- var retValue=this._dictionaryToDate$i$0(input);
- if (this._initialData$p$0 && this._initialData$p$0.get__timeZoneOffsets$i$0())
- {
- var offset=this._findOffset$p$0(retValue);
- retValue.setUTCMinutes(retValue.getUTCMinutes() - offset);
- offset=(!input['timezoneOffset']) ? retValue.getTimezoneOffset() * -1 : input['timezoneOffset'];
- retValue.setUTCMinutes(retValue.getUTCMinutes()+offset)
- }
- return retValue
- }, getUserIdentityTokenAsync: function OSF_DDA_OutlookAppOm$getUserIdentityTokenAsync()
- {
- var args=[];
- for (var $$pai_2=0; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2]=arguments[$$pai_2]
- }
- this._throwOnMethodCallForInsufficientPermission$i$0(1, 'getUserIdentityTokenAsync');
- var parameters=$h.CommonParameters.parse(args, true, true);
- this._invokeGetTokenMethodAsync$p$0(2, 'GetUserIdentityToken', parameters.get_callback(), parameters._asyncContext$p$0)
- }, getCallbackTokenAsync: function OSF_DDA_OutlookAppOm$getCallbackTokenAsync()
- {
- var args=[];
- for (var $$pai_2=0; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2]=arguments[$$pai_2]
- }
- this._throwOnMethodCallForInsufficientPermission$i$0(1, 'getCallbackTokenAsync');
- var parameters=$h.CommonParameters.parse(args, true, true);
- this._invokeGetTokenMethodAsync$p$0(12, 'GetCallbackToken', parameters.get_callback(), parameters._asyncContext$p$0)
- }, displayMessageForm: function OSF_DDA_OutlookAppOm$displayMessageForm(itemId)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(itemId))
- {
- throw Error.argumentNull('itemId');
- }
- this._invokeHostMethod$i$0(8, 'DisplayExistingMessageForm', {itemId: itemId}, null)
- }, displayAppointmentForm: function OSF_DDA_OutlookAppOm$displayAppointmentForm(itemId)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(itemId))
- {
- throw Error.argumentNull('itemId');
- }
- this._invokeHostMethod$i$0(9, 'DisplayExistingAppointmentForm', {itemId: itemId}, null)
- }, createAsyncResult: function OSF_DDA_OutlookAppOm$createAsyncResult(value, errorCode, errorDescription, userContext)
- {
- var initArgs={};
- var errorArgs=null;
- initArgs[OSF.DDA.AsyncResultEnum.Properties.Value]=value;
- initArgs[OSF.DDA.AsyncResultEnum.Properties.Context]=userContext;
- if (0 !==errorCode)
- {
- errorArgs={};
- errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Name]=errorCode;
- errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Message]=errorDescription
- }
- return new OSF.DDA.AsyncResult(initArgs, errorArgs)
- }, standardCreateAsyncResult: function OSF_DDA_OutlookAppOm$standardCreateAsyncResult(value, errorCode, detailedErrorCode, userContext)
- {
- var initArgs={};
- var errorArgs=null;
- initArgs[OSF.DDA.AsyncResultEnum.Properties.Value]=value;
- initArgs[OSF.DDA.AsyncResultEnum.Properties.Context]=userContext;
- if (0 !==errorCode)
- {
- errorArgs={};
- var errorProperties=$h.OutlookErrorManager.getErrorArgs(detailedErrorCode);
- errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Name]=errorProperties['name'];
- errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Message]=errorProperties['message'];
- errorArgs[OSF.DDA.AsyncResultEnum.ErrorProperties.Code]=detailedErrorCode
- }
- return new OSF.DDA.AsyncResult(initArgs, errorArgs)
- }, _throwOnMethodCallForInsufficientPermission$i$0: function OSF_DDA_OutlookAppOm$_throwOnMethodCallForInsufficientPermission$i$0(requiredPermissionLevel, methodName)
- {
- if (this._initialData$p$0._permissionLevel$p$0 < requiredPermissionLevel)
- {
- throw Error.create(String.format(_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text, methodName));
- }
- }, _displayReplyForm$i$0: function OSF_DDA_OutlookAppOm$_displayReplyForm$i$0(htmlBody)
- {
- if (!$h.ScriptHelpers.isNullOrUndefined(htmlBody))
- {
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(htmlBody.length, 0, OSF.DDA.OutlookAppOm._maxBodyLength$p, 'htmlBody')
- }
- this._invokeHostMethod$i$0(10, 'DisplayReplyForm', {htmlBody: htmlBody}, null)
- }, _displayReplyAllForm$i$0: function OSF_DDA_OutlookAppOm$_displayReplyAllForm$i$0(htmlBody)
- {
- if (!$h.ScriptHelpers.isNullOrUndefined(htmlBody))
- {
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(htmlBody.length, 0, OSF.DDA.OutlookAppOm._maxBodyLength$p, 'htmlBody')
- }
- this._invokeHostMethod$i$0(11, 'DisplayReplyAllForm', {htmlBody: htmlBody}, null)
- }, _standardInvokeHostMethod$i$0: function OSF_DDA_OutlookAppOm$_standardInvokeHostMethod$i$0(dispid, name, data, format, userContext, callback)
- {
- var $$t_C=this;
- this._invokeHostMethod$i$0(dispid, name, data, function(resultCode, response)
- {
- if (callback)
- {
- var asyncResult=null;
- if (Object.isInstanceOfType(response))
- {
- var responseDictionary=response;
- if (('error' in responseDictionary) || ('data' in responseDictionary) || ('errorCode' in responseDictionary))
- {
- if (!responseDictionary['error'])
- {
- var formattedData=(format) ? format(responseDictionary['data']) : responseDictionary['data'];
- asyncResult=$$t_C.standardCreateAsyncResult(formattedData, 0, 0, userContext)
- }
- else
- {
- var errorCode=responseDictionary['errorCode'];
- asyncResult=$$t_C.standardCreateAsyncResult(null, 1, errorCode, userContext)
- }
- }
- }
- if (!asyncResult && resultCode)
- {
- asyncResult=$$t_C.standardCreateAsyncResult(null, 1, 9002, userContext)
- }
- callback(asyncResult)
- }
- })
- }, _invokeHostMethod$i$0: function OSF_DDA_OutlookAppOm$_invokeHostMethod$i$0(dispid, name, data, responseCallback)
- {
- if (64===this._officeAppContext$p$0.get_appName())
- {
- this.get_clientEndPoint().invoke(name, responseCallback, data)
- }
- else if (dispid)
- {
- var executeParameters=OSF.DDA.OutlookAppOm._convertToOutlookParameters$p(dispid, data);
- var $$t_B=this;
- window.external.Execute(dispid, executeParameters, function(nativeData, resultCode)
- {
- if (responseCallback)
- {
- var responseData=nativeData.toArray();
- var rawData=JSON.parse(responseData[0]);
- if (Object.isInstanceOfType(rawData))
- {
- var deserializedData=rawData;
- if (responseData.length > 1 && responseData[1])
- {
- deserializedData['error']=true;
- deserializedData['errorCode']=responseData[1]
- }
- else
- {
- deserializedData['error']=false
- }
- responseCallback(resultCode, deserializedData)
- }
- else if (Number.isInstanceOfType(rawData))
- {
- var returnDict={};
- returnDict['error']=true;
- returnDict['errorCode']=rawData;
- responseCallback(resultCode, returnDict)
- }
- else
- {
- throw Error.notImplemented('Return data type from host must be Dictionary or int');
- }
- }
- })
- }
- else if (responseCallback)
- {
- responseCallback(-2, null)
- }
- }, _dictionaryToDate$i$0: function OSF_DDA_OutlookAppOm$_dictionaryToDate$i$0(input)
- {
- var retValue=new Date(input['year'], input['month'], input['date'], input['hours'], input['minutes'], input['seconds'], (!input['milliseconds']) ? 0 : input['milliseconds']);
- if (isNaN(retValue.getTime()))
- {
- throw Error.format(_u.ExtensibilityStrings.l_InvalidDate_Text);
- }
- return retValue
- }, _dateToDictionary$i$0: function OSF_DDA_OutlookAppOm$_dateToDictionary$i$0(input)
- {
- var retValue={};
- retValue['month']=input.getMonth();
- retValue['date']=input.getDate();
- retValue['year']=input.getFullYear();
- retValue['hours']=input.getHours();
- retValue['minutes']=input.getMinutes();
- retValue['seconds']=input.getSeconds();
- retValue['milliseconds']=input.getMilliseconds();
- return retValue
- }, _displayNewAppointmentFormApi$p$0: function OSF_DDA_OutlookAppOm$_displayNewAppointmentFormApi$p$0(parameters)
- {
- var normalizedRequiredAttendees=OSF.DDA.OutlookAppOm._validateAndNormalizeRecipientEmails$p(parameters['requiredAttendees'], 'requiredAttendees');
- var normalizedOptionalAttendees=OSF.DDA.OutlookAppOm._validateAndNormalizeRecipientEmails$p(parameters['optionalAttendees'], 'optionalAttendees');
- OSF.DDA.OutlookAppOm._validateOptionalStringParameter$p(parameters['location'], 0, OSF.DDA.OutlookAppOm._maxLocationLength$p, 'location');
- OSF.DDA.OutlookAppOm._validateOptionalStringParameter$p(parameters['body'], 0, OSF.DDA.OutlookAppOm._maxBodyLength$p, 'body');
- OSF.DDA.OutlookAppOm._validateOptionalStringParameter$p(parameters['subject'], 0, OSF.DDA.OutlookAppOm._maxSubjectLength$p, 'subject');
- if (!$h.ScriptHelpers.isNullOrUndefined(parameters['start']))
- {
- OSF.DDA.OutlookAppOm._throwOnArgumentType$p(parameters['start'], Date, 'start');
- var startDateTime=parameters['start'];
- parameters['start']=startDateTime.getTime();
- if (!$h.ScriptHelpers.isNullOrUndefined(parameters['end']))
- {
- OSF.DDA.OutlookAppOm._throwOnArgumentType$p(parameters['end'], Date, 'end');
- var endDateTime=parameters['end'];
- if (endDateTime < startDateTime)
- {
- throw Error.argumentOutOfRange('end', endDateTime, _u.ExtensibilityStrings.l_InvalidEventDates_Text);
- }
- parameters['end']=endDateTime.getTime()
- }
- }
- var updatedParameters=null;
- if (normalizedRequiredAttendees || normalizedOptionalAttendees)
- {
- updatedParameters={};
- var $$dict_6=parameters;
- for (var $$key_7 in $$dict_6)
- {
- var entry={
- key: $$key_7, value: $$dict_6[$$key_7]
- };
- updatedParameters[entry.key]=entry.value
- }
- if (normalizedRequiredAttendees)
- {
- updatedParameters['requiredAttendees']=normalizedRequiredAttendees
- }
- if (normalizedOptionalAttendees)
- {
- updatedParameters['optionalAttendees']=normalizedOptionalAttendees
- }
- }
- this._invokeHostMethod$i$0(7, 'DisplayNewAppointmentForm', updatedParameters || parameters, null)
- }, _initializeMethods$p$0: function OSF_DDA_OutlookAppOm$_initializeMethods$p$0()
- {
- var currentInstance=this;
- if ($h.Item.isInstanceOfType(this._item$p$0))
- {
- currentInstance.displayNewAppointmentForm=this.$$d__displayNewAppointmentFormApi$p$0
- }
- }, _getInitialDataResponseHandler$p$0: function OSF_DDA_OutlookAppOm$_getInitialDataResponseHandler$p$0(resultCode, data)
- {
- if (resultCode)
- {
- return
- }
- this.initialize(data);
- (this).displayName='mailbox';
- window.setTimeout(this.$$d__callAppReadyCallback$p$0, 0)
- }, _callAppReadyCallback$p$0: function OSF_DDA_OutlookAppOm$_callAppReadyCallback$p$0()
- {
- this._appReadyCallback$p$0()
- }, _invokeGetTokenMethodAsync$p$0: function OSF_DDA_OutlookAppOm$_invokeGetTokenMethodAsync$p$0(outlookDispid, methodName, callback, userContext)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(callback))
- {
- throw Error.argumentNull('callback');
- }
- var $$t_8=this;
- this._invokeHostMethod$i$0(outlookDispid, methodName, null, function(resultCode, response)
- {
- var asyncResult;
- if (resultCode)
- {
- asyncResult=$$t_8.createAsyncResult(null, 1, String.format(_u.ExtensibilityStrings.l_InternalProtocolError_Text, resultCode), userContext)
- }
- else
- {
- var responseDictionary=response;
- if (responseDictionary['wasSuccessful'])
- {
- asyncResult=$$t_8.createAsyncResult(responseDictionary['token'], 0, null, userContext)
- }
- else
- {
- asyncResult=$$t_8.createAsyncResult(null, 1, responseDictionary['errorMessage'], userContext)
- }
- }
- callback(asyncResult)
- })
- }, _getItem$p$0: function OSF_DDA_OutlookAppOm$_getItem$p$0()
- {
- return this._item$p$0
- }, _getUserProfile$p$0: function OSF_DDA_OutlookAppOm$_getUserProfile$p$0()
- {
- OSF.DDA.OutlookAppOm._throwOnPropertyAccessForRestrictedPermission$i(this._initialData$p$0._permissionLevel$p$0);
- return this._userProfile$p$0
- }, _getDiagnostics$p$0: function OSF_DDA_OutlookAppOm$_getDiagnostics$p$0()
- {
- return this._diagnostics$p$0
- }, _getEwsUrl$p$0: function OSF_DDA_OutlookAppOm$_getEwsUrl$p$0()
- {
- OSF.DDA.OutlookAppOm._throwOnPropertyAccessForRestrictedPermission$i(this._initialData$p$0._permissionLevel$p$0);
- return this._initialData$p$0.get__ewsUrl$i$0()
- }, _findOffset$p$0: function OSF_DDA_OutlookAppOm$_findOffset$p$0(value)
- {
- var ranges=this._initialData$p$0.get__timeZoneOffsets$i$0();
- for (var r=0; r < ranges.length; r++)
- {
- var range=ranges[r];
- var start=parseInt(range['start']);
- var end=parseInt(range['end']);
- if (value.getTime() - start >=0 && value.getTime() - end < 0)
- {
- return parseInt(range['offset'])
- }
- }
- throw Error.format(_u.ExtensibilityStrings.l_InvalidDate_Text);
- }, _areStringsLoaded$p$0: function OSF_DDA_OutlookAppOm$_areStringsLoaded$p$0()
- {
- var stringsLoaded=false;
- try
- {
- stringsLoaded=!$h.ScriptHelpers.isNullOrUndefined(_u.ExtensibilityStrings.l_EwsRequestOversized_Text)
- }
- catch($$e_1) {}
- return stringsLoaded
- }, _loadLocalizedScript$p$0: function OSF_DDA_OutlookAppOm$_loadLocalizedScript$p$0(stringLoadedCallback)
- {
- var url=null;
- var baseUrl='';
- var scripts=document.getElementsByTagName('script');
- for (var i=scripts.length - 1; i >=0; i--)
- {
- var filename=null;
- var attributes=scripts[i].attributes;
- if (attributes)
- {
- var attribute=attributes.getNamedItem('src');
- if (attribute)
- {
- filename=attribute.value
- }
- if (filename)
- {
- var debug=false;
- filename=filename.toLowerCase();
- var officeIndex=filename.indexOf('office_strings.js');
- if (officeIndex < 0)
- {
- officeIndex=filename.indexOf('office_strings.debug.js');
- debug=true
- }
- if ((officeIndex > 0) && (officeIndex < filename.length))
- {
- url=filename.replace((debug) ? 'office_strings.debug.js' : 'office_strings.js', 'outlook_strings.js');
- var languageUrl=filename.substring(0, officeIndex);
- var lastIndexOfSlash=languageUrl.lastIndexOf('/', languageUrl.length - 2);
- if (lastIndexOfSlash===-1)
- {
- lastIndexOfSlash=languageUrl.lastIndexOf('\\', languageUrl.length - 2)
- }
- if (lastIndexOfSlash !==-1 && languageUrl.length > lastIndexOfSlash+1)
- {
- baseUrl=languageUrl.substring(0, lastIndexOfSlash+1)
- }
- break
- }
- }
- }
- }
- if (url)
- {
- var head=document.getElementsByTagName('head')[0];
- var scriptElement=null;
- var $$t_H=this;
- var scriptElementCallback=function()
- {
- if (stringLoadedCallback && (!scriptElement.readyState || (scriptElement.readyState && (scriptElement.readyState==='loaded' || scriptElement.readyState==='complete'))))
- {
- scriptElement.onload=null;
- scriptElement.onreadystatechange=null;
- stringLoadedCallback()
- }
- };
- var $$t_I=this;
- var failureCallback=function()
- {
- if (!$$t_I._areStringsLoaded$p$0())
- {
- var fallbackUrl=baseUrl+'en-us/'+'outlook_strings.js';
- scriptElement.onload=null;
- scriptElement.onreadystatechange=null;
- scriptElement=$$t_I._createScriptElement$p$0(fallbackUrl);
- scriptElement.onload=scriptElementCallback;
- scriptElement.onreadystatechange=scriptElementCallback;
- head.appendChild(scriptElement)
- }
- };
- scriptElement=this._createScriptElement$p$0(url);
- scriptElement.onload=scriptElementCallback;
- scriptElement.onreadystatechange=scriptElementCallback;
- window.setTimeout(failureCallback, 2000);
- head.appendChild(scriptElement)
- }
- }, _createScriptElement$p$0: function OSF_DDA_OutlookAppOm$_createScriptElement$p$0(url)
- {
- var scriptElement=document.createElement('script');
- scriptElement.type='text/javascript';
- scriptElement.src=url;
- return scriptElement
- }
- };
- OSF.DDA.Settings=function OSF_DDA_Settings(data)
- {
- this._rawData$p$0=data
- };
- OSF.DDA.Settings._convertFromRawSettings$p=function OSF_DDA_Settings$_convertFromRawSettings$p(rawSettings)
- {
- if (!rawSettings)
- {
- return {}
- }
- if (OSF.DDA.OutlookAppOm._instance$p.get__appName$i$0()===8)
- {
- var outlookSettings=rawSettings['SettingsKey'];
- if (outlookSettings)
- {
- return OSF.DDA.SettingsManager.deserializeSettings(outlookSettings)
- }
- }
- return rawSettings
- };
- OSF.DDA.Settings.prototype={
- _rawData$p$0: null, _settingsData$p$0: null, get__data$p$0: function OSF_DDA_Settings$get__data$p$0()
- {
- if (!this._settingsData$p$0)
- {
- this._settingsData$p$0=OSF.DDA.Settings._convertFromRawSettings$p(this._rawData$p$0);
- this._rawData$p$0=null
- }
- return this._settingsData$p$0
- }, get: function OSF_DDA_Settings$get(name)
- {
- return this.get__data$p$0()[name]
- }, set: function OSF_DDA_Settings$set(name, value)
- {
- this.get__data$p$0()[name]=value
- }, remove: function OSF_DDA_Settings$remove(name)
- {
- delete this.get__data$p$0()[name]
- }, saveAsync: function OSF_DDA_Settings$saveAsync()
- {
- var args=[];
- for (var $$pai_2=0; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2]=arguments[$$pai_2]
- }
- var commonParameters=$h.CommonParameters.parse(args, false);
- if (OSF.DDA.OutlookAppOm._instance$p.get__appName$i$0()===64)
- {
- this._saveSettingsForOwa$p$0(commonParameters.get_callback(), commonParameters._asyncContext$p$0)
- }
- else
- {
- this._saveSettingsForOutlook$p$0(commonParameters.get_callback(), commonParameters._asyncContext$p$0)
- }
- }, _saveSettingsForOutlook$p$0: function OSF_DDA_Settings$_saveSettingsForOutlook$p$0(callback, userContext)
- {
- var storedException=null;
- try
- {
- var serializedSettings=OSF.DDA.SettingsManager.serializeSettings(this.get__data$p$0());
- var jsonSettings=JSON.stringify(serializedSettings);
- var settingsObjectToSave={SettingsKey: jsonSettings};
- OSF.DDA.RichClientSettingsManager.write(settingsObjectToSave)
- }
- catch(ex)
- {
- storedException=ex
- }
- if (callback)
- {
- var asyncResult;
- if (storedException)
- {
- asyncResult=OSF.DDA.OutlookAppOm._instance$p.createAsyncResult(null, 1, storedException.message, userContext)
- }
- else
- {
- asyncResult=OSF.DDA.OutlookAppOm._instance$p.createAsyncResult(null, 0, null, userContext)
- }
- callback(asyncResult)
- }
- }, _saveSettingsForOwa$p$0: function OSF_DDA_Settings$_saveSettingsForOwa$p$0(callback, userContext)
- {
- var serializedSettings=OSF.DDA.SettingsManager.serializeSettings(this.get__data$p$0());
- var $$t_7=this;
- OSF._OfficeAppFactory.getClientEndPoint().invoke('saveSettingsAsync', function(resultCode, response)
- {
- if (callback)
- {
- var asyncResult;
- if (resultCode)
- {
- asyncResult=OSF.DDA.OutlookAppOm._instance$p.createAsyncResult(null, 1, String.format(_u.ExtensibilityStrings.l_InternalProtocolError_Text, resultCode), userContext)
- }
- else
- {
- var responseDictionary=response;
- if (!(responseDictionary['error']))
- {
- asyncResult=OSF.DDA.OutlookAppOm._instance$p.createAsyncResult(null, 0, null, userContext)
- }
- else
- {
- asyncResult=OSF.DDA.OutlookAppOm._instance$p.createAsyncResult(null, 1, responseDictionary['errorMessage'], userContext)
- }
- }
- callback(asyncResult)
- }
- }, [serializedSettings])
- }
- };
- Type.registerNamespace('$h');
- Type.registerNamespace('Office.cast');
- $h.Appointment=function $h_Appointment(dataDictionary)
- {
- this.$$d__getOrganizer$p$2=Function.createDelegate(this, this._getOrganizer$p$2);
- this.$$d__getNormalizedSubject$p$2=Function.createDelegate(this, this._getNormalizedSubject$p$2);
- this.$$d__getSubject$p$2=Function.createDelegate(this, this._getSubject$p$2);
- this.$$d__getResources$p$2=Function.createDelegate(this, this._getResources$p$2);
- this.$$d__getRequiredAttendees$p$2=Function.createDelegate(this, this._getRequiredAttendees$p$2);
- this.$$d__getOptionalAttendees$p$2=Function.createDelegate(this, this._getOptionalAttendees$p$2);
- this.$$d__getLocation$p$2=Function.createDelegate(this, this._getLocation$p$2);
- this.$$d__getEnd$p$2=Function.createDelegate(this, this._getEnd$p$2);
- this.$$d__getStart$p$2=Function.createDelegate(this, this._getStart$p$2);
- $h.Appointment.initializeBase(this, [dataDictionary]);
- $h.InitialData._defineReadOnlyProperty$i(this, 'start', this.$$d__getStart$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'end', this.$$d__getEnd$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'location', this.$$d__getLocation$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'optionalAttendees', this.$$d__getOptionalAttendees$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'requiredAttendees', this.$$d__getRequiredAttendees$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'resources', this.$$d__getResources$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'subject', this.$$d__getSubject$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'normalizedSubject', this.$$d__getNormalizedSubject$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'organizer', this.$$d__getOrganizer$p$2)
- };
- $h.Appointment.prototype={
- getEntities: function $h_Appointment$getEntities()
- {
- return this._data$p$0._getEntities$i$0()
- }, getEntitiesByType: function $h_Appointment$getEntitiesByType(entityType)
- {
- return this._data$p$0._getEntitiesByType$i$0(entityType)
- }, getRegExMatches: function $h_Appointment$getRegExMatches()
- {
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, 'getRegExMatches');
- return this._data$p$0._getRegExMatches$i$0()
- }, getFilteredEntitiesByName: function $h_Appointment$getFilteredEntitiesByName(name)
- {
- return this._data$p$0._getFilteredEntitiesByName$i$0(name)
- }, getRegExMatchesByName: function $h_Appointment$getRegExMatchesByName(name)
- {
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, 'getRegExMatchesByName');
- return this._data$p$0._getRegExMatchesByName$i$0(name)
- }, displayReplyForm: function $h_Appointment$displayReplyForm(htmlBody)
- {
- OSF.DDA.OutlookAppOm._instance$p._displayReplyForm$i$0(htmlBody)
- }, displayReplyAllForm: function $h_Appointment$displayReplyAllForm(htmlBody)
- {
- OSF.DDA.OutlookAppOm._instance$p._displayReplyAllForm$i$0(htmlBody)
- }, getItemType: function $h_Appointment$getItemType()
- {
- return Microsoft.Office.WebExtension.MailboxEnums.ItemType.Appointment
- }, _getStart$p$2: function $h_Appointment$_getStart$p$2()
- {
- return this._data$p$0.get__start$i$0()
- }, _getEnd$p$2: function $h_Appointment$_getEnd$p$2()
- {
- return this._data$p$0.get__end$i$0()
- }, _getLocation$p$2: function $h_Appointment$_getLocation$p$2()
- {
- return this._data$p$0.get__location$i$0()
- }, _getOptionalAttendees$p$2: function $h_Appointment$_getOptionalAttendees$p$2()
- {
- return this._data$p$0.get__cc$i$0()
- }, _getRequiredAttendees$p$2: function $h_Appointment$_getRequiredAttendees$p$2()
- {
- return this._data$p$0.get__to$i$0()
- }, _getResources$p$2: function $h_Appointment$_getResources$p$2()
- {
- return this._data$p$0.get__resources$i$0()
- }, _getSubject$p$2: function $h_Appointment$_getSubject$p$2()
- {
- return this._data$p$0.get__subject$i$0()
- }, _getNormalizedSubject$p$2: function $h_Appointment$_getNormalizedSubject$p$2()
- {
- return this._data$p$0.get__normalizedSubject$i$0()
- }, _getOrganizer$p$2: function $h_Appointment$_getOrganizer$p$2()
- {
- return this._data$p$0.get__organizer$i$0()
- }
- };
- $h.AppointmentCompose=function $h_AppointmentCompose(data)
- {
- this.$$d__getLocation$p$2=Function.createDelegate(this, this._getLocation$p$2);
- this.$$d__getEnd$p$2=Function.createDelegate(this, this._getEnd$p$2);
- this.$$d__getStart$p$2=Function.createDelegate(this, this._getStart$p$2);
- this.$$d__getOptionalAttendees$p$2=Function.createDelegate(this, this._getOptionalAttendees$p$2);
- this.$$d__getRequiredAttendees$p$2=Function.createDelegate(this, this._getRequiredAttendees$p$2);
- $h.AppointmentCompose.initializeBase(this, [data]);
- $h.InitialData._defineReadOnlyProperty$i(this, 'requiredAttendees', this.$$d__getRequiredAttendees$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'optionalAttendees', this.$$d__getOptionalAttendees$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'start', this.$$d__getStart$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'end', this.$$d__getEnd$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'location', this.$$d__getLocation$p$2)
- };
- $h.AppointmentCompose.prototype={
- _requiredAttendees$p$2: null, _optionalAttendees$p$2: null, _start$p$2: null, _end$p$2: null, _location$p$2: null, getItemType: function $h_AppointmentCompose$getItemType()
- {
- return Microsoft.Office.WebExtension.MailboxEnums.ItemType.Appointment
- }, _getRequiredAttendees$p$2: function $h_AppointmentCompose$_getRequiredAttendees$p$2()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._requiredAttendees$p$2)
- {
- this._requiredAttendees$p$2=new $h.ComposeRecipient(0, 'requiredAttendees')
- }
- return this._requiredAttendees$p$2
- }, _getOptionalAttendees$p$2: function $h_AppointmentCompose$_getOptionalAttendees$p$2()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._optionalAttendees$p$2)
- {
- this._optionalAttendees$p$2=new $h.ComposeRecipient(1, 'optionalAttendees')
- }
- return this._optionalAttendees$p$2
- }, _getStart$p$2: function $h_AppointmentCompose$_getStart$p$2()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._start$p$2)
- {
- this._start$p$2=new $h.ComposeTime(1)
- }
- return this._start$p$2
- }, _getEnd$p$2: function $h_AppointmentCompose$_getEnd$p$2()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._end$p$2)
- {
- this._end$p$2=new $h.ComposeTime(2)
- }
- return this._end$p$2
- }, _getLocation$p$2: function $h_AppointmentCompose$_getLocation$p$2()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._location$p$2)
- {
- this._location$p$2=new $h.ComposeLocation
- }
- return this._location$p$2
- }
- };
- $h.AttachmentDetails=function $h_AttachmentDetails(data)
- {
- this.$$d__getIsInline$p$0=Function.createDelegate(this, this._getIsInline$p$0);
- this.$$d__getAttachmentType$p$0=Function.createDelegate(this, this._getAttachmentType$p$0);
- this.$$d__getSize$p$0=Function.createDelegate(this, this._getSize$p$0);
- this.$$d__getContentType$p$0=Function.createDelegate(this, this._getContentType$p$0);
- this.$$d__getName$p$0=Function.createDelegate(this, this._getName$p$0);
- this.$$d__getId$p$0=Function.createDelegate(this, this._getId$p$0);
- this._data$p$0=data;
- $h.InitialData._defineReadOnlyProperty$i(this, 'id', this.$$d__getId$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'name', this.$$d__getName$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'contentType', this.$$d__getContentType$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'size', this.$$d__getSize$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'attachmentType', this.$$d__getAttachmentType$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'isInline', this.$$d__getIsInline$p$0)
- };
- $h.AttachmentDetails.prototype={
- _data$p$0: null, _getId$p$0: function $h_AttachmentDetails$_getId$p$0()
- {
- return this._data$p$0['id']
- }, _getName$p$0: function $h_AttachmentDetails$_getName$p$0()
- {
- return this._data$p$0['name']
- }, _getContentType$p$0: function $h_AttachmentDetails$_getContentType$p$0()
- {
- return this._data$p$0['contentType']
- }, _getSize$p$0: function $h_AttachmentDetails$_getSize$p$0()
- {
- return this._data$p$0['size']
- }, _getAttachmentType$p$0: function $h_AttachmentDetails$_getAttachmentType$p$0()
- {
- var response=this._data$p$0['attachmentType'];
- return (response < $h.AttachmentDetails._attachmentTypeMap$p.length) ? $h.AttachmentDetails._attachmentTypeMap$p[response] : Microsoft.Office.WebExtension.MailboxEnums.AttachmentType.File
- }, _getIsInline$p$0: function $h_AttachmentDetails$_getIsInline$p$0()
- {
- return this._data$p$0['isInline']
- }
- };
- $h.ComposeBody=function $h_ComposeBody(){};
- $h.ComposeBody._createParameterDictionaryToHost$p=function $h_ComposeBody$_createParameterDictionaryToHost$p(data, parameters)
- {
- var dataToHost={data: data};
- if (parameters._options$p$0 && parameters._options$p$0['coercionType'])
- {
- var hostCoercionType;
- var $$t_4,
- $$t_5;
- if (!(($$t_5=$h.ComposeBody._tryMapToHostCoercionType$p(parameters._options$p$0['coercionType'], ($$t_4={val: hostCoercionType}))), hostCoercionType=$$t_4.val, $$t_5))
- {
- if (parameters.get_callback())
- {
- parameters.get_callback()(OSF.DDA.OutlookAppOm._instance$p.standardCreateAsyncResult(null, 1, 1000, parameters._asyncContext$p$0))
- }
- return null
- }
- dataToHost['coercionType']=hostCoercionType
- }
- else
- {
- dataToHost['coercionType']=0
- }
- return dataToHost
- };
- $h.ComposeBody._tryMapToHostCoercionType$p=function $h_ComposeBody$_tryMapToHostCoercionType$p(coercionType, hostCoercionType)
- {
- hostCoercionType.val=undefined;
- if (coercionType===Microsoft.Office.WebExtension.CoercionType.Html)
- {
- hostCoercionType.val=3
- }
- else if (coercionType===Microsoft.Office.WebExtension.CoercionType.Text)
- {
- hostCoercionType.val=0
- }
- else
- {
- return false
- }
- return true
- };
- $h.ComposeBody.prototype={
- getTypeAsync: function $h_ComposeBody$getTypeAsync()
- {
- var args=[];
- for (var $$pai_2=0; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2]=arguments[$$pai_2]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, 'body.getTypeAsync');
- var parameters=$h.CommonParameters.parse(args, true);
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(14, 'GetBodyTypeAsync', null, null, parameters._asyncContext$p$0, parameters.get_callback())
- }, setSelectedDataAsync: function $h_ComposeBody$setSelectedDataAsync(data)
- {
- var args=[];
- for (var $$pai_4=1; $$pai_4 < arguments.length;++$$pai_4)
- {
- args[$$pai_4 - 1]=arguments[$$pai_4]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, 'body.setSelectedDataAsync');
- var parameters=$h.CommonParameters.parse(args, false);
- if (!(String.isInstanceOfType(data)))
- {
- throw Error.argumentType('data', Object.getType(data), String);
- }
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(data.length, 0, 1000000, 'data');
- var dataToHost=$h.ComposeBody._createParameterDictionaryToHost$p(data, parameters);
- if (!dataToHost)
- {
- return
- }
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(13, 'BodySetSelectedDataAsync', dataToHost, null, parameters._asyncContext$p$0, parameters.get_callback())
- }, prependAsync: function $h_ComposeBody$prependAsync(data)
- {
- var args=[];
- for (var $$pai_4=1; $$pai_4 < arguments.length;++$$pai_4)
- {
- args[$$pai_4 - 1]=arguments[$$pai_4]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, 'body.prependAsync');
- var parameters=$h.CommonParameters.parse(args, false);
- if (!(String.isInstanceOfType(data)))
- {
- throw Error.argumentType('data', Object.getType(data), String);
- }
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(data.length, 0, 1000000, 'data');
- var dataToHost=$h.ComposeBody._createParameterDictionaryToHost$p(data, parameters);
- if (!dataToHost)
- {
- return
- }
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(23, 'BodyPrependAsync', dataToHost, null, parameters._asyncContext$p$0, parameters.get_callback())
- }
- };
- $h.ComposeItem=function $h_ComposeItem(data)
- {
- this.$$d__getBody$p$1=Function.createDelegate(this, this._getBody$p$1);
- this.$$d__getSubject$p$1=Function.createDelegate(this, this._getSubject$p$1);
- $h.ComposeItem.initializeBase(this, [data]);
- $h.InitialData._defineReadOnlyProperty$i(this, 'subject', this.$$d__getSubject$p$1);
- $h.InitialData._defineReadOnlyProperty$i(this, 'body', this.$$d__getBody$p$1)
- };
- $h.ComposeItem.prototype={
- _subject$p$1: null, _body$p$1: null, addFileAttachmentAsync: function $h_ComposeItem$addFileAttachmentAsync(uri, attachmentName)
- {
- var args=[];
- for (var $$pai_5=2; $$pai_5 < arguments.length;++$$pai_5)
- {
- args[$$pai_5 - 2]=arguments[$$pai_5]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, 'addFileAttachmentAsync');
- if (!$h.ScriptHelpers.isNonEmptyString(uri))
- {
- throw Error.argument('uri');
- }
- if (!$h.ScriptHelpers.isNonEmptyString(attachmentName))
- {
- throw Error.argument('attachmentName');
- }
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(uri.length, 0, 2048, 'uri');
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(attachmentName.length, 0, 255, 'attachmentName');
- var commonParameters=$h.CommonParameters.parse(args, false);
- var parameters={
- uri: uri, name: attachmentName, __timeout__: 600000
- };
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(16, 'AddFileAttachmentAsync', parameters, null, commonParameters._asyncContext$p$0, commonParameters.get_callback())
- }, addItemAttachmentAsync: function $h_ComposeItem$addItemAttachmentAsync(itemId, attachmentName)
- {
- var args=[];
- for (var $$pai_5=2; $$pai_5 < arguments.length;++$$pai_5)
- {
- args[$$pai_5 - 2]=arguments[$$pai_5]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, 'addItemAttachmentAsync');
- if (!$h.ScriptHelpers.isNonEmptyString(itemId))
- {
- throw Error.argument('itemId');
- }
- if (!$h.ScriptHelpers.isNonEmptyString(attachmentName))
- {
- throw Error.argument('attachmentName');
- }
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(itemId.length, 0, 200, 'itemId');
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(attachmentName.length, 0, 255, 'attachmentName');
- var commonParameters=$h.CommonParameters.parse(args, false);
- var parameters={
- itemId: itemId, name: attachmentName, __timeout__: 600000
- };
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(19, 'AddItemAttachmentAsync', parameters, null, commonParameters._asyncContext$p$0, commonParameters.get_callback())
- }, removeAttachmentAsync: function $h_ComposeItem$removeAttachmentAsync(attachmentId)
- {
- var args=[];
- for (var $$pai_3=1; $$pai_3 < arguments.length;++$$pai_3)
- {
- args[$$pai_3 - 1]=arguments[$$pai_3]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, 'removeAttachmentAsync');
- if (!$h.ScriptHelpers.isNonEmptyString(attachmentId))
- {
- throw Error.argument('attachmentId');
- }
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(attachmentId.length, 0, 200, 'attachmentId');
- var commonParameters=$h.CommonParameters.parse(args, false);
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(20, 'RemoveAttachmentAsync', {attachmentIndex: attachmentId}, null, commonParameters._asyncContext$p$0, commonParameters.get_callback())
- }, _getBody$p$1: function $h_ComposeItem$_getBody$p$1()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._body$p$1)
- {
- this._body$p$1=new $h.ComposeBody
- }
- return this._body$p$1
- }, _getSubject$p$1: function $h_ComposeItem$_getSubject$p$1()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._subject$p$1)
- {
- this._subject$p$1=new $h.ComposeSubject
- }
- return this._subject$p$1
- }
- };
- $h.ComposeRecipient=function $h_ComposeRecipient(type, propertyName)
- {
- this._type$p$0=type;
- this._propertyName$p$0=propertyName
- };
- $h.ComposeRecipient._throwOnInvalidDisplayNameOrEmail$p=function $h_ComposeRecipient$_throwOnInvalidDisplayNameOrEmail$p(displayName, emailAddress)
- {
- if (!displayName && !emailAddress)
- {
- throw Error.argument('recipients');
- }
- if (displayName && displayName.length > 255)
- {
- throw Error.argumentOutOfRange('recipients', displayName.length, _u.ExtensibilityStrings.l_DisplayNameTooLong_Text);
- }
- if (emailAddress && emailAddress.length > 571)
- {
- throw Error.argumentOutOfRange('recipients', emailAddress.length, _u.ExtensibilityStrings.l_EmailAddressTooLong_Text);
- }
- };
- $h.ComposeRecipient._getAsyncFormatter$p=function $h_ComposeRecipient$_getAsyncFormatter$p(rawInput)
- {
- var input=rawInput;
- var output=[];
- for (var i=0; i < input.length; i++)
- {
- var email=new $h.EmailAddressDetails(input[i]);
- output[i]=email
- }
- return output
- };
- $h.ComposeRecipient._createEmailDictionaryForHost$p=function $h_ComposeRecipient$_createEmailDictionaryForHost$p(address, name)
- {
- return {
- address: address, name: name
- }
- };
- $h.ComposeRecipient.prototype={
- _propertyName$p$0: null, _type$p$0: 0, getAsync: function $h_ComposeRecipient$getAsync()
- {
- var args=[];
- for (var $$pai_2=0; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2]=arguments[$$pai_2]
- }
- var parameters=$h.CommonParameters.parse(args, true);
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, this._propertyName$p$0+'.getAsync');
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(15, 'GetRecipientsAsync', {recipientField: this._type$p$0}, $h.ComposeRecipient._getAsyncFormatter$p, parameters._asyncContext$p$0, parameters.get_callback())
- }, setAsync: function $h_ComposeRecipient$setAsync(recipients)
- {
- var args=[];
- for (var $$pai_2=1; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2 - 1]=arguments[$$pai_2]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, this._propertyName$p$0+'.setAsync');
- this.setAddHelper(recipients, args, true)
- }, addAsync: function $h_ComposeRecipient$addAsync(recipients)
- {
- var args=[];
- for (var $$pai_2=1; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2 - 1]=arguments[$$pai_2]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, this._propertyName$p$0+'.addAsync');
- this.setAddHelper(recipients, args, false)
- }, setAddHelper: function $h_ComposeRecipient$setAddHelper(recipients, args, isSet)
- {
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(recipients.length, 0, 100, 'recipients');
- var parameters=$h.CommonParameters.parse(args, false);
- var recipientData=[];
- if (Array.isInstanceOfType(recipients))
- {
- for (var i=0; i < recipients.length; i++)
- {
- if (String.isInstanceOfType(recipients[i]))
- {
- $h.ComposeRecipient._throwOnInvalidDisplayNameOrEmail$p(recipients[i], recipients[i]);
- recipientData[i]=$h.ComposeRecipient._createEmailDictionaryForHost$p(recipients[i], recipients[i])
- }
- else if ($h.EmailAddressDetails.isInstanceOfType(recipients[i]))
- {
- var address=recipients[i];
- $h.ComposeRecipient._throwOnInvalidDisplayNameOrEmail$p(address.displayName, address.emailAddress);
- recipientData[i]=$h.ComposeRecipient._createEmailDictionaryForHost$p(address.emailAddress, address.displayName)
- }
- else if (Object.isInstanceOfType(recipients[i]))
- {
- var input=recipients[i];
- var emailAddress=input['emailAddress'];
- var displayName=input['displayName'];
- $h.ComposeRecipient._throwOnInvalidDisplayNameOrEmail$p(displayName, emailAddress);
- recipientData[i]=$h.ComposeRecipient._createEmailDictionaryForHost$p(emailAddress, displayName)
- }
- else
- {
- throw Error.argument('recipients');
- }
- }
- }
- else
- {
- throw Error.argument('recipients');
- }
- var $$t_B=this;
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0((isSet) ? 21 : 22, (isSet) ? 'SetRecipientsAsync' : 'AddRecipientsAsync', {
- recipientField: this._type$p$0, recipientArray: recipientData
- }, function(rawInput)
- {
- return rawInput
- }, parameters._asyncContext$p$0, parameters.get_callback())
- }
- };
- $h.ComposeRecipient.RecipientField=function(){};
- $h.ComposeRecipient.RecipientField.prototype={
- to: 0, cc: 1, bcc: 2, requiredAttendees: 0, optionalAttendees: 1
- };
- $h.ComposeRecipient.RecipientField.registerEnum('$h.ComposeRecipient.RecipientField', false);
- $h.ComposeLocation=function $h_ComposeLocation(){};
- $h.ComposeLocation.prototype={
- getAsync: function $h_ComposeLocation$getAsync()
- {
- var args=[];
- for (var $$pai_2=0; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2]=arguments[$$pai_2]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, 'location.getAsync');
- var parameters=$h.CommonParameters.parse(args, true);
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(26, 'GetLocationAsync', null, null, parameters._asyncContext$p$0, parameters.get_callback())
- }, setAsync: function $h_ComposeLocation$setAsync(location)
- {
- var args=[];
- for (var $$pai_3=1; $$pai_3 < arguments.length;++$$pai_3)
- {
- args[$$pai_3 - 1]=arguments[$$pai_3]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, 'location.setAsync');
- var parameters=$h.CommonParameters.parse(args, false);
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(location.length, 0, 255, 'location');
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(27, 'SetLocationAsync', {location: location}, null, parameters._asyncContext$p$0, parameters.get_callback())
- }
- };
- $h.ComposeSubject=function $h_ComposeSubject(){};
- $h.ComposeSubject.prototype={
- getAsync: function $h_ComposeSubject$getAsync()
- {
- var args=[];
- for (var $$pai_2=0; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2]=arguments[$$pai_2]
- }
- var parameters=$h.CommonParameters.parse(args, true);
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, 'subject.getAsync');
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(18, 'GetSubjectAsync', null, null, parameters._asyncContext$p$0, parameters.get_callback())
- }, setAsync: function $h_ComposeSubject$setAsync(data)
- {
- var args=[];
- for (var $$pai_3=1; $$pai_3 < arguments.length;++$$pai_3)
- {
- args[$$pai_3 - 1]=arguments[$$pai_3]
- }
- var parameters=$h.CommonParameters.parse(args, false);
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, 'subject.setAsync');
- if (!(String.isInstanceOfType(data)))
- {
- throw Error.argument('data');
- }
- OSF.DDA.OutlookAppOm._throwOnOutOfRange$i(data.length, 0, 255, 'data');
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(17, 'SetSubjectAsync', {subject: data}, null, parameters._asyncContext$p$0, parameters.get_callback())
- }
- };
- $h.ComposeTime=function $h_ComposeTime(type)
- {
- this.$$d__ticksToDateFormatter$p$0=Function.createDelegate(this, this._ticksToDateFormatter$p$0);
- this._timeType$p$0=type
- };
- $h.ComposeTime.prototype={
- _timeType$p$0: 0, getAsync: function $h_ComposeTime$getAsync()
- {
- var args=[];
- for (var $$pai_2=0; $$pai_2 < arguments.length;++$$pai_2)
- {
- args[$$pai_2]=arguments[$$pai_2]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, this._getPropertyName$p$0()+'.getAsync');
- var parameters=$h.CommonParameters.parse(args, true);
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(24, 'GetTimeAsync', {TimeProperty: this._timeType$p$0}, this.$$d__ticksToDateFormatter$p$0, parameters._asyncContext$p$0, parameters.get_callback())
- }, setAsync: function $h_ComposeTime$setAsync(dateTime)
- {
- var args=[];
- for (var $$pai_3=1; $$pai_3 < arguments.length;++$$pai_3)
- {
- args[$$pai_3 - 1]=arguments[$$pai_3]
- }
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(2, this._getPropertyName$p$0()+'.setAsync');
- if (!(Date.isInstanceOfType(dateTime)))
- {
- throw Error.argumentType('dateTime', Object.getType(dateTime), Date);
- }
- var parameters=$h.CommonParameters.parse(args, false);
- OSF.DDA.OutlookAppOm._instance$p._standardInvokeHostMethod$i$0(25, 'SetTimeAsync', {
- TimeProperty: this._timeType$p$0, time: dateTime.getTime()
- }, null, parameters._asyncContext$p$0, parameters.get_callback())
- }, _ticksToDateFormatter$p$0: function $h_ComposeTime$_ticksToDateFormatter$p$0(rawInput)
- {
- var ticks=rawInput;
- return new Date(ticks)
- }, _getPropertyName$p$0: function $h_ComposeTime$_getPropertyName$p$0()
- {
- return (this._timeType$p$0===1) ? 'start' : 'end'
- }
- };
- $h.ComposeTime.TimeType=function(){};
- $h.ComposeTime.TimeType.prototype={
- start: 1, end: 2
- };
- $h.ComposeTime.TimeType.registerEnum('$h.ComposeTime.TimeType', false);
- $h.Contact=function $h_Contact(data)
- {
- this.$$d__getContactString$p$0=Function.createDelegate(this, this._getContactString$p$0);
- this.$$d__getAddresses$p$0=Function.createDelegate(this, this._getAddresses$p$0);
- this.$$d__getUrls$p$0=Function.createDelegate(this, this._getUrls$p$0);
- this.$$d__getEmailAddresses$p$0=Function.createDelegate(this, this._getEmailAddresses$p$0);
- this.$$d__getPhoneNumbers$p$0=Function.createDelegate(this, this._getPhoneNumbers$p$0);
- this.$$d__getBusinessName$p$0=Function.createDelegate(this, this._getBusinessName$p$0);
- this.$$d__getPersonName$p$0=Function.createDelegate(this, this._getPersonName$p$0);
- this._data$p$0=data;
- $h.InitialData._defineReadOnlyProperty$i(this, 'personName', this.$$d__getPersonName$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'businessName', this.$$d__getBusinessName$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'phoneNumbers', this.$$d__getPhoneNumbers$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'emailAddresses', this.$$d__getEmailAddresses$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'urls', this.$$d__getUrls$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'addresses', this.$$d__getAddresses$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'contactString', this.$$d__getContactString$p$0)
- };
- $h.Contact.prototype={
- _data$p$0: null, _phoneNumbers$p$0: null, _getPersonName$p$0: function $h_Contact$_getPersonName$p$0()
- {
- return this._data$p$0['PersonName']
- }, _getBusinessName$p$0: function $h_Contact$_getBusinessName$p$0()
- {
- return this._data$p$0['BusinessName']
- }, _getAddresses$p$0: function $h_Contact$_getAddresses$p$0()
- {
- return $h.Entities._getExtractedStringProperty$i(this._data$p$0, 'Addresses')
- }, _getEmailAddresses$p$0: function $h_Contact$_getEmailAddresses$p$0()
- {
- return $h.Entities._getExtractedStringProperty$i(this._data$p$0, 'EmailAddresses')
- }, _getUrls$p$0: function $h_Contact$_getUrls$p$0()
- {
- return $h.Entities._getExtractedStringProperty$i(this._data$p$0, 'Urls')
- }, _getPhoneNumbers$p$0: function $h_Contact$_getPhoneNumbers$p$0()
- {
- if (!this._phoneNumbers$p$0)
- {
- var $$t_1=this;
- this._phoneNumbers$p$0=$h.Entities._getExtractedObjects$i($h.PhoneNumber, this._data$p$0, 'PhoneNumbers', function(data)
- {
- return new $h.PhoneNumber(data)
- })
- }
- return this._phoneNumbers$p$0
- }, _getContactString$p$0: function $h_Contact$_getContactString$p$0()
- {
- return this._data$p$0['ContactString']
- }
- };
- $h.CustomProperties=function $h_CustomProperties(data)
- {
- if ($h.ScriptHelpers.isNullOrUndefined(data))
- {
- throw Error.argumentNull('data');
- }
- if (Array.isInstanceOfType(data))
- {
- var customPropertiesArray=data;
- if (customPropertiesArray.length > 0)
- {
- this._data$p$0=customPropertiesArray[0]
- }
- else
- {
- throw Error.argument('data');
- }
- }
- else
- {
- this._data$p$0=data
- }
- };
- $h.CustomProperties.prototype={
- _data$p$0: null, get: function $h_CustomProperties$get(name)
- {
- var value=this._data$p$0[name];
- if (typeof(value)==='string')
- {
- var valueString=value;
- if (valueString.length > 6 && valueString.startsWith('Date(') && valueString.endsWith(')'))
- {
- var ticksString=valueString.substring(5, valueString.length - 1);
- var ticks=parseInt(ticksString);
- if (!isNaN(ticks))
- {
- var dateTimeValue=new Date(ticks);
- if (dateTimeValue)
- {
- value=dateTimeValue
- }
- }
- }
- }
- return value
- }, set: function $h_CustomProperties$set(name, value)
- {
- if (OSF.OUtil.isDate(value))
- {
- value='Date('+(value).getTime()+')'
- }
- this._data$p$0[name]=value
- }, remove: function $h_CustomProperties$remove(name)
- {
- delete this._data$p$0[name]
- }, saveAsync: function $h_CustomProperties$saveAsync()
- {
- var args=[];
- for (var $$pai_4=0; $$pai_4 < arguments.length;++$$pai_4)
- {
- args[$$pai_4]=arguments[$$pai_4]
- }
- var MaxCustomPropertiesLength=2500;
- if (JSON.stringify(this._data$p$0).length > MaxCustomPropertiesLength)
- {
- throw Error.argument();
- }
- var parameters=$h.CommonParameters.parse(args, false, true);
- var saveCustomProperties=new $h._saveDictionaryRequest(parameters.get_callback(), parameters._asyncContext$p$0);
- saveCustomProperties._sendRequest$i$0(4, 'SaveCustomProperties', {customProperties: this._data$p$0})
- }
- };
- $h.Diagnostics=function $h_Diagnostics(data, appName)
- {
- this.$$d__getOwaView$p$0=Function.createDelegate(this, this._getOwaView$p$0);
- this.$$d__getHostVersion$p$0=Function.createDelegate(this, this._getHostVersion$p$0);
- this.$$d__getHostName$p$0=Function.createDelegate(this, this._getHostName$p$0);
- this._data$p$0=data;
- this._appName$p$0=appName;
- $h.InitialData._defineReadOnlyProperty$i(this, 'hostName', this.$$d__getHostName$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'hostVersion', this.$$d__getHostVersion$p$0);
- if (64===this._appName$p$0)
- {
- $h.InitialData._defineReadOnlyProperty$i(this, 'OWAView', this.$$d__getOwaView$p$0)
- }
- };
- $h.Diagnostics.prototype={
- _data$p$0: null, _appName$p$0: 0, _getHostName$p$0: function $h_Diagnostics$_getHostName$p$0()
- {
- if (8===this._appName$p$0)
- {
- return 'Outlook'
- }
- else if (64===this._appName$p$0)
- {
- return 'OutlookWebApp'
- }
- return null
- }, _getHostVersion$p$0: function $h_Diagnostics$_getHostVersion$p$0()
- {
- return this._data$p$0.get__hostVersion$i$0()
- }, _getOwaView$p$0: function $h_Diagnostics$_getOwaView$p$0()
- {
- return this._data$p$0.get__owaView$i$0()
- }
- };
- $h.EmailAddressDetails=function $h_EmailAddressDetails(data)
- {
- this.$$d__getRecipientType$p$0=Function.createDelegate(this, this._getRecipientType$p$0);
- this.$$d__getAppointmentResponse$p$0=Function.createDelegate(this, this._getAppointmentResponse$p$0);
- this.$$d__getDisplayName$p$0=Function.createDelegate(this, this._getDisplayName$p$0);
- this.$$d__getEmailAddress$p$0=Function.createDelegate(this, this._getEmailAddress$p$0);
- this._data$p$0=data;
- $h.InitialData._defineReadOnlyProperty$i(this, 'emailAddress', this.$$d__getEmailAddress$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'displayName', this.$$d__getDisplayName$p$0);
- if ($h.ScriptHelpers.dictionaryContainsKey(data, 'appointmentResponse'))
- {
- $h.InitialData._defineReadOnlyProperty$i(this, 'appointmentResponse', this.$$d__getAppointmentResponse$p$0)
- }
- if ($h.ScriptHelpers.dictionaryContainsKey(data, 'recipientType'))
- {
- $h.InitialData._defineReadOnlyProperty$i(this, 'recipientType', this.$$d__getRecipientType$p$0)
- }
- };
- $h.EmailAddressDetails._createFromEmailUserDictionary$i=function $h_EmailAddressDetails$_createFromEmailUserDictionary$i(data)
- {
- var emailAddressDetailsDictionary={};
- var displayName=data['Name'];
- var emailAddress=data['UserId'];
- emailAddressDetailsDictionary['name']=displayName || $h.EmailAddressDetails._emptyString$p;
- emailAddressDetailsDictionary['address']=emailAddress || $h.EmailAddressDetails._emptyString$p;
- return new $h.EmailAddressDetails(emailAddressDetailsDictionary)
- };
- $h.EmailAddressDetails.prototype={
- _data$p$0: null, toJSON: function $h_EmailAddressDetails$toJSON()
- {
- var result={};
- result['emailAddress']=this._getEmailAddress$p$0();
- result['displayName']=this._getDisplayName$p$0();
- if ($h.ScriptHelpers.dictionaryContainsKey(this._data$p$0, 'appointmentResponse'))
- {
- result['appointmentResponse']=this._getAppointmentResponse$p$0()
- }
- if ($h.ScriptHelpers.dictionaryContainsKey(this._data$p$0, 'recipientType'))
- {
- result['recipientType']=this._getRecipientType$p$0()
- }
- return result
- }, _getEmailAddress$p$0: function $h_EmailAddressDetails$_getEmailAddress$p$0()
- {
- return this._data$p$0['address']
- }, _getDisplayName$p$0: function $h_EmailAddressDetails$_getDisplayName$p$0()
- {
- return this._data$p$0['name']
- }, _getAppointmentResponse$p$0: function $h_EmailAddressDetails$_getAppointmentResponse$p$0()
- {
- var response=this._data$p$0['appointmentResponse'];
- return (response < $h.EmailAddressDetails._responseTypeMap$p.length) ? $h.EmailAddressDetails._responseTypeMap$p[response] : Microsoft.Office.WebExtension.MailboxEnums.ResponseType.None
- }, _getRecipientType$p$0: function $h_EmailAddressDetails$_getRecipientType$p$0()
- {
- var response=this._data$p$0['recipientType'];
- return (response < $h.EmailAddressDetails._recipientTypeMap$p.length) ? $h.EmailAddressDetails._recipientTypeMap$p[response] : Microsoft.Office.WebExtension.MailboxEnums.RecipientType.Other
- }
- };
- $h.Entities=function $h_Entities(data, filteredEntitiesData, timeSent, permissionLevel)
- {
- this.$$d__createMeetingSuggestion$p$0=Function.createDelegate(this, this._createMeetingSuggestion$p$0);
- this.$$d__getContacts$p$0=Function.createDelegate(this, this._getContacts$p$0);
- this.$$d__getPhoneNumbers$p$0=Function.createDelegate(this, this._getPhoneNumbers$p$0);
- this.$$d__getUrls$p$0=Function.createDelegate(this, this._getUrls$p$0);
- this.$$d__getEmailAddresses$p$0=Function.createDelegate(this, this._getEmailAddresses$p$0);
- this.$$d__getMeetingSuggestions$p$0=Function.createDelegate(this, this._getMeetingSuggestions$p$0);
- this.$$d__getTaskSuggestions$p$0=Function.createDelegate(this, this._getTaskSuggestions$p$0);
- this.$$d__getAddresses$p$0=Function.createDelegate(this, this._getAddresses$p$0);
- this._data$p$0=data || {};
- this._filteredData$p$0=filteredEntitiesData || {};
- this._dateTimeSent$p$0=timeSent;
- $h.InitialData._defineReadOnlyProperty$i(this, 'addresses', this.$$d__getAddresses$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'taskSuggestions', this.$$d__getTaskSuggestions$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'meetingSuggestions', this.$$d__getMeetingSuggestions$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'emailAddresses', this.$$d__getEmailAddresses$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'urls', this.$$d__getUrls$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'phoneNumbers', this.$$d__getPhoneNumbers$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'contacts', this.$$d__getContacts$p$0);
- this._permissionLevel$p$0=permissionLevel
- };
- $h.Entities._getExtractedObjects$i=function $h_Entities$_getExtractedObjects$i(T, data, name, creator, removeDuplicates, stringPropertyName)
- {
- var results=null;
- var extractedObjects=data[name];
- if (!extractedObjects)
- {
- return new Array(0)
- }
- if (removeDuplicates)
- {
- extractedObjects=$h.Entities._removeDuplicate$p(Object, extractedObjects, $h.Entities._entityDictionaryEquals$p, stringPropertyName)
- }
- results=new Array(extractedObjects.length);
- var count=0;
- for (var $$arr_9=extractedObjects, $$len_A=$$arr_9.length, $$idx_B=0; $$idx_B < $$len_A;++$$idx_B)
- {
- var extractedObject=$$arr_9[$$idx_B];
- results[count++]=creator(extractedObject)
- }
- return results
- };
- $h.Entities._getExtractedStringProperty$i=function $h_Entities$_getExtractedStringProperty$i(data, name, removeDuplicate)
- {
- var extractedProperties=data[name];
- if (!extractedProperties)
- {
- return new Array(0)
- }
- if (removeDuplicate)
- {
- extractedProperties=$h.Entities._removeDuplicate$p(String, extractedProperties, $h.Entities._stringEquals$p, null)
- }
- return extractedProperties
- };
- $h.Entities._createContact$p=function $h_Entities$_createContact$p(data)
- {
- return new $h.Contact(data)
- };
- $h.Entities._createTaskSuggestion$p=function $h_Entities$_createTaskSuggestion$p(data)
- {
- return new $h.TaskSuggestion(data)
- };
- $h.Entities._createPhoneNumber$p=function $h_Entities$_createPhoneNumber$p(data)
- {
- return new $h.PhoneNumber(data)
- };
- $h.Entities._entityDictionaryEquals$p=function $h_Entities$_entityDictionaryEquals$p(dictionary1, dictionary2, entityPropertyIdentifier)
- {
- if (dictionary1===dictionary2)
- {
- return true
- }
- if (!dictionary1 || !dictionary2)
- {
- return false
- }
- if (dictionary1[entityPropertyIdentifier]===dictionary2[entityPropertyIdentifier])
- {
- return true
- }
- return false
- };
- $h.Entities._stringEquals$p=function $h_Entities$_stringEquals$p(string1, string2, entityProperty)
- {
- return string1===string2
- };
- $h.Entities._removeDuplicate$p=function $h_Entities$_removeDuplicate$p(T, array, entityEquals, entityPropertyIdentifier)
- {
- for (var matchIndex1=array.length - 1; matchIndex1 >=0; matchIndex1--)
- {
- var removeMatch=false;
- for (var matchIndex2=matchIndex1 - 1; matchIndex2 >=0; matchIndex2--)
- {
- if (entityEquals(array[matchIndex1], array[matchIndex2], entityPropertyIdentifier))
- {
- removeMatch=true;
- break
- }
- }
- if (removeMatch)
- {
- Array.removeAt(array, matchIndex1)
- }
- }
- return array
- };
- $h.Entities.prototype={
- _dateTimeSent$p$0: null, _data$p$0: null, _filteredData$p$0: null, _filteredEntitiesCache$p$0: null, _permissionLevel$p$0: 0, _taskSuggestions$p$0: null, _meetingSuggestions$p$0: null, _phoneNumbers$p$0: null, _contacts$p$0: null, _addresses$p$0: null, _emailAddresses$p$0: null, _urls$p$0: null, _getByType$i$0: function $h_Entities$_getByType$i$0(entityType)
- {
- if (entityType===Microsoft.Office.WebExtension.MailboxEnums.EntityType.MeetingSuggestion)
- {
- return this._getMeetingSuggestions$p$0()
- }
- else if (entityType===Microsoft.Office.WebExtension.MailboxEnums.EntityType.TaskSuggestion)
- {
- return this._getTaskSuggestions$p$0()
- }
- else if (entityType===Microsoft.Office.WebExtension.MailboxEnums.EntityType.Address)
- {
- return this._getAddresses$p$0()
- }
- else if (entityType===Microsoft.Office.WebExtension.MailboxEnums.EntityType.PhoneNumber)
- {
- return this._getPhoneNumbers$p$0()
- }
- else if (entityType===Microsoft.Office.WebExtension.MailboxEnums.EntityType.EmailAddress)
- {
- return this._getEmailAddresses$p$0()
- }
- else if (entityType===Microsoft.Office.WebExtension.MailboxEnums.EntityType.Url)
- {
- return this._getUrls$p$0()
- }
- else if (entityType===Microsoft.Office.WebExtension.MailboxEnums.EntityType.Contact)
- {
- return this._getContacts$p$0()
- }
- return null
- }, _getFilteredEntitiesByName$i$0: function $h_Entities$_getFilteredEntitiesByName$i$0(name)
- {
- if (!this._filteredEntitiesCache$p$0)
- {
- this._filteredEntitiesCache$p$0={}
- }
- if (!$h.ScriptHelpers.dictionaryContainsKey(this._filteredEntitiesCache$p$0, name))
- {
- var found=false;
- for (var i=0; i < $h.Entities._allEntityKeys$p.length; i++)
- {
- var entityTypeKey=$h.Entities._allEntityKeys$p[i];
- var perEntityTypeDictionary=this._filteredData$p$0[entityTypeKey];
- if (!perEntityTypeDictionary)
- {
- continue
- }
- if ($h.ScriptHelpers.dictionaryContainsKey(perEntityTypeDictionary, name))
- {
- switch (entityTypeKey)
- {
- case'EmailAddresses':
- case'Urls':
- this._filteredEntitiesCache$p$0[name]=$h.Entities._getExtractedStringProperty$i(perEntityTypeDictionary, name);
- break;
- case'Addresses':
- this._filteredEntitiesCache$p$0[name]=$h.Entities._getExtractedStringProperty$i(perEntityTypeDictionary, name, true);
- break;
- case'PhoneNumbers':
- this._filteredEntitiesCache$p$0[name]=$h.Entities._getExtractedObjects$i($h.PhoneNumber, perEntityTypeDictionary, name, $h.Entities._createPhoneNumber$p, false, null);
- break;
- case'TaskSuggestions':
- this._filteredEntitiesCache$p$0[name]=$h.Entities._getExtractedObjects$i($h.TaskSuggestion, perEntityTypeDictionary, name, $h.Entities._createTaskSuggestion$p, true, 'TaskString');
- break;
- case'MeetingSuggestions':
- this._filteredEntitiesCache$p$0[name]=$h.Entities._getExtractedObjects$i($h.MeetingSuggestion, perEntityTypeDictionary, name, this.$$d__createMeetingSuggestion$p$0, true, 'MeetingString');
- break;
- case'Contacts':
- this._filteredEntitiesCache$p$0[name]=$h.Entities._getExtractedObjects$i($h.Contact, perEntityTypeDictionary, name, $h.Entities._createContact$p, true, 'ContactString');
- break
- }
- found=true;
- break
- }
- }
- if (!found)
- {
- this._filteredEntitiesCache$p$0[name]=null
- }
- }
- return this._filteredEntitiesCache$p$0[name]
- }, _createMeetingSuggestion$p$0: function $h_Entities$_createMeetingSuggestion$p$0(data)
- {
- return new $h.MeetingSuggestion(data, this._dateTimeSent$p$0)
- }, _getAddresses$p$0: function $h_Entities$_getAddresses$p$0()
- {
- if (!this._addresses$p$0)
- {
- this._addresses$p$0=$h.Entities._getExtractedStringProperty$i(this._data$p$0, 'Addresses', true)
- }
- return this._addresses$p$0
- }, _getEmailAddresses$p$0: function $h_Entities$_getEmailAddresses$p$0()
- {
- OSF.DDA.OutlookAppOm._throwOnPropertyAccessForRestrictedPermission$i(this._permissionLevel$p$0);
- if (!this._emailAddresses$p$0)
- {
- this._emailAddresses$p$0=$h.Entities._getExtractedStringProperty$i(this._data$p$0, 'EmailAddresses', false)
- }
- return this._emailAddresses$p$0
- }, _getUrls$p$0: function $h_Entities$_getUrls$p$0()
- {
- if (!this._urls$p$0)
- {
- this._urls$p$0=$h.Entities._getExtractedStringProperty$i(this._data$p$0, 'Urls', false)
- }
- return this._urls$p$0
- }, _getPhoneNumbers$p$0: function $h_Entities$_getPhoneNumbers$p$0()
- {
- if (!this._phoneNumbers$p$0)
- {
- this._phoneNumbers$p$0=$h.Entities._getExtractedObjects$i($h.PhoneNumber, this._data$p$0, 'PhoneNumbers', $h.Entities._createPhoneNumber$p)
- }
- return this._phoneNumbers$p$0
- }, _getTaskSuggestions$p$0: function $h_Entities$_getTaskSuggestions$p$0()
- {
- OSF.DDA.OutlookAppOm._throwOnPropertyAccessForRestrictedPermission$i(this._permissionLevel$p$0);
- if (!this._taskSuggestions$p$0)
- {
- this._taskSuggestions$p$0=$h.Entities._getExtractedObjects$i($h.TaskSuggestion, this._data$p$0, 'TaskSuggestions', $h.Entities._createTaskSuggestion$p, true, 'TaskString')
- }
- return this._taskSuggestions$p$0
- }, _getMeetingSuggestions$p$0: function $h_Entities$_getMeetingSuggestions$p$0()
- {
- OSF.DDA.OutlookAppOm._throwOnPropertyAccessForRestrictedPermission$i(this._permissionLevel$p$0);
- if (!this._meetingSuggestions$p$0)
- {
- this._meetingSuggestions$p$0=$h.Entities._getExtractedObjects$i($h.MeetingSuggestion, this._data$p$0, 'MeetingSuggestions', this.$$d__createMeetingSuggestion$p$0, true, 'MeetingString')
- }
- return this._meetingSuggestions$p$0
- }, _getContacts$p$0: function $h_Entities$_getContacts$p$0()
- {
- OSF.DDA.OutlookAppOm._throwOnPropertyAccessForRestrictedPermission$i(this._permissionLevel$p$0);
- if (!this._contacts$p$0)
- {
- this._contacts$p$0=$h.Entities._getExtractedObjects$i($h.Contact, this._data$p$0, 'Contacts', $h.Entities._createContact$p, true, 'ContactString')
- }
- return this._contacts$p$0
- }
- };
- Office.cast.item=function Office_cast_item(){};
- Office.cast.item.toItemRead=function Office_cast_item$toItemRead(item)
- {
- if ($h.Item.isInstanceOfType(item))
- {
- return item
- }
- throw Error.argumentType();
- };
- Office.cast.item.toItemCompose=function Office_cast_item$toItemCompose(item)
- {
- if ($h.ComposeItem.isInstanceOfType(item))
- {
- return item
- }
- throw Error.argumentType();
- };
- Office.cast.item.toMessage=function Office_cast_item$toMessage(item)
- {
- return Office.cast.item.toMessageRead(item)
- };
- Office.cast.item.toMessageRead=function Office_cast_item$toMessageRead(item)
- {
- if ($h.Message.isInstanceOfType(item))
- {
- return item
- }
- throw Error.argumentType();
- };
- Office.cast.item.toMessageCompose=function Office_cast_item$toMessageCompose(item)
- {
- if ($h.MessageCompose.isInstanceOfType(item))
- {
- return item
- }
- throw Error.argumentType();
- };
- Office.cast.item.toMeetingRequest=function Office_cast_item$toMeetingRequest(item)
- {
- if ($h.MeetingRequest.isInstanceOfType(item))
- {
- return item
- }
- throw Error.argumentType();
- };
- Office.cast.item.toAppointment=function Office_cast_item$toAppointment(item)
- {
- return Office.cast.item.toAppointmentRead(item)
- };
- Office.cast.item.toAppointmentRead=function Office_cast_item$toAppointmentRead(item)
- {
- if ($h.Appointment.isInstanceOfType(item))
- {
- return item
- }
- throw Error.argumentType();
- };
- Office.cast.item.toAppointmentCompose=function Office_cast_item$toAppointmentCompose(item)
- {
- if ($h.AppointmentCompose.isInstanceOfType(item))
- {
- return item
- }
- throw Error.argumentType();
- };
- $h.Item=function $h_Item(data)
- {
- this.$$d__getAttachments$p$1=Function.createDelegate(this, this._getAttachments$p$1);
- this.$$d__getItemClass$p$1=Function.createDelegate(this, this._getItemClass$p$1);
- this.$$d__getItemId$p$1=Function.createDelegate(this, this._getItemId$p$1);
- this.$$d__getDateTimeModified$p$1=Function.createDelegate(this, this._getDateTimeModified$p$1);
- this.$$d__getDateTimeCreated$p$1=Function.createDelegate(this, this._getDateTimeCreated$p$1);
- $h.Item.initializeBase(this, [data]);
- $h.InitialData._defineReadOnlyProperty$i(this, 'dateTimeCreated', this.$$d__getDateTimeCreated$p$1);
- $h.InitialData._defineReadOnlyProperty$i(this, 'dateTimeModified', this.$$d__getDateTimeModified$p$1);
- $h.InitialData._defineReadOnlyProperty$i(this, 'itemId', this.$$d__getItemId$p$1);
- $h.InitialData._defineReadOnlyProperty$i(this, 'itemClass', this.$$d__getItemClass$p$1);
- $h.InitialData._defineReadOnlyProperty$i(this, 'attachments', this.$$d__getAttachments$p$1)
- };
- $h.Item.prototype={
- _getItemId$p$1: function $h_Item$_getItemId$p$1()
- {
- return this._data$p$0.get__itemId$i$0()
- }, _getItemClass$p$1: function $h_Item$_getItemClass$p$1()
- {
- return this._data$p$0.get__itemClass$i$0()
- }, _getDateTimeCreated$p$1: function $h_Item$_getDateTimeCreated$p$1()
- {
- return this._data$p$0.get__dateTimeCreated$i$0()
- }, _getDateTimeModified$p$1: function $h_Item$_getDateTimeModified$p$1()
- {
- return this._data$p$0.get__dateTimeModified$i$0()
- }, _getAttachments$p$1: function $h_Item$_getAttachments$p$1()
- {
- return this._data$p$0.get__attachments$i$0()
- }
- };
- $h.ItemBase=function $h_ItemBase(data)
- {
- this.$$d__createCustomProperties$i$0=Function.createDelegate(this, this._createCustomProperties$i$0);
- this.$$d_getItemType=Function.createDelegate(this, this.getItemType);
- this._data$p$0=data;
- $h.InitialData._defineReadOnlyProperty$i(this, 'itemType', this.$$d_getItemType)
- };
- $h.ItemBase.prototype={
- _data$p$0: null, get_data: function $h_ItemBase$get_data()
- {
- return this._data$p$0
- }, loadCustomPropertiesAsync: function $h_ItemBase$loadCustomPropertiesAsync()
- {
- var args=[];
- for (var $$pai_3=0; $$pai_3 < arguments.length;++$$pai_3)
- {
- args[$$pai_3]=arguments[$$pai_3]
- }
- var parameters=$h.CommonParameters.parse(args, true, true);
- var loadCustomProperties=new $h._loadDictionaryRequest(this.$$d__createCustomProperties$i$0, 'customProperties', parameters.get_callback(), parameters._asyncContext$p$0);
- loadCustomProperties._sendRequest$i$0(3, 'LoadCustomProperties', {})
- }, _createCustomProperties$i$0: function $h_ItemBase$_createCustomProperties$i$0(data)
- {
- return new $h.CustomProperties(data)
- }
- };
- $h.MeetingRequest=function $h_MeetingRequest(data)
- {
- this.$$d__getRequiredAttendees$p$3=Function.createDelegate(this, this._getRequiredAttendees$p$3);
- this.$$d__getOptionalAttendees$p$3=Function.createDelegate(this, this._getOptionalAttendees$p$3);
- this.$$d__getLocation$p$3=Function.createDelegate(this, this._getLocation$p$3);
- this.$$d__getEnd$p$3=Function.createDelegate(this, this._getEnd$p$3);
- this.$$d__getStart$p$3=Function.createDelegate(this, this._getStart$p$3);
- $h.MeetingRequest.initializeBase(this, [data]);
- $h.InitialData._defineReadOnlyProperty$i(this, 'start', this.$$d__getStart$p$3);
- $h.InitialData._defineReadOnlyProperty$i(this, 'end', this.$$d__getEnd$p$3);
- $h.InitialData._defineReadOnlyProperty$i(this, 'location', this.$$d__getLocation$p$3);
- $h.InitialData._defineReadOnlyProperty$i(this, 'optionalAttendees', this.$$d__getOptionalAttendees$p$3);
- $h.InitialData._defineReadOnlyProperty$i(this, 'requiredAttendees', this.$$d__getRequiredAttendees$p$3)
- };
- $h.MeetingRequest.prototype={
- _getStart$p$3: function $h_MeetingRequest$_getStart$p$3()
- {
- return this._data$p$0.get__start$i$0()
- }, _getEnd$p$3: function $h_MeetingRequest$_getEnd$p$3()
- {
- return this._data$p$0.get__end$i$0()
- }, _getLocation$p$3: function $h_MeetingRequest$_getLocation$p$3()
- {
- return this._data$p$0.get__location$i$0()
- }, _getOptionalAttendees$p$3: function $h_MeetingRequest$_getOptionalAttendees$p$3()
- {
- return this._data$p$0.get__cc$i$0()
- }, _getRequiredAttendees$p$3: function $h_MeetingRequest$_getRequiredAttendees$p$3()
- {
- return this._data$p$0.get__to$i$0()
- }
- };
- $h.MeetingSuggestion=function $h_MeetingSuggestion(data, dateTimeSent)
- {
- this.$$d__getEndTime$p$0=Function.createDelegate(this, this._getEndTime$p$0);
- this.$$d__getStartTime$p$0=Function.createDelegate(this, this._getStartTime$p$0);
- this.$$d__getSubject$p$0=Function.createDelegate(this, this._getSubject$p$0);
- this.$$d__getLocation$p$0=Function.createDelegate(this, this._getLocation$p$0);
- this.$$d__getAttendees$p$0=Function.createDelegate(this, this._getAttendees$p$0);
- this.$$d__getMeetingString$p$0=Function.createDelegate(this, this._getMeetingString$p$0);
- this._data$p$0=data;
- this._dateTimeSent$p$0=dateTimeSent;
- $h.InitialData._defineReadOnlyProperty$i(this, 'meetingString', this.$$d__getMeetingString$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'attendees', this.$$d__getAttendees$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'location', this.$$d__getLocation$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'subject', this.$$d__getSubject$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'start', this.$$d__getStartTime$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'end', this.$$d__getEndTime$p$0)
- };
- $h.MeetingSuggestion.prototype={
- _dateTimeSent$p$0: null, _data$p$0: null, _attendees$p$0: null, _getMeetingString$p$0: function $h_MeetingSuggestion$_getMeetingString$p$0()
- {
- return this._data$p$0['MeetingString']
- }, _getLocation$p$0: function $h_MeetingSuggestion$_getLocation$p$0()
- {
- return this._data$p$0['Location']
- }, _getSubject$p$0: function $h_MeetingSuggestion$_getSubject$p$0()
- {
- return this._data$p$0['Subject']
- }, _getStartTime$p$0: function $h_MeetingSuggestion$_getStartTime$p$0()
- {
- var time=this._createDateTimeFromParameter$p$0('StartTime');
- var resolvedTime=$h.MeetingSuggestionTimeDecoder.resolve(time, this._dateTimeSent$p$0);
- if (resolvedTime.getTime() !==time.getTime())
- {
- return OSF.DDA.OutlookAppOm._instance$p.convertToUtcClientTime(OSF.DDA.OutlookAppOm._instance$p._dateToDictionary$i$0(resolvedTime))
- }
- return time
- }, _getEndTime$p$0: function $h_MeetingSuggestion$_getEndTime$p$0()
- {
- var time=this._createDateTimeFromParameter$p$0('EndTime');
- var resolvedTime=$h.MeetingSuggestionTimeDecoder.resolve(time, this._dateTimeSent$p$0);
- if (resolvedTime.getTime() !==time.getTime())
- {
- return OSF.DDA.OutlookAppOm._instance$p.convertToUtcClientTime(OSF.DDA.OutlookAppOm._instance$p._dateToDictionary$i$0(resolvedTime))
- }
- return time
- }, _createDateTimeFromParameter$p$0: function $h_MeetingSuggestion$_createDateTimeFromParameter$p$0(keyName)
- {
- var dateTimeString=this._data$p$0[keyName];
- if (!dateTimeString)
- {
- return null
- }
- return new Date(dateTimeString)
- }, _getAttendees$p$0: function $h_MeetingSuggestion$_getAttendees$p$0()
- {
- if (!this._attendees$p$0)
- {
- var $$t_1=this;
- this._attendees$p$0=$h.Entities._getExtractedObjects$i($h.EmailAddressDetails, this._data$p$0, 'Attendees', function(data)
- {
- return $h.EmailAddressDetails._createFromEmailUserDictionary$i(data)
- })
- }
- return this._attendees$p$0
- }
- };
- $h.MeetingSuggestionTimeDecoder=function $h_MeetingSuggestionTimeDecoder(){};
- $h.MeetingSuggestionTimeDecoder.resolve=function $h_MeetingSuggestionTimeDecoder$resolve(inTime, sentTime)
- {
- if (!sentTime)
- {
- return inTime
- }
- try
- {
- var tod;
- var outDate;
- var extractedDate;
- var sentDate=new Date(sentTime.getFullYear(), sentTime.getMonth(), sentTime.getDate(), 0, 0, 0, 0);
- var $$t_7,
- $$t_8,
- $$t_9;
- if (!(($$t_9=$h.MeetingSuggestionTimeDecoder._decode$p(inTime, ($$t_7={val: extractedDate}), ($$t_8={val: tod}))), extractedDate=$$t_7.val, tod=$$t_8.val, $$t_9))
- {
- return inTime
- }
- else
- {
- if ($h._preciseDate.isInstanceOfType(extractedDate))
- {
- outDate=$h.MeetingSuggestionTimeDecoder._resolvePreciseDate$p(sentDate, extractedDate)
- }
- else
- {
- if ($h._relativeDate.isInstanceOfType(extractedDate))
- {
- outDate=$h.MeetingSuggestionTimeDecoder._resolveRelativeDate$p(sentDate, extractedDate)
- }
- else
- {
- outDate=sentDate
- }
- }
- if (isNaN(outDate.getTime()))
- {
- return sentTime
- }
- outDate.setMilliseconds(outDate.getMilliseconds()+tod);
- return outDate
- }
- }
- catch($$e_6)
- {
- return sentTime
- }
- };
- $h.MeetingSuggestionTimeDecoder._isNullOrUndefined$i=function $h_MeetingSuggestionTimeDecoder$_isNullOrUndefined$i(value)
- {
- return null===value || value===undefined
- };
- $h.MeetingSuggestionTimeDecoder._resolvePreciseDate$p=function $h_MeetingSuggestionTimeDecoder$_resolvePreciseDate$p(sentDate, precise)
- {
- var year=precise._year$i$1;
- var month=(!precise._month$i$1) ? sentDate.getMonth() : precise._month$i$1 - 1;
- var day=precise._day$i$1;
- if (!day)
- {
- return sentDate
- }
- var candidate;
- if ($h.MeetingSuggestionTimeDecoder._isNullOrUndefined$i(year))
- {
- candidate=new Date(sentDate.getFullYear(), month, day);
- if (candidate.getTime() < sentDate.getTime())
- {
- candidate=new Date(sentDate.getFullYear()+1, month, day)
- }
- }
- else
- {
- candidate=new Date((year < 50) ? 2000+year : 1900+year, month, day)
- }
- if (candidate.getMonth() !==month)
- {
- return sentDate
- }
- return candidate
- };
- $h.MeetingSuggestionTimeDecoder._resolveRelativeDate$p=function $h_MeetingSuggestionTimeDecoder$_resolveRelativeDate$p(sentDate, relative)
- {
- var date;
- switch (relative._unit$i$1)
- {
- case 0:
- date=new Date(sentDate.getFullYear(), sentDate.getMonth(), sentDate.getDate());
- date.setDate(date.getDate()+relative._offset$i$1);
- return date;
- case 5:
- return $h.MeetingSuggestionTimeDecoder._findBestDateForWeekDate$p(sentDate, relative._offset$i$1, relative._tag$i$1);
- case 2:
- var days=1;
- switch (relative._modifier$i$1)
- {
- case 1:
- break;
- case 2:
- days=16;
- break;
- default:
- if (!relative._offset$i$1)
- {
- days=sentDate.getDate()
- }
- break
- }
- date=new Date(sentDate.getFullYear(), sentDate.getMonth(), days);
- date.setMonth(date.getMonth()+relative._offset$i$1);
- if (date.getTime() < sentDate.getTime())
- {
- date.setDate(date.getDate()+sentDate.getDate() - 1)
- }
- return date;
- case 1:
- date=new Date(sentDate.getFullYear(), sentDate.getMonth(), sentDate.getDate());
- date.setDate(sentDate.getDate()+(7 * relative._offset$i$1));
- if (relative._modifier$i$1===1 || !relative._modifier$i$1)
- {
- date.setDate(date.getDate()+1 - date.getDay());
- if (date.getTime() < sentDate.getTime())
- {
- return sentDate
- }
- return date
- }
- else if (relative._modifier$i$1===2)
- {
- date.setDate(date.getDate()+5 - date.getDay());
- return date
- }
- break;
- case 4:
- return $h.MeetingSuggestionTimeDecoder._findBestDateForWeekOfMonthDate$p(sentDate, relative);
- case 3:
- if (relative._offset$i$1 > 0)
- {
- return new Date(sentDate.getFullYear()+relative._offset$i$1, 0, 1)
- }
- break;
- default:
- break
- }
- return sentDate
- };
- $h.MeetingSuggestionTimeDecoder._findBestDateForWeekDate$p=function $h_MeetingSuggestionTimeDecoder$_findBestDateForWeekDate$p(sentDate, offset, tag)
- {
- if (offset > -5 && offset < 5)
- {
- var dayOfWeek;
- var days;
- dayOfWeek=((tag+6) % 7)+1;
- days=(7 * offset)+(dayOfWeek - sentDate.getDay());
- sentDate.setDate(sentDate.getDate()+days);
- return sentDate
- }
- else
- {
- var days=(tag - sentDate.getDay()) % 7;
- if (days < 0)
- {
- days+=7
- }
- sentDate.setDate(sentDate.getDate()+days);
- return sentDate
- }
- };
- $h.MeetingSuggestionTimeDecoder._findBestDateForWeekOfMonthDate$p=function $h_MeetingSuggestionTimeDecoder$_findBestDateForWeekOfMonthDate$p(sentDate, relative)
- {
- var date;
- var firstDay;
- var newDate;
- date=sentDate;
- if (relative._tag$i$1 <=0 || relative._tag$i$1 > 12 || relative._offset$i$1 <=0 || relative._offset$i$1 > 5)
- {
- return sentDate
- }
- var monthOffset=(12+relative._tag$i$1 - date.getMonth() - 1) % 12;
- firstDay=new Date(date.getFullYear(), date.getMonth()+monthOffset, 1);
- if (relative._modifier$i$1===1)
- {
- if (relative._offset$i$1===1 && firstDay.getDay() !==6 && firstDay.getDay() !==0)
- {
- return firstDay
- }
- else
- {
- newDate=new Date(firstDay.getFullYear(), firstDay.getMonth(), firstDay.getDate());
- newDate.setDate(newDate.getDate()+((7+(1 - firstDay.getDay())) % 7));
- if (firstDay.getDay() !==6 && firstDay.getDay() !==0 && firstDay.getDay() !==1)
- {
- newDate.setDate(newDate.getDate() - 7)
- }
- newDate.setDate(newDate.getDate()+(7 * (relative._offset$i$1 - 1)));
- if (newDate.getMonth()+1 !==relative._tag$i$1)
- {
- return sentDate
- }
- return newDate
- }
- }
- else
- {
- newDate=new Date(firstDay.getFullYear(), firstDay.getMonth(), $h.MeetingSuggestionTimeDecoder._daysInMonth$p(firstDay.getMonth(), firstDay.getFullYear()));
- var offset=1 - newDate.getDay();
- if (offset > 0)
- {
- offset=offset - 7
- }
- newDate.setDate(newDate.getDate()+offset);
- newDate.setDate(newDate.getDate()+(7 * (1 - relative._offset$i$1)));
- if (newDate.getMonth()+1 !==relative._tag$i$1)
- {
- if (firstDay.getDay() !==6 && firstDay.getDay() !==0)
- {
- return firstDay
- }
- else
- {
- return sentDate
- }
- }
- else
- {
- return newDate
- }
- }
- };
- $h.MeetingSuggestionTimeDecoder._decode$p=function $h_MeetingSuggestionTimeDecoder$_decode$p(inDate, date, time)
- {
- var DateValueMask=32767;
- date.val=null;
- time.val=0;
- if (!inDate)
- {
- return false
- }
- time.val=$h.MeetingSuggestionTimeDecoder._getTimeOfDayInMillisecondsUTC$p(inDate);
- var inDateAtMidnight=inDate.getTime() - time.val;
- var value=(inDateAtMidnight - $h.MeetingSuggestionTimeDecoder._baseDate$p.getTime()) / 86400000;
- if (value < 0)
- {
- return false
- }
- else if (value >=262144)
- {
- return false
- }
- else
- {
- var type=value >> 15;
- value=value & DateValueMask;
- switch (type)
- {
- case 0:
- return $h.MeetingSuggestionTimeDecoder._decodePreciseDate$p(value, date);
- case 1:
- return $h.MeetingSuggestionTimeDecoder._decodeRelativeDate$p(value, date);
- default:
- return false
- }
- }
- };
- $h.MeetingSuggestionTimeDecoder._decodePreciseDate$p=function $h_MeetingSuggestionTimeDecoder$_decodePreciseDate$p(value, date)
- {
- var c_SubTypeMask=7;
- var c_MonthMask=15;
- var c_DayMask=31;
- var c_YearMask=127;
- var year=null;
- var month=0;
- var day=0;
- date.val=null;
- var subType=(value >> 12) & c_SubTypeMask;
- if ((subType & 4)===4)
- {
- year=(value >> 5) & c_YearMask;
- if ((subType & 2)===2)
- {
- if ((subType & 1)===1)
- {
- return false
- }
- month=(value >> 1) & c_MonthMask
- }
- }
- else
- {
- if ((subType & 2)===2)
- {
- month=(value >> 8) & c_MonthMask
- }
- if ((subType & 1)===1)
- {
- day=(value >> 3) & c_DayMask
- }
- }
- date.val=new $h._preciseDate(day, month, year);
- return true
- };
- $h.MeetingSuggestionTimeDecoder._decodeRelativeDate$p=function $h_MeetingSuggestionTimeDecoder$_decodeRelativeDate$p(value, date)
- {
- var TagMask=15;
- var OffsetMask=63;
- var UnitMask=7;
- var ModifierMask=3;
- var tag=value & TagMask;
- value >>=4;
- var offset=$h.MeetingSuggestionTimeDecoder._fromComplement$p(value & OffsetMask, 6);
- value >>=6;
- var unit=value & UnitMask;
- value >>=3;
- var modifier=value & ModifierMask;
- try
- {
- date.val=new $h._relativeDate(modifier, offset, unit, tag);
- return true
- }
- catch($$e_A)
- {
- date.val=null;
- return false
- }
- };
- $h.MeetingSuggestionTimeDecoder._fromComplement$p=function $h_MeetingSuggestionTimeDecoder$_fromComplement$p(value, n)
- {
- var signed=1 << (n - 1);
- var mask=(1 << n) - 1;
- if ((value & signed)===signed)
- {
- return -((value ^ mask)+1)
- }
- else
- {
- return value
- }
- };
- $h.MeetingSuggestionTimeDecoder._daysInMonth$p=function $h_MeetingSuggestionTimeDecoder$_daysInMonth$p(month, year)
- {
- return 32 - new Date(year, month, 32).getDate()
- };
- $h.MeetingSuggestionTimeDecoder._getTimeOfDayInMillisecondsUTC$p=function $h_MeetingSuggestionTimeDecoder$_getTimeOfDayInMillisecondsUTC$p(inputTime)
- {
- var timeOfDay=0;
- timeOfDay+=inputTime.getUTCHours() * 3600;
- timeOfDay+=inputTime.getUTCMinutes() * 60;
- timeOfDay+=inputTime.getUTCSeconds();
- timeOfDay *=1000;
- timeOfDay+=inputTime.getUTCMilliseconds();
- return timeOfDay
- };
- $h._extractedDate=function $h__extractedDate(){};
- $h._preciseDate=function $h__preciseDate(day, month, year)
- {
- $h._preciseDate.initializeBase(this);
- if (day < 0 || day > 31)
- {
- throw Error.argumentOutOfRange('day');
- }
- if (month < 0 || month > 12)
- {
- throw Error.argumentOutOfRange('month');
- }
- this._day$i$1=day;
- this._month$i$1=month;
- if (!$h.MeetingSuggestionTimeDecoder._isNullOrUndefined$i(year))
- {
- if (!month && day)
- {
- throw Error.argument('Invalid arguments');
- }
- if (year < 0 || year > 2099)
- {
- throw Error.argumentOutOfRange('year');
- }
- this._year$i$1=year % 100
- }
- else if (!this._month$i$1 && !this._day$i$1)
- {
- throw Error.argument('Invalid datetime');
- }
- };
- $h._preciseDate.prototype={
- _day$i$1: 0, _month$i$1: 0, _year$i$1: null
- };
- $h._relativeDate=function $h__relativeDate(modifier, offset, unit, tag)
- {
- $h._relativeDate.initializeBase(this);
- if (offset < -32 || offset > 31)
- {
- throw Error.argumentOutOfRange('offset');
- }
- if (tag < 0 || tag > 15)
- {
- throw Error.argumentOutOfRange('tag');
- }
- if (!unit && offset < 0)
- {
- throw Error.argument('unit & offset do not form a valid date');
- }
- this._modifier$i$1=modifier;
- this._offset$i$1=offset;
- this._unit$i$1=unit;
- this._tag$i$1=tag
- };
- $h._relativeDate.prototype={
- _modifier$i$1: 0, _offset$i$1: 0, _unit$i$1: 0, _tag$i$1: 0
- };
- $h.Message=function $h_Message(dataDictionary)
- {
- this.$$d__getConversationId$p$2=Function.createDelegate(this, this._getConversationId$p$2);
- this.$$d__getInternetMessageId$p$2=Function.createDelegate(this, this._getInternetMessageId$p$2);
- this.$$d__getCc$p$2=Function.createDelegate(this, this._getCc$p$2);
- this.$$d__getTo$p$2=Function.createDelegate(this, this._getTo$p$2);
- this.$$d__getFrom$p$2=Function.createDelegate(this, this._getFrom$p$2);
- this.$$d__getSender$p$2=Function.createDelegate(this, this._getSender$p$2);
- this.$$d__getNormalizedSubject$p$2=Function.createDelegate(this, this._getNormalizedSubject$p$2);
- this.$$d__getSubject$p$2=Function.createDelegate(this, this._getSubject$p$2);
- $h.Message.initializeBase(this, [dataDictionary]);
- $h.InitialData._defineReadOnlyProperty$i(this, 'subject', this.$$d__getSubject$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'normalizedSubject', this.$$d__getNormalizedSubject$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'sender', this.$$d__getSender$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'from', this.$$d__getFrom$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'to', this.$$d__getTo$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'cc', this.$$d__getCc$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'internetMessageId', this.$$d__getInternetMessageId$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'conversationId', this.$$d__getConversationId$p$2)
- };
- $h.Message.prototype={
- getEntities: function $h_Message$getEntities()
- {
- return this._data$p$0._getEntities$i$0()
- }, getEntitiesByType: function $h_Message$getEntitiesByType(entityType)
- {
- return this._data$p$0._getEntitiesByType$i$0(entityType)
- }, getFilteredEntitiesByName: function $h_Message$getFilteredEntitiesByName(name)
- {
- return this._data$p$0._getFilteredEntitiesByName$i$0(name)
- }, getRegExMatches: function $h_Message$getRegExMatches()
- {
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, 'getRegExMatches');
- return this._data$p$0._getRegExMatches$i$0()
- }, getRegExMatchesByName: function $h_Message$getRegExMatchesByName(name)
- {
- OSF.DDA.OutlookAppOm._instance$p._throwOnMethodCallForInsufficientPermission$i$0(1, 'getRegExMatchesByName');
- return this._data$p$0._getRegExMatchesByName$i$0(name)
- }, displayReplyForm: function $h_Message$displayReplyForm(htmlBody)
- {
- OSF.DDA.OutlookAppOm._instance$p._displayReplyForm$i$0(htmlBody)
- }, displayReplyAllForm: function $h_Message$displayReplyAllForm(htmlBody)
- {
- OSF.DDA.OutlookAppOm._instance$p._displayReplyAllForm$i$0(htmlBody)
- }, getItemType: function $h_Message$getItemType()
- {
- return Microsoft.Office.WebExtension.MailboxEnums.ItemType.Message
- }, _getSubject$p$2: function $h_Message$_getSubject$p$2()
- {
- return this._data$p$0.get__subject$i$0()
- }, _getNormalizedSubject$p$2: function $h_Message$_getNormalizedSubject$p$2()
- {
- return this._data$p$0.get__normalizedSubject$i$0()
- }, _getSender$p$2: function $h_Message$_getSender$p$2()
- {
- return this._data$p$0.get__sender$i$0()
- }, _getFrom$p$2: function $h_Message$_getFrom$p$2()
- {
- return this._data$p$0.get__from$i$0()
- }, _getTo$p$2: function $h_Message$_getTo$p$2()
- {
- return this._data$p$0.get__to$i$0()
- }, _getCc$p$2: function $h_Message$_getCc$p$2()
- {
- return this._data$p$0.get__cc$i$0()
- }, _getInternetMessageId$p$2: function $h_Message$_getInternetMessageId$p$2()
- {
- return this._data$p$0.get__internetMessageId$i$0()
- }, _getConversationId$p$2: function $h_Message$_getConversationId$p$2()
- {
- return this._data$p$0.get__conversationId$i$0()
- }
- };
- $h.MessageCompose=function $h_MessageCompose(data)
- {
- this.$$d__getConversationId$p$2=Function.createDelegate(this, this._getConversationId$p$2);
- this.$$d__getBcc$p$2=Function.createDelegate(this, this._getBcc$p$2);
- this.$$d__getCc$p$2=Function.createDelegate(this, this._getCc$p$2);
- this.$$d__getTo$p$2=Function.createDelegate(this, this._getTo$p$2);
- $h.MessageCompose.initializeBase(this, [data]);
- $h.InitialData._defineReadOnlyProperty$i(this, 'to', this.$$d__getTo$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'cc', this.$$d__getCc$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'bcc', this.$$d__getBcc$p$2);
- $h.InitialData._defineReadOnlyProperty$i(this, 'conversationId', this.$$d__getConversationId$p$2)
- };
- $h.MessageCompose.prototype={
- _to$p$2: null, _cc$p$2: null, _bcc$p$2: null, getItemType: function $h_MessageCompose$getItemType()
- {
- return Microsoft.Office.WebExtension.MailboxEnums.ItemType.Message
- }, _getTo$p$2: function $h_MessageCompose$_getTo$p$2()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._to$p$2)
- {
- this._to$p$2=new $h.ComposeRecipient(0, 'to')
- }
- return this._to$p$2
- }, _getCc$p$2: function $h_MessageCompose$_getCc$p$2()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._cc$p$2)
- {
- this._cc$p$2=new $h.ComposeRecipient(1, 'cc')
- }
- return this._cc$p$2
- }, _getBcc$p$2: function $h_MessageCompose$_getBcc$p$2()
- {
- this._data$p$0._throwOnRestrictedPermissionLevel$i$0();
- if (!this._bcc$p$2)
- {
- this._bcc$p$2=new $h.ComposeRecipient(2, 'bcc')
- }
- return this._bcc$p$2
- }, _getConversationId$p$2: function $h_MessageCompose$_getConversationId$p$2()
- {
- return this._data$p$0.get__conversationId$i$0()
- }
- };
- $h.OutlookErrorManager=function $h_OutlookErrorManager(){};
- $h.OutlookErrorManager.getErrorArgs=function $h_OutlookErrorManager$getErrorArgs(errorCode)
- {
- if (!$h.OutlookErrorManager._isInitialized$p)
- {
- $h.OutlookErrorManager._initialize$p()
- }
- return OSF.DDA.ErrorCodeManager.getErrorArgs(errorCode)
- };
- $h.OutlookErrorManager._initialize$p=function $h_OutlookErrorManager$_initialize$p()
- {
- $h.OutlookErrorManager._addErrorMessage$p(9000, 'AttachmentSizeExceeded', _u.ExtensibilityStrings.l_AttachmentExceededSize_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9001, 'NumberOfAttachmentsExceeded', _u.ExtensibilityStrings.l_ExceededMaxNumberOfAttachments_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9002, 'InternalFormatError', _u.ExtensibilityStrings.l_InternalFormatError_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9003, 'InvalidAttachmentId', _u.ExtensibilityStrings.l_InvalidAttachmentId_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9004, 'InvalidAttachmentPath', _u.ExtensibilityStrings.l_InvalidAttachmentPath_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9005, 'CannotAddAttachmentBeforeUpgrade', _u.ExtensibilityStrings.l_CannotAddAttachmentBeforeUpgrade_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9006, 'AttachmentDeletedBeforeUploadCompletes', _u.ExtensibilityStrings.l_AttachmentDeletedBeforeUploadCompletes_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9007, 'AttachmentUploadGeneralFailure', _u.ExtensibilityStrings.l_AttachmentUploadGeneralFailure_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9008, 'AttachmentToDeleteDoesNotExist', _u.ExtensibilityStrings.l_DeleteAttachmentDoesNotExist_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9009, 'AttachmentDeleteGeneralFailure', _u.ExtensibilityStrings.l_AttachmentDeleteGeneralFailure_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9010, 'InvalidEndTime', _u.ExtensibilityStrings.l_InvalidEndTime_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9011, 'HtmlSanitizationFailure', _u.ExtensibilityStrings.l_HtmlSanitizationFailure_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9012, 'NumberOfRecipientsExceeded', String.format(_u.ExtensibilityStrings.l_NumberOfRecipientsExceeded_Text, 100));
- $h.OutlookErrorManager._addErrorMessage$p(9013, 'NoValidRecipientsProvided', _u.ExtensibilityStrings.l_NoValidRecipientsProvided_Text);
- $h.OutlookErrorManager._addErrorMessage$p(9014, 'CursorPositionChanged', _u.ExtensibilityStrings.l_CursorPositionChanged_Text);
- $h.OutlookErrorManager._isInitialized$p=true
- };
- $h.OutlookErrorManager._addErrorMessage$p=function $h_OutlookErrorManager$_addErrorMessage$p(errorCode, errorName, errorMessage)
- {
- OSF.DDA.ErrorCodeManager.addErrorMessage(errorCode, {
- name: errorName, message: errorMessage
- })
- };
- $h.OutlookErrorManager.OutlookErrorCodes=function $h_OutlookErrorManager_OutlookErrorCodes(){};
- $h.OutlookErrorManager.OsfDdaErrorCodes=function $h_OutlookErrorManager_OsfDdaErrorCodes(){};
- $h.PhoneNumber=function $h_PhoneNumber(data)
- {
- this.$$d__getPhoneType$p$0=Function.createDelegate(this, this._getPhoneType$p$0);
- this.$$d__getOriginalPhoneString$p$0=Function.createDelegate(this, this._getOriginalPhoneString$p$0);
- this.$$d__getPhoneString$p$0=Function.createDelegate(this, this._getPhoneString$p$0);
- this._data$p$0=data;
- $h.InitialData._defineReadOnlyProperty$i(this, 'phoneString', this.$$d__getPhoneString$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'originalPhoneString', this.$$d__getOriginalPhoneString$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'type', this.$$d__getPhoneType$p$0)
- };
- $h.PhoneNumber.prototype={
- _data$p$0: null, _getPhoneString$p$0: function $h_PhoneNumber$_getPhoneString$p$0()
- {
- return this._data$p$0['PhoneString']
- }, _getOriginalPhoneString$p$0: function $h_PhoneNumber$_getOriginalPhoneString$p$0()
- {
- return this._data$p$0['OriginalPhoneString']
- }, _getPhoneType$p$0: function $h_PhoneNumber$_getPhoneType$p$0()
- {
- return this._data$p$0['Type']
- }
- };
- $h.TaskSuggestion=function $h_TaskSuggestion(data)
- {
- this.$$d__getAssignees$p$0=Function.createDelegate(this, this._getAssignees$p$0);
- this.$$d__getTaskString$p$0=Function.createDelegate(this, this._getTaskString$p$0);
- this._data$p$0=data;
- $h.InitialData._defineReadOnlyProperty$i(this, 'taskString', this.$$d__getTaskString$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'assignees', this.$$d__getAssignees$p$0)
- };
- $h.TaskSuggestion.prototype={
- _data$p$0: null, _assignees$p$0: null, _getTaskString$p$0: function $h_TaskSuggestion$_getTaskString$p$0()
- {
- return this._data$p$0['TaskString']
- }, _getAssignees$p$0: function $h_TaskSuggestion$_getAssignees$p$0()
- {
- if (!this._assignees$p$0)
- {
- var $$t_1=this;
- this._assignees$p$0=$h.Entities._getExtractedObjects$i($h.EmailAddressDetails, this._data$p$0, 'Assignees', function(data)
- {
- return $h.EmailAddressDetails._createFromEmailUserDictionary$i(data)
- })
- }
- return this._assignees$p$0
- }
- };
- $h.UserProfile=function $h_UserProfile(data)
- {
- this.$$d__getTimeZone$p$0=Function.createDelegate(this, this._getTimeZone$p$0);
- this.$$d__getEmailAddress$p$0=Function.createDelegate(this, this._getEmailAddress$p$0);
- this.$$d__getDisplayName$p$0=Function.createDelegate(this, this._getDisplayName$p$0);
- this._data$p$0=data;
- $h.InitialData._defineReadOnlyProperty$i(this, 'displayName', this.$$d__getDisplayName$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'emailAddress', this.$$d__getEmailAddress$p$0);
- $h.InitialData._defineReadOnlyProperty$i(this, 'timeZone', this.$$d__getTimeZone$p$0)
- };
- $h.UserProfile.prototype={
- _data$p$0: null, _getDisplayName$p$0: function $h_UserProfile$_getDisplayName$p$0()
- {
- return this._data$p$0.get__userDisplayName$i$0()
- }, _getEmailAddress$p$0: function $h_UserProfile$_getEmailAddress$p$0()
- {
- return this._data$p$0.get__userEmailAddress$i$0()
- }, _getTimeZone$p$0: function $h_UserProfile$_getTimeZone$p$0()
- {
- return this._data$p$0.get__userTimeZone$i$0()
- }
- };
- $h.RequestState=function(){};
- $h.RequestState.prototype={
- unsent: 0, opened: 1, headersReceived: 2, loading: 3, done: 4
- };
- $h.RequestState.registerEnum('$h.RequestState', false);
- $h.CommonParameters=function $h_CommonParameters(options, callback, asyncContext)
- {
- this._options$p$0=options;
- this._callback$p$0=callback;
- this._asyncContext$p$0=asyncContext
- };
- $h.CommonParameters.parse=function $h_CommonParameters$parse(args, isCallbackRequired, tryLegacy)
- {
- var legacyParameters;
- var $$t_8,
- $$t_9;
- if (tryLegacy && (($$t_9=$h.CommonParameters._tryParseLegacy$p(args, ($$t_8={val: legacyParameters}))), legacyParameters=$$t_8.val, $$t_9))
- {
- return legacyParameters
- }
- var argsLength=args.length;
- var options=null;
- var callback=null;
- var asyncContext=null;
- if (argsLength===1)
- {
- if (Function.isInstanceOfType(args[0]))
- {
- callback=args[0]
- }
- else if (Object.isInstanceOfType(args[0]))
- {
- options=args[0]
- }
- else
- {
- throw Error.argumentType();
- }
- }
- else if (argsLength===2)
- {
- if (!(Object.isInstanceOfType(args[0])))
- {
- throw Error.argument('options');
- }
- if (!(Function.isInstanceOfType(args[1])))
- {
- throw Error.argument('callback');
- }
- options=args[0];
- callback=args[1]
- }
- else if (argsLength)
- {
- throw Error.parameterCount(_u.ExtensibilityStrings.l_ParametersNotAsExpected_Text);
- }
- if (isCallbackRequired && !callback)
- {
- throw Error.argumentNull('callback');
- }
- if (options && !$h.ScriptHelpers.isNullOrUndefined(options['asyncContext']))
- {
- asyncContext=options['asyncContext']
- }
- return new $h.CommonParameters(options, callback, asyncContext)
- };
- $h.CommonParameters._tryParseLegacy$p=function $h_CommonParameters$_tryParseLegacy$p(args, commonParameters)
- {
- commonParameters.val=null;
- var argsLength=args.length;
- var callback=null;
- var userContext=null;
- if (!argsLength || argsLength > 2)
- {
- return false
- }
- if (!(Function.isInstanceOfType(args[0])))
- {
- return false
- }
- callback=args[0];
- if (argsLength > 1)
- {
- userContext=args[1]
- }
- commonParameters.val=new $h.CommonParameters(null, callback, userContext);
- return true
- };
- $h.CommonParameters.prototype={
- _options$p$0: null, _callback$p$0: null, _asyncContext$p$0: null, get_options: function $h_CommonParameters$get_options()
- {
- return this._options$p$0
- }, get_callback: function $h_CommonParameters$get_callback()
- {
- return this._callback$p$0
- }, get_asyncContext: function $h_CommonParameters$get_asyncContext()
- {
- return this._asyncContext$p$0
- }
- };
- $h.EwsRequest=function $h_EwsRequest(userContext)
- {
- this.readyState=1;
- $h.EwsRequest.initializeBase(this, [userContext])
- };
- $h.EwsRequest.prototype={
- status: 0, statusText: null, onreadystatechange: null, responseText: null, get__statusCode$i$1: function $h_EwsRequest$get__statusCode$i$1()
- {
- return this.status
- }, set__statusCode$i$1: function $h_EwsRequest$set__statusCode$i$1(value)
- {
- this.status=value;
- return value
- }, get__statusDescription$i$1: function $h_EwsRequest$get__statusDescription$i$1()
- {
- return this.statusText
- }, set__statusDescription$i$1: function $h_EwsRequest$set__statusDescription$i$1(value)
- {
- this.statusText=value;
- return value
- }, get__requestState$i$1: function $h_EwsRequest$get__requestState$i$1()
- {
- return this.readyState
- }, set__requestState$i$1: function $h_EwsRequest$set__requestState$i$1(value)
- {
- this.readyState=value;
- return value
- }, get__response$i$1: function $h_EwsRequest$get__response$i$1()
- {
- return this.responseText
- }, set__response$i$1: function $h_EwsRequest$set__response$i$1(value)
- {
- this.responseText=value;
- return value
- }, send: function $h_EwsRequest$send(data)
- {
- this._checkSendConditions$i$1();
- if ($h.ScriptHelpers.isNullOrUndefined(data))
- {
- this._throwInvalidStateException$i$1()
- }
- this._sendRequest$i$0(5, 'EwsRequest', {body: data})
- }, _callOnReadyStateChangeCallback$i$1: function $h_EwsRequest$_callOnReadyStateChangeCallback$i$1()
- {
- if (!$h.ScriptHelpers.isNullOrUndefined(this.onreadystatechange))
- {
- this.onreadystatechange()
- }
- }, _parseExtraResponseData$i$1: function $h_EwsRequest$_parseExtraResponseData$i$1(response){}
- };
- $h.InitialData=function $h_InitialData(data)
- {
- this._data$p$0=data;
- this._permissionLevel$p$0=this._calculatePermissionLevel$p$0()
- };
- $h.InitialData._defineReadOnlyProperty$i=function $h_InitialData$_defineReadOnlyProperty$i(o, methodName, getter)
- {
- var propertyDescriptor={
- get: getter, configurable: false
- };
- Object.defineProperty(o, methodName, propertyDescriptor)
- };
- $h.InitialData.prototype={
- _toRecipients$p$0: null, _ccRecipients$p$0: null, _attachments$p$0: null, _resources$p$0: null, _entities$p$0: null, _data$p$0: null, _permissionLevel$p$0: 0, get__itemId$i$0: function $h_InitialData$get__itemId$i$0()
- {
- return this._data$p$0['id']
- }, get__itemClass$i$0: function $h_InitialData$get__itemClass$i$0()
- {
- return this._data$p$0['itemClass']
- }, get__dateTimeCreated$i$0: function $h_InitialData$get__dateTimeCreated$i$0()
- {
- return new Date(this._data$p$0['dateTimeCreated'])
- }, get__dateTimeModified$i$0: function $h_InitialData$get__dateTimeModified$i$0()
- {
- return new Date(this._data$p$0['dateTimeModified'])
- }, get__dateTimeSent$i$0: function $h_InitialData$get__dateTimeSent$i$0()
- {
- return new Date(this._data$p$0['dateTimeSent'])
- }, get__subject$i$0: function $h_InitialData$get__subject$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- return this._data$p$0['subject']
- }, get__normalizedSubject$i$0: function $h_InitialData$get__normalizedSubject$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- return this._data$p$0['normalizedSubject']
- }, get__internetMessageId$i$0: function $h_InitialData$get__internetMessageId$i$0()
- {
- return this._data$p$0['internetMessageId']
- }, get__conversationId$i$0: function $h_InitialData$get__conversationId$i$0()
- {
- return this._data$p$0['conversationId']
- }, get__sender$i$0: function $h_InitialData$get__sender$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- var sender=this._data$p$0['sender'];
- return ($h.ScriptHelpers.isNullOrUndefined(sender)) ? null : new $h.EmailAddressDetails(sender)
- }, get__from$i$0: function $h_InitialData$get__from$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- var from=this._data$p$0['from'];
- return ($h.ScriptHelpers.isNullOrUndefined(from)) ? null : new $h.EmailAddressDetails(from)
- }, get__to$i$0: function $h_InitialData$get__to$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- if (null===this._toRecipients$p$0)
- {
- this._toRecipients$p$0=this._createEmailAddressDetails$p$0('to')
- }
- return this._toRecipients$p$0
- }, get__cc$i$0: function $h_InitialData$get__cc$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- if (null===this._ccRecipients$p$0)
- {
- this._ccRecipients$p$0=this._createEmailAddressDetails$p$0('cc')
- }
- return this._ccRecipients$p$0
- }, get__attachments$i$0: function $h_InitialData$get__attachments$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- if (null===this._attachments$p$0)
- {
- this._attachments$p$0=this._createAttachmentDetails$p$0()
- }
- return this._attachments$p$0
- }, get__ewsUrl$i$0: function $h_InitialData$get__ewsUrl$i$0()
- {
- return this._data$p$0['ewsUrl']
- }, get__start$i$0: function $h_InitialData$get__start$i$0()
- {
- return new Date(this._data$p$0['start'])
- }, get__end$i$0: function $h_InitialData$get__end$i$0()
- {
- return new Date(this._data$p$0['end'])
- }, get__location$i$0: function $h_InitialData$get__location$i$0()
- {
- return this._data$p$0['location']
- }, get__resources$i$0: function $h_InitialData$get__resources$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- if (null===this._resources$p$0)
- {
- this._resources$p$0=this._createEmailAddressDetails$p$0('resources')
- }
- return this._resources$p$0
- }, get__organizer$i$0: function $h_InitialData$get__organizer$i$0()
- {
- this._throwOnRestrictedPermissionLevel$i$0();
- var organizer=this._data$p$0['organizer'];
- return ($h.ScriptHelpers.isNullOrUndefined(organizer)) ? null : new $h.EmailAddressDetails(organizer)
- }, get__userDisplayName$i$0: function $h_InitialData$get__userDisplayName$i$0()
- {
- return this._data$p$0['userDisplayName']
- }, get__userEmailAddress$i$0: function $h_InitialData$get__userEmailAddress$i$0()
- {
- return this._data$p$0['userEmailAddress']
- }, get__userTimeZone$i$0: function $h_InitialData$get__userTimeZone$i$0()
- {
- return this._data$p$0['userTimeZone']
- }, get__timeZoneOffsets$i$0: function $h_InitialData$get__timeZoneOffsets$i$0()
- {
- return this._data$p$0['timeZoneOffsets']
- }, get__hostVersion$i$0: function $h_InitialData$get__hostVersion$i$0()
- {
- return this._data$p$0['hostVersion']
- }, get__owaView$i$0: function $h_InitialData$get__owaView$i$0()
- {
- return this._data$p$0['owaView']
- }, get__overrideWindowOpen$i$0: function $h_InitialData$get__overrideWindowOpen$i$0()
- {
- return this._data$p$0['overrideWindowOpen']
- }, _getEntities$i$0: function $h_InitialData$_getEntities$i$0()
- {
- if (!this._entities$p$0)
- {
- this._entities$p$0=new $h.Entities(this._data$p$0['entities'], this._data$p$0['filteredEntities'], this.get__dateTimeSent$i$0(), this._permissionLevel$p$0)
- }
- return this._entities$p$0
- }, _getEntitiesByType$i$0: function $h_InitialData$_getEntitiesByType$i$0(entityType)
- {
- var entites=this._getEntities$i$0();
- return entites._getByType$i$0(entityType)
- }, _getFilteredEntitiesByName$i$0: function $h_InitialData$_getFilteredEntitiesByName$i$0(name)
- {
- var entities=this._getEntities$i$0();
- return entities._getFilteredEntitiesByName$i$0(name)
- }, _getRegExMatches$i$0: function $h_InitialData$_getRegExMatches$i$0()
- {
- if (!this._data$p$0['regExMatches'])
- {
- return null
- }
- return this._data$p$0['regExMatches']
- }, _getRegExMatchesByName$i$0: function $h_InitialData$_getRegExMatchesByName$i$0(regexName)
- {
- var regexMatches=this._getRegExMatches$i$0();
- if (!regexMatches || !regexMatches[regexName])
- {
- return null
- }
- return regexMatches[regexName]
- }, _throwOnRestrictedPermissionLevel$i$0: function $h_InitialData$_throwOnRestrictedPermissionLevel$i$0()
- {
- OSF.DDA.OutlookAppOm._throwOnPropertyAccessForRestrictedPermission$i(this._permissionLevel$p$0)
- }, _createEmailAddressDetails$p$0: function $h_InitialData$_createEmailAddressDetails$p$0(key)
- {
- var to=this._data$p$0[key];
- if ($h.ScriptHelpers.isNullOrUndefined(to))
- {
- return []
- }
- var recipients=[];
- for (var i=0; i < to.length; i++)
- {
- if (!$h.ScriptHelpers.isNullOrUndefined(to[i]))
- {
- recipients[i]=new $h.EmailAddressDetails(to[i])
- }
- }
- return recipients
- }, _createAttachmentDetails$p$0: function $h_InitialData$_createAttachmentDetails$p$0()
- {
- var attachments=this._data$p$0['attachments'];
- if ($h.ScriptHelpers.isNullOrUndefined(attachments))
- {
- return []
- }
- var attachmentDetails=[];
- for (var i=0; i < attachments.length; i++)
- {
- if (!$h.ScriptHelpers.isNullOrUndefined(attachments[i]))
- {
- attachmentDetails[i]=new $h.AttachmentDetails(attachments[i])
- }
- }
- return attachmentDetails
- }, _calculatePermissionLevel$p$0: function $h_InitialData$_calculatePermissionLevel$p$0()
- {
- var HostReadItem=1;
- var HostReadWriteMailbox=2;
- var HostReadWriteItem=3;
- var permissionLevelFromHost=this._data$p$0['permissionLevel'];
- if ($h.ScriptHelpers.isUndefined(this._permissionLevel$p$0))
- {
- return 0
- }
- switch (permissionLevelFromHost)
- {
- case HostReadItem:
- return 1;
- case HostReadWriteItem:
- return 2;
- case HostReadWriteMailbox:
- return 3;
- default:
- return 0
- }
- }
- };
- $h._loadDictionaryRequest=function $h__loadDictionaryRequest(createResultObject, dictionaryName, callback, userContext)
- {
- $h._loadDictionaryRequest.initializeBase(this, [userContext]);
- this._createResultObject$p$1=createResultObject;
- this._dictionaryName$p$1=dictionaryName;
- this._callback$p$1=callback
- };
- $h._loadDictionaryRequest.prototype={
- _dictionaryName$p$1: null, _createResultObject$p$1: null, _callback$p$1: null, handleResponse: function $h__loadDictionaryRequest$handleResponse(response)
- {
- if (response['wasSuccessful'])
- {
- var value=response[this._dictionaryName$p$1];
- var responseData=JSON.parse(value);
- this.createAsyncResult(this._createResultObject$p$1(responseData), 0, null)
- }
- else
- {
- this.createAsyncResult(null, 1, response['errorMessage'])
- }
- this._callback$p$1(this._asyncResult$p$0)
- }
- };
- $h.ProxyRequestBase=function $h_ProxyRequestBase(userContext)
- {
- $h.ProxyRequestBase.initializeBase(this, [userContext])
- };
- $h.ProxyRequestBase.prototype={
- handleResponse: function $h_ProxyRequestBase$handleResponse(response)
- {
- if (!(response['wasProxySuccessful']))
- {
- this.set__statusCode$i$1(500);
- this.set__statusDescription$i$1('Error');
- var errorMessage=response['errorMessage'];
- this.set__response$i$1(errorMessage);
- this.createAsyncResult(null, 1, errorMessage)
- }
- else
- {
- this.set__statusCode$i$1(response['statusCode']);
- this.set__statusDescription$i$1(response['statusDescription']);
- this.set__response$i$1(response['body']);
- this.createAsyncResult(this.get__response$i$1(), 0, null)
- }
- this._parseExtraResponseData$i$1(response);
- this._cycleReadyStateFromHeadersReceivedToLoadingToDone$i$1()
- }, _throwInvalidStateException$i$1: function $h_ProxyRequestBase$_throwInvalidStateException$i$1()
- {
- throw Error.create('DOMException', {
- code: 11, message: 'INVALID_STATE_ERR'
- });
- }, _cycleReadyStateFromHeadersReceivedToLoadingToDone$i$1: function $h_ProxyRequestBase$_cycleReadyStateFromHeadersReceivedToLoadingToDone$i$1()
- {
- var $$t_0=this;
- this._changeReadyState$i$1(2, function()
- {
- $$t_0._changeReadyState$i$1(3, function()
- {
- $$t_0._changeReadyState$i$1(4, null)
- })
- })
- }, _changeReadyState$i$1: function $h_ProxyRequestBase$_changeReadyState$i$1(state, nextStep)
- {
- this.set__requestState$i$1(state);
- var $$t_2=this;
- window.setTimeout(function()
- {
- try
- {
- $$t_2._callOnReadyStateChangeCallback$i$1()
- }
- finally
- {
- if (!$h.ScriptHelpers.isNullOrUndefined(nextStep))
- {
- nextStep()
- }
- }
- }, 0)
- }, _checkSendConditions$i$1: function $h_ProxyRequestBase$_checkSendConditions$i$1()
- {
- if (this.get__requestState$i$1() !==1)
- {
- this._throwInvalidStateException$i$1()
- }
- if (this._isSent$p$0)
- {
- this._throwInvalidStateException$i$1()
- }
- }
- };
- $h.RequestBase=function $h_RequestBase(userContext)
- {
- this._userContext$p$0=userContext
- };
- $h.RequestBase.prototype={
- _isSent$p$0: false, _asyncResult$p$0: null, _userContext$p$0: null, _sendRequest$i$0: function $h_RequestBase$_sendRequest$i$0(dispid, methodName, dataToSend)
- {
- this._isSent$p$0=true;
- var $$t_5=this;
- OSF.DDA.OutlookAppOm._instance$p._invokeHostMethod$i$0(dispid, methodName, dataToSend, function(resultCode, response)
- {
- if (resultCode)
- {
- $$t_5.createAsyncResult(null, 1, String.format(_u.ExtensibilityStrings.l_InternalProtocolError_Text, resultCode))
- }
- else
- {
- $$t_5.handleResponse(response)
- }
- })
- }, createAsyncResult: function $h_RequestBase$createAsyncResult(value, errorCode, errorDescription)
- {
- this._asyncResult$p$0=OSF.DDA.OutlookAppOm._instance$p.createAsyncResult(value, errorCode, errorDescription, this._userContext$p$0)
- }
- };
- $h._saveDictionaryRequest=function $h__saveDictionaryRequest(callback, userContext)
- {
- $h._saveDictionaryRequest.initializeBase(this, [userContext]);
- if (!$h.ScriptHelpers.isNullOrUndefined(callback))
- {
- this._callback$p$1=callback
- }
- };
- $h._saveDictionaryRequest.prototype={
- _callback$p$1: null, handleResponse: function $h__saveDictionaryRequest$handleResponse(response)
- {
- if (response['wasSuccessful'])
- {
- this.createAsyncResult(null, 0, null)
- }
- else
- {
- this.createAsyncResult(null, 1, response['errorMessage'])
- }
- if (!$h.ScriptHelpers.isNullOrUndefined(this._callback$p$1))
- {
- this._callback$p$1(this._asyncResult$p$0)
- }
- }
- };
- $h.ScriptHelpers=function $h_ScriptHelpers(){};
- $h.ScriptHelpers.isNull=function $h_ScriptHelpers$isNull(value)
- {
- return null===value
- };
- $h.ScriptHelpers.isNullOrUndefined=function $h_ScriptHelpers$isNullOrUndefined(value)
- {
- return $h.ScriptHelpers.isNull(value) || $h.ScriptHelpers.isUndefined(value)
- };
- $h.ScriptHelpers.isUndefined=function $h_ScriptHelpers$isUndefined(value)
- {
- return value===undefined
- };
- $h.ScriptHelpers.dictionaryContainsKey=function $h_ScriptHelpers$dictionaryContainsKey(obj, keyName)
- {
- return (Object.isInstanceOfType(obj)) ? keyName in obj : false
- };
- $h.ScriptHelpers.isNonEmptyString=function $h_ScriptHelpers$isNonEmptyString(value)
- {
- if (!value)
- {
- return false
- }
- return String.isInstanceOfType(value)
- };
- OSF.DDA.OutlookAppOm.registerClass('OSF.DDA.OutlookAppOm');
- OSF.DDA.Settings.registerClass('OSF.DDA.Settings');
- $h.ItemBase.registerClass('$h.ItemBase');
- $h.Item.registerClass('$h.Item', $h.ItemBase);
- $h.Appointment.registerClass('$h.Appointment', $h.Item);
- $h.ComposeItem.registerClass('$h.ComposeItem', $h.ItemBase);
- $h.AppointmentCompose.registerClass('$h.AppointmentCompose', $h.ComposeItem);
- $h.AttachmentDetails.registerClass('$h.AttachmentDetails');
- $h.ComposeBody.registerClass('$h.ComposeBody');
- $h.ComposeRecipient.registerClass('$h.ComposeRecipient');
- $h.ComposeLocation.registerClass('$h.ComposeLocation');
- $h.ComposeSubject.registerClass('$h.ComposeSubject');
- $h.ComposeTime.registerClass('$h.ComposeTime');
- $h.Contact.registerClass('$h.Contact');
- $h.CustomProperties.registerClass('$h.CustomProperties');
- $h.Diagnostics.registerClass('$h.Diagnostics');
- $h.EmailAddressDetails.registerClass('$h.EmailAddressDetails');
- $h.Entities.registerClass('$h.Entities');
- Office.cast.item.registerClass('Office.cast.item');
- $h.Message.registerClass('$h.Message', $h.Item);
- $h.MeetingRequest.registerClass('$h.MeetingRequest', $h.Message);
- $h.MeetingSuggestion.registerClass('$h.MeetingSuggestion');
- $h.MeetingSuggestionTimeDecoder.registerClass('$h.MeetingSuggestionTimeDecoder');
- $h._extractedDate.registerClass('$h._extractedDate');
- $h._preciseDate.registerClass('$h._preciseDate', $h._extractedDate);
- $h._relativeDate.registerClass('$h._relativeDate', $h._extractedDate);
- $h.MessageCompose.registerClass('$h.MessageCompose', $h.ComposeItem);
- $h.OutlookErrorManager.registerClass('$h.OutlookErrorManager');
- $h.OutlookErrorManager.OutlookErrorCodes.registerClass('$h.OutlookErrorManager.OutlookErrorCodes');
- $h.OutlookErrorManager.OsfDdaErrorCodes.registerClass('$h.OutlookErrorManager.OsfDdaErrorCodes');
- $h.PhoneNumber.registerClass('$h.PhoneNumber');
- $h.TaskSuggestion.registerClass('$h.TaskSuggestion');
- $h.UserProfile.registerClass('$h.UserProfile');
- $h.CommonParameters.registerClass('$h.CommonParameters');
- $h.RequestBase.registerClass('$h.RequestBase');
- $h.ProxyRequestBase.registerClass('$h.ProxyRequestBase', $h.RequestBase);
- $h.EwsRequest.registerClass('$h.EwsRequest', $h.ProxyRequestBase);
- $h.InitialData.registerClass('$h.InitialData');
- $h._loadDictionaryRequest.registerClass('$h._loadDictionaryRequest', $h.RequestBase);
- $h._saveDictionaryRequest.registerClass('$h._saveDictionaryRequest', $h.RequestBase);
- $h.ScriptHelpers.registerClass('$h.ScriptHelpers');
- OSF.DDA.OutlookAppOm.asyncMethodTimeoutKeyName='__timeout__';
- OSF.DDA.OutlookAppOm._maxRecipients$p=100;
- OSF.DDA.OutlookAppOm._maxSubjectLength$p=255;
- OSF.DDA.OutlookAppOm._maxBodyLength$p=32768;
- OSF.DDA.OutlookAppOm._maxLocationLength$p=255;
- OSF.DDA.OutlookAppOm._maxEwsRequestSize$p=1000000;
- OSF.DDA.OutlookAppOm._instance$p=null;
- $h.AttachmentDetails._attachmentTypeMap$p=[Microsoft.Office.WebExtension.MailboxEnums.AttachmentType.File, Microsoft.Office.WebExtension.MailboxEnums.AttachmentType.Item];
- $h.ComposeBody.coercionTypeParameterName='coercionType';
- $h.ComposeItem.maxAttachmentNameLength=255;
- $h.ComposeItem.maxUriLength=2048;
- $h.ComposeItem.maxItemIdLength=200;
- $h.ComposeItem.maxRemoveIdLength=200;
- $h.ComposeRecipient.displayNameLengthLimit=255;
- $h.ComposeRecipient.maxSmtpLength=571;
- $h.ComposeRecipient.recipientsLimit=100;
- $h.ComposeRecipient.addressParameterName='address';
- $h.ComposeRecipient.nameParameterName='name';
- $h.ComposeLocation.locationKey='location';
- $h.ComposeLocation.maximumLocationLength=255;
- $h.ComposeSubject.maximumSubjectLength=255;
- $h.ComposeTime.timeTypeName='TimeProperty';
- $h.ComposeTime.timeDataName='time';
- $h.Diagnostics.outlookAppName='Outlook';
- $h.Diagnostics.outlookWebAppName='OutlookWebApp';
- $h.EmailAddressDetails._emptyString$p='';
- $h.EmailAddressDetails._responseTypeMap$p=[Microsoft.Office.WebExtension.MailboxEnums.ResponseType.None, Microsoft.Office.WebExtension.MailboxEnums.ResponseType.Organizer, Microsoft.Office.WebExtension.MailboxEnums.ResponseType.Tentative, Microsoft.Office.WebExtension.MailboxEnums.ResponseType.Accepted, Microsoft.Office.WebExtension.MailboxEnums.ResponseType.Declined];
- $h.EmailAddressDetails._recipientTypeMap$p=[Microsoft.Office.WebExtension.MailboxEnums.RecipientType.Other, Microsoft.Office.WebExtension.MailboxEnums.RecipientType.DistributionList, Microsoft.Office.WebExtension.MailboxEnums.RecipientType.User, Microsoft.Office.WebExtension.MailboxEnums.RecipientType.ExternalUser];
- $h.Entities._allEntityKeys$p=['Addresses', 'EmailAddresses', 'Urls', 'PhoneNumbers', 'TaskSuggestions', 'MeetingSuggestions', 'Contacts'];
- $h.MeetingSuggestionTimeDecoder._baseDate$p=new Date('0001-01-01T00:00:00Z');
- $h.OutlookErrorManager.errorNameKey='name';
- $h.OutlookErrorManager.errorMessageKey='message';
- $h.OutlookErrorManager._isInitialized$p=false;
- $h.OutlookErrorManager.OutlookErrorCodes.attachmentSizeExceeded=9000;
- $h.OutlookErrorManager.OutlookErrorCodes.numberOfAttachmentsExceeded=9001;
- $h.OutlookErrorManager.OutlookErrorCodes.internalFormatError=9002;
- $h.OutlookErrorManager.OutlookErrorCodes.invalidAttachmentId=9003;
- $h.OutlookErrorManager.OutlookErrorCodes.invalidAttachmentPath=9004;
- $h.OutlookErrorManager.OutlookErrorCodes.cannotAddAttachmentBeforeUpgrade=9005;
- $h.OutlookErrorManager.OutlookErrorCodes.attachmentDeletedBeforeUploadCompletes=9006;
- $h.OutlookErrorManager.OutlookErrorCodes.attachmentUploadGeneralFailure=9007;
- $h.OutlookErrorManager.OutlookErrorCodes.attachmentToDeleteDoesNotExist=9008;
- $h.OutlookErrorManager.OutlookErrorCodes.attachmentDeleteGeneralFailure=9009;
- $h.OutlookErrorManager.OutlookErrorCodes.invalidEndTime=9010;
- $h.OutlookErrorManager.OutlookErrorCodes.htmlSanitizationFailure=9011;
- $h.OutlookErrorManager.OutlookErrorCodes.numberOfRecipientsExceeded=9012;
- $h.OutlookErrorManager.OutlookErrorCodes.noValidRecipientsProvided=9013;
- $h.OutlookErrorManager.OutlookErrorCodes.cursorPositionChanged=9014;
- $h.OutlookErrorManager.OsfDdaErrorCodes.ooeCoercionTypeNotSupported=1000;
- $h.CommonParameters.asyncContextKeyName='asyncContext';
- $h.ScriptHelpers.emptyString='';
- OSF.ClientMode={
- ReadWrite: 0, ReadOnly: 1
- };
- OSF.DDA.RichInitializationReason={
- 1: Microsoft.Office.WebExtension.InitializationReason.Inserted, 2: Microsoft.Office.WebExtension.InitializationReason.DocumentOpened
- };
- Microsoft.Office.WebExtension.FileType={
- Text: "text", Compressed: "compressed"
- };
- OSF.DDA.RichClientSettingsManager={
- read: function OSF_DDA_RichClientSettingsManager$Read(onCalling, onReceiving)
- {
- var keys=[];
- var values=[];
- if (onCalling)
- {
- onCalling()
- }
- window.external.GetContext().GetSettings().Read(keys, values);
- if (onReceiving)
- {
- onReceiving()
- }
- var serializedSettings={};
- for (var index=0; index < keys.length; index++)
- {
- serializedSettings[keys[index]]=values[index]
- }
- return serializedSettings
- }, write: function OSF_DDA_RichClientSettingsManager$Write(serializedSettings, overwriteIfStale, onCalling, onReceiving)
- {
- var keys=[];
- var values=[];
- for (var key in serializedSettings)
- {
- keys.push(key);
- values.push(serializedSettings[key])
- }
- if (onCalling)
- {
- onCalling()
- }
- window.external.GetContext().GetSettings().Write(keys, values);
- if (onReceiving)
- {
- onReceiving()
- }
- }
- };
- OSF.DDA.DispIdHost.getRichClientDelegateMethods=function(actionId)
- {
- var delegateMethods={};
- delegateMethods[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=OSF.DDA.SafeArray.Delegate.executeAsync;
- delegateMethods[OSF.DDA.DispIdHost.Delegates.RegisterEventAsync]=OSF.DDA.SafeArray.Delegate.registerEventAsync;
- delegateMethods[OSF.DDA.DispIdHost.Delegates.UnregisterEventAsync]=OSF.DDA.SafeArray.Delegate.unregisterEventAsync;
- function getSettingsExecuteMethod(hostDelegateMethod)
- {
- return function(args)
- {
- var status,
- response;
- try
- {
- response=hostDelegateMethod(args.hostCallArgs, args.onCalling, args.onReceiving);
- status=OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess
- }
- catch(ex)
- {
- status=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;
- response={
- name: Strings.OfficeOM.L_InternalError, message: ex
- }
- }
- if (args.onComplete)
- {
- args.onComplete(status, response)
- }
- }
- }
- function readSerializedSettings(hostCallArgs, onCalling, onReceiving)
- {
- return OSF.DDA.RichClientSettingsManager.read(onCalling, onReceiving)
- }
- function writeSerializedSettings(hostCallArgs, onCalling, onReceiving)
- {
- return OSF.DDA.RichClientSettingsManager.write(hostCallArgs[OSF.DDA.SettingsManager.SerializedSettings], hostCallArgs[Microsoft.Office.WebExtension.Parameters.OverwriteIfStale], onCalling, onReceiving)
- }
- switch (actionId)
- {
- case OSF.DDA.AsyncMethodNames.RefreshAsync.id:
- delegateMethods[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=getSettingsExecuteMethod(readSerializedSettings);
- break;
- case OSF.DDA.AsyncMethodNames.SaveAsync.id:
- delegateMethods[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=getSettingsExecuteMethod(writeSerializedSettings);
- break;
- default:
- break
- }
- return delegateMethods
- };
- 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.CustomXmlParts=function OSF_DDA_CustomXmlParts()
- {
- this._eventDispatches=[];
- var am=OSF.DDA.AsyncMethodNames;
- OSF.DDA.DispIdHost.addAsyncMethods(this, [am.AddDataPartAsync, am.GetDataPartByIdAsync, am.GetDataPartsByNameSpaceAsync])
- };
- OSF.DDA.CustomXmlPart=function OSF_DDA_CustomXmlPart(customXmlParts, id, builtIn)
- {
- OSF.OUtil.defineEnumerableProperties(this, {
- builtIn: {value: builtIn}, id: {value: id}, namespaceManager: {value: new OSF.DDA.CustomXmlPrefixMappings(id)}
- });
- var am=OSF.DDA.AsyncMethodNames;
- OSF.DDA.DispIdHost.addAsyncMethods(this, [am.DeleteDataPartAsync, am.GetPartNodesAsync, am.GetPartXmlAsync]);
- var customXmlPartEventDispatches=customXmlParts._eventDispatches;
- var dispatch=customXmlPartEventDispatches[id];
- if (!dispatch)
- {
- var et=Microsoft.Office.WebExtension.EventType;
- dispatch=new OSF.EventDispatch([et.DataNodeDeleted, et.DataNodeInserted, et.DataNodeReplaced]);
- customXmlPartEventDispatches[id]=dispatch
- }
- OSF.DDA.DispIdHost.addEventSupport(this, dispatch)
- };
- OSF.DDA.CustomXmlPrefixMappings=function OSF_DDA_CustomXmlPrefixMappings(partId)
- {
- var am=OSF.DDA.AsyncMethodNames;
- OSF.DDA.DispIdHost.addAsyncMethods(this, [am.AddDataPartNamespaceAsync, am.GetDataPartNamespaceAsync, am.GetDataPartPrefixAsync], partId)
- };
- OSF.DDA.CustomXmlNode=function OSF_DDA_CustomXmlNode(handle, nodeType, ns, baseName)
- {
- OSF.OUtil.defineEnumerableProperties(this, {
- baseName: {value: baseName}, namespaceUri: {value: ns}, nodeType: {value: nodeType}
- });
- var am=OSF.DDA.AsyncMethodNames;
- OSF.DDA.DispIdHost.addAsyncMethods(this, [am.GetRelativeNodesAsync, am.GetNodeValueAsync, am.GetNodeXmlAsync, am.SetNodeValueAsync, am.SetNodeXmlAsync], handle)
- };
- OSF.DDA.NodeInsertedEventArgs=function OSF_DDA_NodeInsertedEventArgs(newNode, inUndoRedo)
- {
- OSF.OUtil.defineEnumerableProperties(this, {
- type: {value: Microsoft.Office.WebExtension.EventType.DataNodeInserted}, newNode: {value: newNode}, inUndoRedo: {value: inUndoRedo}
- })
- };
- OSF.DDA.NodeReplacedEventArgs=function OSF_DDA_NodeReplacedEventArgs(oldNode, newNode, inUndoRedo)
- {
- OSF.OUtil.defineEnumerableProperties(this, {
- type: {value: Microsoft.Office.WebExtension.EventType.DataNodeReplaced}, oldNode: {value: oldNode}, newNode: {value: newNode}, inUndoRedo: {value: inUndoRedo}
- })
- };
- OSF.DDA.NodeDeletedEventArgs=function OSF_DDA_NodeDeletedEventArgs(oldNode, oldNextSibling, inUndoRedo)
- {
- OSF.OUtil.defineEnumerableProperties(this, {
- type: {value: Microsoft.Office.WebExtension.EventType.DataNodeDeleted}, oldNode: {value: oldNode}, oldNextSibling: {value: oldNextSibling}, inUndoRedo: {value: inUndoRedo}
- })
- }
|