| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517 |
- /* WebUploader 0.1.5 */ ! function(a, b) {
- var c, d = {},
- e = function(a, b) {
- var c, d, e;
- if("string" == typeof a) return h(a);
- for(c = [], d = a.length, e = 0; d > e; e++) c.push(h(a[e]));
- return b.apply(null, c)
- },
- f = function(a, b, c) {
- 2 === arguments.length && (c = b, b = null), e(b || [], function() {
- g(a, c, arguments)
- })
- },
- g = function(a, b, c) {
- var f, g = {
- exports: b
- };
- "function" == typeof b && (c.length || (c = [e, g.exports, g]), f = b.apply(null, c), void 0 !== f && (g.exports = f)), d[a] = g.exports
- },
- h = function(b) {
- var c = d[b] || a[b];
- if(!c) throw new Error("`" + b + "` is undefined");
- return c
- },
- i = function(a) {
- var b, c, e, f, g, h;
- h = function(a) {
- return a && a.charAt(0).toUpperCase() + a.substr(1)
- };
- for(b in d)
- if(c = a, d.hasOwnProperty(b)) {
- for(e = b.split("/"), g = h(e.pop()); f = h(e.shift());) c[f] = c[f] || {}, c = c[f];
- c[g] = d[b]
- }
- return a
- },
- j = function(c) {
- return a.__dollar = c, i(b(a, f, e))
- };
- "object" == typeof module && "object" == typeof module.exports ? module.exports = j() : "function" == typeof define && define.amd ? define(["jquery"], j) : (c = a.WebUploader, a.WebUploader = j(), a.WebUploader.noConflict = function() {
- a.WebUploader = c
- })
- }(window, function(a, b, c) {
- return b("dollar-third", [], function() {
- var b = a.__dollar || a.jQuery || a.Zepto;
- if(!b) throw new Error("jQuery or Zepto not found!");
- return b
- }), b("dollar", ["dollar-third"], function(a) {
- return a
- }), b("promise-third", ["dollar"], function(a) {
- return {
- Deferred: a.Deferred,
- when: a.when,
- isPromise: function(a) {
- return a && "function" == typeof a.then
- }
- }
- }), b("promise", ["promise-third"], function(a) {
- return a
- }), b("base", ["dollar", "promise"], function(b, c) {
- function d(a) {
- return function() {
- return h.apply(a, arguments)
- }
- }
- function e(a, b) {
- return function() {
- return a.apply(b, arguments)
- }
- }
- function f(a) {
- var b;
- return Object.create ? Object.create(a) : (b = function() {}, b.prototype = a, new b)
- }
- var g = function() {},
- h = Function.call;
- return {
- version: "0.1.5",
- $: b,
- Deferred: c.Deferred,
- isPromise: c.isPromise,
- when: c.when,
- browser: function(a) {
- var b = {},
- c = a.match(/WebKit\/([\d.]+)/),
- d = a.match(/Chrome\/([\d.]+)/) || a.match(/CriOS\/([\d.]+)/),
- e = a.match(/MSIE\s([\d\.]+)/) || a.match(/(?:trident)(?:.*rv:([\w.]+))?/i),
- f = a.match(/Firefox\/([\d.]+)/),
- g = a.match(/Safari\/([\d.]+)/),
- h = a.match(/OPR\/([\d.]+)/);
- return c && (b.webkit = parseFloat(c[1])), d && (b.chrome = parseFloat(d[1])), e && (b.ie = parseFloat(e[1])), f && (b.firefox = parseFloat(f[1])), g && (b.safari = parseFloat(g[1])), h && (b.opera = parseFloat(h[1])), b
- }(navigator.userAgent),
- os: function(a) {
- var b = {},
- c = a.match(/(?:Android);?[\s\/]+([\d.]+)?/),
- d = a.match(/(?:iPad|iPod|iPhone).*OS\s([\d_]+)/);
- return c && (b.android = parseFloat(c[1])), d && (b.ios = parseFloat(d[1].replace(/_/g, "."))), b
- }(navigator.userAgent),
- inherits: function(a, c, d) {
- var e;
- return "function" == typeof c ? (e = c, c = null) : e = c && c.hasOwnProperty("constructor") ? c.constructor : function() {
- return a.apply(this, arguments)
- }, b.extend(!0, e, a, d || {}), e.__super__ = a.prototype, e.prototype = f(a.prototype), c && b.extend(!0, e.prototype, c), e
- },
- noop: g,
- bindFn: e,
- log: function() {
- return a.console ? e(console.log, console) : g
- }(),
- nextTick: function() {
- return function(a) {
- setTimeout(a, 1)
- }
- }(),
- slice: d([].slice),
- guid: function() {
- var a = 0;
- return function(b) {
- for(var c = (+new Date).toString(32), d = 0; 5 > d; d++) c += Math.floor(65535 * Math.random()).toString(32);
- return(b || "wu_") + c + (a++).toString(32)
- }
- }(),
- formatSize: function(a, b, c) {
- var d;
- for(c = c || ["B", "K", "M", "G", "TB"];
- (d = c.shift()) && a > 1024;) a /= 1024;
- return("B" === d ? a : a.toFixed(b || 2)) + d
- }
- }
- }), b("mediator", ["base"], function(a) {
- function b(a, b, c, d) {
- return f.grep(a, function(a) {
- return !(!a || b && a.e !== b || c && a.cb !== c && a.cb._cb !== c || d && a.ctx !== d)
- })
- }
- function c(a, b, c) {
- f.each((a || "").split(h), function(a, d) {
- c(d, b)
- })
- }
- function d(a, b) {
- for(var c, d = !1, e = -1, f = a.length; ++e < f;)
- if(c = a[e], c.cb.apply(c.ctx2, b) === !1) {
- d = !0;
- break
- }
- return !d
- }
- var e, f = a.$,
- g = [].slice,
- h = /\s+/;
- return e = {
- on: function(a, b, d) {
- var e, f = this;
- return b ? (e = this._events || (this._events = []), c(a, b, function(a, b) {
- var c = {
- e: a
- };
- c.cb = b, c.ctx = d, c.ctx2 = d || f, c.id = e.length, e.push(c)
- }), this) : this
- },
- once: function(a, b, d) {
- var e = this;
- return b ? (c(a, b, function(a, b) {
- var c = function() {
- return e.off(a, c), b.apply(d || e, arguments)
- };
- c._cb = b, e.on(a, c, d)
- }), e) : e
- },
- off: function(a, d, e) {
- var g = this._events;
- return g ? a || d || e ? (c(a, d, function(a, c) {
- f.each(b(g, a, c, e), function() {
- delete g[this.id]
- })
- }), this) : (this._events = [], this) : this
- },
- trigger: function(a) {
- var c, e, f;
- return this._events && a ? (c = g.call(arguments, 1), e = b(this._events, a), f = b(this._events, "all"), d(e, c) && d(f, arguments)) : this
- }
- }, f.extend({
- installTo: function(a) {
- return f.extend(a, e)
- }
- }, e)
- }), b("uploader", ["base", "mediator"], function(a, b) {
- function c(a) {
- this.options = d.extend(!0, {}, c.options, a), this._init(this.options)
- }
- var d = a.$;
- return c.options = {}, b.installTo(c.prototype), d.each({
- upload: "start-upload",
- stop: "stop-upload",
- getFile: "get-file",
- getFiles: "get-files",
- addFile: "add-file",
- addFiles: "add-file",
- sort: "sort-files",
- removeFile: "remove-file",
- cancelFile: "cancel-file",
- skipFile: "skip-file",
- retry: "retry",
- isInProgress: "is-in-progress",
- makeThumb: "make-thumb",
- md5File: "md5-file",
- getDimension: "get-dimension",
- addButton: "add-btn",
- predictRuntimeType: "predict-runtime-type",
- refresh: "refresh",
- disable: "disable",
- enable: "enable",
- reset: "reset"
- }, function(a, b) {
- c.prototype[a] = function() {
- return this.request(b, arguments)
- }
- }), d.extend(c.prototype, {
- state: "pending",
- _init: function(a) {
- var b = this;
- b.request("init", a, function() {
- b.state = "ready", b.trigger("ready")
- })
- },
- option: function(a, b) {
- var c = this.options;
- return arguments.length > 1 ? void(d.isPlainObject(b) && d.isPlainObject(c[a]) ? d.extend(c[a], b) : c[a] = b) : a ? c[a] : c
- },
- getStats: function() {
- var a = this.request("get-stats");
- return a ? {
- successNum: a.numOfSuccess,
- progressNum: a.numOfProgress,
- cancelNum: a.numOfCancel,
- invalidNum: a.numOfInvalid,
- uploadFailNum: a.numOfUploadFailed,
- queueNum: a.numOfQueue,
- interruptNum: a.numofInterrupt
- } : {}
- },
- trigger: function(a) {
- var c = [].slice.call(arguments, 1),
- e = this.options,
- f = "on" + a.substring(0, 1).toUpperCase() + a.substring(1);
- return b.trigger.apply(this, arguments) === !1 || d.isFunction(e[f]) && e[f].apply(this, c) === !1 || d.isFunction(this[f]) && this[f].apply(this, c) === !1 || b.trigger.apply(b, [this, a].concat(c)) === !1 ? !1 : !0
- },
- destroy: function() {
- this.request("destroy", arguments), this.off()
- },
- request: a.noop
- }), a.create = c.create = function(a) {
- return new c(a)
- }, a.Uploader = c, c
- }), b("runtime/runtime", ["base", "mediator"], function(a, b) {
- function c(b) {
- this.options = d.extend({
- container: document.body
- }, b), this.uid = a.guid("rt_")
- }
- var d = a.$,
- e = {},
- f = function(a) {
- for(var b in a)
- if(a.hasOwnProperty(b)) return b;
- return null
- };
- return d.extend(c.prototype, {
- getContainer: function() {
- var a, b, c = this.options;
- return this._container ? this._container : (a = d(c.container || document.body), b = d(document.createElement("div")), b.attr("id", "rt_" + this.uid), b.css({
- position: "absolute",
- top: "0px",
- left: "0px",
- width: "1px",
- height: "1px",
- overflow: "hidden"
- }), a.append(b), a.addClass("webuploader-container"), this._container = b, this._parent = a, b)
- },
- init: a.noop,
- exec: a.noop,
- destroy: function() {
- this._container && this._container.remove(), this._parent && this._parent.removeClass("webuploader-container"), this.off()
- }
- }), c.orders = "html5,flash", c.addRuntime = function(a, b) {
- e[a] = b
- }, c.hasRuntime = function(a) {
- return !!(a ? e[a] : f(e))
- }, c.create = function(a, b) {
- var g, h;
- if(b = b || c.orders, d.each(b.split(/\s*,\s*/g), function() {
- return e[this] ? (g = this, !1) : void 0
- }), g = g || f(e), !g) throw new Error("Runtime Error");
- return h = new e[g](a)
- }, b.installTo(c.prototype), c
- }), b("runtime/client", ["base", "mediator", "runtime/runtime"], function(a, b, c) {
- function d(b, d) {
- var f, g = a.Deferred();
- this.uid = a.guid("client_"), this.runtimeReady = function(a) {
- return g.done(a)
- }, this.connectRuntime = function(b, h) {
- if(f) throw new Error("already connected!");
- return g.done(h), "string" == typeof b && e.get(b) && (f = e.get(b)), f = f || e.get(null, d), f ? (a.$.extend(f.options, b), f.__promise.then(g.resolve), f.__client++) : (f = c.create(b, b.runtimeOrder), f.__promise = g.promise(), f.once("ready", g.resolve), f.init(), e.add(f), f.__client = 1), d && (f.__standalone = d), f
- }, this.getRuntime = function() {
- return f
- }, this.disconnectRuntime = function() {
- f && (f.__client--, f.__client <= 0 && (e.remove(f), delete f.__promise, f.destroy()), f = null)
- }, this.exec = function() {
- if(f) {
- var c = a.slice(arguments);
- return b && c.unshift(b), f.exec.apply(this, c)
- }
- }, this.getRuid = function() {
- return f && f.uid
- }, this.destroy = function(a) {
- return function() {
- a && a.apply(this, arguments), this.trigger("destroy"), this.off(), this.exec("destroy"), this.disconnectRuntime()
- }
- }(this.destroy)
- }
- var e;
- return e = function() {
- var a = {};
- return {
- add: function(b) {
- a[b.uid] = b
- },
- get: function(b, c) {
- var d;
- if(b) return a[b];
- for(d in a)
- if(!c || !a[d].__standalone) return a[d];
- return null
- },
- remove: function(b) {
- delete a[b.uid]
- }
- }
- }(), b.installTo(d.prototype), d
- }), b("lib/dnd", ["base", "mediator", "runtime/client"], function(a, b, c) {
- function d(a) {
- a = this.options = e.extend({}, d.options, a), a.container = e(a.container), a.container.length && c.call(this, "DragAndDrop")
- }
- var e = a.$;
- return d.options = {
- accept: null,
- disableGlobalDnd: !1
- }, a.inherits(c, {
- constructor: d,
- init: function() {
- var a = this;
- a.connectRuntime(a.options, function() {
- a.exec("init"), a.trigger("ready")
- })
- }
- }), b.installTo(d.prototype), d
- }), b("widgets/widget", ["base", "uploader"], function(a, b) {
- function c(a) {
- if(!a) return !1;
- var b = a.length,
- c = e.type(a);
- return 1 === a.nodeType && b ? !0 : "array" === c || "function" !== c && "string" !== c && (0 === b || "number" == typeof b && b > 0 && b - 1 in a)
- }
- function d(a) {
- this.owner = a, this.options = a.options
- }
- var e = a.$,
- f = b.prototype._init,
- g = b.prototype.destroy,
- h = {},
- i = [];
- return e.extend(d.prototype, {
- init: a.noop,
- invoke: function(a, b) {
- var c = this.responseMap;
- return c && a in c && c[a] in this && e.isFunction(this[c[a]]) ? this[c[a]].apply(this, b) : h
- },
- request: function() {
- return this.owner.request.apply(this.owner, arguments)
- }
- }), e.extend(b.prototype, {
- _init: function() {
- var a = this,
- b = a._widgets = [],
- c = a.options.disableWidgets || "";
- return e.each(i, function(d, e) {
- (!c || !~c.indexOf(e._name)) && b.push(new e(a))
- }), f.apply(a, arguments)
- },
- request: function(b, d, e) {
- var f, g, i, j, k = 0,
- l = this._widgets,
- m = l && l.length,
- n = [],
- o = [];
- for(d = c(d) ? d : [d]; m > k; k++) f = l[k], g = f.invoke(b, d), g !== h && (a.isPromise(g) ? o.push(g) : n.push(g));
- return e || o.length ? (i = a.when.apply(a, o), j = i.pipe ? "pipe" : "then", i[j](function() {
- var b = a.Deferred(),
- c = arguments;
- return 1 === c.length && (c = c[0]), setTimeout(function() {
- b.resolve(c)
- }, 1), b.promise()
- })[e ? j : "done"](e || a.noop)) : n[0]
- },
- destroy: function() {
- g.apply(this, arguments), this._widgets = null
- }
- }), b.register = d.register = function(b, c) {
- var f, g = {
- init: "init",
- destroy: "destroy",
- name: "anonymous"
- };
- return 1 === arguments.length ? (c = b, e.each(c, function(a) {
- return "_" === a[0] || "name" === a ? void("name" === a && (g.name = c.name)) : void(g[a.replace(/[A-Z]/g, "-$&").toLowerCase()] = a)
- })) : g = e.extend(g, b), c.responseMap = g, f = a.inherits(d, c), f._name = g.name, i.push(f), f
- }, b.unRegister = d.unRegister = function(a) {
- if(a && "anonymous" !== a)
- for(var b = i.length; b--;) i[b]._name === a && i.splice(b, 1)
- }, d
- }), b("widgets/filednd", ["base", "uploader", "lib/dnd", "widgets/widget"], function(a, b, c) {
- var d = a.$;
- return b.options.dnd = "", b.register({
- name: "dnd",
- init: function(b) {
- if(b.dnd && "html5" === this.request("predict-runtime-type")) {
- var e, f = this,
- g = a.Deferred(),
- h = d.extend({}, {
- disableGlobalDnd: b.disableGlobalDnd,
- container: b.dnd,
- accept: b.accept
- });
- return this.dnd = e = new c(h), e.once("ready", g.resolve), e.on("drop", function(a) {
- f.request("add-file", [a])
- }), e.on("accept", function(a) {
- return f.owner.trigger("dndAccept", a)
- }), e.init(), g.promise()
- }
- },
- destroy: function() {
- this.dnd && this.dnd.destroy()
- }
- })
- }), b("lib/filepaste", ["base", "mediator", "runtime/client"], function(a, b, c) {
- function d(a) {
- a = this.options = e.extend({}, a), a.container = e(a.container || document.body), c.call(this, "FilePaste")
- }
- var e = a.$;
- return a.inherits(c, {
- constructor: d,
- init: function() {
- var a = this;
- a.connectRuntime(a.options, function() {
- a.exec("init"), a.trigger("ready")
- })
- }
- }), b.installTo(d.prototype), d
- }), b("widgets/filepaste", ["base", "uploader", "lib/filepaste", "widgets/widget"], function(a, b, c) {
- var d = a.$;
- return b.register({
- name: "paste",
- init: function(b) {
- if(b.paste && "html5" === this.request("predict-runtime-type")) {
- var e, f = this,
- g = a.Deferred(),
- h = d.extend({}, {
- container: b.paste,
- accept: b.accept
- });
- return this.paste = e = new c(h), e.once("ready", g.resolve), e.on("paste", function(a) {
- f.owner.request("add-file", [a])
- }), e.init(), g.promise()
- }
- },
- destroy: function() {
- this.paste && this.paste.destroy()
- }
- })
- }), b("lib/blob", ["base", "runtime/client"], function(a, b) {
- function c(a, c) {
- var d = this;
- d.source = c, d.ruid = a, this.size = c.size || 0, this.type = !c.type && this.ext && ~"jpg,jpeg,png,gif,bmp".indexOf(this.ext) ? "image/" + ("jpg" === this.ext ? "jpeg" : this.ext) : c.type || "application/octet-stream", b.call(d, "Blob"), this.uid = c.uid || this.uid, a && d.connectRuntime(a)
- }
- return a.inherits(b, {
- constructor: c,
- slice: function(a, b) {
- return this.exec("slice", a, b)
- },
- getSource: function() {
- return this.source
- }
- }), c
- }), b("lib/file", ["base", "lib/blob"], function(a, b) {
- function c(a, c) {
- var f;
- this.name = c.name || "untitled" + d++, f = e.exec(c.name) ? RegExp.$1.toLowerCase() : "", !f && c.type && (f = /\/(jpg|jpeg|png|gif|bmp)$/i.exec(c.type) ? RegExp.$1.toLowerCase() : "", this.name += "." + f), this.ext = f, this.lastModifiedDate = c.lastModifiedDate || (new Date).toLocaleString(), b.apply(this, arguments)
- }
- var d = 1,
- e = /\.([^.]+)$/;
- return a.inherits(b, c)
- }), b("lib/filepicker", ["base", "runtime/client", "lib/file"], function(b, c, d) {
- function e(a) {
- if(a = this.options = f.extend({}, e.options, a), a.container = f(a.id), !a.container.length) throw new Error("按钮指定错误");
- a.innerHTML = a.innerHTML || a.label || a.container.html() || "", a.button = f(a.button || document.createElement("div")), a.button.html(a.innerHTML), a.container.html(a.button), c.call(this, "FilePicker", !0)
- }
- var f = b.$;
- return e.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: !0,
- accept: null,
- name: "file"
- }, b.inherits(c, {
- constructor: e,
- init: function() {
- var c = this,
- e = c.options,
- g = e.button;
- g.addClass("webuploader-pick"), c.on("all", function(a) {
- var b;
- switch(a) {
- case "mouseenter":
- g.addClass("webuploader-pick-hover");
- break;
- case "mouseleave":
- g.removeClass("webuploader-pick-hover");
- break;
- case "change":
- b = c.exec("getFiles"), c.trigger("select", f.map(b, function(a) {
- return a = new d(c.getRuid(), a), a._refer = e.container, a
- }), e.container)
- }
- }), c.connectRuntime(e, function() {
- c.refresh(), c.exec("init", e), c.trigger("ready")
- }), this._resizeHandler = b.bindFn(this.refresh, this), f(a).on("resize", this._resizeHandler)
- },
- refresh: function() {
- var a = this.getRuntime().getContainer(),
- b = this.options.button,
- c = b.outerWidth ? b.outerWidth() : b.width(),
- d = b.outerHeight ? b.outerHeight() : b.height(),
- e = b.offset();
- c && d && a.css({
- bottom: "auto",
- right: "auto",
- width:'65px',
- height:'65px'
-
- }).offset(e)
- },
- enable: function() {
- var a = this.options.button;
- a.removeClass("webuploader-pick-disable"), this.refresh()
- },
- disable: function() {
- var a = this.options.button;
- this.getRuntime().getContainer().css({
- top: "-99999px"
- }), a.addClass("webuploader-pick-disable")
- },
- destroy: function() {
- var b = this.options.button;
- f(a).off("resize", this._resizeHandler), b.removeClass("webuploader-pick-disable webuploader-pick-hover webuploader-pick")
- }
- }), e
- }), b("widgets/filepicker", ["base", "uploader", "lib/filepicker", "widgets/widget"], function(a, b, c) {
- var d = a.$;
- return d.extend(b.options, {
- pick: null,
- accept: null
- }), b.register({
- name: "picker",
- init: function(a) {
- return this.pickers = [], a.pick && this.addBtn(a.pick)
- },
- refresh: function() {
- d.each(this.pickers, function() {
- this.refresh()
- })
- },
- addBtn: function(b) {
- var e = this,
- f = e.options,
- g = f.accept,
- h = [];
- if(b) return d.isPlainObject(b) || (b = {
- id: b
- }), d(b.id).each(function() {
- var i, j, k;
- k = a.Deferred(), i = d.extend({}, b, {
- accept: d.isPlainObject(g) ? [g] : g,
- swf: f.swf,
- runtimeOrder: f.runtimeOrder,
- id: this
- }), j = new c(i), j.once("ready", k.resolve), j.on("select", function(a) {
- e.owner.request("add-file", [a])
- }), j.init(), e.pickers.push(j), h.push(k.promise())
- }), a.when.apply(a, h)
- },
- disable: function() {
- d.each(this.pickers, function() {
- this.disable()
- })
- },
- enable: function() {
- d.each(this.pickers, function() {
- this.enable()
- })
- },
- destroy: function() {
- d.each(this.pickers, function() {
- this.destroy()
- }), this.pickers = null
- }
- })
- }), b("lib/image", ["base", "runtime/client", "lib/blob"], function(a, b, c) {
- function d(a) {
- this.options = e.extend({}, d.options, a), b.call(this, "Image"), this.on("load", function() {
- this._info = this.exec("info"), this._meta = this.exec("meta")
- })
- }
- var e = a.$;
- return d.options = {
- quality: 90,
- crop: !1,
- preserveHeaders: !1,
- allowMagnify: !1
- }, a.inherits(b, {
- constructor: d,
- info: function(a) {
- return a ? (this._info = a, this) : this._info
- },
- meta: function(a) {
- return a ? (this._meta = a, this) : this._meta
- },
- loadFromBlob: function(a) {
- var b = this,
- c = a.getRuid();
- this.connectRuntime(c, function() {
- b.exec("init", b.options), b.exec("loadFromBlob", a)
- })
- },
- resize: function() {
- var b = a.slice(arguments);
- return this.exec.apply(this, ["resize"].concat(b))
- },
- crop: function() {
- var b = a.slice(arguments);
- return this.exec.apply(this, ["crop"].concat(b))
- },
- getAsDataUrl: function(a) {
- return this.exec("getAsDataUrl", a)
- },
- getAsBlob: function(a) {
- var b = this.exec("getAsBlob", a);
- return new c(this.getRuid(), b)
- }
- }), d
- }), b("widgets/image", ["base", "uploader", "lib/image", "widgets/widget"], function(a, b, c) {
- var d, e = a.$;
- return d = function(a) {
- var b = 0,
- c = [],
- d = function() {
- for(var d; c.length && a > b;) d = c.shift(), b += d[0], d[1]()
- };
- return function(a, e, f) {
- c.push([e, f]), a.once("destroy", function() {
- b -= e, setTimeout(d, 1)
- }), setTimeout(d, 1)
- }
- }(5242880), e.extend(b.options, {
- thumb: {
- width: 110,
- height: 110,
- quality: 70,
- allowMagnify: !0,
- crop: !0,
- preserveHeaders: !1,
- type: "image/jpeg"
- },
- compress: {
- width: 1600,
- height: 1600,
- quality: 90,
- allowMagnify: !1,
- crop: !1,
- preserveHeaders: !0
- }
- }), b.register({
- name: "image",
- makeThumb: function(a, b, f, g) {
- var h, i;
- return a = this.request("get-file", a), a.type.match(/^image/) ? (h = e.extend({}, this.options.thumb), e.isPlainObject(f) && (h = e.extend(h, f), f = null), f = f || h.width, g = g || h.height, i = new c(h), i.once("load", function() {
- a._info = a._info || i.info(), a._meta = a._meta || i.meta(), 1 >= f && f > 0 && (f = a._info.width * f), 1 >= g && g > 0 && (g = a._info.height * g), i.resize(f, g)
- }), i.once("complete", function() {
- b(!1, i.getAsDataUrl(h.type)), i.destroy()
- }), i.once("error", function(a) {
- b(a || !0), i.destroy()
- }), void d(i, a.source.size, function() {
- a._info && i.info(a._info), a._meta && i.meta(a._meta), i.loadFromBlob(a.source)
- })) : void b(!0)
- },
- beforeSendFile: function(b) {
- var d, f, g = this.options.compress || this.options.resize,
- h = g && g.compressSize || 0,
- i = g && g.noCompressIfLarger || !1;
- return b = this.request("get-file", b), !g || !~"image/jpeg,image/jpg".indexOf(b.type) || b.size < h || b._compressed ? void 0 : (g = e.extend({}, g), f = a.Deferred(), d = new c(g), f.always(function() {
- d.destroy(), d = null
- }), d.once("error", f.reject), d.once("load", function() {
- var a = g.width,
- c = g.height;
- b._info = b._info || d.info(), b._meta = b._meta || d.meta(), 1 >= a && a > 0 && (a = b._info.width * a), 1 >= c && c > 0 && (c = b._info.height * c), d.resize(a, c)
- }), d.once("complete", function() {
- var a, c;
- try {
- a = d.getAsBlob(g.type), c = b.size, (!i || a.size < c) && (b.source = a, b.size = a.size, b.trigger("resize", a.size, c)), b._compressed = !0, f.resolve()
- } catch(e) {
- f.resolve()
- }
- }), b._info && d.info(b._info), b._meta && d.meta(b._meta), d.loadFromBlob(b.source), f.promise())
- }
- })
- }), b("file", ["base", "mediator"], function(a, b) {
- function c() {
- return f + g++
- }
- function d(a) {
- this.name = a.name || "Untitled", this.size = a.size || 0, this.type = a.type || "application/octet-stream", this.lastModifiedDate = a.lastModifiedDate || 1 * new Date, this.id = c(), this.ext = h.exec(this.name) ? RegExp.$1 : "", this.statusText = "", i[this.id] = d.Status.INITED, this.source = a, this.loaded = 0, this.on("error", function(a) {
- this.setStatus(d.Status.ERROR, a)
- })
- }
- var e = a.$,
- f = "WU_FILE_",
- g = 0,
- h = /\.([^.]+)$/,
- i = {};
- return e.extend(d.prototype, {
- setStatus: function(a, b) {
- var c = i[this.id];
- "undefined" != typeof b && (this.statusText = b), a !== c && (i[this.id] = a, this.trigger("statuschange", a, c))
- },
- getStatus: function() {
- return i[this.id]
- },
- getSource: function() {
- return this.source
- },
- destroy: function() {
- this.off(), delete i[this.id]
- }
- }), b.installTo(d.prototype), d.Status = {
- INITED: "inited",
- QUEUED: "queued",
- PROGRESS: "progress",
- ERROR: "error",
- COMPLETE: "complete",
- CANCELLED: "cancelled",
- INTERRUPT: "interrupt",
- INVALID: "invalid"
- }, d
- }), b("queue", ["base", "mediator", "file"], function(a, b, c) {
- function d() {
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numofDeleted: 0,
- numofInterrupt: 0
- }, this._queue = [], this._map = {}
- }
- var e = a.$,
- f = c.Status;
- return e.extend(d.prototype, {
- append: function(a) {
- return this._queue.push(a), this._fileAdded(a), this
- },
- prepend: function(a) {
- return this._queue.unshift(a), this._fileAdded(a), this
- },
- getFile: function(a) {
- return "string" != typeof a ? a : this._map[a]
- },
- fetch: function(a) {
- var b, c, d = this._queue.length;
- for(a = a || f.QUEUED, b = 0; d > b; b++)
- if(c = this._queue[b], a === c.getStatus()) return c;
- return null
- },
- sort: function(a) {
- "function" == typeof a && this._queue.sort(a)
- },
- getFiles: function() {
- for(var a, b = [].slice.call(arguments, 0), c = [], d = 0, f = this._queue.length; f > d; d++) a = this._queue[d], (!b.length || ~e.inArray(a.getStatus(), b)) && c.push(a);
- return c
- },
- removeFile: function(a) {
- var b = this._map[a.id];
- b && (delete this._map[a.id], a.destroy(), this.stats.numofDeleted++)
- },
- _fileAdded: function(a) {
- var b = this,
- c = this._map[a.id];
- c || (this._map[a.id] = a, a.on("statuschange", function(a, c) {
- b._onFileStatusChange(a, c)
- }))
- },
- _onFileStatusChange: function(a, b) {
- var c = this.stats;
- switch(b) {
- case f.PROGRESS:
- c.numOfProgress--;
- break;
- case f.QUEUED:
- c.numOfQueue--;
- break;
- case f.ERROR:
- c.numOfUploadFailed--;
- break;
- case f.INVALID:
- c.numOfInvalid--;
- break;
- case f.INTERRUPT:
- c.numofInterrupt--
- }
- switch(a) {
- case f.QUEUED:
- c.numOfQueue++;
- break;
- case f.PROGRESS:
- c.numOfProgress++;
- break;
- case f.ERROR:
- c.numOfUploadFailed++;
- break;
- case f.COMPLETE:
- c.numOfSuccess++;
- break;
- case f.CANCELLED:
- c.numOfCancel++;
- break;
- case f.INVALID:
- c.numOfInvalid++;
- break;
- case f.INTERRUPT:
- c.numofInterrupt++
- }
- }
- }), b.installTo(d.prototype), d
- }), b("widgets/queue", ["base", "uploader", "queue", "file", "lib/file", "runtime/client", "widgets/widget"], function(a, b, c, d, e, f) {
- var g = a.$,
- h = /\.\w+$/,
- i = d.Status;
- return b.register({
- name: "queue",
- init: function(b) {
- var d, e, h, i, j, k, l, m = this;
- if(g.isPlainObject(b.accept) && (b.accept = [b.accept]), b.accept) {
- for(j = [], h = 0, e = b.accept.length; e > h; h++) i = b.accept[h].extensions, i && j.push(i);
- j.length && (k = "\\." + j.join(",").replace(/,/g, "$|\\.").replace(/\*/g, ".*") + "$"), m.accept = new RegExp(k, "i")
- }
- return m.queue = new c, m.stats = m.queue.stats, "html5" === this.request("predict-runtime-type") ? (d = a.Deferred(), this.placeholder = l = new f("Placeholder"), l.connectRuntime({
- runtimeOrder: "html5"
- }, function() {
- m._ruid = l.getRuid(), d.resolve()
- }), d.promise()) : void 0
- },
- _wrapFile: function(a) {
- if(!(a instanceof d)) {
- if(!(a instanceof e)) {
- if(!this._ruid) throw new Error("Can't add external files.");
- a = new e(this._ruid, a)
- }
- a = new d(a)
- }
- return a
- },
- acceptFile: function(a) {
- var b = !a || !a.size || this.accept && h.exec(a.name) && !this.accept.test(a.name);
- return !b
- },
- _addFile: function(a) {
- var b = this;
- return a = b._wrapFile(a), b.owner.trigger("beforeFileQueued", a) ? b.acceptFile(a) ? (b.queue.append(a), b.owner.trigger("fileQueued", a), a) : void b.owner.trigger("error", "Q_TYPE_DENIED", a) : void 0
- },
- getFile: function(a) {
- return this.queue.getFile(a)
- },
- addFile: function(a) {
- var b = this;
- a.length || (a = [a]), a = g.map(a, function(a) {
- return b._addFile(a)
- }), b.owner.trigger("filesQueued", a), b.options.auto && setTimeout(function() {
- b.request("start-upload")
- }, 20)
- },
- getStats: function() {
- return this.stats
- },
- removeFile: function(a, b) {
- var c = this;
- a = a.id ? a : c.queue.getFile(a), this.request("cancel-file", a), b && this.queue.removeFile(a)
- },
- getFiles: function() {
- return this.queue.getFiles.apply(this.queue, arguments)
- },
- fetchFile: function() {
- return this.queue.fetch.apply(this.queue, arguments)
- },
- retry: function(a, b) {
- var c, d, e, f = this;
- if(a) return a = a.id ? a : f.queue.getFile(a), a.setStatus(i.QUEUED), void(b || f.request("start-upload"));
- for(c = f.queue.getFiles(i.ERROR), d = 0, e = c.length; e > d; d++) a = c[d], a.setStatus(i.QUEUED);
- f.request("start-upload")
- },
- sortFiles: function() {
- return this.queue.sort.apply(this.queue, arguments)
- },
- reset: function() {
- this.owner.trigger("reset"), this.queue = new c, this.stats = this.queue.stats
- },
- destroy: function() {
- this.reset(), this.placeholder && this.placeholder.destroy()
- }
- })
- }), b("widgets/runtime", ["uploader", "runtime/runtime", "widgets/widget"], function(a, b) {
- return a.support = function() {
- return b.hasRuntime.apply(b, arguments)
- }, a.register({
- name: "runtime",
- init: function() {
- if(!this.predictRuntimeType()) throw Error("Runtime Error")
- },
- predictRuntimeType: function() {
- var a, c, d = this.options.runtimeOrder || b.orders,
- e = this.type;
- if(!e)
- for(d = d.split(/\s*,\s*/g), a = 0, c = d.length; c > a; a++)
- if(b.hasRuntime(d[a])) {
- this.type = e = d[a];
- break
- }
- return e
- }
- })
- }), b("lib/transport", ["base", "runtime/client", "mediator"], function(a, b, c) {
- function d(a) {
- var c = this;
- a = c.options = e.extend(!0, {}, d.options, a || {}), b.call(this, "Transport"), this._blob = null, this._formData = a.formData || {}, this._headers = a.headers || {}, this.on("progress", this._timeout), this.on("load error", function() {
- c.trigger("progress", 1), clearTimeout(c._timer)
- })
- }
- var e = a.$;
- return d.options = {
- server: "",
- method: "POST",
- withCredentials: !1,
- fileVal: "file",
- timeout: 12e4,
- formData: {},
- headers: {},
- sendAsBinary: !1
- }, e.extend(d.prototype, {
- appendBlob: function(a, b, c) {
- var d = this,
- e = d.options;
- d.getRuid() && d.disconnectRuntime(), d.connectRuntime(b.ruid, function() {
- d.exec("init")
- }), d._blob = b, e.fileVal = a || e.fileVal, e.filename = c || e.filename
- },
- append: function(a, b) {
- "object" == typeof a ? e.extend(this._formData, a) : this._formData[a] = b
- },
- setRequestHeader: function(a, b) {
- "object" == typeof a ? e.extend(this._headers, a) : this._headers[a] = b
- },
- send: function(a) {
- this.exec("send", a), this._timeout()
- },
- abort: function() {
- return clearTimeout(this._timer), this.exec("abort")
- },
- destroy: function() {
- this.trigger("destroy"), this.off(), this.exec("destroy"), this.disconnectRuntime()
- },
- getResponse: function() {
- return this.exec("getResponse")
- },
- getResponseAsJson: function() {
- return this.exec("getResponseAsJson")
- },
- getStatus: function() {
- return this.exec("getStatus")
- },
- _timeout: function() {
- var a = this,
- b = a.options.timeout;
- b && (clearTimeout(a._timer), a._timer = setTimeout(function() {
- a.abort(), a.trigger("error", "timeout")
- }, b))
- }
- }), c.installTo(d.prototype), d
- }), b("widgets/upload", ["base", "uploader", "file", "lib/transport", "widgets/widget"], function(a, b, c, d) {
- function e(a, b) {
- var c, d, e = [],
- f = a.source,
- g = f.size,
- h = b ? Math.ceil(g / b) : 1,
- i = 0,
- j = 0;
- for(d = {
- file: a,
- has: function() {
- return !!e.length
- },
- shift: function() {
- return e.shift()
- },
- unshift: function(a) {
- e.unshift(a)
- }
- }; h > j;) c = Math.min(b, g - i), e.push({
- file: a,
- start: i,
- end: b ? i + c : g,
- total: g,
- chunks: h,
- chunk: j++,
- cuted: d
- }), i += c;
- return a.blocks = e.concat(), a.remaning = e.length, d
- }
- var f = a.$,
- g = a.isPromise,
- h = c.Status;
- f.extend(b.options, {
- prepareNextFile: !1,
- chunked: !1,
- chunkSize: 5242880,
- chunkRetry: 2,
- threads: 3,
- formData: {}
- }), b.register({
- name: "upload",
- init: function() {
- var b = this.owner,
- c = this;
- this.runing = !1, this.progress = !1, b.on("startUpload", function() {
- c.progress = !0
- }).on("uploadFinished", function() {
- c.progress = !1
- }), this.pool = [], this.stack = [], this.pending = [], this.remaning = 0, this.__tick = a.bindFn(this._tick, this), b.on("uploadComplete", function(a) {
- a.blocks && f.each(a.blocks, function(a, b) {
- b.transport && (b.transport.abort(), b.transport.destroy()), delete b.transport
- }), delete a.blocks, delete a.remaning
- })
- },
- reset: function() {
- this.request("stop-upload", !0), this.runing = !1, this.pool = [], this.stack = [], this.pending = [], this.remaning = 0, this._trigged = !1, this._promise = null
- },
- startUpload: function(b) {
- var c = this;
- if(f.each(c.request("get-files", h.INVALID), function() {
- c.request("remove-file", this)
- }), b)
- if(b = b.id ? b : c.request("get-file", b), b.getStatus() === h.INTERRUPT) f.each(c.pool, function(a, c) {
- c.file === b && c.transport && c.transport.send()
- }), b.setStatus(h.QUEUED);
- else {
- if(b.getStatus() === h.PROGRESS) return;
- b.setStatus(h.QUEUED)
- }
- else f.each(c.request("get-files", [h.INITED]), function() {
- this.setStatus(h.QUEUED)
- });
- if(!c.runing) {
- c.runing = !0;
- var d = [];
- f.each(c.pool, function(a, b) {
- var e = b.file;
- e.getStatus() === h.INTERRUPT && (d.push(e), c._trigged = !1, b.transport && b.transport.send())
- });
- for(var b; b = d.shift();) b.setStatus(h.PROGRESS);
- b || f.each(c.request("get-files", h.INTERRUPT), function() {
- this.setStatus(h.PROGRESS)
- }), c._trigged = !1, a.nextTick(c.__tick), c.owner.trigger("startUpload")
- }
- },
- stopUpload: function(b, c) {
- var d = this;
- if(b === !0 && (c = b, b = null), d.runing !== !1) {
- if(b) {
- if(b = b.id ? b : d.request("get-file", b), b.getStatus() !== h.PROGRESS && b.getStatus() !== h.QUEUED) return;
- return b.setStatus(h.INTERRUPT), f.each(d.pool, function(a, c) {
- c.file === b && (c.transport && c.transport.abort(), d._putback(c), d._popBlock(c))
- }), a.nextTick(d.__tick)
- }
- d.runing = !1, this._promise && this._promise.file && this._promise.file.setStatus(h.INTERRUPT), c && f.each(d.pool, function(a, b) {
- b.transport && b.transport.abort(), b.file.setStatus(h.INTERRUPT)
- }), d.owner.trigger("stopUpload")
- }
- },
- cancelFile: function(a) {
- a = a.id ? a : this.request("get-file", a), a.blocks && f.each(a.blocks, function(a, b) {
- var c = b.transport;
- c && (c.abort(), c.destroy(), delete b.transport)
- }), a.setStatus(h.CANCELLED), this.owner.trigger("fileDequeued", a)
- },
- isInProgress: function() {
- return !!this.progress
- },
- _getStats: function() {
- return this.request("get-stats")
- },
- skipFile: function(a, b) {
- a = a.id ? a : this.request("get-file", a), a.setStatus(b || h.COMPLETE), a.skipped = !0, a.blocks && f.each(a.blocks, function(a, b) {
- var c = b.transport;
- c && (c.abort(), c.destroy(), delete b.transport)
- }), this.owner.trigger("uploadSkip", a)
- },
- _tick: function() {
- var b, c, d = this,
- e = d.options;
- return d._promise ? d._promise.always(d.__tick) : void(d.pool.length < e.threads && (c = d._nextBlock()) ? (d._trigged = !1, b = function(b) {
- d._promise = null, b && b.file && d._startSend(b), a.nextTick(d.__tick)
- }, d._promise = g(c) ? c.always(b) : b(c)) : d.remaning || d._getStats().numOfQueue || d._getStats().numofInterrupt || (d.runing = !1, d._trigged || a.nextTick(function() {
- d.owner.trigger("uploadFinished")
- }), d._trigged = !0))
- },
- _putback: function(a) {
- var b;
- a.cuted.unshift(a), b = this.stack.indexOf(a.cuted), ~b || this.stack.unshift(a.cuted)
- },
- _getStack: function() {
- for(var a, b = 0; a = this.stack[b++];) {
- if(a.has() && a.file.getStatus() === h.PROGRESS) return a;
- (!a.has() || a.file.getStatus() !== h.PROGRESS && a.file.getStatus() !== h.INTERRUPT) && this.stack.splice(--b, 1)
- }
- return null
- },
- _nextBlock: function() {
- var a, b, c, d, f = this,
- h = f.options;
- return(a = this._getStack()) ? (h.prepareNextFile && !f.pending.length && f._prepareNextFile(), a.shift()) : f.runing ? (!f.pending.length && f._getStats().numOfQueue && f._prepareNextFile(), b = f.pending.shift(), c = function(b) {
- return b ? (a = e(b, h.chunked ? h.chunkSize : 0), f.stack.push(a), a.shift()) : null
- }, g(b) ? (d = b.file, b = b[b.pipe ? "pipe" : "then"](c), b.file = d, b) : c(b)) : void 0
- },
- _prepareNextFile: function() {
- var a, b = this,
- c = b.request("fetch-file"),
- d = b.pending;
- c && (a = b.request("before-send-file", c, function() {
- return c.getStatus() === h.PROGRESS || c.getStatus() === h.INTERRUPT ? c : b._finishFile(c)
- }), b.owner.trigger("uploadStart", c), c.setStatus(h.PROGRESS), a.file = c, a.done(function() {
- var b = f.inArray(a, d);
- ~b && d.splice(b, 1, c)
- }), a.fail(function(a) {
- c.setStatus(h.ERROR, a), b.owner.trigger("uploadError", c, a), b.owner.trigger("uploadComplete", c)
- }), d.push(a))
- },
- _popBlock: function(a) {
- var b = f.inArray(a, this.pool);
- this.pool.splice(b, 1), a.file.remaning--, this.remaning--
- },
- _startSend: function(b) {
- var c, d = this,
- e = b.file;
- return e.getStatus() !== h.PROGRESS ? void(e.getStatus() === h.INTERRUPT && d._putback(b)) : (d.pool.push(b), d.remaning++, b.blob = 1 === b.chunks ? e.source : e.source.slice(b.start, b.end), c = d.request("before-send", b, function() {
- e.getStatus() === h.PROGRESS ? d._doSend(b) : (d._popBlock(b), a.nextTick(d.__tick))
- }), void c.fail(function() {
- 1 === e.remaning ? d._finishFile(e).always(function() {
- b.percentage = 1, d._popBlock(b), d.owner.trigger("uploadComplete", e), a.nextTick(d.__tick)
- }) : (b.percentage = 1, d.updateFileProgress(e), d._popBlock(b), a.nextTick(d.__tick))
- }))
- },
- _doSend: function(b) {
- var c, e, g = this,
- i = g.owner,
- j = g.options,
- k = b.file,
- l = new d(j),
- m = f.extend({}, j.formData),
- n = f.extend({}, j.headers);
- b.transport = l, l.on("destroy", function() {
- delete b.transport, g._popBlock(b), a.nextTick(g.__tick)
- }), l.on("progress", function(a) {
- b.percentage = a, g.updateFileProgress(k)
- }), c = function(a) {
- var c;
- return e = l.getResponseAsJson() || {}, e._raw = l.getResponse(), c = function(b) {
- a = b
- }, i.trigger("uploadAccept", b, e, c) || (a = a || "server"), a
- }, l.on("error", function(a, d) {
- b.retried = b.retried || 0, b.chunks > 1 && ~"http,abort".indexOf(a) && b.retried < j.chunkRetry ? (b.retried++, l.send()) : (d || "server" !== a || (a = c(a)), k.setStatus(h.ERROR, a), i.trigger("uploadError", k, a), i.trigger("uploadComplete", k))
- }), l.on("load", function() {
- var a;
- return(a = c()) ? void l.trigger("error", a, !0) : void(1 === k.remaning ? g._finishFile(k, e) : l.destroy())
- }), m = f.extend(m, {
- id: k.id,
- name: k.name,
- type: k.type,
- lastModifiedDate: k.lastModifiedDate,
- size: k.size
- }), b.chunks > 1 && f.extend(m, {
- chunks: b.chunks,
- chunk: b.chunk
- }), i.trigger("uploadBeforeSend", b, m, n), l.appendBlob(j.fileVal, b.blob, k.name), l.append(m), l.setRequestHeader(n), l.send()
- },
- _finishFile: function(a, b, c) {
- var d = this.owner;
- return d.request("after-send-file", arguments, function() {
- a.setStatus(h.COMPLETE), d.trigger("uploadSuccess", a, b, c)
- }).fail(function(b) {
- a.getStatus() === h.PROGRESS && a.setStatus(h.ERROR, b), d.trigger("uploadError", a, b)
- }).always(function() {
- d.trigger("uploadComplete", a)
- })
- },
- updateFileProgress: function(a) {
- var b = 0,
- c = 0;
- a.blocks && (f.each(a.blocks, function(a, b) {
- c += (b.percentage || 0) * (b.end - b.start)
- }), b = c / a.size, this.owner.trigger("uploadProgress", a, b || 0))
- }
- })
- }), b("widgets/validator", ["base", "uploader", "file", "widgets/widget"], function(a, b, c) {
- var d, e = a.$,
- f = {};
- return d = {
- addValidator: function(a, b) {
- f[a] = b
- },
- removeValidator: function(a) {
- delete f[a]
- }
- }, b.register({
- name: "validator",
- init: function() {
- var b = this;
- a.nextTick(function() {
- e.each(f, function() {
- this.call(b.owner)
- })
- })
- }
- }), d.addValidator("fileNumLimit", function() {
- var a = this,
- b = a.options,
- c = 0,
- d = parseInt(b.fileNumLimit, 10),
- e = !0;
- d && (a.on("beforeFileQueued", function(a) {
- return c >= d && e && (e = !1, this.trigger("error", "Q_EXCEED_NUM_LIMIT", d, a), setTimeout(function() {
- e = !0
- }, 1)), c >= d ? !1 : !0
- }), a.on("fileQueued", function() {
- c++
- }), a.on("fileDequeued", function() {
- c--
- }), a.on("reset", function() {
- c = 0
- }))
- }), d.addValidator("fileSizeLimit", function() {
- var a = this,
- b = a.options,
- c = 0,
- d = parseInt(b.fileSizeLimit, 10),
- e = !0;
- d && (a.on("beforeFileQueued", function(a) {
- var b = c + a.size > d;
- return b && e && (e = !1, this.trigger("error", "Q_EXCEED_SIZE_LIMIT", d, a), setTimeout(function() {
- e = !0
- }, 1)), b ? !1 : !0
- }), a.on("fileQueued", function(a) {
- c += a.size
- }), a.on("fileDequeued", function(a) {
- c -= a.size
- }), a.on("reset", function() {
- c = 0
- }))
- }), d.addValidator("fileSingleSizeLimit", function() {
- var a = this,
- b = a.options,
- d = b.fileSingleSizeLimit;
- d && a.on("beforeFileQueued", function(a) {
- return a.size > d ? (a.setStatus(c.Status.INVALID, "exceed_size"), this.trigger("error", "F_EXCEED_SIZE", d, a), !1) : void 0
- })
- }), d.addValidator("duplicate", function() {
- function a(a) {
- for(var b, c = 0, d = 0, e = a.length; e > d; d++) b = a.charCodeAt(d), c = b + (c << 6) + (c << 16) - c;
- return c
- }
- var b = this,
- c = b.options,
- d = {};
- c.duplicate || (b.on("beforeFileQueued", function(b) {
- var c = b.__hash || (b.__hash = a(b.name + b.size + b.lastModifiedDate));
- return d[c] ? (this.trigger("error", "F_DUPLICATE", b), !1) : void 0
- }), b.on("fileQueued", function(a) {
- var b = a.__hash;
- b && (d[b] = !0)
- }), b.on("fileDequeued", function(a) {
- var b = a.__hash;
- b && delete d[b]
- }), b.on("reset", function() {
- d = {}
- }))
- }), d
- }), b("lib/md5", ["runtime/client", "mediator"], function(a, b) {
- function c() {
- a.call(this, "Md5")
- }
- return b.installTo(c.prototype), c.prototype.loadFromBlob = function(a) {
- var b = this;
- b.getRuid() && b.disconnectRuntime(), b.connectRuntime(a.ruid, function() {
- b.exec("init"), b.exec("loadFromBlob", a)
- })
- }, c.prototype.getResult = function() {
- return this.exec("getResult")
- }, c
- }), b("widgets/md5", ["base", "uploader", "lib/md5", "lib/blob", "widgets/widget"], function(a, b, c, d) {
- return b.register({
- name: "md5",
- md5File: function(b, e, f) {
- var g = new c,
- h = a.Deferred(),
- i = b instanceof d ? b : this.request("get-file", b).source;
- return g.on("progress load", function(a) {
- a = a || {}, h.notify(a.total ? a.loaded / a.total : 1)
- }), g.on("complete", function() {
- h.resolve(g.getResult())
- }), g.on("error", function(a) {
- h.reject(a)
- }), arguments.length > 1 && (e = e || 0, f = f || 0, 0 > e && (e = i.size + e), 0 > f && (f = i.size + f), f = Math.min(f, i.size), i = i.slice(e, f)), g.loadFromBlob(i), h.promise()
- }
- })
- }), b("runtime/compbase", [], function() {
- function a(a, b) {
- this.owner = a, this.options = a.options, this.getRuntime = function() {
- return b
- }, this.getRuid = function() {
- return b.uid
- }, this.trigger = function() {
- return a.trigger.apply(a, arguments)
- }
- }
- return a
- }), b("runtime/html5/runtime", ["base", "runtime/runtime", "runtime/compbase"], function(b, c, d) {
- function e() {
- var a = {},
- d = this,
- e = this.destroy;
- c.apply(d, arguments), d.type = f, d.exec = function(c, e) {
- var f, h = this,
- i = h.uid,
- j = b.slice(arguments, 2);
- return g[c] && (f = a[i] = a[i] || new g[c](h, d), f[e]) ? f[e].apply(f, j) : void 0
- }, d.destroy = function() {
- return e && e.apply(this, arguments)
- }
- }
- var f = "html5",
- g = {};
- return b.inherits(c, {
- constructor: e,
- init: function() {
- var a = this;
- setTimeout(function() {
- a.trigger("ready")
- }, 1)
- }
- }), e.register = function(a, c) {
- var e = g[a] = b.inherits(d, c);
- return e
- }, a.Blob && a.FileReader && a.DataView && c.addRuntime(f, e), e
- }), b("runtime/html5/blob", ["runtime/html5/runtime", "lib/blob"], function(a, b) {
- return a.register("Blob", {
- slice: function(a, c) {
- var d = this.owner.source,
- e = d.slice || d.webkitSlice || d.mozSlice;
- return d = e.call(d, a, c), new b(this.getRuid(), d)
- }
- })
- }), b("runtime/html5/dnd", ["base", "runtime/html5/runtime", "lib/file"], function(a, b, c) {
- var d = a.$,
- e = "webuploader-dnd-";
- return b.register("DragAndDrop", {
- init: function() {
- var b = this.elem = this.options.container;
- this.dragEnterHandler = a.bindFn(this._dragEnterHandler, this), this.dragOverHandler = a.bindFn(this._dragOverHandler, this), this.dragLeaveHandler = a.bindFn(this._dragLeaveHandler, this), this.dropHandler = a.bindFn(this._dropHandler, this), this.dndOver = !1, b.on("dragenter", this.dragEnterHandler), b.on("dragover", this.dragOverHandler), b.on("dragleave", this.dragLeaveHandler), b.on("drop", this.dropHandler), this.options.disableGlobalDnd && (d(document).on("dragover", this.dragOverHandler), d(document).on("drop", this.dropHandler))
- },
- _dragEnterHandler: function(a) {
- var b, c = this,
- d = c._denied || !1;
- return a = a.originalEvent || a, c.dndOver || (c.dndOver = !0, b = a.dataTransfer.items, b && b.length && (c._denied = d = !c.trigger("accept", b)), c.elem.addClass(e + "over"), c.elem[d ? "addClass" : "removeClass"](e + "denied")), a.dataTransfer.dropEffect = d ? "none" : "copy", !1
- },
- _dragOverHandler: function(a) {
- var b = this.elem.parent().get(0);
- return b && !d.contains(b, a.currentTarget) ? !1 : (clearTimeout(this._leaveTimer), this._dragEnterHandler.call(this, a), !1)
- },
- _dragLeaveHandler: function() {
- var a, b = this;
- return a = function() {
- b.dndOver = !1, b.elem.removeClass(e + "over " + e + "denied")
- }, clearTimeout(b._leaveTimer), b._leaveTimer = setTimeout(a, 100), !1
- },
- _dropHandler: function(a) {
- var b, f, g = this,
- h = g.getRuid(),
- i = g.elem.parent().get(0);
- if(i && !d.contains(i, a.currentTarget)) return !1;
- a = a.originalEvent || a, b = a.dataTransfer;
- try {
- f = b.getData("text/html")
- } catch(j) {}
- return f ? void 0 : (g._getTansferFiles(b, function(a) {
- g.trigger("drop", d.map(a, function(a) {
- return new c(h, a)
- }))
- }), g.dndOver = !1, g.elem.removeClass(e + "over"), !1)
- },
- _getTansferFiles: function(b, c) {
- var d, e, f, g, h, i, j, k = [],
- l = [];
- for(d = b.items, e = b.files, j = !(!d || !d[0].webkitGetAsEntry), h = 0, i = e.length; i > h; h++) f = e[h], g = d && d[h], j && g.webkitGetAsEntry().isDirectory ? l.push(this._traverseDirectoryTree(g.webkitGetAsEntry(), k)) : k.push(f);
- a.when.apply(a, l).done(function() {
- k.length && c(k)
- })
- },
- _traverseDirectoryTree: function(b, c) {
- var d = a.Deferred(),
- e = this;
- return b.isFile ? b.file(function(a) {
- c.push(a), d.resolve()
- }) : b.isDirectory && b.createReader().readEntries(function(b) {
- var f, g = b.length,
- h = [],
- i = [];
- for(f = 0; g > f; f++) h.push(e._traverseDirectoryTree(b[f], i));
- a.when.apply(a, h).then(function() {
- c.push.apply(c, i), d.resolve()
- }, d.reject)
- }), d.promise()
- },
- destroy: function() {
- var a = this.elem;
- a && (a.off("dragenter", this.dragEnterHandler), a.off("dragover", this.dragOverHandler), a.off("dragleave", this.dragLeaveHandler), a.off("drop", this.dropHandler), this.options.disableGlobalDnd && (d(document).off("dragover", this.dragOverHandler), d(document).off("drop", this.dropHandler)))
- }
- })
- }), b("runtime/html5/filepaste", ["base", "runtime/html5/runtime", "lib/file"], function(a, b, c) {
- return b.register("FilePaste", {
- init: function() {
- var b, c, d, e, f = this.options,
- g = this.elem = f.container,
- h = ".*";
- if(f.accept) {
- for(b = [], c = 0, d = f.accept.length; d > c; c++) e = f.accept[c].mimeTypes, e && b.push(e);
- b.length && (h = b.join(","), h = h.replace(/,/g, "|").replace(/\*/g, ".*"))
- }
- this.accept = h = new RegExp(h, "i"), this.hander = a.bindFn(this._pasteHander, this), g.on("paste", this.hander)
- },
- _pasteHander: function(a) {
- var b, d, e, f, g, h = [],
- i = this.getRuid();
- for(a = a.originalEvent || a, b = a.clipboardData.items, f = 0, g = b.length; g > f; f++) d = b[f], "file" === d.kind && (e = d.getAsFile()) && h.push(new c(i, e));
- h.length && (a.preventDefault(), a.stopPropagation(), this.trigger("paste", h))
- },
- destroy: function() {
- this.elem.off("paste", this.hander)
- }
- })
- }), b("runtime/html5/filepicker", ["base", "runtime/html5/runtime"], function(a, b) {
- var c = a.$;
- return b.register("FilePicker", {
- init: function() {
- var a, b, d, e, f = this.getRuntime().getContainer(),
- g = this,
- h = g.owner,
- i = g.options,
- j = this.label = c(document.createElement("div")),
- k = this.input = c(document.createElement("input"));
- if(k.attr("type", "file"), k.attr("name", i.name), k.addClass("webuploader-element-invisible"), j.on("click", function() {
- k.trigger("click")
- }), j.css({
- opacity: 0,
- width: "100%",
- height: "100%",
- display: "block",
- cursor: "pointer",
- background: "#ffffff"
-
- }), i.multiple && k.attr("multiple", "multiple"), i.accept && i.accept.length > 0) {
- for(a = [], b = 0, d = i.accept.length; d > b; b++) a.push(i.accept[b].mimeTypes);
- k.attr("accept", a.join(","))
- }
- f.append(k), f.append(j), e = function(a) {
- h.trigger(a.type)
- }, k.on("change", function(a) {
- var b, d = arguments.callee;
- g.files = a.target.files, b = this.cloneNode(!0), b.value = null, this.parentNode.replaceChild(b, this), k.off(), k = c(b).on("change", d).on("mouseenter mouseleave", e), h.trigger("change")
- }), j.on("mouseenter mouseleave", e)
- },
- getFiles: function() {
- return this.files
- },
- destroy: function() {
- this.input.off(), this.label.off()
- }
- })
- }), b("runtime/html5/util", ["base"], function(b) {
- var c = a.createObjectURL && a || a.URL && URL.revokeObjectURL && URL || a.webkitURL,
- d = b.noop,
- e = d;
- return c && (d = function() {
- return c.createObjectURL.apply(c, arguments)
- }, e = function() {
- return c.revokeObjectURL.apply(c, arguments)
- }), {
- createObjectURL: d,
- revokeObjectURL: e,
- dataURL2Blob: function(a) {
- var b, c, d, e, f, g;
- for(g = a.split(","), b = ~g[0].indexOf("base64") ? atob(g[1]) : decodeURIComponent(g[1]), d = new ArrayBuffer(b.length), c = new Uint8Array(d), e = 0; e < b.length; e++) c[e] = b.charCodeAt(e);
- return f = g[0].split(":")[1].split(";")[0], this.arrayBufferToBlob(d, f)
- },
- dataURL2ArrayBuffer: function(a) {
- var b, c, d, e;
- for(e = a.split(","), b = ~e[0].indexOf("base64") ? atob(e[1]) : decodeURIComponent(e[1]), c = new Uint8Array(b.length), d = 0; d < b.length; d++) c[d] = b.charCodeAt(d);
- return c.buffer
- },
- arrayBufferToBlob: function(b, c) {
- var d, e = a.BlobBuilder || a.WebKitBlobBuilder;
- return e ? (d = new e, d.append(b), d.getBlob(c)) : new Blob([b], c ? {
- type: c
- } : {})
- },
- canvasToDataUrl: function(a, b, c) {
- return a.toDataURL(b, c / 100)
- },
- parseMeta: function(a, b) {
- b(!1, {})
- },
- updateImageHead: function(a) {
- return a
- }
- }
- }), b("runtime/html5/imagemeta", ["runtime/html5/util"], function(a) {
- var b;
- return b = {
- parsers: {
- 65505: []
- },
- maxMetaDataSize: 262144,
- parse: function(a, b) {
- var c = this,
- d = new FileReader;
- d.onload = function() {
- b(!1, c._parse(this.result)), d = d.onload = d.onerror = null
- }, d.onerror = function(a) {
- b(a.message), d = d.onload = d.onerror = null
- }, a = a.slice(0, c.maxMetaDataSize), d.readAsArrayBuffer(a.getSource())
- },
- _parse: function(a, c) {
- if(!(a.byteLength < 6)) {
- var d, e, f, g, h = new DataView(a),
- i = 2,
- j = h.byteLength - 4,
- k = i,
- l = {};
- if(65496 === h.getUint16(0)) {
- for(; j > i && (d = h.getUint16(i), d >= 65504 && 65519 >= d || 65534 === d) && (e = h.getUint16(i + 2) + 2, !(i + e > h.byteLength));) {
- if(f = b.parsers[d], !c && f)
- for(g = 0; g < f.length; g += 1) f[g].call(b, h, i, e, l);
- i += e, k = i
- }
- k > 6 && (l.imageHead = a.slice ? a.slice(2, k) : new Uint8Array(a).subarray(2, k))
- }
- return l
- }
- },
- updateImageHead: function(a, b) {
- var c, d, e, f = this._parse(a, !0);
- return e = 2, f.imageHead && (e = 2 + f.imageHead.byteLength), d = a.slice ? a.slice(e) : new Uint8Array(a).subarray(e), c = new Uint8Array(b.byteLength + 2 + d.byteLength), c[0] = 255, c[1] = 216, c.set(new Uint8Array(b), 2), c.set(new Uint8Array(d), b.byteLength + 2), c.buffer
- }
- }, a.parseMeta = function() {
- return b.parse.apply(b, arguments)
- }, a.updateImageHead = function() {
- return b.updateImageHead.apply(b, arguments)
- }, b
- }), b("runtime/html5/imagemeta/exif", ["base", "runtime/html5/imagemeta"], function(a, b) {
- var c = {};
- return c.ExifMap = function() {
- return this
- }, c.ExifMap.prototype.map = {
- Orientation: 274
- }, c.ExifMap.prototype.get = function(a) {
- return this[a] || this[this.map[a]]
- }, c.exifTagTypes = {
- 1: {
- getValue: function(a, b) {
- return a.getUint8(b)
- },
- size: 1
- },
- 2: {
- getValue: function(a, b) {
- return String.fromCharCode(a.getUint8(b))
- },
- size: 1,
- ascii: !0
- },
- 3: {
- getValue: function(a, b, c) {
- return a.getUint16(b, c)
- },
- size: 2
- },
- 4: {
- getValue: function(a, b, c) {
- return a.getUint32(b, c)
- },
- size: 4
- },
- 5: {
- getValue: function(a, b, c) {
- return a.getUint32(b, c) / a.getUint32(b + 4, c)
- },
- size: 8
- },
- 9: {
- getValue: function(a, b, c) {
- return a.getInt32(b, c)
- },
- size: 4
- },
- 10: {
- getValue: function(a, b, c) {
- return a.getInt32(b, c) / a.getInt32(b + 4, c)
- },
- size: 8
- }
- }, c.exifTagTypes[7] = c.exifTagTypes[1], c.getExifValue = function(b, d, e, f, g, h) {
- var i, j, k, l, m, n, o = c.exifTagTypes[f];
- if(!o) return void a.log("Invalid Exif data: Invalid tag type.");
- if(i = o.size * g, j = i > 4 ? d + b.getUint32(e + 8, h) : e + 8, j + i > b.byteLength) return void a.log("Invalid Exif data: Invalid data offset.");
- if(1 === g) return o.getValue(b, j, h);
- for(k = [], l = 0; g > l; l += 1) k[l] = o.getValue(b, j + l * o.size, h);
- if(o.ascii) {
- for(m = "", l = 0; l < k.length && (n = k[l], "\x00" !== n); l += 1) m += n;
- return m
- }
- return k
- }, c.parseExifTag = function(a, b, d, e, f) {
- var g = a.getUint16(d, e);
- f.exif[g] = c.getExifValue(a, b, d, a.getUint16(d + 2, e), a.getUint32(d + 4, e), e)
- }, c.parseExifTags = function(b, c, d, e, f) {
- var g, h, i;
- if(d + 6 > b.byteLength) return void a.log("Invalid Exif data: Invalid directory offset.");
- if(g = b.getUint16(d, e), h = d + 2 + 12 * g, h + 4 > b.byteLength) return void a.log("Invalid Exif data: Invalid directory size.");
- for(i = 0; g > i; i += 1) this.parseExifTag(b, c, d + 2 + 12 * i, e, f);
- return b.getUint32(h, e)
- }, c.parseExifData = function(b, d, e, f) {
- var g, h, i = d + 10;
- if(1165519206 === b.getUint32(d + 4)) {
- if(i + 8 > b.byteLength) return void a.log("Invalid Exif data: Invalid segment size.");
- if(0 !== b.getUint16(d + 8)) return void a.log("Invalid Exif data: Missing byte alignment offset.");
- switch(b.getUint16(i)) {
- case 18761:
- g = !0;
- break;
- case 19789:
- g = !1;
- break;
- default:
- return void a.log("Invalid Exif data: Invalid byte alignment marker.")
- }
- if(42 !== b.getUint16(i + 2, g)) return void a.log("Invalid Exif data: Missing TIFF marker.");
- h = b.getUint32(i + 4, g), f.exif = new c.ExifMap, h = c.parseExifTags(b, i, i + h, g, f)
- }
- }, b.parsers[65505].push(c.parseExifData), c
- }), b("runtime/html5/jpegencoder", [], function() {
- function a(a) {
- function b(a) {
- for(var b = [16, 11, 10, 16, 24, 40, 51, 61, 12, 12, 14, 19, 26, 58, 60, 55, 14, 13, 16, 24, 40, 57, 69, 56, 14, 17, 22, 29, 51, 87, 80, 62, 18, 22, 37, 56, 68, 109, 103, 77, 24, 35, 55, 64, 81, 104, 113, 92, 49, 64, 78, 87, 103, 121, 120, 101, 72, 92, 95, 98, 112, 100, 103, 99], c = 0; 64 > c; c++) {
- var d = y((b[c] * a + 50) / 100);
- 1 > d ? d = 1 : d > 255 && (d = 255), z[P[c]] = d
- }
- for(var e = [17, 18, 24, 47, 99, 99, 99, 99, 18, 21, 26, 66, 99, 99, 99, 99, 24, 26, 56, 99, 99, 99, 99, 99, 47, 66, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99], f = 0; 64 > f; f++) {
- var g = y((e[f] * a + 50) / 100);
- 1 > g ? g = 1 : g > 255 && (g = 255), A[P[f]] = g
- }
- for(var h = [1, 1.387039845, 1.306562965, 1.175875602, 1, .785694958, .5411961, .275899379], i = 0, j = 0; 8 > j; j++)
- for(var k = 0; 8 > k; k++) B[i] = 1 / (z[P[i]] * h[j] * h[k] * 8), C[i] = 1 / (A[P[i]] * h[j] * h[k] * 8), i++
- }
- function c(a, b) {
- for(var c = 0, d = 0, e = new Array, f = 1; 16 >= f; f++) {
- for(var g = 1; g <= a[f]; g++) e[b[d]] = [], e[b[d]][0] = c, e[b[d]][1] = f, d++, c++;
- c *= 2
- }
- return e
- }
- function d() {
- t = c(Q, R), u = c(U, V), v = c(S, T), w = c(W, X)
- }
- function e() {
- for(var a = 1, b = 2, c = 1; 15 >= c; c++) {
- for(var d = a; b > d; d++) E[32767 + d] = c, D[32767 + d] = [], D[32767 + d][1] = c, D[32767 + d][0] = d;
- for(var e = -(b - 1); - a >= e; e++) E[32767 + e] = c, D[32767 + e] = [], D[32767 + e][1] = c, D[32767 + e][0] = b - 1 + e;
- a <<= 1, b <<= 1
- }
- }
- function f() {
- for(var a = 0; 256 > a; a++) O[a] = 19595 * a, O[a + 256 >> 0] = 38470 * a, O[a + 512 >> 0] = 7471 * a + 32768, O[a + 768 >> 0] = -11059 * a, O[a + 1024 >> 0] = -21709 * a, O[a + 1280 >> 0] = 32768 * a + 8421375, O[a + 1536 >> 0] = -27439 * a, O[a + 1792 >> 0] = -5329 * a
- }
- function g(a) {
- for(var b = a[0], c = a[1] - 1; c >= 0;) b & 1 << c && (I |= 1 << J), c--, J--, 0 > J && (255 == I ? (h(255), h(0)) : h(I), J = 7, I = 0)
- }
- function h(a) {
- H.push(N[a])
- }
- function i(a) {
- h(a >> 8 & 255), h(255 & a)
- }
- function j(a, b) {
- var c, d, e, f, g, h, i, j, k, l = 0,
- m = 8,
- n = 64;
- for(k = 0; m > k; ++k) {
- c = a[l], d = a[l + 1], e = a[l + 2], f = a[l + 3], g = a[l + 4], h = a[l + 5], i = a[l + 6], j = a[l + 7];
- var o = c + j,
- p = c - j,
- q = d + i,
- r = d - i,
- s = e + h,
- t = e - h,
- u = f + g,
- v = f - g,
- w = o + u,
- x = o - u,
- y = q + s,
- z = q - s;
- a[l] = w + y, a[l + 4] = w - y;
- var A = .707106781 * (z + x);
- a[l + 2] = x + A, a[l + 6] = x - A, w = v + t, y = t + r, z = r + p;
- var B = .382683433 * (w - z),
- C = .5411961 * w + B,
- D = 1.306562965 * z + B,
- E = .707106781 * y,
- G = p + E,
- H = p - E;
- a[l + 5] = H + C, a[l + 3] = H - C, a[l + 1] = G + D, a[l + 7] = G - D, l += 8
- }
- for(l = 0, k = 0; m > k; ++k) {
- c = a[l], d = a[l + 8], e = a[l + 16], f = a[l + 24], g = a[l + 32], h = a[l + 40], i = a[l + 48], j = a[l + 56];
- var I = c + j,
- J = c - j,
- K = d + i,
- L = d - i,
- M = e + h,
- N = e - h,
- O = f + g,
- P = f - g,
- Q = I + O,
- R = I - O,
- S = K + M,
- T = K - M;
- a[l] = Q + S, a[l + 32] = Q - S;
- var U = .707106781 * (T + R);
- a[l + 16] = R + U, a[l + 48] = R - U, Q = P + N, S = N + L, T = L + J;
- var V = .382683433 * (Q - T),
- W = .5411961 * Q + V,
- X = 1.306562965 * T + V,
- Y = .707106781 * S,
- Z = J + Y,
- $ = J - Y;
- a[l + 40] = $ + W, a[l + 24] = $ - W, a[l + 8] = Z + X, a[l + 56] = Z - X, l++
- }
- var _;
- for(k = 0; n > k; ++k) _ = a[k] * b[k], F[k] = _ > 0 ? _ + .5 | 0 : _ - .5 | 0;
- return F
- }
- function k() {
- i(65504), i(16), h(74), h(70), h(73), h(70), h(0), h(1), h(1), h(0), i(1), i(1), h(0), h(0)
- }
- function l(a, b) {
- i(65472), i(17), h(8), i(b), i(a), h(3), h(1), h(17), h(0), h(2), h(17), h(1), h(3), h(17), h(1)
- }
- function m() {
- i(65499), i(132), h(0);
- for(var a = 0; 64 > a; a++) h(z[a]);
- h(1);
- for(var b = 0; 64 > b; b++) h(A[b])
- }
- function n() {
- i(65476), i(418), h(0);
- for(var a = 0; 16 > a; a++) h(Q[a + 1]);
- for(var b = 0; 11 >= b; b++) h(R[b]);
- h(16);
- for(var c = 0; 16 > c; c++) h(S[c + 1]);
- for(var d = 0; 161 >= d; d++) h(T[d]);
- h(1);
- for(var e = 0; 16 > e; e++) h(U[e + 1]);
- for(var f = 0; 11 >= f; f++) h(V[f]);
- h(17);
- for(var g = 0; 16 > g; g++) h(W[g + 1]);
- for(var j = 0; 161 >= j; j++) h(X[j])
- }
- function o() {
- i(65498), i(12), h(3), h(1), h(0), h(2), h(17), h(3), h(17), h(0), h(63), h(0)
- }
- function p(a, b, c, d, e) {
- for(var f, h = e[0], i = e[240], k = 16, l = 63, m = 64, n = j(a, b), o = 0; m > o; ++o) G[P[o]] = n[o];
- var p = G[0] - c;
- c = G[0], 0 == p ? g(d[0]) : (f = 32767 + p, g(d[E[f]]), g(D[f]));
- for(var q = 63; q > 0 && 0 == G[q]; q--);
- if(0 == q) return g(h), c;
- for(var r, s = 1; q >= s;) {
- for(var t = s; 0 == G[s] && q >= s; ++s);
- var u = s - t;
- if(u >= k) {
- r = u >> 4;
- for(var v = 1; r >= v; ++v) g(i);
- u = 15 & u
- }
- f = 32767 + G[s], g(e[(u << 4) + E[f]]), g(D[f]), s++
- }
- return q != l && g(h), c
- }
- function q() {
- for(var a = String.fromCharCode, b = 0; 256 > b; b++) N[b] = a(b)
- }
- function r(a) {
- if(0 >= a && (a = 1), a > 100 && (a = 100), x != a) {
- var c = 0;
- c = Math.floor(50 > a ? 5e3 / a : 200 - 2 * a), b(c), x = a
- }
- }
- function s() {
- a || (a = 50), q(), d(), e(), f(), r(a)
- }
- var t, u, v, w, x, y = (Math.round, Math.floor),
- z = new Array(64),
- A = new Array(64),
- B = new Array(64),
- C = new Array(64),
- D = new Array(65535),
- E = new Array(65535),
- F = new Array(64),
- G = new Array(64),
- H = [],
- I = 0,
- J = 7,
- K = new Array(64),
- L = new Array(64),
- M = new Array(64),
- N = new Array(256),
- O = new Array(2048),
- P = [0, 1, 5, 6, 14, 15, 27, 28, 2, 4, 7, 13, 16, 26, 29, 42, 3, 8, 12, 17, 25, 30, 41, 43, 9, 11, 18, 24, 31, 40, 44, 53, 10, 19, 23, 32, 39, 45, 52, 54, 20, 22, 33, 38, 46, 51, 55, 60, 21, 34, 37, 47, 50, 56, 59, 61, 35, 36, 48, 49, 57, 58, 62, 63],
- Q = [0, 0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0],
- R = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
- S = [0, 0, 2, 1, 3, 3, 2, 4, 3, 5, 5, 4, 4, 0, 0, 1, 125],
- T = [1, 2, 3, 0, 4, 17, 5, 18, 33, 49, 65, 6, 19, 81, 97, 7, 34, 113, 20, 50, 129, 145, 161, 8, 35, 66, 177, 193, 21, 82, 209, 240, 36, 51, 98, 114, 130, 9, 10, 22, 23, 24, 25, 26, 37, 38, 39, 40, 41, 42, 52, 53, 54, 55, 56, 57, 58, 67, 68, 69, 70, 71, 72, 73, 74, 83, 84, 85, 86, 87, 88, 89, 90, 99, 100, 101, 102, 103, 104, 105, 106, 115, 116, 117, 118, 119, 120, 121, 122, 131, 132, 133, 134, 135, 136, 137, 138, 146, 147, 148, 149, 150, 151, 152, 153, 154, 162, 163, 164, 165, 166, 167, 168, 169, 170, 178, 179, 180, 181, 182, 183, 184, 185, 186, 194, 195, 196, 197, 198, 199, 200, 201, 202, 210, 211, 212, 213, 214, 215, 216, 217, 218, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250],
- U = [0, 0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0],
- V = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
- W = [0, 0, 2, 1, 2, 4, 4, 3, 4, 7, 5, 4, 4, 0, 1, 2, 119],
- X = [0, 1, 2, 3, 17, 4, 5, 33, 49, 6, 18, 65, 81, 7, 97, 113, 19, 34, 50, 129, 8, 20, 66, 145, 161, 177, 193, 9, 35, 51, 82, 240, 21, 98, 114, 209, 10, 22, 36, 52, 225, 37, 241, 23, 24, 25, 26, 38, 39, 40, 41, 42, 53, 54, 55, 56, 57, 58, 67, 68, 69, 70, 71, 72, 73, 74, 83, 84, 85, 86, 87, 88, 89, 90, 99, 100, 101, 102, 103, 104, 105, 106, 115, 116, 117, 118, 119, 120, 121, 122, 130, 131, 132, 133, 134, 135, 136, 137, 138, 146, 147, 148, 149, 150, 151, 152, 153, 154, 162, 163, 164, 165, 166, 167, 168, 169, 170, 178, 179, 180, 181, 182, 183, 184, 185, 186, 194, 195, 196, 197, 198, 199, 200, 201, 202, 210, 211, 212, 213, 214, 215, 216, 217, 218, 226, 227, 228, 229, 230, 231, 232, 233, 234, 242, 243, 244, 245, 246, 247, 248, 249, 250];
- this.encode = function(a, b) {
- b && r(b), H = new Array, I = 0, J = 7, i(65496), k(), m(), l(a.width, a.height), n(), o();
- var c = 0,
- d = 0,
- e = 0;
- I = 0, J = 7, this.encode.displayName = "_encode_";
- for(var f, h, j, q, s, x, y, z, A, D = a.data, E = a.width, F = a.height, G = 4 * E, N = 0; F > N;) {
- for(f = 0; G > f;) {
- for(s = G * N + f, x = s, y = -1, z = 0, A = 0; 64 > A; A++) z = A >> 3, y = 4 * (7 & A), x = s + z * G + y, N + z >= F && (x -= G * (N + 1 + z - F)), f + y >= G && (x -= f + y - G + 4), h = D[x++], j = D[x++], q = D[x++], K[A] = (O[h] + O[j + 256 >> 0] + O[q + 512 >> 0] >> 16) - 128, L[A] = (O[h + 768 >> 0] + O[j + 1024 >> 0] + O[q + 1280 >> 0] >> 16) - 128, M[A] = (O[h + 1280 >> 0] + O[j + 1536 >> 0] + O[q + 1792 >> 0] >> 16) - 128;
- c = p(K, B, c, t, v), d = p(L, C, d, u, w), e = p(M, C, e, u, w), f += 32
- }
- N += 8
- }
- if(J >= 0) {
- var P = [];
- P[1] = J + 1, P[0] = (1 << J + 1) - 1, g(P)
- }
- i(65497);
- var Q = "data:image/jpeg;base64," + btoa(H.join(""));
- return H = [], Q
- }, s()
- }
- return a.encode = function(b, c) {
- var d = new a(c);
- return d.encode(b)
- }, a
- }), b("runtime/html5/androidpatch", ["runtime/html5/util", "runtime/html5/jpegencoder", "base"], function(a, b, c) {
- var d, e = a.canvasToDataUrl;
- a.canvasToDataUrl = function(a, f, g) {
- var h, i, j, k, l;
- return c.os.android ? ("image/jpeg" === f && "undefined" == typeof d && (k = e.apply(null, arguments), l = k.split(","), k = ~l[0].indexOf("base64") ? atob(l[1]) : decodeURIComponent(l[1]), k = k.substring(0, 2), d = 255 === k.charCodeAt(0) && 216 === k.charCodeAt(1)), "image/jpeg" !== f || d ? e.apply(null, arguments) : (i = a.width, j = a.height, h = a.getContext("2d"), b.encode(h.getImageData(0, 0, i, j), g))) : e.apply(null, arguments)
- }
- }), b("runtime/html5/image", ["base", "runtime/html5/runtime", "runtime/html5/util"], function(a, b, c) {
- var d = "data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D";
- return b.register("Image", {
- modified: !1,
- init: function() {
- var a = this,
- b = new Image;
- b.onload = function() {
- a._info = {
- type: a.type,
- width: this.width,
- height: this.height
- }, a._metas || "image/jpeg" !== a.type ? a.owner.trigger("load") : c.parseMeta(a._blob, function(b, c) {
- a._metas = c, a.owner.trigger("load")
- })
- }, b.onerror = function() {
- a.owner.trigger("error")
- }, a._img = b
- },
- loadFromBlob: function(a) {
- var b = this,
- d = b._img;
- b._blob = a, b.type = a.type, d.src = c.createObjectURL(a.getSource()), b.owner.once("load", function() {
- c.revokeObjectURL(d.src)
- })
- },
- resize: function(a, b) {
- var c = this._canvas || (this._canvas = document.createElement("canvas"));
- this._resize(this._img, c, a, b), this._blob = null, this.modified = !0, this.owner.trigger("complete", "resize")
- },
- crop: function(a, b, c, d, e) {
- var f = this._canvas || (this._canvas = document.createElement("canvas")),
- g = this.options,
- h = this._img,
- i = h.naturalWidth,
- j = h.naturalHeight,
- k = this.getOrientation();
- e = e || 1, f.width = c, f.height = d, g.preserveHeaders || this._rotate2Orientaion(f, k), this._renderImageToCanvas(f, h, -a, -b, i * e, j * e), this._blob = null, this.modified = !0, this.owner.trigger("complete", "crop")
- },
- getAsBlob: function(a) {
- var b, d = this._blob,
- e = this.options;
- if(a = a || this.type, this.modified || this.type !== a) {
- if(b = this._canvas, "image/jpeg" === a) {
- if(d = c.canvasToDataUrl(b, a, e.quality), e.preserveHeaders && this._metas && this._metas.imageHead) return d = c.dataURL2ArrayBuffer(d), d = c.updateImageHead(d, this._metas.imageHead), d = c.arrayBufferToBlob(d, a)
- } else d = c.canvasToDataUrl(b, a);
- d = c.dataURL2Blob(d)
- }
- return d
- },
- getAsDataUrl: function(a) {
- var b = this.options;
- return a = a || this.type, "image/jpeg" === a ? c.canvasToDataUrl(this._canvas, a, b.quality) : this._canvas.toDataURL(a)
- },
- getOrientation: function() {
- return this._metas && this._metas.exif && this._metas.exif.get("Orientation") || 1
- },
- info: function(a) {
- return a ? (this._info = a, this) : this._info
- },
- meta: function(a) {
- return a ? (this._meta = a, this) : this._meta
- },
- destroy: function() {
- var a = this._canvas;
- this._img.onload = null, a && (a.getContext("2d").clearRect(0, 0, a.width, a.height), a.width = a.height = 0, this._canvas = null), this._img.src = d, this._img = this._blob = null
- },
- _resize: function(a, b, c, d) {
- var e, f, g, h, i, j = this.options,
- k = a.width,
- l = a.height,
- m = this.getOrientation();
- ~[5, 6, 7, 8].indexOf(m) && (c ^= d, d ^= c, c ^= d), e = Math[j.crop ? "max" : "min"](c / k, d / l), j.allowMagnify || (e = Math.min(1, e)), f = k * e, g = l * e, j.crop ? (b.width = c, b.height = d) : (b.width = f, b.height = g), h = (b.width - f) / 2, i = (b.height - g) / 2, j.preserveHeaders || this._rotate2Orientaion(b, m), this._renderImageToCanvas(b, a, h, i, f, g)
- },
- _rotate2Orientaion: function(a, b) {
- var c = a.width,
- d = a.height,
- e = a.getContext("2d");
- switch(b) {
- case 5:
- case 6:
- case 7:
- case 8:
- a.width = d, a.height = c
- }
- switch(b) {
- case 2:
- e.translate(c, 0), e.scale(-1, 1);
- break;
- case 3:
- e.translate(c, d), e.rotate(Math.PI);
- break;
- case 4:
- e.translate(0, d), e.scale(1, -1);
- break;
- case 5:
- e.rotate(.5 * Math.PI), e.scale(1, -1);
- break;
- case 6:
- e.rotate(.5 * Math.PI), e.translate(0, -d);
- break;
- case 7:
- e.rotate(.5 * Math.PI), e.translate(c, -d), e.scale(-1, 1);
- break;
- case 8:
- e.rotate(-.5 * Math.PI), e.translate(-c, 0)
- }
- },
- _renderImageToCanvas: function() {
- function b(a, b, c) {
- var d, e, f, g = document.createElement("canvas"),
- h = g.getContext("2d"),
- i = 0,
- j = c,
- k = c;
- for(g.width = 1, g.height = c, h.drawImage(a, 0, 0), d = h.getImageData(0, 0, 1, c).data; k > i;) e = d[4 * (k - 1) + 3], 0 === e ? j = k : i = k, k = j + i >> 1;
- return f = k / c, 0 === f ? 1 : f
- }
- function c(a) {
- var b, c, d = a.naturalWidth,
- e = a.naturalHeight;
- return d * e > 1048576 ? (b = document.createElement("canvas"), b.width = b.height = 1, c = b.getContext("2d"), c.drawImage(a, -d + 1, 0), 0 === c.getImageData(0, 0, 1, 1).data[3]) : !1
- }
- return a.os.ios ? a.os.ios >= 7 ? function(a, c, d, e, f, g) {
- var h = c.naturalWidth,
- i = c.naturalHeight,
- j = b(c, h, i);
- return a.getContext("2d").drawImage(c, 0, 0, h * j, i * j, d, e, f, g)
- } : function(a, d, e, f, g, h) {
- var i, j, k, l, m, n, o, p = d.naturalWidth,
- q = d.naturalHeight,
- r = a.getContext("2d"),
- s = c(d),
- t = "image/jpeg" === this.type,
- u = 1024,
- v = 0,
- w = 0;
- for(s && (p /= 2, q /= 2), r.save(), i = document.createElement("canvas"), i.width = i.height = u, j = i.getContext("2d"), k = t ? b(d, p, q) : 1, l = Math.ceil(u * g / p), m = Math.ceil(u * h / q / k); q > v;) {
- for(n = 0, o = 0; p > n;) j.clearRect(0, 0, u, u), j.drawImage(d, -n, -v), r.drawImage(i, 0, 0, u, u, e + o, f + w, l, m), n += u, o += l;
- v += u, w += m
- }
- r.restore(), i = j = null
- } : function(b) {
- var c = a.slice(arguments, 1),
- d = b.getContext("2d");
- d.drawImage.apply(d, c)
- }
- }()
- })
- }), b("runtime/html5/transport", ["base", "runtime/html5/runtime"], function(a, b) {
- var c = a.noop,
- d = a.$;
- return b.register("Transport", {
- init: function() {
- this._status = 0, this._response = null
- },
- send: function() {
- var b, c, e, f = this.owner,
- g = this.options,
- h = this._initAjax(),
- i = f._blob,
- j = g.server;
- g.sendAsBinary ? (j += (/\?/.test(j) ? "&" : "?") + d.param(f._formData), c = i.getSource()) : (b = new FormData, d.each(f._formData, function(a, c) {
- b.append(a, c)
- }), b.append(g.fileVal, i.getSource(), g.filename || f._formData.name || "")), g.withCredentials && "withCredentials" in h ? (h.open(g.method, j, !0), h.withCredentials = !0) : h.open(g.method, j), this._setRequestHeader(h, g.headers), c ? (h.overrideMimeType && h.overrideMimeType("application/octet-stream"), a.os.android ? (e = new FileReader, e.onload = function() {
- h.send(this.result), e = e.onload = null
- }, e.readAsArrayBuffer(c)) : h.send(c)) : h.send(b)
- },
- getResponse: function() {
- return this._response
- },
- getResponseAsJson: function() {
- return this._parseJson(this._response)
- },
- getStatus: function() {
- return this._status
- },
- abort: function() {
- var a = this._xhr;
- a && (a.upload.onprogress = c, a.onreadystatechange = c, a.abort(), this._xhr = a = null)
- },
- destroy: function() {
- this.abort()
- },
- _initAjax: function() {
- var a = this,
- b = new XMLHttpRequest,
- d = this.options;
- return !d.withCredentials || "withCredentials" in b || "undefined" == typeof XDomainRequest || (b = new XDomainRequest), b.upload.onprogress = function(b) {
- var c = 0;
- return b.lengthComputable && (c = b.loaded / b.total), a.trigger("progress", c)
- }, b.onreadystatechange = function() {
- return 4 === b.readyState ? (b.upload.onprogress = c, b.onreadystatechange = c, a._xhr = null, a._status = b.status, b.status >= 200 && b.status < 300 ? (a._response = b.responseText, a.trigger("load")) : b.status >= 500 && b.status < 600 ? (a._response = b.responseText, a.trigger("error", "server")) : a.trigger("error", a._status ? "http" : "abort")) : void 0
- }, a._xhr = b, b
- },
- _setRequestHeader: function(a, b) {
- d.each(b, function(b, c) {
- a.setRequestHeader(b, c)
- })
- },
- _parseJson: function(a) {
- var b;
- try {
- b = JSON.parse(a)
- } catch(c) {
- b = {}
- }
- return b
- }
- })
- }), b("runtime/html5/md5", ["runtime/html5/runtime"], function(a) {
- var b = function(a, b) {
- return a + b & 4294967295
- },
- c = function(a, c, d, e, f, g) {
- return c = b(b(c, a), b(e, g)), b(c << f | c >>> 32 - f, d)
- },
- d = function(a, b, d, e, f, g, h) {
- return c(b & d | ~b & e, a, b, f, g, h)
- },
- e = function(a, b, d, e, f, g, h) {
- return c(b & e | d & ~e, a, b, f, g, h)
- },
- f = function(a, b, d, e, f, g, h) {
- return c(b ^ d ^ e, a, b, f, g, h)
- },
- g = function(a, b, d, e, f, g, h) {
- return c(d ^ (b | ~e), a, b, f, g, h)
- },
- h = function(a, c) {
- var h = a[0],
- i = a[1],
- j = a[2],
- k = a[3];
- h = d(h, i, j, k, c[0], 7, -680876936), k = d(k, h, i, j, c[1], 12, -389564586), j = d(j, k, h, i, c[2], 17, 606105819), i = d(i, j, k, h, c[3], 22, -1044525330), h = d(h, i, j, k, c[4], 7, -176418897), k = d(k, h, i, j, c[5], 12, 1200080426), j = d(j, k, h, i, c[6], 17, -1473231341), i = d(i, j, k, h, c[7], 22, -45705983), h = d(h, i, j, k, c[8], 7, 1770035416), k = d(k, h, i, j, c[9], 12, -1958414417), j = d(j, k, h, i, c[10], 17, -42063), i = d(i, j, k, h, c[11], 22, -1990404162), h = d(h, i, j, k, c[12], 7, 1804603682), k = d(k, h, i, j, c[13], 12, -40341101), j = d(j, k, h, i, c[14], 17, -1502002290), i = d(i, j, k, h, c[15], 22, 1236535329), h = e(h, i, j, k, c[1], 5, -165796510), k = e(k, h, i, j, c[6], 9, -1069501632), j = e(j, k, h, i, c[11], 14, 643717713), i = e(i, j, k, h, c[0], 20, -373897302), h = e(h, i, j, k, c[5], 5, -701558691), k = e(k, h, i, j, c[10], 9, 38016083), j = e(j, k, h, i, c[15], 14, -660478335), i = e(i, j, k, h, c[4], 20, -405537848), h = e(h, i, j, k, c[9], 5, 568446438), k = e(k, h, i, j, c[14], 9, -1019803690), j = e(j, k, h, i, c[3], 14, -187363961), i = e(i, j, k, h, c[8], 20, 1163531501), h = e(h, i, j, k, c[13], 5, -1444681467), k = e(k, h, i, j, c[2], 9, -51403784), j = e(j, k, h, i, c[7], 14, 1735328473), i = e(i, j, k, h, c[12], 20, -1926607734), h = f(h, i, j, k, c[5], 4, -378558), k = f(k, h, i, j, c[8], 11, -2022574463), j = f(j, k, h, i, c[11], 16, 1839030562), i = f(i, j, k, h, c[14], 23, -35309556), h = f(h, i, j, k, c[1], 4, -1530992060), k = f(k, h, i, j, c[4], 11, 1272893353), j = f(j, k, h, i, c[7], 16, -155497632), i = f(i, j, k, h, c[10], 23, -1094730640), h = f(h, i, j, k, c[13], 4, 681279174), k = f(k, h, i, j, c[0], 11, -358537222), j = f(j, k, h, i, c[3], 16, -722521979), i = f(i, j, k, h, c[6], 23, 76029189), h = f(h, i, j, k, c[9], 4, -640364487), k = f(k, h, i, j, c[12], 11, -421815835), j = f(j, k, h, i, c[15], 16, 530742520), i = f(i, j, k, h, c[2], 23, -995338651), h = g(h, i, j, k, c[0], 6, -198630844), k = g(k, h, i, j, c[7], 10, 1126891415), j = g(j, k, h, i, c[14], 15, -1416354905), i = g(i, j, k, h, c[5], 21, -57434055), h = g(h, i, j, k, c[12], 6, 1700485571), k = g(k, h, i, j, c[3], 10, -1894986606), j = g(j, k, h, i, c[10], 15, -1051523), i = g(i, j, k, h, c[1], 21, -2054922799), h = g(h, i, j, k, c[8], 6, 1873313359), k = g(k, h, i, j, c[15], 10, -30611744), j = g(j, k, h, i, c[6], 15, -1560198380), i = g(i, j, k, h, c[13], 21, 1309151649), h = g(h, i, j, k, c[4], 6, -145523070), k = g(k, h, i, j, c[11], 10, -1120210379), j = g(j, k, h, i, c[2], 15, 718787259), i = g(i, j, k, h, c[9], 21, -343485551), a[0] = b(h, a[0]), a[1] = b(i, a[1]), a[2] = b(j, a[2]), a[3] = b(k, a[3])
- },
- i = function(a) {
- var b, c = [];
- for(b = 0; 64 > b; b += 4) c[b >> 2] = a.charCodeAt(b) + (a.charCodeAt(b + 1) << 8) + (a.charCodeAt(b + 2) << 16) + (a.charCodeAt(b + 3) << 24);
- return c
- },
- j = function(a) {
- var b, c = [];
- for(b = 0; 64 > b; b += 4) c[b >> 2] = a[b] + (a[b + 1] << 8) + (a[b + 2] << 16) + (a[b + 3] << 24);
- return c
- },
- k = function(a) {
- var b, c, d, e, f, g, j = a.length,
- k = [1732584193, -271733879, -1732584194, 271733878];
- for(b = 64; j >= b; b += 64) h(k, i(a.substring(b - 64, b)));
- for(a = a.substring(b - 64), c = a.length, d = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], b = 0; c > b; b += 1) d[b >> 2] |= a.charCodeAt(b) << (b % 4 << 3);
- if(d[b >> 2] |= 128 << (b % 4 << 3), b > 55)
- for(h(k, d), b = 0; 16 > b; b += 1) d[b] = 0;
- return e = 8 * j, e = e.toString(16).match(/(.*?)(.{0,8})$/), f = parseInt(e[2], 16), g = parseInt(e[1], 16) || 0, d[14] = f, d[15] = g, h(k, d), k
- },
- l = function(a) {
- var b, c, d, e, f, g, i = a.length,
- k = [1732584193, -271733879, -1732584194, 271733878];
- for(b = 64; i >= b; b += 64) h(k, j(a.subarray(b - 64, b)));
- for(a = i > b - 64 ? a.subarray(b - 64) : new Uint8Array(0), c = a.length, d = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], b = 0; c > b; b += 1) d[b >> 2] |= a[b] << (b % 4 << 3);
- if(d[b >> 2] |= 128 << (b % 4 << 3), b > 55)
- for(h(k, d), b = 0; 16 > b; b += 1) d[b] = 0;
- return e = 8 * i, e = e.toString(16).match(/(.*?)(.{0,8})$/), f = parseInt(e[2], 16), g = parseInt(e[1], 16) || 0, d[14] = f, d[15] = g, h(k, d), k
- },
- m = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"],
- n = function(a) {
- var b, c = "";
- for(b = 0; 4 > b; b += 1) c += m[a >> 8 * b + 4 & 15] + m[a >> 8 * b & 15];
- return c
- },
- o = function(a) {
- var b;
- for(b = 0; b < a.length; b += 1) a[b] = n(a[b]);
- return a.join("")
- },
- p = function(a) {
- return o(k(a))
- },
- q = function() {
- this.reset()
- };
- return "5d41402abc4b2a76b9719d911017c592" !== p("hello") && (b = function(a, b) {
- var c = (65535 & a) + (65535 & b),
- d = (a >> 16) + (b >> 16) + (c >> 16);
- return d << 16 | 65535 & c
- }), q.prototype.append = function(a) {
- return /[\u0080-\uFFFF]/.test(a) && (a = unescape(encodeURIComponent(a))), this.appendBinary(a), this
- }, q.prototype.appendBinary = function(a) {
- this._buff += a, this._length += a.length;
- var b, c = this._buff.length;
- for(b = 64; c >= b; b += 64) h(this._state, i(this._buff.substring(b - 64, b)));
- return this._buff = this._buff.substr(b - 64), this
- }, q.prototype.end = function(a) {
- var b, c, d = this._buff,
- e = d.length,
- f = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for(b = 0; e > b; b += 1) f[b >> 2] |= d.charCodeAt(b) << (b % 4 << 3);
- return this._finish(f, e), c = a ? this._state : o(this._state), this.reset(), c
- }, q.prototype._finish = function(a, b) {
- var c, d, e, f = b;
- if(a[f >> 2] |= 128 << (f % 4 << 3), f > 55)
- for(h(this._state, a), f = 0; 16 > f; f += 1) a[f] = 0;
- c = 8 * this._length, c = c.toString(16).match(/(.*?)(.{0,8})$/), d = parseInt(c[2], 16), e = parseInt(c[1], 16) || 0, a[14] = d, a[15] = e, h(this._state, a)
- }, q.prototype.reset = function() {
- return this._buff = "", this._length = 0, this._state = [1732584193, -271733879, -1732584194, 271733878], this
- }, q.prototype.destroy = function() {
- delete this._state, delete this._buff, delete this._length
- }, q.hash = function(a, b) {
- /[\u0080-\uFFFF]/.test(a) && (a = unescape(encodeURIComponent(a)));
- var c = k(a);
- return b ? c : o(c)
- }, q.hashBinary = function(a, b) {
- var c = k(a);
- return b ? c : o(c)
- }, q.ArrayBuffer = function() {
- this.reset()
- }, q.ArrayBuffer.prototype.append = function(a) {
- var b, c = this._concatArrayBuffer(this._buff, a),
- d = c.length;
- for(this._length += a.byteLength, b = 64; d >= b; b += 64) h(this._state, j(c.subarray(b - 64, b)));
- return this._buff = d > b - 64 ? c.subarray(b - 64) : new Uint8Array(0), this
- }, q.ArrayBuffer.prototype.end = function(a) {
- var b, c, d = this._buff,
- e = d.length,
- f = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for(b = 0; e > b; b += 1) f[b >> 2] |= d[b] << (b % 4 << 3);
- return this._finish(f, e), c = a ? this._state : o(this._state), this.reset(), c
- }, q.ArrayBuffer.prototype._finish = q.prototype._finish, q.ArrayBuffer.prototype.reset = function() {
- return this._buff = new Uint8Array(0), this._length = 0, this._state = [1732584193, -271733879, -1732584194, 271733878], this
- }, q.ArrayBuffer.prototype.destroy = q.prototype.destroy, q.ArrayBuffer.prototype._concatArrayBuffer = function(a, b) {
- var c = a.length,
- d = new Uint8Array(c + b.byteLength);
- return d.set(a), d.set(new Uint8Array(b), c), d
- }, q.ArrayBuffer.hash = function(a, b) {
- var c = l(new Uint8Array(a));
- return b ? c : o(c)
- }, a.register("Md5", {
- init: function() {},
- loadFromBlob: function(a) {
- var b, c, d = a.getSource(),
- e = 2097152,
- f = Math.ceil(d.size / e),
- g = 0,
- h = this.owner,
- i = new q.ArrayBuffer,
- j = this,
- k = d.mozSlice || d.webkitSlice || d.slice;
- c = new FileReader, (b = function() {
- var l, m;
- l = g * e, m = Math.min(l + e, d.size), c.onload = function(b) {
- i.append(b.target.result), h.trigger("progress", {
- total: a.size,
- loaded: m
- })
- }, c.onloadend = function() {
- c.onloadend = c.onload = null, ++g < f ? setTimeout(b, 1) : setTimeout(function() {
- h.trigger("load"), j.result = i.end(), b = a = d = i = null, h.trigger("complete")
- }, 50)
- }, c.readAsArrayBuffer(k.call(d, l, m))
- })()
- },
- getResult: function() {
- return this.result
- }
- })
- }), b("runtime/flash/runtime", ["base", "runtime/runtime", "runtime/compbase"], function(b, c, d) {
- function e() {
- var a;
- try {
- a = navigator.plugins["Shockwave Flash"], a = a.description
- } catch(b) {
- try {
- a = new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version")
- } catch(c) {
- a = "0.0"
- }
- }
- return a = a.match(/\d+/g), parseFloat(a[0] + "." + a[1], 10)
- }
- function f() {
- function d(a, b) {
- var c, d, e = a.type || a;
- c = e.split("::"), d = c[0], e = c[1], "Ready" === e && d === j.uid ? j.trigger("ready") : f[d] && f[d].trigger(e.toLowerCase(), a, b)
- }
- var e = {},
- f = {},
- g = this.destroy,
- j = this,
- k = b.guid("webuploader_");
- c.apply(j, arguments), j.type = h, j.exec = function(a, c) {
- var d, g = this,
- h = g.uid,
- k = b.slice(arguments, 2);
- return f[h] = g, i[a] && (e[h] || (e[h] = new i[a](g, j)), d = e[h], d[c]) ? d[c].apply(d, k) : j.flashExec.apply(g, arguments)
- }, a[k] = function() {
- var a = arguments;
- setTimeout(function() {
- d.apply(null, a)
- }, 1)
- }, this.jsreciver = k, this.destroy = function() {
- return g && g.apply(this, arguments)
- }, this.flashExec = function(a, c) {
- var d = j.getFlash(),
- e = b.slice(arguments, 2);
- return d.exec(this.uid, a, c, e)
- }
- }
- var g = b.$,
- h = "flash",
- i = {};
- return b.inherits(c, {
- constructor: f,
- init: function() {
- var a, c = this.getContainer(),
- d = this.options;
- c.css({
- position: "absolute",
- top: "-8px",
- left: "-8px",
- width: "9px",
- height: "9px",
- overflow: "hidden"
- }), a = '<object id="' + this.uid + '" type="application/x-shockwave-flash" data="' + d.swf + '" ', b.browser.ie && (a += 'classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" '), a += 'width="100%" height="100%" style="outline:0"><param name="movie" value="' + d.swf + '" /><param name="flashvars" value="uid=' + this.uid + "&jsreciver=" + this.jsreciver + '" /><param name="wmode" value="transparent" /><param name="allowscriptaccess" value="always" /></object>', c.html(a)
- },
- getFlash: function() {
- return this._flash ? this._flash : (this._flash = g("#" + this.uid).get(0), this._flash)
- }
- }), f.register = function(a, c) {
- return c = i[a] = b.inherits(d, g.extend({
- flashExec: function() {
- var a = this.owner,
- b = this.getRuntime();
- return b.flashExec.apply(a, arguments)
- }
- }, c))
- }, e() >= 11.4 && c.addRuntime(h, f), f
- }), b("runtime/flash/filepicker", ["base", "runtime/flash/runtime"], function(a, b) {
- var c = a.$;
- return b.register("FilePicker", {
- init: function(a) {
- var b, d, e = c.extend({}, a);
- for(b = e.accept && e.accept.length, d = 0; b > d; d++) e.accept[d].title || (e.accept[d].title = "Files");
- delete e.button, delete e.id, delete e.container, this.flashExec("FilePicker", "init", e)
- },
- destroy: function() {
- this.flashExec("FilePicker", "destroy")
- }
- })
- }), b("runtime/flash/image", ["runtime/flash/runtime"], function(a) {
- return a.register("Image", {
- loadFromBlob: function(a) {
- var b = this.owner;
- b.info() && this.flashExec("Image", "info", b.info()), b.meta() && this.flashExec("Image", "meta", b.meta()), this.flashExec("Image", "loadFromBlob", a.uid)
- }
- })
- }), b("runtime/flash/transport", ["base", "runtime/flash/runtime", "runtime/client"], function(b, c, d) {
- var e = b.$;
- return c.register("Transport", {
- init: function() {
- this._status = 0, this._response = null, this._responseJson = null
- },
- send: function() {
- var a, b = this.owner,
- c = this.options,
- d = this._initAjax(),
- f = b._blob,
- g = c.server;
- d.connectRuntime(f.ruid), c.sendAsBinary ? (g += (/\?/.test(g) ? "&" : "?") + e.param(b._formData), a = f.uid) : (e.each(b._formData, function(a, b) {
- d.exec("append", a, b)
- }), d.exec("appendBlob", c.fileVal, f.uid, c.filename || b._formData.name || "")), this._setRequestHeader(d, c.headers), d.exec("send", {
- method: c.method,
- url: g,
- forceURLStream: c.forceURLStream,
- mimeType: "application/octet-stream"
- }, a)
- },
- getStatus: function() {
- return this._status
- },
- getResponse: function() {
- return this._response || ""
- },
- getResponseAsJson: function() {
- return this._responseJson
- },
- abort: function() {
- var a = this._xhr;
- a && (a.exec("abort"), a.destroy(), this._xhr = a = null)
- },
- destroy: function() {
- this.abort()
- },
- _initAjax: function() {
- var b = this,
- c = new d("XMLHttpRequest");
- return c.on("uploadprogress progress", function(a) {
- var c = a.loaded / a.total;
- return c = Math.min(1, Math.max(0, c)), b.trigger("progress", c)
- }), c.on("load", function() {
- var d, e = c.exec("getStatus"),
- f = !1,
- g = "";
- return c.off(), b._xhr = null, e >= 200 && 300 > e ? f = !0 : e >= 500 && 600 > e ? (f = !0, g = "server") : g = "http", f && (b._response = c.exec("getResponse"), b._response = decodeURIComponent(b._response), d = a.JSON && a.JSON.parse || function(a) {
- try {
- return new Function("return " + a).call()
- } catch(b) {
- return {}
- }
- }, b._responseJson = b._response ? d(b._response) : {}), c.destroy(), c = null, g ? b.trigger("error", g) : b.trigger("load")
- }), c.on("error", function() {
- c.off(), b._xhr = null, b.trigger("error", "http")
- }), b._xhr = c, c
- },
- _setRequestHeader: function(a, b) {
- e.each(b, function(b, c) {
- a.exec("setRequestHeader", b, c)
- })
- }
- })
- }), b("runtime/flash/blob", ["runtime/flash/runtime", "lib/blob"], function(a, b) {
- return a.register("Blob", {
- slice: function(a, c) {
- var d = this.flashExec("Blob", "slice", a, c);
- return new b(d.uid, d)
- }
- })
- }), b("runtime/flash/md5", ["runtime/flash/runtime"], function(a) {
- return a.register("Md5", {
- init: function() {},
- loadFromBlob: function(a) {
- return this.flashExec("Md5", "loadFromBlob", a.uid)
- }
- })
- }), b("preset/all", ["base", "widgets/filednd", "widgets/filepaste", "widgets/filepicker", "widgets/image", "widgets/queue", "widgets/runtime", "widgets/upload", "widgets/validator", "widgets/md5", "runtime/html5/blob", "runtime/html5/dnd", "runtime/html5/filepaste", "runtime/html5/filepicker", "runtime/html5/imagemeta/exif", "runtime/html5/androidpatch", "runtime/html5/image", "runtime/html5/transport", "runtime/html5/md5", "runtime/flash/filepicker", "runtime/flash/image", "runtime/flash/transport", "runtime/flash/blob", "runtime/flash/md5"], function(a) {
- return a
- }), b("widgets/log", ["base", "uploader", "widgets/widget"], function(a, b) {
- function c(a) {
- var b = e.extend({}, d, a),
- c = f.replace(/^(.*)\?/, "$1" + e.param(b)),
- g = new Image;
- g.src = c
- }
- var d, e = a.$,
- f = " http://static.tieba.baidu.com/tb/pms/img/st.gif??",
- g = (location.hostname || location.host || "protected").toLowerCase(),
- h = g && /baidu/i.exec(g);
- if(h) return d = {
- dv: 3,
- master: "webuploader",
- online: /test/.exec(g) ? 0 : 1,
- module: "",
- product: g,
- type: 0
- }, b.register({
- name: "log",
- init: function() {
- var a = this.owner,
- b = 0,
- d = 0;
- a.on("error", function(a) {
- c({
- type: 2,
- c_error_code: a
- })
- }).on("uploadError", function(a, b) {
- c({
- type: 2,
- c_error_code: "UPLOAD_ERROR",
- c_reason: "" + b
- })
- }).on("uploadComplete", function(a) {
- b++, d += a.size
- }).on("uploadFinished", function() {
- c({
- c_count: b,
- c_size: d
- }), b = d = 0
- }), c({
- c_usage: 1
- })
- }
- })
- }), b("webuploader", ["preset/all", "widgets/log"], function(a) {
- return a
- }), c("webuploader")
- });
|