o2.js 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727
  1. /** ***** BEGIN LICENSE BLOCK *****
  2. * |------------------------------------------------------------------------------|
  3. * | O2OA 活力办公 创意无限 o2.js |
  4. * |------------------------------------------------------------------------------|
  5. * | Distributed under the AGPL license: |
  6. * |------------------------------------------------------------------------------|
  7. * | Copyright © 2018, o2oa.net, o2server.io O2 Team |
  8. * | All rights reserved. |
  9. * |------------------------------------------------------------------------------|
  10. *
  11. * This file is part of O2OA.
  12. *
  13. * O2OA is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License as published by
  15. * the Free Software Foundation, either version 3 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * O2OA is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with Foobar. If not, see <https://www.gnu.org/licenses/>.
  25. *
  26. * ***** END LICENSE BLOCK ******/
  27. /*polyfill-Promise*/
  28. if (!window.Promise){
  29. (function(self, undefined) {function Call(t,l){var n=arguments.length>2?arguments[2]:[];if(!1===IsCallable(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(l,n)}function CreateMethodProperty(e,r,t){var a={value:t,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,r,a)}function Get(n,t){return n[t]}function HasOwnProperty(r,t){return Object.prototype.hasOwnProperty.call(r,t)}function IsCallable(n){return"function"==typeof n}function SameValueNonNumber(e,n){return e===n}function ToInteger(n){var i=Number(n);return isNaN(i)?0:1/i===Infinity||1/i==-Infinity||i===Infinity||i===-Infinity?i:(i<0?-1:1)*Math.floor(Math.abs(i))}function ToLength(n){var t=ToInteger(n);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function ToObject(e){if(null===e||e===undefined)throw TypeError();return Object(e)}function GetV(t,e){return ToObject(t)[e]}function GetMethod(e,n){var r=GetV(e,n);if(null===r||r===undefined)return undefined;if(!1===IsCallable(r))throw new TypeError("Method not callable: "+n);return r}function Type(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in self&&(e instanceof self.Symbol||e.constructor===self.Symbol)?"symbol":"object"}}function OrdinaryToPrimitive(r,t){if("string"===t)var e=["toString","valueOf"];else e=["valueOf","toString"];for(var i=0;i<e.length;++i){var n=e[i],a=Get(r,n);if(IsCallable(a)){var o=Call(a,r);if("object"!==Type(o))return o}}throw new TypeError("Cannot convert to primitive.")}function SameValueZero(n,e){return Type(n)===Type(e)&&("number"===Type(n)?!(!isNaN(n)||!isNaN(e))||(1/n===Infinity&&1/e==-Infinity||(1/n==-Infinity&&1/e===Infinity||n===e)):SameValueNonNumber(n,e))}function ToPrimitive(e){var t=arguments.length>1?arguments[1]:undefined;if("object"===Type(e)){if(arguments.length<2)var i="default";else t===String?i="string":t===Number&&(i="number");var r="function"==typeof self.Symbol&&"symbol"==typeof self.Symbol.toPrimitive?GetMethod(e,self.Symbol.toPrimitive):undefined;if(r!==undefined){var n=Call(r,e,[i]);if("object"!==Type(n))return n;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),OrdinaryToPrimitive(e,i)}return e}function ToString(t){switch(Type(t)){case"symbol":throw new TypeError("Cannot convert a Symbol value to a string");case"object":return ToString(ToPrimitive(t,String));default:return String(t)}}function ToPropertyKey(r){var i=ToPrimitive(r,String);return"symbol"===Type(i)?i:ToString(i)}CreateMethodProperty(Array.prototype,"includes",function e(r){"use strict";var t=ToObject(this),o=ToLength(Get(t,"length"));if(0===o)return!1;var n=ToInteger(arguments[1]);if(n>=0)var a=n;else(a=o+n)<0&&(a=0);for(;a<o;){var i=Get(t,ToString(a));if(SameValueZero(r,i))return!0;a+=1}return!1});!function(){var e=Object.getOwnPropertyDescriptor,t=function(){try{return 1===Object.defineProperty(document.createElement("div"),"one",{get:function(){return 1}}).one}catch(e){return!1}},r={}.toString,n="".split;CreateMethodProperty(Object,"getOwnPropertyDescriptor",function c(o,i){var a=ToObject(o);a=("string"===Type(a)||a instanceof String)&&"[object String]"==r.call(o)?n.call(o,""):Object(o);var u=ToPropertyKey(i);if(t)try{return e(a,u)}catch(l){}if(HasOwnProperty(a,u))return{enumerable:!0,configurable:!0,writable:!0,value:a[u]}})}();CreateMethodProperty(Object,"keys",function(){"use strict";function t(t){var e=r.call(t),n="[object Arguments]"===e;return n||(n="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===r.call(t.callee)),n}var e=Object.prototype.hasOwnProperty,r=Object.prototype.toString,n=Object.prototype.propertyIsEnumerable,o=!n.call({toString:null},"toString"),l=n.call(function(){},"prototype"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],i=function(t){var e=t.constructor;return e&&e.prototype===t},u={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},a=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!u["$"+t]&&e.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{i(window[t])}catch(r){return!0}}catch(r){return!0}return!1}(),f=function(t){if("undefined"==typeof window||!a)return i(t);try{return i(t)}catch(e){return!1}};return function p(n){var i="[object Function]"===r.call(n),u=t(n),a="[object String]"===r.call(n),p=[];if(n===undefined||null===n)throw new TypeError("Cannot convert undefined or null to object");var s=l&&i;if(a&&n.length>0&&!e.call(n,0))for(var y=0;y<n.length;++y)p.push(String(y));if(u&&n.length>0)for(var g=0;g<n.length;++g)p.push(String(g));else for(var h in n)s&&"prototype"===h||!e.call(n,h)||p.push(String(h));if(o)for(var w=f(n),d=0;d<c.length;++d)w&&"constructor"===c[d]||!e.call(n,c[d])||p.push(c[d]);return p}}());!function(){var t={}.toString,e="".split,r=[].concat,o=Object.prototype.hasOwnProperty,c=Object.getOwnPropertyNames||Object.keys,n="object"==typeof self?c(self):[];CreateMethodProperty(Object,"getOwnPropertyNames",function l(a){var p=ToObject(a);if("[object Window]"===t.call(p))try{return c(p)}catch(j){return r.call([],n)}p="[object String]"==t.call(p)?e.call(p,""):Object(p);for(var i=c(p),s=["length","prototype"],O=0;O<s.length;O++){var b=s[O];o.call(p,b)&&!i.includes(b)&&i.push(b)}if(i.includes("__proto__")){var f=i.indexOf("__proto__");i.splice(f,1)}return i})}();!function(t,r,n){"use strict";var e,u=0,o=""+Math.random(),l="__symbol:",c=l.length,a="__symbol@@"+o,i="defineProperty",f="defineProperties",s="getOwnPropertyNames",v="getOwnPropertyDescriptor",b="propertyIsEnumerable",h=t.prototype,y=h.hasOwnProperty,m=h[b],p=h.toString,g=Array.prototype.concat,w=t.getOwnPropertyNames?t.getOwnPropertyNames(self):[],S=t[s],d=function L(t){if("[object Window]"===p.call(t))try{return S(t)}catch(r){return g.call([],w)}return S(t)},P=t[v],j=t.create,O=t.keys,E=t.freeze||t,N=t[i],_=t[f],k=P(t,s),T=function(t,r,n){if(!y.call(t,a))try{N(t,a,{enumerable:!1,configurable:!1,writable:!1,value:{}})}catch(e){t[a]={}}t[a]["@@"+r]=n},z=function(t,r){var n=j(t);return d(r).forEach(function(t){M.call(r,t)&&G(n,t,r[t])}),n},A=function(t){var r=j(t);return r.enumerable=!1,r},D=function Q(){},F=function(t){return t!=a&&!y.call(x,t)},I=function(t){return t!=a&&y.call(x,t)},M=function R(t){var r=""+t;return I(r)?y.call(this,r)&&this[a]["@@"+r]:m.call(this,t)},W=function(r){var n={enumerable:!1,configurable:!0,get:D,set:function(t){e(this,r,{enumerable:!1,configurable:!0,writable:!0,value:t}),T(this,r,!0)}};try{N(h,r,n)}catch(u){h[r]=n.value}return E(x[r]=N(t(r),"constructor",B))},q=function U(){var t=arguments[0];if(this instanceof U)throw new TypeError("Symbol is not a constructor");return W(l.concat(t||"",o,++u))},x=j(null),B={value:q},C=function(t){return x[t]},G=function V(t,r,n){var u=""+r;return I(u)?(e(t,u,n.enumerable?A(n):n),T(t,u,!!n.enumerable)):N(t,r,n),t},H=function(t){return function(r){return y.call(t,a)&&y.call(t[a],"@@"+r)}},J=function X(t){return d(t).filter(t===h?H(t):I).map(C)};k.value=G,N(t,i,k),k.value=J,N(t,"getOwnPropertySymbols",k),k.value=function Y(t){return d(t).filter(F)},N(t,s,k),k.value=function Z(t,r){var n=J(r);return n.length?O(r).concat(n).forEach(function(n){M.call(r,n)&&G(t,n,r[n])}):_(t,r),t},N(t,f,k),k.value=M,N(h,b,k),k.value=q,N(n,"Symbol",k),k.value=function(t){var r=l.concat(l,t,o);return r in h?x[r]:W(r)},N(q,"for",k),k.value=function(t){if(F(t))throw new TypeError(t+" is not a symbol");return y.call(x,t)?t.slice(2*c,-o.length):void 0},N(q,"keyFor",k),k.value=function $(t,r){var n=P(t,r);return n&&I(r)&&(n.enumerable=M.call(t,r)),n},N(t,v,k),k.value=function(t,r){return 1===arguments.length||void 0===r?j(t):z(t,r)},N(t,"create",k);var K=null===function(){return this}.call(null);k.value=K?function(){var t=p.call(this);return"[object String]"===t&&I(this)?"[object Symbol]":t}:function(){if(this===window)return"[object Null]";var t=p.call(this);return"[object String]"===t&&I(this)?"[object Symbol]":t},N(h,"toString",k),e=function(t,r,n){var e=P(h,r);delete h[r],N(t,r,n),t!==h&&N(h,r,e)}}(Object,0,this);Object.defineProperty(Symbol,"toStringTag",{value:Symbol("toStringTag")});!function(){"use strict";function n(){return tn[q][B]||D}function t(n){return n&&"object"==typeof n}function e(n){return"function"==typeof n}function r(n,t){return n instanceof t}function o(n){return r(n,A)}function i(n,t,e){if(!t(n))throw a(e)}function u(){try{return b.apply(R,arguments)}catch(n){return Y.e=n,Y}}function c(n,t){return b=n,R=t,u}function f(n,t){function e(){for(var e=0;e<o;)t(r[e],r[e+1]),r[e++]=T,r[e++]=T;o=0,r.length>n&&(r.length=n)}var r=L(n),o=0;return function(n,t){r[o++]=n,r[o++]=t,2===o&&tn.nextTick(e)}}function s(n,t){var o,i,u,f,s=0;if(!n)throw a(N);var l=n[tn[q][z]];if(e(l))i=l.call(n);else{if(!e(n.next)){if(r(n,L)){for(o=n.length;s<o;)t(n[s],s++);return s}throw a(N)}i=n}for(;!(u=i.next()).done;)if((f=c(t)(u.value,s++))===Y)throw e(i[G])&&i[G](),f.e;return s}function a(n){return new TypeError(n)}function l(n){return(n?"":Q)+(new A).stack}function h(n,t){var e="on"+n.toLowerCase(),r=F[e];E&&E.listeners(n).length?n===X?E.emit(n,t._v,t):E.emit(n,t):r?r({reason:t._v,promise:t}):tn[n](t._v,t)}function v(n){return n&&n._s}function _(n){if(v(n))return new n(Z);var t,r,o;return t=new n(function(n,e){if(t)throw a();r=n,o=e}),i(r,e),i(o,e),t}function d(n,t){var e=!1;return function(r){e||(e=!0,I&&(n[M]=l(!0)),t===U?g(n,r):y(n,t,r))}}function p(n,t,r,o){return e(r)&&(t._onFulfilled=r),e(o)&&(n[J]&&h(W,n),t._onRejected=o),I&&(t._p=n),n[n._c++]=t,n._s!==$&&rn(n,t),t}function m(n){if(n._umark)return!0;n._umark=!0;for(var t,e=0,r=n._c;e<r;)if(t=n[e++],t._onRejected||m(t))return!0}function w(n,t){function e(n){return r.push(n.replace(/^\s+|\s+$/g,""))}var r=[];return I&&(t[M]&&e(t[M]),function o(n){n&&K in n&&(o(n._next),e(n[K]+""),o(n._p))}(t)),(n&&n.stack?n.stack:n)+("\n"+r.join("\n")).replace(nn,"")}function j(n,t){return n(t)}function y(n,t,e){var r=0,i=n._c;if(n._s===$)for(n._s=t,n._v=e,t===O&&(I&&o(e)&&(e.longStack=w(e,n)),on(n));r<i;)rn(n,n[r++]);return n}function g(n,r){if(r===n&&r)return y(n,O,a(V)),n;if(r!==S&&(e(r)||t(r))){var o=c(k)(r);if(o===Y)return y(n,O,o.e),n;e(o)?(I&&v(r)&&(n._next=r),v(r)?x(n,r,o):tn.nextTick(function(){x(n,r,o)})):y(n,U,r)}else y(n,U,r);return n}function k(n){return n.then}function x(n,t,e){var r=c(e,t)(function(e){t&&(t=S,g(n,e))},function(e){t&&(t=S,y(n,O,e))});r===Y&&t&&(y(n,O,r.e),t=S)}var T,b,R,S=null,C="object"==typeof self,F=self,P=F.Promise,E=F.process,H=F.console,I=!0,L=Array,A=Error,O=1,U=2,$=3,q="Symbol",z="iterator",B="species",D=q+"("+B+")",G="return",J="_uh",K="_pt",M="_st",N="Invalid argument",Q="\nFrom previous ",V="Chaining cycle detected for promise",W="rejectionHandled",X="unhandledRejection",Y={e:S},Z=function(){},nn=/^.+\/node_modules\/yaku\/.+\n?/gm,tn=function(n){var r,o=this;if(!t(o)||o._s!==T)throw a("Invalid this");if(o._s=$,I&&(o[K]=l()),n!==Z){if(!e(n))throw a(N);r=c(n)(d(o,U),d(o,O)),r===Y&&y(o,O,r.e)}};tn["default"]=tn,function en(n,t){for(var e in t)n[e]=t[e]}(tn.prototype,{then:function(n,t){if(this._s===undefined)throw a();return p(this,_(tn.speciesConstructor(this,tn)),n,t)},"catch":function(n){return this.then(T,n)},"finally":function(n){return this.then(function(t){return tn.resolve(n()).then(function(){return t})},function(t){return tn.resolve(n()).then(function(){throw t})})},_c:0,_p:S}),tn.resolve=function(n){return v(n)?n:g(_(this),n)},tn.reject=function(n){return y(_(this),O,n)},tn.race=function(n){var t=this,e=_(t),r=function(n){y(e,U,n)},o=function(n){y(e,O,n)},i=c(s)(n,function(n){t.resolve(n).then(r,o)});return i===Y?t.reject(i.e):e},tn.all=function(n){function t(n){y(o,O,n)}var e,r=this,o=_(r),i=[];return(e=c(s)(n,function(n,u){r.resolve(n).then(function(n){i[u]=n,--e||y(o,U,i)},t)}))===Y?r.reject(e.e):(e||y(o,U,[]),o)},tn.Symbol=F[q]||{},c(function(){Object.defineProperty(tn,n(),{get:function(){return this}})})(),tn.speciesConstructor=function(t,e){var r=t.constructor;return r?r[n()]||e:e},tn.unhandledRejection=function(n,t){H&&H.error("Uncaught (in promise)",I?t.longStack:w(n,t))},tn.rejectionHandled=Z,tn.enableLongStackTrace=function(){I=!0},tn.nextTick=C?function(n){P?new P(function(n){n()}).then(n):setTimeout(n)}:E.nextTick,tn._s=1;var rn=f(999,function(n,t){var e,r;return(r=n._s!==O?t._onFulfilled:t._onRejected)===T?void y(t,n._s,n._v):(e=c(j)(r,n._v))===Y?void y(t,O,e.e):void g(t,e)}),on=f(9,function(n){m(n)||(n[J]=1,h(X,n))});F.Promise=tn}();})('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
  30. }
  31. /* load o2 Core
  32. * |------------------------------------------------------------------------------|
  33. * |addReady: o2.addReady(fn), |
  34. * |------------------------------------------------------------------------------|
  35. * |load: o2.load(urls, callback, reload) |
  36. * |loadCss: o2.loadCss(urls, dom, callback, reload, doc) |
  37. * |------------------------------------------------------------------------------|
  38. * |typeOf: o2.typeOf(o) |
  39. * |------------------------------------------------------------------------------|
  40. * |uuid: o2.uuid() |
  41. * |------------------------------------------------------------------------------|
  42. */
  43. //Element.firstElementChild Polyfill
  44. (function(constructor) {
  45. if (constructor &&
  46. constructor.prototype &&
  47. constructor.prototype.firstElementChild == null) {
  48. Object.defineProperty(constructor.prototype, 'firstElementChild', {
  49. get: function() {
  50. var node, nodes = this.childNodes, i = 0;
  51. while (node = nodes[i++]) {
  52. if (node.nodeType === 1) {
  53. return node;
  54. }
  55. }
  56. return null;
  57. }
  58. });
  59. }
  60. })(window.Node || window.Element);
  61. (function(){
  62. var _href = window.location.href;
  63. var _debug = (_href.indexOf("debugger")!==-1);
  64. var _par = _href.substr(_href.lastIndexOf("?")+1, _href.length);
  65. var _lp = "zh-cn";
  66. if (_par){
  67. var _parList = _par.split("&");
  68. for (var i=0; i<_parList.length; i++){
  69. var _v = _parList[i];
  70. var _kv = _v.split("=");
  71. if (_kv[0].toLowerCase()==="lg") _lp = _kv[1];
  72. if (_kv[0].toLowerCase()==="lp") _lp = _kv[1];
  73. }
  74. }
  75. this.o2 = window.o2 || {};
  76. this.o2.version = {
  77. "v": "5.1.1",
  78. "build": "2020.06.12",
  79. "info": "O2OA 活力办公 创意无限. Copyright © 2020, o2oa.net O2 Team All rights reserved."
  80. };
  81. if (!this.o2.session) this.o2.session ={
  82. "isDebugger": _debug,
  83. "path": "../o2_core/o2"
  84. };
  85. this.o2.language = _lp;
  86. this.o2.splitStr = /\s*(?:,|;)\s*/;
  87. // this.o2 = {
  88. // "version": {
  89. // "v": "2.3.1",
  90. // "build": "2019.07.31",
  91. // "info": "O2OA 活力办公 创意无限. Copyright © 2018, o2oa.net O2 Team All rights reserved."
  92. // },
  93. // "session": {
  94. // "isDebugger": _debug,
  95. // "path": "../o2_core/o2"
  96. // },
  97. // "language": _lp,
  98. // "splitStr": /\s*(?:,|;)\s*/
  99. // };
  100. this.wrdp = this.o2;
  101. var debug = function(reload){
  102. if (reload){
  103. window.location.assign(_href + ((_href.indexOf("?")==-1) ? "?" : "&")+"debugger");
  104. }else{
  105. if (!o2.session.isDebugger){
  106. o2.session.isDebugger = true;
  107. if (o2.session.isMobile || layout.mobile) o2.load("../o2_lib/eruda/eruda.js");
  108. }
  109. }
  110. };
  111. this.o2.debug = debug;
  112. var _attempt = function(){
  113. for (var i = 0, l = arguments.length; i < l; i++){
  114. try {
  115. arguments[i]();
  116. return arguments[i];
  117. } catch (e){}
  118. }
  119. return null;
  120. };
  121. var _typeOf = function(item){
  122. if (item == null) return 'null';
  123. if (item.$family != null) return item.$family();
  124. if (item.constructor == window.Array) return "array";
  125. if (item.nodeName){
  126. if (item.nodeType == 1) return 'element';
  127. if (item.nodeType == 3) return (/\S/).test(item.nodeValue) ? 'textnode' : 'whitespace';
  128. } else if (typeof item.length == 'number'){
  129. if (item.callee) return 'arguments';
  130. }
  131. return typeof item;
  132. };
  133. this.o2.typeOf = _typeOf;
  134. var _addListener = function(dom, type, fn){
  135. if (type == 'unload'){
  136. var old = fn, self = this;
  137. fn = function(){
  138. _removeListener(dom, 'unload', fn);
  139. old();
  140. };
  141. }
  142. if (dom.addEventListener) dom.addEventListener(type, fn, !!arguments[2]);
  143. else dom.attachEvent('on' + type, fn);
  144. };
  145. var _removeListener = function(dom, type, fn){
  146. if (dom.removeEventListener) dom.removeEventListener(type, fn, !!arguments[2]);
  147. else dom.detachEvent('on' + type, fn);
  148. };
  149. //http request class
  150. var _request = (function(){
  151. var XMLHTTP = function(){ return new XMLHttpRequest(); };
  152. var MSXML2 = function(){ return new ActiveXObject('MSXML2.XMLHTTP'); };
  153. var MSXML = function(){ return new ActiveXObject('Microsoft.XMLHTTP'); };
  154. return _attempt(XMLHTTP, MSXML2, MSXML);
  155. })();
  156. this.o2.request = _request;
  157. var _returnBase = function(number, base) {
  158. return (number).toString(base).toUpperCase();
  159. };
  160. var _getIntegerBits = function(val, start, end){
  161. var base16 = _returnBase(val, 16);
  162. var quadArray = new Array();
  163. var quadString = '';
  164. var i = 0;
  165. for (i = 0; i < base16.length; i++) {
  166. quadArray.push(base16.substring(i, i + 1));
  167. }
  168. for (i = Math.floor(start / 4); i <= Math.floor(end / 4); i++) {
  169. if (!quadArray[i] || quadArray[i] == '')
  170. quadString += '0';
  171. else
  172. quadString += quadArray[i];
  173. }
  174. return quadString;
  175. };
  176. var _rand = function(max) {
  177. return Math.floor(Math.random() * (max + 1));
  178. };
  179. this.o2.addListener = _addListener;
  180. this.o2.removeListener = _removeListener;
  181. //uuid
  182. var _uuid = function(){
  183. var dg = new Date(1582, 10, 15, 0, 0, 0, 0);
  184. var dc = new Date();
  185. var t = dc.getTime() - dg.getTime();
  186. var tl = _getIntegerBits(t, 0, 31);
  187. var tm = _getIntegerBits(t, 32, 47);
  188. var thv = _getIntegerBits(t, 48, 59) + '1';
  189. var csar = _getIntegerBits(_rand(4095), 0, 7);
  190. var csl = _getIntegerBits(_rand(4095), 0, 7);
  191. var n = _getIntegerBits(_rand(8191), 0, 7)
  192. + _getIntegerBits(_rand(8191), 8, 15)
  193. + _getIntegerBits(_rand(8191), 0, 7)
  194. + _getIntegerBits(_rand(8191), 8, 15)
  195. + _getIntegerBits(_rand(8191), 0, 15);
  196. return tl + tm + thv + csar + csl + n;
  197. };
  198. this.o2.uuid = _uuid;
  199. var _runCallback = function(callback, key, par, bind, promise_cb){
  200. var b = bind || callback;
  201. if (!key) key = "success";
  202. var cb;
  203. if (callback){
  204. var type = o2.typeOf(callback).toLowerCase();
  205. if (key.toLowerCase()==="success" && type==="function"){
  206. cb = callback;
  207. }else{
  208. var name = ("on-"+key).camelCase();
  209. cb = (callback[name]) ? callback[name] : ((callback[key]) ? callback[key] : null);
  210. }
  211. }
  212. if (cb) return (promise_cb) ? promise_cb(cb.apply(b, par)) : cb.apply(b, par) ;
  213. return (promise_cb) ? promise_cb.apply(b, par) : null;
  214. // if (key.toLowerCase()==="success" && (type==="function" || type==="o2_async_function")){
  215. // (promise_cb) ? promise_cb(callback.apply(b, par)) : callback.apply(b, par) ;
  216. // }else{
  217. // if (type==="function" || type==="object" || type==="o2_async_function"){
  218. // var name = ("on-"+key).camelCase();
  219. // if (callback[name]){
  220. // (promise_cb) ? promise_cb(callback[name].apply(b, par)) : callback[name].apply(b, par);
  221. // }else{
  222. // if (callback[key]) (promise_cb) ? promise_cb(callback[key].apply(b, par)) : callback[key].apply(b, par);
  223. // }
  224. // }
  225. // }
  226. // if (typeOf(callback).toLowerCase() === 'function'){
  227. // if (key.toLowerCase()==="success"){
  228. // callback.apply(b, par);
  229. // }else{
  230. // if (callback[key]){
  231. // callback[key].apply(b, par);
  232. // }else{
  233. // var name = ("on-"+key).camelCase();
  234. // if (callback[name]) callback[name].apply(b, par);
  235. // }
  236. // }
  237. // }else{
  238. // if (typeOf(callback).toLowerCase()==='object'){
  239. // if (callback[key]){
  240. // callback[key].apply(b, par);
  241. // }else{
  242. // var name = ("on-"+key).camelCase();
  243. // if (callback[name]) callback[name].apply(b, par);
  244. // }
  245. // }
  246. // }
  247. };
  248. this.o2.runCallback = _runCallback;
  249. //load js, css, html adn all.
  250. var _getAllOptions = function(options){
  251. var doc = (options && options.doc) || document;
  252. if (!doc.unid) doc.unid = _uuid();
  253. var type = (options && options.type) || "text/javascript";
  254. return {
  255. "noCache": !!(options && options.nocache),
  256. "reload": !!(options && options.reload),
  257. "sequence": !!(options && options.sequence),
  258. "type": type,
  259. "doc": doc,
  260. "dom": (options && options.dom) || document.body,
  261. "module": (options && options.module) || null,
  262. "noConflict": (options && options.noConflict) || false,
  263. "bind": (options && options.bind) || null,
  264. "position": (options && options.position) || "beforeend" //'beforebegin' 'afterbegin' 'beforeend' 'afterend'debugger
  265. }
  266. };
  267. var _getCssOptions = function(options){
  268. var doc = (options && options.doc) || document;
  269. if (!doc.unid) doc.unid = _uuid();
  270. return {
  271. "noCache": !!(options && options.nocache),
  272. "reload": !!(options && options.reload),
  273. "sequence": !!(options && options.sequence),
  274. "doc": doc,
  275. "dom": (options && options.dom) || null
  276. }
  277. };
  278. var _getJsOptions = function(options){
  279. var doc = (options && options.doc) || document;
  280. if (!doc.unid) doc.unid = _uuid();
  281. var type = (options && options.type) || "text/javascript";
  282. return {
  283. "noCache": !!(options && options.nocache),
  284. "reload": !!(options && options.reload),
  285. "sequence": (!(options && options.sequence == false)),
  286. "type": type,
  287. "doc": doc
  288. }
  289. };
  290. var _getHtmlOptions = function(options){
  291. var doc = (options && options.doc) || document;
  292. if (!doc.unid) doc.unid = _uuid();
  293. return {
  294. "noCache": !!(options && options.nocache),
  295. "reload": !!(options && options.reload),
  296. "sequence": !!(options && options.sequence),
  297. "doc": doc,
  298. "dom": (options && options.dom) || null,
  299. "module": (options && options.module) || null,
  300. "noConflict": (options && options.noConflict) || false,
  301. "bind": (options && options.bind) || null,
  302. "position": (options && options.position) || "beforeend" //'beforebegin' 'afterbegin' 'beforeend' 'afterend'
  303. }
  304. };
  305. _filterUrl = function(url){
  306. if (o2.base){
  307. if (url.indexOf(":")===-1){
  308. var s = url.substring(0, url.indexOf("/")+1);
  309. var r = url.substring(url.indexOf("/")+1, url.length);
  310. if ("../"===s || "./"===s || "/"===s){
  311. return s+o2.base+r;
  312. }else{
  313. return o2.base+url
  314. }
  315. }
  316. }
  317. // if (!window.layout) window.layout = {};
  318. // if (!window.layout.config){
  319. // new Request.JSON({
  320. // url: "../x_desktop/res/config/config.json",
  321. // secure: false,
  322. // method: "get",
  323. // noCache: true,
  324. // async: false,
  325. // onSuccess: function(responseJSON, responseText){
  326. // window.layout.config = responseJSON;
  327. // }.bind(this),
  328. // }).send();
  329. // }
  330. if (window.layout && layout.config && layout.config.urlMapping){
  331. for (var k in layout.config.urlMapping){
  332. var regex = new RegExp(k);
  333. if (regex.test(url)){
  334. return url.replace(regex, layout.config.urlMapping[k]);
  335. }
  336. }
  337. }
  338. return url;
  339. };
  340. this.o2.filterUrl = _filterUrl;
  341. var _xhr_get = function(url, success, failure, completed){
  342. var xhr = new _request();
  343. url = _filterUrl(url);
  344. xhr.open("GET", url, true);
  345. var _checkCssLoaded= function(_, err){
  346. if (!(xhr.readyState == 4)) return;
  347. if (err){
  348. if (completed) completed(xhr);
  349. return;
  350. }
  351. _removeListener(xhr, 'readystatechange', _checkCssLoaded);
  352. _removeListener(xhr, 'load', _checkCssLoaded);
  353. _removeListener(xhr, 'error', _checkCssErrorLoaded);
  354. if (err) {if (failure) failure(xhr); return}
  355. var status = xhr.status;
  356. status = (status == 1223) ? 204 : status;
  357. if ((status >= 200 && status < 300))
  358. if (success) success(xhr);
  359. else if ((status >= 300 && status < 400))
  360. if (failure) failure(xhr);
  361. else
  362. failure(xhr);
  363. if (completed) completed(xhr);
  364. };
  365. var _checkCssErrorLoaded= function(err){ _checkCssLoaded(err) };
  366. if ("load" in xhr) _addListener(xhr, "load", _checkCssLoaded);
  367. if ("error" in xhr) _addListener(xhr, "load", _checkCssErrorLoaded);
  368. _addListener(xhr, "readystatechange", _checkCssLoaded);
  369. xhr.send();
  370. };
  371. this.o2.xhr_get = _xhr_get;
  372. var _loadSequence = function(ms, cb, op, n, thisLoaded, loadSingle, uuid, fun){
  373. loadSingle(ms[n], function(module){
  374. if (module) thisLoaded.push(module);
  375. n++;
  376. if (fun) fun(module);
  377. if (n===ms.length){
  378. if (cb) cb(thisLoaded);
  379. }else{
  380. _loadSequence(ms, cb, op, n, thisLoaded, loadSingle, uuid, fun);
  381. }
  382. }, op, uuid);
  383. };
  384. var _loadDisarray = function(ms, cb, op, thisLoaded, loadSingle, uuid, fun){
  385. var count=0;
  386. for (var i=0; i<ms.length; i++){
  387. loadSingle(ms[i], function(module){
  388. if (module) thisLoaded.push(module);
  389. count++;
  390. if (fun) fun(module);
  391. if (count===ms.length) if (cb) cb(thisLoaded);
  392. }, op, uuid);
  393. }
  394. };
  395. //load js
  396. //use framework url
  397. var _frameworks = {
  398. "o2.core": ["../o2_core/o2/o2.core.js"],
  399. "o2.more": ["../o2_core/o2/o2.more.js"],
  400. "ie_adapter": ["../o2_core/o2/ie_adapter.js"],
  401. "jquery": ["../o2_lib/jquery/jquery.min.js"],
  402. "mootools": ["../o2_lib/mootools/mootools-1.6.0_all.js"],
  403. "ckeditor": ["../o2_lib/htmleditor/ckeditor4114/ckeditor.js"],
  404. "ckeditor5": ["../o2_lib/htmleditor/ckeditor5-12-1-0/ckeditor.js"],
  405. "raphael": ["../o2_lib/raphael/raphael.js"],
  406. "d3": ["../o2_lib/d3/d3.min.js"],
  407. "ace": ["../o2_lib/ace/src-min-noconflict/ace.js","../o2_lib/ace/src-min-noconflict/ext-language_tools.js"],
  408. "monaco": ["../o2_lib/vs/loader.js"],
  409. "JSBeautifier": ["../o2_lib/JSBeautifier/beautify.js"],
  410. "JSBeautifier_css": ["../o2_lib/JSBeautifier/beautify-css.js"],
  411. "JSBeautifier_html": ["../o2_lib/JSBeautifier/beautify-html.js"],
  412. "JSONTemplate": ["../o2_lib/mootools/plugin/Template.js"],
  413. "kity": ["../o2_lib/kityminder/kity/kity.js"],
  414. "kityminder": ["../o2_lib/kityminder/core/dist/kityminder.core.js"]
  415. };
  416. var _loaded = {};
  417. var _loadedCss = {};
  418. var _loadedHtml = {};
  419. var _loadCssRunning = {};
  420. var _loadCssQueue = [];
  421. var _loadingModules = {};
  422. var _loadSingle = function(module, callback, op){
  423. var url = module;
  424. var uuid = _uuid();
  425. if (op.noCache) url = (url.indexOf("?")!==-1) ? url+"&v="+uuid : addr_uri+"?v="+uuid;
  426. var key = encodeURIComponent(url+op.doc.unid);
  427. if (!op.reload) if (_loaded[key]){
  428. if (callback)callback(); return;
  429. }
  430. if (_loadingModules[key]){
  431. if (!_loadingModules[key].callbacks) _loadingModules[key].callbacks = [];
  432. _loadingModules[key].callbacks.push(callback);
  433. }else{
  434. _loadingModules[key] = { callbacks: [callback] };
  435. var head = (op.doc.head || op.doc.getElementsByTagName("head")[0] || op.doc.documentElement);
  436. var s = op.doc.createElement('script');
  437. s.type = op.type || "text/javascript";
  438. head.appendChild(s);
  439. s.id = uuid;
  440. s.src = this.o2.filterUrl(url);
  441. var _checkScriptLoaded = function(_, isAbort, err){
  442. if (isAbort || !s.readyState || s.readyState === "loaded" || s.readyState === "complete") {
  443. var scriptObj = {"module": module, "id": uuid, "script": s, "doc": op.doc};
  444. if (!err) _loaded[key] = scriptObj;
  445. _removeListener(s, 'readystatechange', _checkScriptLoaded);
  446. _removeListener(s, 'load', _checkScriptLoaded);
  447. _removeListener(s, 'error', _checkScriptErrorLoaded);
  448. if (!isAbort || err){
  449. if (err){
  450. if (s) head.removeChild(s);
  451. while (_loadingModules[key].callbacks.length){
  452. (_loadingModules[key].callbacks.shift())();
  453. }
  454. //if (callback)callback();
  455. }else{
  456. //head.removeChild(s);
  457. while (_loadingModules[key].callbacks.length){
  458. (_loadingModules[key].callbacks.shift())(scriptObj);
  459. }
  460. //if (callback)callback(scriptObj);
  461. }
  462. }
  463. }
  464. };
  465. var _checkScriptErrorLoaded = function(e, err){
  466. console.log("Error: load javascript module: "+module);
  467. _checkScriptLoaded(e, true, "error");
  468. };
  469. if ('onreadystatechange' in s) _addListener(s, 'readystatechange', _checkScriptLoaded);
  470. _addListener(s, 'load', _checkScriptLoaded);
  471. _addListener(s, 'error', _checkScriptErrorLoaded);
  472. }
  473. };
  474. var _load = function(urls, options, callback){
  475. var ms = (_typeOf(urls)==="array") ? urls : [urls];
  476. var op = (_typeOf(options)==="object") ? _getJsOptions(options) : _getJsOptions(null);
  477. var cbk = (_typeOf(options)==="function") ? options : callback;
  478. var cb = cbk;
  479. if (typeof define === 'function' && define.amd){
  480. define.amd = false;
  481. cb = (cbk) ? function(){define.amd = true; cbk();} : function(){define.amd = true;}
  482. }
  483. var modules = [];
  484. for (var i=0; i<ms.length; i++){
  485. var url = ms[i];
  486. var module = _frameworks[url] || url;
  487. if (_typeOf(module)==="array"){
  488. modules = modules.concat(module)
  489. }else{
  490. modules.push(module)
  491. }
  492. }
  493. var thisLoaded = [];
  494. if (op.sequence){
  495. _loadSequence(modules, cb, op, 0, thisLoaded, _loadSingle);
  496. }else{
  497. _loadDisarray(modules, cb, op, thisLoaded, _loadSingle);
  498. }
  499. };
  500. this.o2.load = _load;
  501. //load css
  502. var _loadSingleCss = function(module, callback, op, uuid){
  503. var url = module;
  504. var uid = _uuid();
  505. if (op.noCache) url = (url.indexOf("?")!==-1) ? url+"&v="+uid : url+"?v="+uid;
  506. var key = encodeURIComponent(url+op.doc.unid);
  507. if (_loadCssRunning[key]){
  508. _loadCssQueue.push(function(){
  509. _loadSingleCss(module, callback, op, uuid);
  510. });
  511. return;
  512. }
  513. if (_loadedCss[key]) uuid = _loadedCss[key]["class"];
  514. if (op.dom) _parseDom(op.dom, function(node){ if (node.className.indexOf(uuid) == -1) node.className += ((node.className) ? " "+uuid : uuid);}, op.doc);
  515. var completed = function(){
  516. if (_loadCssRunning[key]){
  517. _loadCssRunning[key] = false;
  518. delete _loadCssRunning[key];
  519. }
  520. if (_loadCssQueue && _loadCssQueue.length){
  521. (_loadCssQueue.shift())();
  522. }
  523. };
  524. if (_loadedCss[key])if (!op.reload){
  525. if (callback)callback(_loadedCss[key]);
  526. completed();
  527. return;
  528. }
  529. var success = function(xhr){
  530. var cssText = xhr.responseText;
  531. try{
  532. if (cssText){
  533. cssText = cssText.replace(/\/\*(\s|\S)*?\*\//g, "");
  534. if (op.bind) cssText = cssText.bindJson(op.bind);
  535. if (op.dom){
  536. var rex = new RegExp("(.+)(?=\\{)", "g");
  537. var match;
  538. var prefix = "." + uuid + " ";
  539. while ((match = rex.exec(cssText)) !== null) {
  540. // var rule = prefix + match[0];
  541. // cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
  542. // rex.lastIndex = rex.lastIndex + prefix.length;
  543. var rulesStr = match[0];
  544. if (rulesStr.substr(0,1)=="@" || rulesStr.indexOf("%")!=-1){
  545. // var begin = 0;
  546. // var end = 0;
  547. }else{
  548. if (rulesStr.indexOf(",")!=-1){
  549. var rules = rulesStr.split(/\s*,\s*/g);
  550. rules = rules.map(function(r){
  551. return prefix + r;
  552. });
  553. var rule = rules.join(", ");
  554. cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
  555. rex.lastIndex = rex.lastIndex + (prefix.length*rules.length);
  556. }else{
  557. var rule = prefix + match[0];
  558. cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
  559. rex.lastIndex = rex.lastIndex + prefix.length;
  560. }
  561. }
  562. }
  563. }
  564. var style = op.doc.createElement("style");
  565. style.setAttribute("type", "text/css");
  566. var head = (op.doc.head || op.doc.getElementsByTagName("head")[0] || op.doc.documentElement);
  567. head.appendChild(style);
  568. if(style.styleSheet){
  569. var setFunc = function(){
  570. style.styleSheet.cssText = cssText;
  571. };
  572. if(style.styleSheet.disabled){
  573. setTimeout(setFunc, 10);
  574. }else{
  575. setFunc();
  576. }
  577. }else{
  578. var cssTextNode = op.doc.createTextNode(cssText);
  579. style.appendChild(cssTextNode);
  580. }
  581. }
  582. style.id = uid;
  583. var styleObj = {"module": module, "id": uid, "style": style, "doc": op.doc, "class": uuid};
  584. _loadedCss[key] = styleObj;
  585. if (callback) callback(styleObj);
  586. }catch (e){
  587. if (callback) callback();
  588. return;
  589. }
  590. };
  591. var failure = function(xhr){
  592. console.log("Error: load css module: "+module);
  593. if (callback) callback();
  594. };
  595. _loadCssRunning[key] = true;
  596. _xhr_get(url, success, failure, completed);
  597. };
  598. var _parseDomString = function(dom, fn, sourceDoc){
  599. var doc = sourceDoc || document;
  600. var list = doc.querySelectorAll(dom);
  601. if (list.length) for (var i=0; i<list.length; i++) _parseDomElement(list[i], fn);
  602. };
  603. var _parseDomElement = function(dom, fn){
  604. if (fn) fn(dom);
  605. };
  606. var _parseDom = function(dom, fn, sourceDoc){
  607. var domType = _typeOf(dom);
  608. if (domType==="string") _parseDomString(dom, fn, sourceDoc);
  609. if (domType==="element") _parseDomElement(dom, fn);
  610. if (domType==="array") for (var i=0; i<dom.length; i++) _parseDom(dom[i], fn, sourceDoc);
  611. };
  612. var _loadCss = function(modules, options, callback){
  613. var ms = (_typeOf(modules)==="array") ? modules : [modules];
  614. var op = (_typeOf(options)==="object") ? _getCssOptions(options) : _getCssOptions(null);
  615. var cb = (_typeOf(options)==="function") ? options : callback;
  616. var uuid = "css"+_uuid();
  617. var thisLoaded = [];
  618. if (op.sequence){
  619. _loadSequence(ms, cb, op, 0, thisLoaded, _loadSingleCss, uuid);
  620. }else{
  621. _loadDisarray(ms, cb, op, thisLoaded, _loadSingleCss, uuid);
  622. }
  623. };
  624. var _removeCss = function(modules, doc){
  625. var thisDoc = doc || document;
  626. var ms = (_typeOf(modules)==="array") ? modules : [modules];
  627. for (var i=0; i<ms.length; i++){
  628. var module = ms[i];
  629. var k = encodeURIComponent(module+(thisDoc.unid||""));
  630. var removeCss = _loadedCss[k];
  631. if (!removeCss) for (key in _loadedCss){
  632. if (_loadedCss[key].id==module){
  633. removeCss = _loadedCss[key];
  634. k = key;
  635. break;
  636. }
  637. }
  638. if (removeCss){
  639. delete _loadedCss[k];
  640. var styleNode = removeCss.doc.getElementById(removeCss.id);
  641. if (styleNode) styleNode.parentNode.removeChild(styleNode);
  642. removeCss = null;
  643. }
  644. }
  645. };
  646. this.o2.loadCss = _loadCss;
  647. this.o2.removeCss = _removeCss;
  648. if (window.Element) Element.prototype.loadCss = function(modules, options, callback){
  649. var op = (_typeOf(options)==="object") ? options : {};
  650. var cb = (_typeOf(options)==="function") ? options : callback;
  651. op.dom = this;
  652. _loadCss(modules, op, cb);
  653. };
  654. //load html
  655. _loadSingleHtml = function(module, callback, op){
  656. var url = module;
  657. var uid = _uuid();
  658. if (op.noCache) url = (url.indexOf("?")!==-1) ? url+"&v="+uid : url+"?v="+uid;
  659. var key = encodeURIComponent(url+op.doc.unid);
  660. if (!op.reload) if (_loadedHtml[key]){ if (callback)callback(_loadedHtml[key]); return; }
  661. var success = function(xhr){
  662. var htmlObj = {"module": module, "id": uid, "data": xhr.responseText, "doc": op.doc};
  663. _loadedHtml[key] = htmlObj;
  664. if (callback) callback(htmlObj);
  665. };
  666. var failure = function(){
  667. console.log("Error: load html module: "+module);
  668. if (callback) callback();
  669. };
  670. _xhr_get(url, success, failure);
  671. };
  672. var _injectHtml = function(op, data){
  673. if (op.bind) data = data.bindJson(op.bind);
  674. if (op.dom) _parseDom(op.dom, function(node){
  675. if (op.module){
  676. _parseModule(node, data, op);
  677. //node.insertAdjacentHTML(op.position, data);
  678. }else{
  679. node.insertAdjacentHTML(op.position, data);
  680. }
  681. }, op.doc);
  682. };
  683. var _parseModule = function(node, data, op){
  684. var dom = op.noConflict ? document.createElement("div") : node;
  685. if (op.noConflict){
  686. dom.insertAdjacentHTML("afterbegin", data);
  687. }else{
  688. dom.insertAdjacentHTML(op.position, data);
  689. }
  690. var els = dom.querySelectorAll("[data-o2-element],[data-o2-events]");
  691. for (var i=0; i<els.length; i++){
  692. var el = els.item(i);
  693. var name = el.getAttribute("data-o2-element");
  694. if (name) _bindToModule(op.module, el, name.toString());
  695. if (el.hasAttribute("data-o2-events")){
  696. var events = el.getAttribute("data-o2-events").toString();
  697. if (events) _bindToEvents(op.module, el, events);
  698. }
  699. }
  700. if (op.noConflict){
  701. var n = dom.firstElementChild;
  702. var newNode = node.insertAdjacentElement(op.position, n);
  703. nextNode = dom.firstElementChild;
  704. while (nextNode) {
  705. newNode = newNode.insertAdjacentElement("afterend", nextNode);
  706. nextNode = dom.firstElementChild;
  707. }
  708. dom.destroy();
  709. }
  710. };
  711. var _bindToEvents = function(m, node, events){
  712. var p = node.getParent("div[data-o2-$binddatadd]");
  713. var data = (p) ? _parseDataCache[p.dataset["o2-$binddataid"]]: null;
  714. var eventList = events.split(/\s*;\s*/);
  715. eventList.forEach(function(ev){
  716. var evs = ev.split(/\s*:\s*/);
  717. if (evs.length>1){
  718. node.addEventListener(evs[0], function(e){
  719. if (m[evs[1]]) m[evs[1]].apply(m, [e,data]);
  720. }, false);
  721. }
  722. });
  723. }
  724. var _bindToModule = function(m, node, name){
  725. // if (m[name]){
  726. // if (o2.typeOf(m[name])!=="array"){
  727. // var tmp = m[name];
  728. // m[name] = [];
  729. // m[name].push(tmp);
  730. // }
  731. // m[name].push(node);
  732. // }else{
  733. m[name] = node;
  734. // }
  735. };
  736. var _loadHtml = function(modules, options, callback){
  737. var ms = (_typeOf(modules)==="array") ? modules : [modules];
  738. var op = (_typeOf(options)==="object") ? _getHtmlOptions(options) : _getHtmlOptions(null);
  739. var cb = (_typeOf(options)==="function") ? options : callback;
  740. var thisLoaded = [];
  741. if (op.sequence){
  742. _loadSequence(ms, cb, op, 0, thisLoaded, _loadSingleHtml, null, function(html){ if (html) _injectHtml(op, html.data ); });
  743. }else{
  744. _loadDisarray(ms, cb, op, thisLoaded, _loadSingleHtml, null, function(html){ if (html) _injectHtml(op, html.data ); });
  745. }
  746. };
  747. this.o2.loadHtml = _loadHtml;
  748. if (window.Element) Element.prototype.loadHtml = function(modules, options, callback){
  749. var op = (_typeOf(options)==="object") ? options : {};
  750. var cb = (_typeOf(options)==="function") ? options : callback;
  751. op.dom = this;
  752. _loadHtml(modules, op, cb);
  753. };
  754. this.o2.injectHtml = function(html, op){
  755. _injectHtml(op, html);
  756. };
  757. if (window.Element) Element.prototype.injectHtml = function(html, options){
  758. var op = (_typeOf(options)==="object") ? options : {};
  759. op.dom = this;
  760. op.position = (options && options.position) || "beforeend"
  761. _injectHtml(op, html);
  762. };
  763. //load all
  764. _loadAll = function(modules, options, callback){
  765. //var ms = (_typeOf(modules)==="array") ? modules : [modules];
  766. var op = (_typeOf(options)==="object") ? _getAllOptions(options) : _getAllOptions(null);
  767. var cb = (_typeOf(options)==="function") ? options : callback;
  768. var ms, htmls, styles, sctipts;
  769. var _htmlLoaded=(!modules.html), _cssLoaded=(!modules.css), _jsLoaded=(!modules.js);
  770. var _checkloaded = function(){
  771. if (_htmlLoaded && _cssLoaded && _jsLoaded) if (cb) cb(htmls, styles, sctipts);
  772. };
  773. if (modules.html){
  774. _loadHtml(modules.html, op, function(h){
  775. htmls = h;
  776. _htmlLoaded = true;
  777. _checkloaded();
  778. });
  779. }
  780. if (modules.css){
  781. _loadCss(modules.css, op, function(s){
  782. styles = s;
  783. _cssLoaded = true;
  784. _checkloaded();
  785. });
  786. }
  787. if (modules.js){
  788. _load(modules.js, op, function(s){
  789. sctipts = s;
  790. _jsLoaded = true;
  791. _checkloaded();
  792. });
  793. }
  794. };
  795. this.o2.loadAll = _loadAll;
  796. if (window.Element) Element.prototype.loadAll = function(modules, options, callback){
  797. var op = (_typeOf(options)==="object") ? options : {};
  798. var cb = (_typeOf(options)==="function") ? options : callback;
  799. op.dom = this;
  800. _loadAll(modules, op, cb);
  801. };
  802. var _getIfBlockEnd = function(v){
  803. var rex = /(\{\{if\s+)|(\{\{\s*end if\s*\}\})/gmi;
  804. var rexEnd = /\{\{\s*end if\s*\}\}/gmi;
  805. var subs = 1;
  806. while ((match = rex.exec(v)) !== null) {
  807. var fullMatch = match[0];
  808. if (fullMatch.search(rexEnd)!==-1){
  809. subs--;
  810. if (subs==0) break;
  811. }else{
  812. subs++
  813. }
  814. }
  815. if (match) return {"codeIndex": match.index, "lastIndex": rex.lastIndex};
  816. return {"codeIndex": v.length-1, "lastIndex": v.length-1};
  817. }
  818. var _getEachBlockEnd = function(v){
  819. var rex = /(\{\{each\s+)|(\{\{\s*end each\s*\}\})/gmi;
  820. var rexEnd = /\{\{\s*end each\s*\}\}/gmi;
  821. var subs = 1;
  822. while ((match = rex.exec(v)) !== null) {
  823. var fullMatch = match[0];
  824. if (fullMatch.search(rexEnd)!==-1){
  825. subs--;
  826. if (subs==0) break;
  827. }else{
  828. subs++;
  829. }
  830. }
  831. if (match) return {"codeIndex": match.index, "lastIndex": rex.lastIndex};
  832. return {"codeIndex": v.length-1, "lastIndex": v.length-1};
  833. }
  834. var _parseDataCache = {};
  835. var _parseHtml = function(str, json, i){
  836. var v = str;
  837. if (i){
  838. var r = (Math.random()*1000000).toInt().toString();
  839. while (_parseDataCache[r]) r = (Math.random()*1000000).toInt().toString();
  840. _parseDataCache[r] = json;
  841. v = (i) ? "<div data-o2-$binddataid='"+r+"'>"+str+"</div>" : str;
  842. }
  843. var rex = /(\{\{\s*)[\s\S]*?(\s*\}\})/gmi;
  844. var match;
  845. while ((match = rex.exec(v)) !== null) {
  846. var fullMatch = match[0];
  847. var offset = 0;
  848. //if statement begin
  849. if (fullMatch.search(/\{\{if\s+/i)!==-1){
  850. //找到对应的end if
  851. var condition = fullMatch.replace(/^\{\{if\s*/i, "");
  852. condition = condition.replace(/\s*\}\}$/i, "");
  853. var flag = _jsonText(json, condition, "boolean");
  854. var tmpStr = v.substring(rex.lastIndex, v.length);
  855. var endIfIndex = _getIfBlockEnd(tmpStr);
  856. if (flag){ //if 为 true
  857. var parseStr = _parseHtml(tmpStr.substring(0, endIfIndex.codeIndex), json);
  858. var vLeft = v.substring(0, match.index);
  859. var vRight = v.substring(rex.lastIndex+endIfIndex.lastIndex, v.length);
  860. v = vLeft + parseStr + vRight;
  861. offset = parseStr.length - fullMatch.length;
  862. }else{
  863. v = v.substring(0, match.index) + v.substring(rex.lastIndex+endIfIndex.lastIndex, v.length);
  864. offset = 0-fullMatch.length;
  865. }
  866. }else if (fullMatch.search(/\{\{each\s+/)!==-1) { //each statement
  867. var itemString = fullMatch.replace(/^\{\{each\s*/, "");
  868. itemString = itemString.replace(/\s*\}\}$/, "");
  869. var eachValue = _jsonText(json, itemString, "object");
  870. var tmpEachStr = v.substring(rex.lastIndex, v.length);
  871. var endEachIndex = _getEachBlockEnd(tmpEachStr);
  872. var parseEachStr = tmpEachStr.substring(0, endEachIndex.codeIndex);
  873. var eachResult = "";
  874. if (eachValue && _typeOf(eachValue)==="array"){
  875. for (var i=0; i<eachValue.length; i++){
  876. eachValue[i]._ = json;
  877. eachResult += _parseHtml(parseEachStr, eachValue[i], i);
  878. }
  879. var eLeft = v.substring(0, match.index);
  880. var eRight = v.substring(rex.lastIndex+endEachIndex.lastIndex, v.length);
  881. v = eLeft + eachResult + eRight;
  882. offset = eachResult.length - fullMatch.length;
  883. }else{
  884. v = v.substring(0, match.index) + v.substring(rex.lastIndex+endEachIndex.lastIndex, v.length);
  885. offset = 0-fullMatch.length;
  886. }
  887. }else{ //text statement
  888. var text = fullMatch.replace(/^\{\{\s*/, "");
  889. text = text.replace(/\}\}\s*$/, "");
  890. var value = _jsonText(json, text);
  891. offset = value.length-fullMatch.length;
  892. v = v.substring(0, match.index) + value + v.substring(rex.lastIndex, v.length);
  893. }
  894. rex.lastIndex = rex.lastIndex + offset;
  895. }
  896. return v;
  897. };
  898. var _jsonText = function(json, text, type){
  899. try {
  900. var $ = json;
  901. var f = eval("(function($){\n return "+text+";\n})");
  902. returnValue = f.apply(json, [$]);
  903. if (returnValue===undefined) returnValue="";
  904. if (type==="boolean") return (!!returnValue);
  905. if (type==="object") return returnValue;
  906. returnValue = returnValue.toString();
  907. returnValue = returnValue.replace(/\&/g, "&amp;");
  908. returnValue = returnValue.replace(/>/g, "&gt;");
  909. returnValue = returnValue.replace(/</g, "&lt;");
  910. returnValue = returnValue.replace(/\"/g, "&quot;");
  911. return returnValue || "";
  912. }catch(e){
  913. if (type==="boolean") return false;
  914. if (type==="object") return null;
  915. return "";
  916. }
  917. };
  918. o2.bindJson = function(str, json){
  919. return _parseHtml(str, json);
  920. };
  921. String.prototype.bindJson = function(json){
  922. return _parseHtml(this, json);
  923. };
  924. })();
  925. /** ***** BEGIN LICENSE BLOCK *****
  926. * |------------------------------------------------------------------------------|
  927. * | O2OA 活力办公 创意无限 o2.core.js |
  928. * |------------------------------------------------------------------------------|
  929. * | Distributed under the AGPL license: |
  930. * |------------------------------------------------------------------------------|
  931. * | Copyright © 2018, o2oa.net, o2server.io O2 Team |
  932. * | All rights reserved. |
  933. * |------------------------------------------------------------------------------|
  934. *
  935. * This file is part of O2OA.
  936. *
  937. * O2OA is free software: you can redistribute it and/or modify
  938. * it under the terms of the GNU Affero General Public License as published by
  939. * the Free Software Foundation, either version 3 of the License, or
  940. * (at your option) any later version.
  941. *
  942. * O2OA is distributed in the hope that it will be useful,
  943. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  944. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  945. * GNU Affero General Public License for more details.
  946. *
  947. * You should have received a copy of the GNU General Public License
  948. * along with Foobar. If not, see <https://www.gnu.org/licenses/>.
  949. *
  950. * ***** END LICENSE BLOCK ******/
  951. (function (){
  952. var _Class = {
  953. create: function(options) {
  954. // var newClass = function() {
  955. // this.initialize.apply(this, arguments);
  956. // };
  957. return _copyPrototype(function() {
  958. return this.initialize.apply(this, arguments) || this;
  959. }, options);
  960. //return newClass;
  961. }
  962. };
  963. var _copyPrototype = function (currentNS, props){
  964. if (!props){return currentNS;}
  965. if (!currentNS){return currentNS;}
  966. if ((typeof currentNS).toLowerCase()==="object"){
  967. for (var prop in props){
  968. currentNS[prop] = props[prop];
  969. }
  970. }
  971. if ((typeof currentNS).toLowerCase()==="function"){
  972. for (var propfun in props){
  973. currentNS.prototype[propfun] = props[propfun];
  974. }
  975. }
  976. return currentNS;
  977. };
  978. var _loaded = {};
  979. var _requireJs = function(url, callback, async, compression, module){
  980. var key = encodeURIComponent(url);
  981. if (_loaded[key]){o2.runCallback(callback, "success", [module]); return "";}
  982. var jsPath = (compression || !this.o2.session.isDebugger) ? url.replace(/\.js/, ".min.js") : url;
  983. jsPath = (jsPath.indexOf("?")!==-1) ? jsPath+"&v="+this.o2.version.v : jsPath+"?v="+this.o2.version.v;
  984. var xhr = new Request({
  985. url: o2.filterUrl(jsPath), async: async, method: "get",
  986. onSuccess: function(){
  987. //try{
  988. _loaded[key] = true;
  989. o2.runCallback(callback, "success", [module]);
  990. //}catch (e){
  991. // o2.runCallback(callback, "failure", [e]);
  992. //}
  993. },
  994. onFailure: function(r){
  995. var rex = /lp\/.+\.js/;
  996. if (rex.test(url)){
  997. var zhcnUrl = url.replace(rex, "lp/zh-cn.js");
  998. if (zhcnUrl!==url){
  999. _requireJs(zhcnUrl, callback, async, compression, module)
  1000. }else{
  1001. o2.runCallback(callback, "failure", [r]);
  1002. }
  1003. }else{
  1004. o2.runCallback(callback, "failure", [r]);
  1005. }
  1006. }
  1007. });
  1008. xhr.send();
  1009. };
  1010. var _requireSingle = function(module, callback, async, compression){
  1011. if (o2.typeOf(module)==="array"){
  1012. _requireAppSingle(module, callback, async, compression);
  1013. }else{
  1014. module = module.replace("MWF.", "o2.");
  1015. var levels = module.split(".");
  1016. if (levels[levels.length-1]==="*") levels[levels.length-1] = "package";
  1017. levels.shift();
  1018. var o = o2;
  1019. var i = 0;
  1020. while (o && i<levels.length){
  1021. o = o[levels[i]];
  1022. i++
  1023. }
  1024. if (!o){
  1025. var jsPath = this.o2.session.path;
  1026. jsPath +="/"+levels.join("/")+".js";
  1027. var loadAsync = (async!==false);
  1028. _requireJs(jsPath, callback, loadAsync, compression, module);
  1029. }else{
  1030. o2.runCallback(callback, "success", [module]);
  1031. }
  1032. }
  1033. };
  1034. var _requireSequence = function(fun, module, thisLoaded, thisErrorLoaded, callback, async, compression){
  1035. var m = module.shift();
  1036. fun(m, {
  1037. "onSuccess": function(m){
  1038. thisLoaded.push(m);
  1039. o2.runCallback(callback, "every", [m]);
  1040. if (module.length){
  1041. _requireSequence(fun, module, thisLoaded, thisErrorLoaded, callback, async, compression);
  1042. }else{
  1043. if (thisErrorLoaded.length){
  1044. o2.runCallback(callback, "failure", [thisLoaded, thisErrorLoaded]);
  1045. }else{
  1046. o2.runCallback(callback, "success", [thisLoaded, thisErrorLoaded]);
  1047. }
  1048. }
  1049. },
  1050. "onFailure": function(){
  1051. thisErrorLoaded.push(module[i]);
  1052. o2.runCallback(callback, "failure", [thisLoaded, thisErrorLoaded]);
  1053. }
  1054. }, async, compression);
  1055. };
  1056. var _requireDisarray = function(fun, module, thisLoaded, thisErrorLoaded, callback, async, compression){
  1057. for (var i=0; i<module.length; i++){
  1058. fun(module[i], {
  1059. "onSuccess": function(m){
  1060. thisLoaded.push(m);
  1061. o2.runCallback(callback, "every", [m]);
  1062. if ((thisLoaded.length+thisErrorLoaded.length)===module.length){
  1063. if (thisErrorLoaded.length){
  1064. o2.runCallback(callback, "failure", [thisLoaded, thisErrorLoaded]);
  1065. }else{
  1066. o2.runCallback(callback, "success", [thisLoaded, thisErrorLoaded]);
  1067. }
  1068. }
  1069. },
  1070. "onFailure": function(){
  1071. thisErrorLoaded.push(module[i]);
  1072. o2.runCallback(callback, "failure", [thisLoaded, thisErrorLoaded]);
  1073. }
  1074. }, async, compression);
  1075. }
  1076. };
  1077. var _require = function(module, callback, async, sequence, compression){
  1078. var type = typeOf(module);
  1079. if (type==="array"){
  1080. var sql = !!sequence;
  1081. var thisLoaded = [];
  1082. var thisErrorLoaded = [];
  1083. if (sql){
  1084. _requireSequence(_requireSingle, module, thisLoaded, thisErrorLoaded, callback, async, compression);
  1085. }else{
  1086. _requireDisarray(_requireSingle, module, thisLoaded, thisErrorLoaded, callback, async, compression);
  1087. }
  1088. }
  1089. if (type==="string"){
  1090. _requireSingle(module, callback, async, compression);
  1091. }
  1092. };
  1093. var _requireAppSingle = function(modules, callback, async, compression){
  1094. var module = modules[0];
  1095. var clazz = modules[1];
  1096. var levels = module.split(".");
  1097. var o = o2.xApplication;
  1098. var i = 0;
  1099. while (o && i<levels.length){
  1100. o = o[levels[i]];
  1101. i++
  1102. }
  1103. if (o) o = o[clazz || "Main"];
  1104. if (!o){
  1105. //levels.shift();
  1106. var root = "x_component_"+levels.join("_");
  1107. var clazzName = clazz || "Main";
  1108. var path = "../"+root+"/"+clazzName.replace(/\./g, "/")+".js";
  1109. var loadAsync = (async!==false);
  1110. _requireJs(path, callback, loadAsync, compression);
  1111. }else{
  1112. o2.runCallback(callback, "success");
  1113. }
  1114. };
  1115. var _requireApp = function(module, clazz, callback, async, sequence, compression){
  1116. var type = typeOf(module);
  1117. if (type==="array"){
  1118. var sql = !!sequence;
  1119. var thisLoaded = [];
  1120. var thisErrorLoaded = [];
  1121. if (sql){
  1122. _requireSequence(_requireAppSingle, module, thisLoaded, thisErrorLoaded, callback, async, compression);
  1123. }else{
  1124. _requireDisarray(_requireAppSingle, module, thisLoaded, thisErrorLoaded, callback, async, compression);
  1125. }
  1126. }
  1127. if (type==="string"){
  1128. var modules = [module, clazz];
  1129. _requireAppSingle(modules, callback, async, compression);
  1130. }
  1131. };
  1132. JSON = window.JSON || {};
  1133. var _json = JSON;
  1134. _json.get = function(url, callback, async, nocache){
  1135. var loadAsync = (async !== false);
  1136. var noJsonCache = (nocache === true);
  1137. url = (url.indexOf("?")!==-1) ? url+"&v="+o2.version.v : url+"?v="+o2.version.v;
  1138. var json = null;
  1139. var res = new Request.JSON({
  1140. url: o2.filterUrl(url),
  1141. secure: false,
  1142. method: "get",
  1143. noCache: noJsonCache,
  1144. async: loadAsync,
  1145. withCredentials: true,
  1146. onSuccess: function(responseJSON, responseText){
  1147. json = responseJSON;
  1148. if (typeOf(callback).toLowerCase() === 'function'){
  1149. callback(responseJSON, responseText);
  1150. }else{
  1151. o2.runCallback(callback, "success", [responseJSON, responseText]);
  1152. }
  1153. }.bind(this),
  1154. onFailure: function(xhr){
  1155. o2.runCallback(callback, "requestFailure", [xhr]);
  1156. }.bind(this),
  1157. onError: function(text, error){
  1158. o2.runCallback(callback, "error", [text, error]);
  1159. }.bind(this)
  1160. });
  1161. res.send();
  1162. return json;
  1163. };
  1164. _json.getJsonp = function(url, callback, async, callbackKey){
  1165. var loadAsync = (async !== false);
  1166. var callbackKeyWord = callbackKey || "callback";
  1167. url = (url.indexOf("?")!==-1) ? url+"&v="+o2.version.v : url+"?v="+o2.version.v;
  1168. var res = new Request.JSONP({
  1169. url: o2.filterUrl(url),
  1170. secure: false,
  1171. method: "get",
  1172. noCache: true,
  1173. async: loadAsync,
  1174. callbackKey: callbackKeyWord,
  1175. onSuccess: function(responseJSON, responseText){
  1176. o2.runCallback(callback, "success",[responseJSON, responseText]);
  1177. }.bind(this),
  1178. onFailure: function(xhr){
  1179. o2.runCallback(callback, "requestFailure",[xhr]);
  1180. }.bind(this),
  1181. onError: function(text, error){
  1182. o2.runCallback(callback, "error",[text, error]);
  1183. }.bind(this)
  1184. });
  1185. res.send();
  1186. };
  1187. var _loadLP = function(name){
  1188. var jsPath = o2.session.path;
  1189. jsPath = jsPath+"/lp/"+name+".js";
  1190. var r = new Request({
  1191. url: o2.filterUrl(jsPath),
  1192. async: false,
  1193. method: "get",
  1194. onSuccess: function(responseText){
  1195. try{
  1196. Browser.exec(responseText);
  1197. }catch (e){}
  1198. },
  1199. onFailure: function(xhr){
  1200. if (name!="zh-cn"){
  1201. _loadLP("zh-cn");
  1202. }else{
  1203. throw "loadLP Error: "+xhr.responseText;
  1204. }
  1205. }
  1206. });
  1207. r.send();
  1208. };
  1209. var _cacheUrls = [
  1210. /jaxrs\/form\/workorworkcompleted\/.+/ig,
  1211. /jaxrs\/form\/.+/ig,
  1212. // /jaxrs\/script/ig,
  1213. /jaxrs\/script\/.+\/app\/.+\/imported/ig,
  1214. /jaxrs\/script\/portal\/.+\/name\/.+\/imported/ig,
  1215. /jaxrs\/script\/.+\/application\/.+\/imported/ig,
  1216. /jaxrs\/page\/.+\/portal\/.+/ig,
  1217. /jaxrs\/document\/.+/ig,
  1218. /jaxrs\/applicationdict\/.+/ig,
  1219. /jaxrs\/custom\/.+/ig,
  1220. /jaxrs\/definition\/idea.+/ig,
  1221. /jaxrs\/distribute\/assemble\/source\/.+/ig,
  1222. ///jaxrs\/form\/workorworkcompleted\/.+/ig,
  1223. // /jaxrs\/script/ig,
  1224. // /jaxrs\/script\/.+\/app\/.+\/imported/ig,
  1225. // /jaxrs\/script\/portal\/.+\/name\/.+\/imported/ig,
  1226. // /jaxrs\/script\/.+\/application\/.+\/imported/ig,
  1227. // /jaxrs\/page\/.+\/portal\/.+/ig
  1228. // /jaxrs\/authentication/ig
  1229. // /jaxrs\/statement\/.*\/execute\/page\/.*\/size\/.*/ig
  1230. ];
  1231. // _restful_bak = function(method, address, data, callback, async, withCredentials, cache){
  1232. // var loadAsync = (async !== false);
  1233. // var credentials = (withCredentials !== false);
  1234. // address = (address.indexOf("?")!==-1) ? address+"&v="+o2.version.v : address+"?v="+o2.version.v;
  1235. // //var noCache = cache===false;
  1236. // var noCache = !cache;
  1237. //
  1238. //
  1239. // //if (Browser.name == "ie")
  1240. // if (_cacheUrls.length){
  1241. // for (var i=0; i<_cacheUrls.length; i++){
  1242. // _cacheUrls[i].lastIndex = 0;
  1243. // if (_cacheUrls[i].test(address)){
  1244. // noCache = false;
  1245. // break;
  1246. // }
  1247. // }
  1248. // }
  1249. // //var noCache = false;
  1250. // var res = new Request.JSON({
  1251. // url: o2.filterUrl(address),
  1252. // secure: false,
  1253. // method: method,
  1254. // emulation: false,
  1255. // noCache: noCache,
  1256. // async: loadAsync,
  1257. // withCredentials: credentials,
  1258. // onSuccess: function(responseJSON, responseText){
  1259. // // var xToken = this.getHeader("authorization");
  1260. // // if (!xToken) xToken = this.getHeader("x-token");
  1261. // var xToken = this.getHeader("x-token");
  1262. // if (xToken){
  1263. // if (window.layout){
  1264. // if (!layout.session) layout.session = {};
  1265. // layout.session.token = xToken;
  1266. // }
  1267. // }
  1268. // o2.runCallback(callback, "success", [responseJSON]);
  1269. // },
  1270. // onFailure: function(xhr){
  1271. // o2.runCallback(callback, "requestFailure", [xhr]);
  1272. // }.bind(this),
  1273. // onError: function(text, error){
  1274. // o2.runCallback(callback, "error", [text, error]);
  1275. // }.bind(this)
  1276. // });
  1277. //
  1278. // res.setHeader("Content-Type", "application/json; charset=utf-8");
  1279. // res.setHeader("Accept", "text/html,application/json,*/*");
  1280. // if (window.layout) {
  1281. // if (layout["debugger"]){
  1282. // res.setHeader("x-debugger", "true");
  1283. // }
  1284. // if (layout.session && layout.session.user){
  1285. // if (layout.session.user.token) {
  1286. // res.setHeader("x-token", layout.session.user.token);
  1287. // res.setHeader("authorization", layout.session.user.token);
  1288. // }
  1289. // }
  1290. // }
  1291. // //Content-Type application/x-www-form-urlencoded; charset=utf-8
  1292. // res.send(data);
  1293. // return res;
  1294. // };
  1295. _restful = function(method, address, data, callback, async, withCredentials, cache){
  1296. var loadAsync = (async !== false);
  1297. var credentials = (withCredentials !== false);
  1298. address = (address.indexOf("?")!==-1) ? address+"&v="+o2.version.v : address+"?v="+o2.version.v;
  1299. //var noCache = cache===false;
  1300. var noCache = !cache;
  1301. //if (Browser.name == "ie")
  1302. if (_cacheUrls.length){
  1303. for (var i=0; i<_cacheUrls.length; i++){
  1304. _cacheUrls[i].lastIndex = 0;
  1305. if (_cacheUrls[i].test(address)){
  1306. noCache = false;
  1307. break;
  1308. }
  1309. }
  1310. }
  1311. var useWebWorker = (window.layout && layout.config && layout.config.useWebWorker);
  1312. //var noCache = false;
  1313. if (!loadAsync || !useWebWorker){
  1314. var res;
  1315. var p = new Promise(function(s,f){
  1316. res = new Request.JSON({
  1317. url: o2.filterUrl(address),
  1318. secure: false,
  1319. method: method,
  1320. emulation: false,
  1321. noCache: noCache,
  1322. async: loadAsync,
  1323. withCredentials: credentials,
  1324. onSuccess: function(responseJSON, responseText){
  1325. // var xToken = this.getHeader("authorization");
  1326. // if (!xToken) xToken = this.getHeader("x-token");
  1327. var xToken = this.getHeader("x-token");
  1328. if (xToken){
  1329. if (window.layout){
  1330. if (!layout.session) layout.session = {};
  1331. layout.session.token = xToken;
  1332. }
  1333. }
  1334. return o2.runCallback(callback, "success", [responseJSON],null, s);
  1335. },
  1336. onFailure: function(xhr){
  1337. return o2.runCallback(callback, "requestFailure", [xhr], null, f);
  1338. }.bind(this),
  1339. onError: function(text, error){
  1340. return o2.runCallback(callback, "error", [text, error], null, f);
  1341. }.bind(this)
  1342. });
  1343. res.setHeader("Content-Type", "application/json; charset=utf-8");
  1344. res.setHeader("Accept", "text/html,application/json,*/*");
  1345. if (window.layout) {
  1346. if (layout["debugger"]){
  1347. res.setHeader("x-debugger", "true");
  1348. }
  1349. if (layout.session && layout.session.user){
  1350. if (layout.session.user.token) {
  1351. res.setHeader("x-token", layout.session.user.token);
  1352. res.setHeader("authorization", layout.session.user.token);
  1353. }
  1354. }
  1355. }
  1356. //Content-Type application/x-www-form-urlencoded; charset=utf-8
  1357. res.send(data);
  1358. }.bind(this));
  1359. //var oReturn = (callback.success && callback.success.isAG) ? callback.success : callback;
  1360. var oReturn = p;
  1361. oReturn.res = res;
  1362. return oReturn;
  1363. }else{
  1364. var workerMessage = {
  1365. method: method,
  1366. noCache: noCache,
  1367. loadAsync: loadAsync,
  1368. credentials: credentials,
  1369. address: o2.filterUrl(address),
  1370. body: data,
  1371. debug: (window.layout && layout["debugger"]),
  1372. token: (window.layout && layout.session && layout.session.user) ? layout.session.user.token : ""
  1373. }
  1374. var actionWorker = new Worker("../o2_core/o2/actionWorker.js");
  1375. var p = new Promise(function(s,f){
  1376. actionWorker.onmessage = function(e) {
  1377. result = e.data;
  1378. if (result.type==="done"){
  1379. var xToken = result.data.xToken;
  1380. if (xToken){
  1381. if (window.layout){
  1382. if (!layout.session) layout.session = {};
  1383. layout.session.token = xToken;
  1384. }
  1385. }
  1386. o2.runCallback(callback, "success", [result.data], null, s);
  1387. }else{
  1388. o2.runCallback(callback, "failure", [result.data], null, f);
  1389. }
  1390. actionWorker.terminate();
  1391. }
  1392. actionWorker.postMessage(workerMessage);
  1393. }.bind(this));
  1394. //var oReturn = (callback.success && callback.success.addResolve) ? callback.success : callback;
  1395. var oReturn = p;
  1396. oReturn.actionWorker = actionWorker;
  1397. return oReturn;
  1398. //return callback;
  1399. }
  1400. //return res;
  1401. };
  1402. var _release = function(o){
  1403. var type = typeOf(o);
  1404. switch (type){
  1405. case "object":
  1406. for (var k in o){
  1407. //if (o[k] && o[k].destroy) o[k].destroy();
  1408. o[k] = null;
  1409. }
  1410. break;
  1411. case "array":
  1412. for (var i=0; i< o.length; i++){
  1413. _release(o[i]);
  1414. if (o[i]) o[i] = null;
  1415. }
  1416. break;
  1417. }
  1418. };
  1419. var _defineProperties = Object.defineProperties || function (obj, properties) {
  1420. function convertToDescriptor(desc) {
  1421. function hasProperty(obj, prop) {
  1422. return Object.prototype.hasOwnProperty.call(obj, prop);
  1423. }
  1424. function isCallable(v) {
  1425. // NB: modify as necessary if other values than functions are callable.
  1426. return typeof v === "function";
  1427. }
  1428. if (typeof desc !== "object" || desc === null)
  1429. throw new TypeError("bad desc");
  1430. var d = {};
  1431. if (hasProperty(desc, "enumerable"))
  1432. d.enumerable = !!desc.enumerable;
  1433. if (hasProperty(desc, "configurable"))
  1434. d.configurable = !!desc.configurable;
  1435. if (hasProperty(desc, "value"))
  1436. d.value = desc.value;
  1437. if (hasProperty(desc, "writable"))
  1438. d.writable = !!desc.writable;
  1439. if (hasProperty(desc, "get")) {
  1440. var g = desc.get;
  1441. if (!isCallable(g) && typeof g !== "undefined")
  1442. throw new TypeError("bad get");
  1443. d.get = g;
  1444. }
  1445. if (hasProperty(desc, "set")) {
  1446. var s = desc.set;
  1447. if (!isCallable(s) && typeof s !== "undefined")
  1448. throw new TypeError("bad set");
  1449. d.set = s;
  1450. }
  1451. if (("get" in d || "set" in d) && ("value" in d || "writable" in d))
  1452. throw new TypeError("identity-confused descriptor");
  1453. return d;
  1454. }
  1455. if (typeof obj !== "object" || obj === null)
  1456. throw new TypeError("bad obj");
  1457. properties = Object(properties);
  1458. var keys = Object.keys(properties);
  1459. var descs = [];
  1460. for (var j = 0; j < keys.length; j++)
  1461. descs.push([keys[j], convertToDescriptor(properties[keys[j]])]);
  1462. for (var i = 0; i < descs.length; i++){
  1463. if (Object.defineProperty && (Browser.name=="ie" && Browser.version!=8)){
  1464. Object.defineProperty(obj, descs[i][0], descs[i][1]);
  1465. }else{
  1466. if (descs[i][1].value) obj[descs[i][0]] = descs[i][1].value;
  1467. if (descs[i][1].get) obj["get"+descs[i][0].capitalize()] = descs[i][1].get;
  1468. if (descs[i][1].set) obj["set"+descs[i][0].capitalize()] = descs[i][1].set;
  1469. }
  1470. }
  1471. return obj;
  1472. };
  1473. if (!Array.prototype.findIndex) {
  1474. Object.defineProperty(Array.prototype, 'findIndex', {
  1475. value: function(predicate) {
  1476. if (this == null) {
  1477. throw new TypeError('"this" is null or not defined');
  1478. }
  1479. var o = Object(this);
  1480. var len = o.length >>> 0;
  1481. if (typeof predicate !== 'function') {
  1482. throw new TypeError('predicate must be a function');
  1483. }
  1484. var thisArg = arguments[1];
  1485. var k = 0;
  1486. while (k < len) {
  1487. var kValue = o[k];
  1488. if (predicate.call(thisArg, kValue, k, o)) {
  1489. return k;
  1490. }
  1491. k++;
  1492. }
  1493. return -1;
  1494. }
  1495. });
  1496. }
  1497. if (!Array.prototype.find) {
  1498. Object.defineProperty(Array.prototype, 'find', {
  1499. value: function(predicate) {
  1500. if (this == null) {
  1501. throw new TypeError('"this" is null or not defined');
  1502. }
  1503. var o = Object(this);
  1504. var len = o.length >>> 0;
  1505. if (typeof predicate !== 'function') {
  1506. throw new TypeError('predicate must be a function');
  1507. }
  1508. var thisArg = arguments[1];
  1509. var k = 0;
  1510. while (k < len) {
  1511. var kValue = o[k];
  1512. if (predicate.call(thisArg, kValue, k, o)) {
  1513. return kValue;
  1514. }
  1515. k++;
  1516. }
  1517. return undefined;
  1518. }
  1519. });
  1520. }
  1521. var _txt = function(v){
  1522. var t = v.replace(/\</g, "&lt;");
  1523. t = t.replace(/\</g, "&gt;");
  1524. return t;
  1525. };
  1526. this.o2.Class = _Class;
  1527. this.o2.require = _require;
  1528. this.o2.requireApp = _requireApp;
  1529. this.o2.JSON = _json;
  1530. this.o2.loadLP = _loadLP;
  1531. this.o2.restful = _restful;
  1532. this.o2.release = _release;
  1533. this.o2.defineProperties = _defineProperties;
  1534. this.o2.txt = _txt;
  1535. Object.repeatArray = function(o, count){
  1536. var arr = [];
  1537. for (var i=0; i<count; i++){
  1538. arr.push(o)
  1539. }
  1540. return arr;
  1541. }
  1542. // Date.implement({
  1543. // "getFromServer": function(callback){
  1544. // if (callback){
  1545. // o2.Actions.get("x_program_center").echo(function(json){
  1546. // d = Date.parse(json.data.serverTime);
  1547. // callback(d);
  1548. // });
  1549. // }else{
  1550. // var d;
  1551. // o2.Actions.get("x_program_center").echo(function(json){
  1552. // d = Date.parse(json.data.serverTime);
  1553. // }, null, false);
  1554. // return d;
  1555. // }
  1556. // }
  1557. // });
  1558. Date.getFromServer = function(async){
  1559. var d;
  1560. var cb = ((async && o2.typeOf(async)=="function") ? async : null) || function(json){
  1561. //var cb = function(json){
  1562. d = Date.parse(json.data.serverTime);
  1563. return d;
  1564. };
  1565. var promise = o2.Actions.get("x_program_center").echo(cb, null, !!async);
  1566. return (!!async) ? promise : d;
  1567. // if (callback){
  1568. // o2.Actions.get("x_program_center").echo(function(json){
  1569. // d = Date.parse(json.data.serverTime);
  1570. // o2.runCallback(callback, "success", [d]);
  1571. // });
  1572. // }else{
  1573. // var d;
  1574. // o2.Actions.get("x_program_center").echo(function(json){
  1575. // d = Date.parse(json.data.serverTime);
  1576. // }, null, false);
  1577. // return d;
  1578. // }
  1579. };
  1580. // Object.appendChain = function(oChain, oProto) {
  1581. // if (arguments.length < 2) {
  1582. // throw new TypeError('Object.appendChain - Not enough arguments');
  1583. // }
  1584. // if (typeof oProto === 'number' || typeof oProto === 'boolean') {
  1585. // throw new TypeError('second argument to Object.appendChain must be an object or a string');
  1586. // }
  1587. //
  1588. // var oNewProto = oProto,
  1589. // oReturn,
  1590. // o2nd,
  1591. // oLast;
  1592. //
  1593. // oReturn = o2nd = oLast = oChain instanceof this ? oChain : new oChain.constructor(oChain);
  1594. //
  1595. // for (var o1st = this.getPrototypeOf(o2nd);
  1596. // o1st !== Object.prototype && o1st !== Function.prototype;
  1597. // o1st = this.getPrototypeOf(o2nd)
  1598. // ) {
  1599. // o2nd = o1st;
  1600. // }
  1601. //
  1602. // if (oProto.constructor === String) {
  1603. // oNewProto = Function.prototype;
  1604. // oReturn = Function.apply(null, Array.prototype.slice.call(arguments, 1));
  1605. // oReturn = oReturn.bind(oLast);
  1606. // this.setPrototypeOf(oReturn, oLast);
  1607. // }
  1608. //
  1609. // this.setPrototypeOf(o2nd, oNewProto);
  1610. // return oReturn;
  1611. // }
  1612. // user promise
  1613. // var _AsyncGeneratorPrototype = _Class.create({
  1614. // initialize: function(resolve, reject, name){
  1615. // this.isAG = true;
  1616. // this.name = name || "";
  1617. // this._createSuccess();
  1618. // this._createFailure();
  1619. // if (resolve) this.success.resolve = resolve;
  1620. // if (reject) this.failure.reject = reject;
  1621. // },
  1622. // //$family: function(){ return "o2_async_function"; },
  1623. // _createSuccess: function(){
  1624. // var _self = this;
  1625. // this.success = function(){
  1626. // var result;
  1627. // if (_self.success.resolve) result = _self.success.resolve.apply(this, arguments);
  1628. // if (_self.success.resolveList){
  1629. // _self.success.resolveList.each(function(r){
  1630. // result = r(result, arguments) || result;
  1631. // });
  1632. // }
  1633. // _self.isSuccess = true;
  1634. // _self.result = result;
  1635. // _self.arg = arguments;
  1636. // return result;
  1637. // }
  1638. // },
  1639. // _createFailure: function(){
  1640. // var _self = this;
  1641. // this.failure = function(){
  1642. // var result;
  1643. // if (_self.failure.reject) result = _self.failure.reject.apply(this, arguments);
  1644. // if (_self.failure.rejectList){
  1645. // _self.failure.rejectList.each(function(r){
  1646. // result = r(result, arguments) || result;
  1647. // });
  1648. // }
  1649. // _self.isFailure = true;
  1650. // _self.result = result;
  1651. // _self.arg = arguments;
  1652. // return result;
  1653. // }
  1654. // },
  1655. // setResolve: function(resolve){
  1656. // if (!this.success) this._createSuccess();
  1657. // this.success.resolve = resolve;
  1658. // return this;
  1659. // },
  1660. // setReject: function(reject){
  1661. // if (!this.failure) this._createFailure();
  1662. // this.failure.reject = reject;
  1663. // return this;
  1664. // },
  1665. // addResolve: function(resolve){
  1666. // if (!this.success) this._createSuccess();
  1667. // if (resolve){
  1668. // if (this.isSuccess){
  1669. // this.result = resolve(this.result, this.arg);
  1670. // }else{
  1671. // if (!this.success.resolve){
  1672. // this.success.resolve = resolve;
  1673. // }else{
  1674. // if (!this.success.resolveList) this.success.resolveList = [];
  1675. // this.success.resolveList.push(resolve);
  1676. // }
  1677. // }
  1678. // }
  1679. // return this;
  1680. // },
  1681. // addReject: function(reject){
  1682. // if (!this.failure) this._createFailure();
  1683. // if (reject){
  1684. // if (this.isFailure){
  1685. // this.result = reject(this.result, this.arg);
  1686. // }else{
  1687. // if (!this.failure.reject){
  1688. // this.failure.reject = reject;
  1689. // }else{
  1690. // if (!this.failure.rejectList) this.failure.rejectList = [];
  1691. // this.failure.rejectList.push(reject);
  1692. // }
  1693. // }
  1694. // }
  1695. // return this;
  1696. // },
  1697. // then: function(resolve){
  1698. // return this.addResolve(resolve);
  1699. // },
  1700. // "catch": function(reject){
  1701. // return this.addReject(reject);
  1702. // },
  1703. // });
  1704. // var _AsyncGenerator = function(resolve, reject, name){
  1705. // var asyncGeneratorPrototype = new _AsyncGeneratorPrototype(resolve, reject, name);
  1706. // return Object.appendChain(asyncGeneratorPrototype, "if (this.success) this.success.apply(this, arguments);");
  1707. // }
  1708. //
  1709. // //@todo
  1710. // _AsyncGenerator.all = function(arr){
  1711. // var result = [];
  1712. // var ag = function (){
  1713. // return result;
  1714. // }.ag();
  1715. //
  1716. // if (o2.typeOf(arr) !== "array") arr = [arr];
  1717. //
  1718. // var count = arr.length;
  1719. // var check = function(){
  1720. // count--;
  1721. // if (count<=0)ag();
  1722. // }
  1723. //
  1724. // //window.setTimeout(function(){
  1725. // arr.forEach(function(a){
  1726. // if (typeOf(a)=="array"){
  1727. // o2.AG.all(a).then(function(v){
  1728. // result = result.concat(v);
  1729. // check();
  1730. // });
  1731. // }else{
  1732. // if (a && a.isAG){
  1733. // a.then(function(v){
  1734. // o2.AG.all(v).then(function(r){
  1735. // result = result.concat(r);
  1736. // check();
  1737. // });
  1738. // });
  1739. // }else{
  1740. // result.push(a);
  1741. // check();
  1742. // }
  1743. // }
  1744. // });
  1745. // //}, 0);
  1746. // return ag;
  1747. // }
  1748. //
  1749. // o2.AsyncGenerator = o2.AG = _AsyncGenerator;
  1750. //
  1751. // Function.prototype.ag = function(){
  1752. // return o2.AG(this);
  1753. // };
  1754. var _promiseAll = function(p){
  1755. if (o2.typeOf(p)=="array"){
  1756. if (p.some(function(e){ return (o2.typeOf(e.then)=="function") })){
  1757. return Promise.all(p);
  1758. }else{
  1759. return { "then": function(s){ s(p); return this;} };
  1760. }
  1761. }else{
  1762. if (p && o2.typeOf(p.then)=="function"){
  1763. return Promise.resolve(p);
  1764. }else{
  1765. return { "then": function(s){ s(p); return this;} };
  1766. }
  1767. }
  1768. // var method = (o2.typeOf(p)=="array") ? "all" : "resolve";
  1769. // return Promise[method](p);
  1770. }
  1771. o2.promiseAll = _promiseAll;
  1772. })();
  1773. o2.core = true;
  1774. /** ***** BEGIN LICENSE BLOCK *****
  1775. * |------------------------------------------------------------------------------|
  1776. * | O2OA 活力办公 创意无限 o2.more.js |
  1777. * |------------------------------------------------------------------------------|
  1778. * | Distributed under the AGPL license: |
  1779. * |------------------------------------------------------------------------------|
  1780. * | Copyright © 2018, o2oa.net, o2server.io O2 Team |
  1781. * | All rights reserved. |
  1782. * |------------------------------------------------------------------------------|
  1783. *
  1784. * This file is part of O2OA.
  1785. *
  1786. * O2OA is free software: you can redistribute it and/or modify
  1787. * it under the terms of the GNU Affero General Public License as published by
  1788. * the Free Software Foundation, either version 3 of the License, or
  1789. * (at your option) any later version.
  1790. *
  1791. * O2OA is distributed in the hope that it will be useful,
  1792. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  1793. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1794. * GNU Affero General Public License for more details.
  1795. *
  1796. * You should have received a copy of the GNU General Public License
  1797. * along with Foobar. If not, see <https://www.gnu.org/licenses/>.
  1798. *
  1799. * ***** END LICENSE BLOCK ******/
  1800. (function (){
  1801. o2.getCenterPosition = function(el, width, height){
  1802. var elPositon = $(el).getPosition();
  1803. var elSize = $(el).getSize();
  1804. var node = $("layout");
  1805. var size = (node) ? $(node).getSize() : $(document.body).getSize();
  1806. var top = (elPositon.y+elSize.y)/2 - (height/2);
  1807. var left = (elPositon.x+elSize.x)/2-(width/2);
  1808. if ((left+width)>size.x){
  1809. left = size.x-width-10;
  1810. }
  1811. if ((top+height)>size.y){
  1812. top = size.y-height-10;
  1813. }
  1814. return {"x": left, "y": top};
  1815. };
  1816. o2.getMarkSize = function(node){
  1817. var size;
  1818. if (!node){
  1819. size = $(document.body).getSize();
  1820. var winSize = $(window).getSize();
  1821. var height = size.y;
  1822. var width = size.x;
  1823. if (height<winSize.y) height = winSize.y;
  1824. if (width<winSize.x) width = winSize.x;
  1825. return {x: size.x, y: height};
  1826. }else{
  1827. size = $(node).getSize();
  1828. return {x: size.x, y: size.y};
  1829. }
  1830. };
  1831. o2.json = function(jsonString, fun){
  1832. var obj = JSON.decode(jsonString);
  1833. var p = fun.split(".");
  1834. var tmp = obj;
  1835. p.each(function(item){
  1836. if (item.indexOf("[")!==-1){
  1837. var x = item.split("[");
  1838. var i = parseInt(x[1].substr(0, x[1].indexOf("]")));
  1839. tmp = tmp[x[0]][i];
  1840. }else{
  1841. tmp = tmp[item];
  1842. }
  1843. });
  1844. return tmp;
  1845. };
  1846. o2.getHTMLTemplate = function(url, callback, async){
  1847. var loadAsync = (async !== false);
  1848. var res = new Request.HTML({
  1849. url: url,
  1850. async: loadAsync,
  1851. method: "get",
  1852. onSuccess: function(responseTree, responseElements, responseHTML, responseJavaScript){
  1853. o2.runCallback(callback, "success", [responseTree, responseElements, responseHTML, responseJavaScript]);
  1854. }.bind(this),
  1855. onFailure: function(xhr){
  1856. o2.runCallback(callback, "requestFailure", [xhr]);
  1857. }
  1858. });
  1859. res.send();
  1860. };
  1861. o2.getRequestText = function(url, callback, async){
  1862. var loadAsync = (async !== false);
  1863. url = (url.indexOf("?")!==-1) ? url+"&v="+o2.version.v : url+"?v="+o2.version.v;
  1864. var res = new Request({
  1865. url: url,
  1866. async: loadAsync,
  1867. method: "get",
  1868. onSuccess: function(responseText, responseXML){
  1869. o2.runCallback(callback, "success",[responseText, responseXML]);
  1870. }.bind(this),
  1871. onFailure: function(xhr){
  1872. o2.runCallback(callback, "requestFailure",[xhr]);
  1873. }
  1874. });
  1875. res.send();
  1876. };
  1877. o2.encodeJsonString = function(str){
  1878. var tmp = [str];
  1879. var dataStr = (JSON.encode(tmp));
  1880. return dataStr.substr(2, dataStr.length-4);
  1881. };
  1882. o2.decodeJsonString = function(str){
  1883. var tmp = "[\""+str+"\"]";
  1884. var dataObj = (JSON.decode(tmp));
  1885. return dataObj[0];
  1886. };
  1887. o2.getTextSize = function(text, styles){
  1888. var tmpSpan = new Element("span", {
  1889. "text": text,
  1890. "styles": styles
  1891. }).inject($(document.body));
  1892. var size = tmpSpan.getSize();
  1893. tmpSpan.destroy();
  1894. return size;
  1895. };
  1896. o2.getCenter = function(size, target, offset){
  1897. if (!target) target = document.body;
  1898. var targetSize = target.getSize();
  1899. var targetPosition = target.getPosition(offset);
  1900. var targetScroll = target.getScroll();
  1901. var x = targetSize.x/2;
  1902. var y = targetSize.y/2;
  1903. x = x-(size.x/2);
  1904. y = y-(size.y/2);
  1905. x = x+targetPosition.x;
  1906. y = y+targetPosition.y;
  1907. x = x+targetScroll.x;
  1908. y = y+targetScroll.y;
  1909. return {"x": x, "y": y};
  1910. };
  1911. o2.getEPointer = function(e){
  1912. var x = 0;
  1913. var y = 0;
  1914. if (typeOf(e)=="element"){
  1915. var position = e.getPosition(this.content);
  1916. x = position.x;
  1917. y = position.y;
  1918. }else{
  1919. if (Browser.name=="firefox"){
  1920. x = parseFloat(e.event.clientX || e.event.x);
  1921. y = parseFloat(e.event.clientY || e.event.y);
  1922. }else{
  1923. x = parseFloat(e.event.x);
  1924. y = parseFloat(e.event.y);
  1925. }
  1926. if (e.target){
  1927. var position = e.target.getPosition(this.content);
  1928. x = position.x;
  1929. y = position.y;
  1930. }
  1931. // }
  1932. }
  1933. return {"x": x, "y": y};
  1934. };
  1935. o2.getParent = function(node, tag){
  1936. var pNode = node.parentElement;
  1937. while(pNode && pNode.tagName.toString().toLowerCase() !== tag.toString().toLowerCase()){
  1938. pNode = pNode.parentElement;
  1939. }
  1940. return pNode;
  1941. };
  1942. o2.getOffset = function(evt){
  1943. if (Browser.name==="firefox"){
  1944. return {
  1945. "offsetX": evt.layerX,
  1946. "offsetY": evt.layerY
  1947. };
  1948. }else{
  1949. return {
  1950. "offsetX": evt.offsetX,
  1951. "offsetY": evt.offsetY
  1952. }
  1953. }
  1954. };
  1955. if (String.implement) String.implement({
  1956. "getAllIndexOf": function(str){
  1957. var idxs= [];
  1958. var idx = this.indexOf(str);
  1959. while (idx !== -1){
  1960. idxs.push(idx);
  1961. idx = this.indexOf(str, idx+1);
  1962. }
  1963. return idxs;
  1964. }
  1965. });
  1966. if (Array.implement) Array.implement({
  1967. "trim": function(){
  1968. var arr = [];
  1969. this.each(function(v){
  1970. if (v) arr.push(v);
  1971. });
  1972. return arr;
  1973. },
  1974. "isIntersect": function(arr){
  1975. return this.some(function(item){ return (arr.indexOf(item)!==-1); })
  1976. }
  1977. });
  1978. if (!Array.prototype.find){
  1979. if (Array.implement) Array.implement({
  1980. "find": this.find || function(callback, thisArg){
  1981. for (var i=0; i<this.length; i++){
  1982. if (callback.apply((thisArg || this), this[i], i, this)){
  1983. return this[i];
  1984. }
  1985. }
  1986. return undefined;
  1987. }
  1988. });
  1989. }
  1990. if (window.Element && Element.implement) Element.implement({
  1991. "isIntoView": function() {
  1992. // var pNode = this.getParent();
  1993. // while (pNode && ((pNode.getScrollSize().y-(pNode.getComputedSize().height+1)<=0) || pNode.getStyle("overflow")==="visible")) pNode = pNode.getParent();
  1994. //
  1995. var pNode = this.getParentSrcollNode();
  1996. if (!pNode) pNode = document.body;
  1997. var size = pNode.getSize();
  1998. var srcoll = pNode.getScroll();
  1999. var p = (pNode == window) ? {"x":0, "y": 0} : this.getPosition(pNode);
  2000. var nodeSize = this.getSize();
  2001. //return (p.x-srcoll.x>=0 && p.y-srcoll.y>=0) && (p.x+nodeSize.x<size.x+srcoll.x && p.y+nodeSize.y<size.y+srcoll.y);
  2002. return (p.x-srcoll.x>=0 && p.y>=0) && (p.x+nodeSize.x<size.x+srcoll.x && p.y+nodeSize.y<size.y)
  2003. },
  2004. "appendHTML": function(html, where){
  2005. if (this.insertAdjacentHTML){
  2006. var whereText = "beforeEnd";
  2007. if (where==="before") whereText = "beforeBegin";
  2008. if (where==="after") whereText = "afterEnd";
  2009. if (where==="bottom") whereText = "beforeEnd";
  2010. if (where==="top") whereText = "afterBegin";
  2011. this.insertAdjacentHTML(whereText, html);
  2012. }else {
  2013. if (where==="bottom") this.innerHTML = this.innerHTML+html;
  2014. if (where==="top") this.innerHTML = html+this.innerHTML;
  2015. }
  2016. },
  2017. "positionTo": function(x,y){
  2018. var left = x.toFloat();
  2019. var top = y.toFloat();
  2020. var offsetNode = this.getOffsetParent();
  2021. if (offsetNode){
  2022. var offsetPosition = offsetNode.getPosition();
  2023. left = left-offsetPosition.x;
  2024. top = top-offsetPosition.y;
  2025. }
  2026. this.setStyles({"top": top, "left": left});
  2027. return this;
  2028. },
  2029. "getBorder": function(){
  2030. var positions = ["top", "left", "right", "bottom"];
  2031. var styles = ["color", "style", "width"];
  2032. var obj = {};
  2033. positions.each(function (position){
  2034. styles.each(function(style){
  2035. var key = "border-"+position+"-"+style;
  2036. obj[key] = this.getStyle(key);
  2037. }.bind(this));
  2038. }.bind(this));
  2039. return obj;
  2040. },
  2041. "isOutside": function(e){
  2042. var elementCoords = this.getCoordinates();
  2043. var targetCoords = this.getCoordinates();
  2044. if(((e.page.x < elementCoords.left || e.page.x > (elementCoords.left + elementCoords.width)) ||
  2045. (e.page.y < elementCoords.top || e.page.y > (elementCoords.top + elementCoords.height))) &&
  2046. ((e.page.x < targetCoords.left || e.page.x > (targetCoords.left + targetCoords.width)) ||
  2047. (e.page.y < targetCoords.top || e.page.y > (targetCoords.top + targetCoords.height))) ) return true;
  2048. return false;
  2049. },
  2050. "getAbsolutePosition":function(){
  2051. var styleLeft = 0;
  2052. var styleTop = 0;
  2053. var node = this;
  2054. styleLeft = node.offsetLeft;
  2055. styleTop = node.offsetTop;
  2056. node = node.parentElement;
  2057. while (node && node.tagName.toString().toLowerCase()!=="body"){
  2058. styleLeft += node.offsetLeft;
  2059. styleTop += node.offsetTop;
  2060. node = node.offsetParent;
  2061. }
  2062. return {x: styleLeft, y: styleTop};
  2063. },
  2064. "tweenScroll": function(to, time){
  2065. if (!this.tweenScrollQueue){
  2066. this.tweenScrollQueue = [];
  2067. }
  2068. if (this.tweenScrollQueue.length){
  2069. this.tweenScrollQueue.push(to);
  2070. }else{
  2071. this.tweenScrollQueue.push(to);
  2072. this.doTweenScrollQueue(time);
  2073. }
  2074. },
  2075. "doTweenScrollQueue": function(time){
  2076. if (this.tweenScrollQueue.length){
  2077. var i = this.tweenScrollQueue.length;
  2078. var to = this.tweenScrollQueue[this.tweenScrollQueue.length-1];
  2079. var scroll = this.getScroll();
  2080. var dy = to - scroll.y;
  2081. var step = dy/time;
  2082. var count = 0;
  2083. var move = 0;
  2084. var id = window.setInterval(function(){
  2085. this.scrollTo(0, scroll.y+count*step);
  2086. count++;
  2087. if (count>time){
  2088. window.clearInterval(id);
  2089. for (var x=1; x<=i; x++) this.tweenScrollQueue.shift();
  2090. if (this.tweenScrollQueue.length) this.doTweenScrollQueue(time);
  2091. }
  2092. }.bind(this), 1);
  2093. }
  2094. },
  2095. "isPointIn": function(px, py, offX, offY, el){
  2096. if (!offX) offX = 0;
  2097. if (!offY) offY = 0;
  2098. var position = this.getPosition(el);
  2099. var size = this.getSize();
  2100. return (position.x-offX<=px && position.x+size.x+offX>=px && position.y-offY<=py && position.y+size.y+offY>=py);
  2101. },
  2102. "isInPointInRect": function(sx, sy, ex, ey){
  2103. var position = this.getPosition();
  2104. var size = this.getSize();
  2105. var p1 = {"x": position.x, "y": position.y};
  2106. var p2 = {"x": position.x+size.x, "y": position.y};
  2107. var p3 = {"x": position.x+size.x, "y": position.y+size.y};
  2108. var p4 = {"x": position.x, "y": position.y+size.y};
  2109. var sp = {"x": Math.min(sx, ex), "y": Math.min(sy, ey)};
  2110. var ep = {"x": Math.max(sx, ex), "y": Math.max(sy, ey)};
  2111. if (p1.x>=sp.x && p1.y>=sp.y && p1.x<=ep.x && p1.y<=ep.y) return true;
  2112. if (p2.x>=sp.x && p2.y>=sp.y && p2.x<=ep.x && p2.y<=ep.y) return true;
  2113. if (p3.x>=sp.x && p3.y>=sp.y && p3.x<=ep.x && p3.y<=ep.y) return true;
  2114. if (p4.x>=sp.x && p4.y>=sp.y && p4.x<=ep.x && p4.y<=ep.y) return true;
  2115. if (p3.x>=sp.x && p3.y>=sp.y && p1.x<=sp.x && p1.y<=sp.y) return true;
  2116. if (p3.x>=ep.x && p3.y>=ep.y && p1.x<=ep.x && p1.y<=ep.y) return true;
  2117. if (p1.x<=sp.x && p2.x>=sp.x && p1.y>=sp.y && p4.y<=ep.y) return true;
  2118. if (p1.y<=sp.y && p4.y>=sp.y && p1.x>=sp.x && p2.x<=ep.x) return true;
  2119. return false;
  2120. },
  2121. "isOverlap": function(node){
  2122. var p = node.getPosition();
  2123. var s = node.getSize();
  2124. return this.isInPointInRect(p.x, p.y, p.x+s.x, p.y+s.y);
  2125. },
  2126. "getUsefulSize": function(){
  2127. var size = this.getSize();
  2128. var borderLeft = this.getStyle("border-left").toInt();
  2129. var borderBottom = this.getStyle("border-bottom").toInt();
  2130. var borderTop = this.getStyle("border-top").toInt();
  2131. var borderRight = this.getStyle("border-right").toInt();
  2132. var paddingLeft = this.getStyle("padding-left").toInt();
  2133. var paddingBottom = this.getStyle("padding-bottom").toInt();
  2134. var paddingTop = this.getStyle("padding-top").toInt();
  2135. var paddingRight = this.getStyle("padding-right").toInt();
  2136. var x = size.x-paddingLeft-paddingRight;
  2137. var y = size.y-paddingTop-paddingBottom;
  2138. return {"x": x, "y": y};
  2139. },
  2140. "clearStyles": function(isChild){
  2141. this.removeProperty("style");
  2142. if (isChild){
  2143. var subNode = this.getFirst();
  2144. while (subNode){
  2145. subNode.clearStyles(isChild);
  2146. subNode = subNode.getNext();
  2147. }
  2148. }
  2149. },
  2150. "maskIf": function(styles, click){
  2151. var style = {
  2152. "background-color": "#666666",
  2153. "opacity": 0.4,
  2154. "z-index":100
  2155. };
  2156. if (styles){
  2157. style = Object.merge(style, styles);
  2158. }
  2159. var position = this.getPosition(this.getOffsetParent());
  2160. this.mask({
  2161. "destroyOnHide": true,
  2162. "style": style,
  2163. "useIframeShim": true,
  2164. "iframeShimOptions": {"browsers": true},
  2165. "onShow": function(){
  2166. this.shim.shim.setStyles({
  2167. "opacity": 0,
  2168. "top": ""+position.y+"px",
  2169. "left": ""+position.x+"px"
  2170. });
  2171. },
  2172. "onClick": click
  2173. });
  2174. },
  2175. "scrollIn": function(where){
  2176. var wh = (where) ? where.toString().toLowerCase() : "center";
  2177. if (Browser.name=="ie" || Browser.name=="safari"){
  2178. var scrollNode = this.getParentSrcollNode();
  2179. var scrollFx = new Fx.Scroll(scrollNode);
  2180. var scroll = scrollNode.getScroll();
  2181. var size = scrollNode.getSize();
  2182. var thisSize = this.getComputedSize();
  2183. var p = this.getPosition(scrollNode);
  2184. if (wh=="start"){
  2185. var top = 0;
  2186. scrollFx.start(scroll.x, p.y-top+scroll.y);
  2187. }else if (wh=="end"){
  2188. var bottom = size.y-thisSize.totalHeight;
  2189. scrollFx.start(scroll.x, p.y-bottom+scroll.y);
  2190. }else{
  2191. var center = size.y/2-thisSize.totalHeight/2;
  2192. scrollFx.start(scroll.x, p.y-center+scroll.y);
  2193. }
  2194. }else{
  2195. if (wh!=="start" && wh!=="end") wh = "center"
  2196. this.scrollIntoView({"behavior": "smooth", "block": wh, "inline": "nearest"});
  2197. }
  2198. },
  2199. scrollToNode: function(el, where){
  2200. var scrollSize = this.getScrollSize();
  2201. if (!scrollSize.y) return true;
  2202. var wh = (where) ? where.toString().toLowerCase() : "bottom";
  2203. var node = $(el);
  2204. var size = node.getComputedSize();
  2205. var p = node.getPosition(this);
  2206. var thisSize = this.getComputedSize();
  2207. var scroll = this.getScroll();
  2208. if (wh==="top"){
  2209. var n = (p.y-thisSize.computedTop);
  2210. if (n<0) this.scrollTo(scroll.x, scroll.y+n);
  2211. n = (size.totalHeight+p.y-thisSize.computedTop)-thisSize.height;
  2212. if (n>0) this.scrollTo(scroll.x, scroll.y+n);
  2213. }else{
  2214. var n = (size.totalHeight+p.y-thisSize.computedTop)-thisSize.height;
  2215. if (n>0) this.scrollTo(scroll.x, scroll.y+n);
  2216. n = p.y-thisSize.computedTop;
  2217. if (n<0) this.scrollTo(scroll.x, scroll.y+n);
  2218. }
  2219. },
  2220. "getInnerStyles": function(){
  2221. var styles = {};
  2222. style = this.get("style");
  2223. if (style){
  2224. var styleArr = style.split(/\s*\;\s*/g);
  2225. styleArr.each(function(s){
  2226. if (s){
  2227. var sarr = s.split(/\s*\:\s*/g);
  2228. styles[sarr[0]] = (sarr.length>1) ? sarr[1]: ""
  2229. }
  2230. }.bind(this));
  2231. }
  2232. return styles;
  2233. },
  2234. "getInnerProperties": function(){
  2235. var properties = {};
  2236. if (this.attributes.length){
  2237. for (var i=0; i<this.attributes.length; i++){
  2238. properties[this.attributes[i].nodeName] = this.attributes[i].nodeValue;
  2239. }
  2240. }
  2241. return properties;
  2242. },
  2243. "getZIndex": function(){
  2244. var n = this;
  2245. var i=0;
  2246. while (n){
  2247. if (n.getStyle("position")==="absolute"){
  2248. var idx = n.getStyle("z-index");
  2249. i = (idx && idx.toFloat()>i) ? idx.toFloat()+1 : 0;
  2250. break;
  2251. }
  2252. n = n.getParent();
  2253. }
  2254. return i;
  2255. },
  2256. "getParentSrcollNode": function(){
  2257. var node = this.getParent();
  2258. while (node && (node.getScrollSize().y-2<=node.getSize().y || (node.getStyle("overflow")!=="auto" && node.getStyle("overflow-y")!=="auto"))){
  2259. node = node.getParent();
  2260. }
  2261. return node || null;
  2262. },
  2263. "getEdgeHeight": function(notMargin){
  2264. var h = 0;
  2265. h += (this.getStyle("border-top-width").toFloat() || 0)+ (this.getStyle("border-bottom-width").toFloat() || 0);
  2266. h += (this.getStyle("padding-top").toFloat() || 0)+ (this.getStyle("padding-bottom").toFloat() || 0);
  2267. if (!notMargin) h += (this.getStyle("margin-top").toFloat() || 0)+ (this.getStyle("margin-bottom").toFloat() || 0);
  2268. return h;
  2269. },
  2270. "getEdgeWidth": function(notMargin){
  2271. var h = 0;
  2272. h += (this.getStyle("border-left-width").toFloat() || 0)+ (this.getStyle("border-right-width").toFloat() || 0);
  2273. h += (this.getStyle("padding-left").toFloat() || 0)+ (this.getStyle("padding-right").toFloat() || 0);
  2274. if (!notMargin) h += (this.getStyle("margin-left").toFloat() || 0)+ (this.getStyle("margin-right").toFloat() || 0);
  2275. return h;
  2276. }
  2277. });
  2278. Object.copy = function(from, to){
  2279. Object.each(from, function(value, key){
  2280. switch (typeOf(value)){
  2281. case "object":
  2282. if (!to[key]) to[key]={};
  2283. Object.copy(value, to[key]);
  2284. break;
  2285. default:
  2286. to[key] = value;
  2287. }
  2288. });
  2289. };
  2290. if (window.JSON) JSON.format = JSON.encode;
  2291. if (window.Slick) {
  2292. Slick.definePseudo('src', function (value) {
  2293. return Element.get(this, "src").indexOf(value) !== -1;
  2294. });
  2295. Slick.definePseudo('srcarr', function (value) {
  2296. var vList = value.split(",");
  2297. var src = Element.get(this, "src");
  2298. var flag = false;
  2299. for (var i = 0; i < vList.length; i++) {
  2300. if (src.indexOf(vList[i]) !== -1) {
  2301. flag = true;
  2302. break;
  2303. }
  2304. }
  2305. return flag;
  2306. });
  2307. Slick.definePseudo('ahref', function (value) {
  2308. var href = Element.get(this, "href");
  2309. if (!href) href = "";
  2310. href = href.toString().toLowerCase();
  2311. return (href.indexOf(value) !== -1);
  2312. });
  2313. Slick.definePseudo('rowspanBefore', function (line) {
  2314. var tr = MWF.getParent(this, "tr");
  2315. var rowspan = this.get("rowspan").toInt() || 1;
  2316. var currentRowIndex = tr.rowIndex.toInt();
  2317. return rowspan > 1 && currentRowIndex < line.toInt() && currentRowIndex + rowspan - 1 >= line;
  2318. });
  2319. Slick.definePseudo('rowspan', function () {
  2320. var rowspan = this.get("rowspan").toInt() || 1;
  2321. return rowspan > 1;
  2322. });
  2323. Slick.definePseudo('colspanBefore', function (col) {
  2324. var tr = MWF.getParent(this, "tr");
  2325. var colspan = this.get("colspan").toInt() || 1;
  2326. var currentColIndex = this.cellIndex.toInt();
  2327. return colspan > 1 && currentColIndex < col.toInt() && currentColIndex + colspan - 1 >= col.toInt();
  2328. });
  2329. Slick.definePseudo('colspan', function () {
  2330. var colspan = this.get("colspan").toInt() || 1;
  2331. return colspan > 1;
  2332. });
  2333. }
  2334. o2.common = o2.common || {};
  2335. o2.common.encodeHtml = function(str){
  2336. str = str.toString();
  2337. str = str.replace(/\&/g, "&amp;");
  2338. str = str.replace(/>/g, "&gt;");
  2339. str = str.replace(/</g, "&lt;");
  2340. return str.replace(/\"/g, "&quot;");
  2341. };
  2342. o2.common.getResponseTextPost = function(path, body, contentType){
  2343. var returnText = "";
  2344. var options = {
  2345. url: path,
  2346. async: false,
  2347. data: body,
  2348. method: "post",
  2349. onSuccess: function(esponseTree, responseElements, responseHTML, responseJavaScript){
  2350. returnText = responseHTML;
  2351. }
  2352. };
  2353. var r = new Request.HTML(options);
  2354. r.send();
  2355. return returnText;
  2356. };
  2357. o2.common.getResponseText = function(path){
  2358. var returnText = "";
  2359. var options = {
  2360. url: path,
  2361. async: false,
  2362. method: "get",
  2363. onSuccess: function(esponseTree, responseElements, responseHTML, responseJavaScript){
  2364. returnText = responseHTML;
  2365. }
  2366. };
  2367. var r = new Request.HTML(options);
  2368. r.send();
  2369. return returnText;
  2370. };
  2371. o2.common.toDate = function(str){
  2372. var tmpArr = str.split(" ");
  2373. if (!tmpArr[1]) tmpArr.push("0:0:0");
  2374. var dateArr = tmpArr[0].split("-");
  2375. var timeArr = tmpArr[1].split(":");
  2376. return new Date(dateArr[0],parseInt(dateArr[1])-1,dateArr[2],timeArr[0],timeArr[1],timeArr[2]);
  2377. };
  2378. o2.common.toDate = function(str){
  2379. var tmpArr = str.split(" ");
  2380. if (!tmpArr[1]) tmpArr.push("0:0:0");
  2381. var dateArr = tmpArr[0].split("-");
  2382. var timeArr = tmpArr[1].split(":");
  2383. return new Date(dateArr[0],parseInt(dateArr[1])-1,dateArr[2],timeArr[0],timeArr[1],timeArr[2]);
  2384. };
  2385. o2.grayscale = function(src, width, height, callback){
  2386. try {
  2387. var canvas = document.createElement('canvas');
  2388. var ctx = canvas.getContext('2d');
  2389. var imgObj = new Image();
  2390. imgObj.src = src;
  2391. canvas.width = width || imgObj.width;
  2392. canvas.height = height || imgObj.height;
  2393. ctx.drawImage(imgObj, 0, 0);
  2394. var imgPixels = ctx.getImageData(0, 0, canvas.width, canvas.height);
  2395. for(var y = 0; y < imgPixels.height; y++){
  2396. for(var x = 0; x < imgPixels.width; x++){
  2397. var i = (y * 4) * imgPixels.width + x * 4;
  2398. var avg = (imgPixels.data[i] + imgPixels.data[i + 1] + imgPixels.data[i + 2]) / 3;
  2399. imgPixels.data[i] = avg;
  2400. imgPixels.data[i + 1] = avg;
  2401. imgPixels.data[i + 2] = avg;
  2402. }
  2403. }
  2404. ctx.putImageData(imgPixels, 0, 0, 0, 0, imgPixels.width, imgPixels.height);
  2405. var src1 = canvas.toDataURL();
  2406. //var blob = canvas.toBlob();
  2407. canvas.destroy();
  2408. return {"status": "success", "src": src1};
  2409. }catch(e){
  2410. return {"status": "error", "src": src}
  2411. }
  2412. };
  2413. o2.eventPosition = function(e){
  2414. var x = 0;
  2415. var y = 0;
  2416. if (Browser.name=="firefox"){
  2417. x = parseFloat(e.event.clientX || e.event.x);
  2418. y = parseFloat(e.event.clientY || e.event.y);
  2419. }else{
  2420. x = parseFloat(e.event.x);
  2421. y = parseFloat(e.event.y);
  2422. }
  2423. return {"x": x, "y": y};
  2424. };
  2425. if (window.Browser){
  2426. if (Browser.name==="ie" && Browser.version<9){
  2427. Browser.ieuns = true;
  2428. }else if(Browser.name==="ie" && Browser.version<10){
  2429. Browser.iecomp = true;
  2430. }
  2431. if (Browser.iecomp){
  2432. o2.load("ie_adapter", null, false);
  2433. o2.session.isDebugger = true;
  2434. //layout["debugger"] = true;
  2435. }
  2436. o2.session.isMobile = (["mac", "win", "linux"].indexOf(Browser.Platform.name)===-1);
  2437. }
  2438. })();
  2439. o2.more = true;
  2440. //o2.addReady
  2441. (function(){
  2442. //dom ready
  2443. var _dom = {
  2444. ready: false,
  2445. loaded: false,
  2446. checks: [],
  2447. shouldPoll: false,
  2448. timer: null,
  2449. testElement: document.createElement('div'),
  2450. readys: [],
  2451. domready: function(){
  2452. clearTimeout(_dom.timer);
  2453. if (_dom.ready) return;
  2454. _dom.loaded = _dom.ready = true;
  2455. o2.removeListener(document, 'DOMContentLoaded', _dom.checkReady);
  2456. o2.removeListener(document, 'readystatechange', _dom.check);
  2457. _dom.onReady();
  2458. },
  2459. check: function(){
  2460. for (var i = _dom.checks.length; i--;) if (_dom.checks[i]() && window.MooTools && o2.core && o2.more){
  2461. _dom.domready();
  2462. return true;
  2463. }
  2464. return false;
  2465. },
  2466. poll: function(){
  2467. clearTimeout(_dom.timer);
  2468. if (!_dom.check()) _dom.timer = setTimeout(_dom.poll, 10);
  2469. },
  2470. /*<ltIE8>*/
  2471. // doScroll technique by Diego Perini http://javascript.nwbox.com/IEContentLoaded/
  2472. // testElement.doScroll() throws when the DOM is not ready, only in the top window
  2473. doScrollWorks: function(){
  2474. try {
  2475. _dom.testElement.doScroll();
  2476. return true;
  2477. } catch (e){}
  2478. return false;
  2479. },
  2480. /*</ltIE8>*/
  2481. onReady: function(){
  2482. for (var i=0; i<_dom.readys.length; i++){
  2483. this.readys[i].apply(window);
  2484. }
  2485. },
  2486. addReady: function(fn){
  2487. if (_dom.loaded){
  2488. if (fn) fn.apply(window);
  2489. }else{
  2490. if (fn) _dom.readys.push(fn);
  2491. }
  2492. return _dom;
  2493. },
  2494. checkReady: function(){
  2495. _dom.checks.push(function(){return true});
  2496. _dom.check();
  2497. }
  2498. };
  2499. var _loadO2 = function(){
  2500. (!o2.core) ? this.o2.load("o2.core", _dom.check) : _dom.check();
  2501. (!o2.more) ? this.o2.load("o2.more", _dom.check) : _dom.check();
  2502. };
  2503. o2.addListener(document, 'DOMContentLoaded', _dom.checkReady);
  2504. /*<ltIE8>*/
  2505. // If doScroll works already, it can't be used to determine domready
  2506. // e.g. in an iframe
  2507. if (_dom.testElement.doScroll && !_dom.doScrollWorks()){
  2508. _dom.checks.push(_dom.doScrollWorks);
  2509. _dom.shouldPoll = true;
  2510. }
  2511. /*</ltIE8>*/
  2512. if (document.readyState) _dom.checks.push(function(){
  2513. var state = document.readyState;
  2514. return (state == 'loaded' || state == 'complete');
  2515. });
  2516. if ('onreadystatechange' in document) o2.addListener(document, 'readystatechange', _dom.check);
  2517. else _dom.shouldPoll = true;
  2518. if (_dom.shouldPoll) _dom.poll();
  2519. if (!window.MooTools){
  2520. this.o2.load("mootools", function(){ _loadO2(); _dom.check(); });
  2521. }else{
  2522. _loadO2();
  2523. }
  2524. this.o2.addReady = function(fn){ _dom.addReady.call(_dom, fn); };
  2525. })();
  2526. //compatible
  2527. COMMON = {
  2528. "DOM":{},
  2529. "setContentPath": function(path){
  2530. COMMON.contentPath = path;
  2531. },
  2532. "JSON": o2.JSON,
  2533. "Browser": Browser,
  2534. "Class": o2.Class,
  2535. "XML": o2.xml,
  2536. "AjaxModule": {
  2537. "load": function(urls, callback, async, reload){
  2538. o2.load(urls, callback, reload, document);
  2539. },
  2540. "loadDom": function(urls, callback, async, reload){
  2541. o2.load(urls, callback, reload, document);
  2542. },
  2543. "loadCss": function(urls, callback, async, reload, sourceDoc){
  2544. o2.loadCss(urls, document.body, callback, reload, sourceDoc);
  2545. }
  2546. },
  2547. "Request": Request,
  2548. "typeOf": o2.typeOf
  2549. };
  2550. COMMON.Browser.Platform.isMobile = o2.session.isMobile;
  2551. COMMON.DOM.addReady = o2.addReady;
  2552. MWF = o2;
  2553. MWF.getJSON = o2.JSON.get;
  2554. MWF.getJSONP = o2.JSON.getJsonp;
  2555. MWF.defaultPath = o2.session.path;